mirror of https://github.com/odrling/Aegisub
Fix pointlessly different strings in the translation and styling assistant
Originally committed to SVN as r6581.
This commit is contained in:
parent
212013ccdf
commit
4153bbc10b
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue