Fix pointlessly different strings in the translation and styling assistant

Originally committed to SVN as r6581.
This commit is contained in:
Thomas Goyne 2012-03-12 23:35:11 +00:00
parent 212013ccdf
commit 4153bbc10b
1 changed files with 7 additions and 7 deletions

View File

@ -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);