mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-23 17:30:17 +01:00
TranslatableString for titles, names, labels of wxDialogWrappers...
... Found one missed translation in CommandTargets.cpp
This commit is contained in:
@@ -62,13 +62,13 @@ BEGIN_EVENT_TABLE(MacroCommandDialog, wxDialogWrapper)
|
||||
END_EVENT_TABLE();
|
||||
|
||||
MacroCommandDialog::MacroCommandDialog(wxWindow * parent, wxWindowID id):
|
||||
wxDialogWrapper(parent, id, _("Select Command"),
|
||||
wxDialogWrapper(parent, id, XO("Select Command"),
|
||||
wxDefaultPosition, wxDefaultSize,
|
||||
wxCAPTION | wxRESIZE_BORDER)
|
||||
, mCatalog( GetActiveProject() )
|
||||
{
|
||||
SetLabel(_("Select Command")); // Provide visual label
|
||||
SetName(_("Select Command")); // Provide audible label
|
||||
SetLabel(XO("Select Command")); // Provide visual label
|
||||
SetName(XO("Select Command")); // Provide audible label
|
||||
Populate();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user