mirror of https://github.com/odrling/Aegisub
Make popup-menu for insert-mode time edit boxes strings translateable.
The strings already exist so this shouldn't invalidate existing translations. Updates #791, needs porting to trunk. Originally committed to SVN as r3965.
This commit is contained in:
parent
73400860fc
commit
bff5412d82
|
@ -302,8 +302,8 @@ void TimeEdit::OnMouseEvent(wxMouseEvent &event) {
|
|||
if (event.RightUp()) {
|
||||
if (!byFrame && Options.AsBool(_T("Insert Mode on Time Boxes"))) {
|
||||
wxMenu menu;
|
||||
menu.Append(Time_Edit_Copy,_T("&Copy"));
|
||||
menu.Append(Time_Edit_Paste,_T("&Paste"));
|
||||
menu.Append(Time_Edit_Copy,_("&Copy"));
|
||||
menu.Append(Time_Edit_Paste,_("&Paste"));
|
||||
PopupMenu(&menu);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue