From 4153bbc10b1621e124aae6fda462058686097612 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Mon, 12 Mar 2012 23:35:11 +0000 Subject: [PATCH] Fix pointlessly different strings in the translation and styling assistant Originally committed to SVN as r6581. --- aegisub/src/dialog_styling_assistant.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/aegisub/src/dialog_styling_assistant.cpp b/aegisub/src/dialog_styling_assistant.cpp index 816730ef7..1cdd83dc3 100644 --- a/aegisub/src/dialog_styling_assistant.cpp +++ b/aegisub/src/dialog_styling_assistant.cpp @@ -91,13 +91,13 @@ DialogStyling::DialogStyling(agi::Context *context) wxSizer *hotkey_box = new wxStaticBoxSizer(wxVERTICAL, this, _("Keys")); wxSizer *hotkey_grid = new wxGridSizer(2, 0, 5); - add_hotkey(hotkey_grid, this, "tool/styling_assistant/commit", "Accept changes:"); - add_hotkey(hotkey_grid, this, "tool/styling_assistant/preview", "Preview changes:"); - add_hotkey(hotkey_grid, this, "grid/line/prev", "Previous line:"); - add_hotkey(hotkey_grid, this, "grid/line/next", "Next line:"); - add_hotkey(hotkey_grid, this, "video/play/line", "Play Video:"); - add_hotkey(hotkey_grid, this, "audio/play/selection", "Play Audio:"); - hotkey_grid->Add(new wxStaticText(this, -1, _("Click on list:"))); + add_hotkey(hotkey_grid, this, "tool/styling_assistant/commit", "Accept changes"); + add_hotkey(hotkey_grid, this, "tool/styling_assistant/preview", "Preview changes"); + add_hotkey(hotkey_grid, this, "grid/line/prev", "Previous line"); + add_hotkey(hotkey_grid, this, "grid/line/next", "Next line"); + add_hotkey(hotkey_grid, this, "video/play/line", "Play video"); + add_hotkey(hotkey_grid, this, "audio/play/selection", "Play audio"); + hotkey_grid->Add(new wxStaticText(this, -1, _("Click on list"))); hotkey_grid->Add(new wxStaticText(this, -1, _("Select style"))); hotkey_box->Add(hotkey_grid, 0, wxEXPAND | wxBOTTOM, 5);