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:
Niels Martin Hansen 2010-01-10 16:00:10 +00:00
parent 73400860fc
commit bff5412d82
1 changed files with 2 additions and 2 deletions

View File

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