1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 07:39:42 +02:00

Corrected version of Ed's patch #18 to localise some strings.

This commit is contained in:
james.k.crook 2010-02-10 23:10:53 +00:00
parent 8704db3f63
commit 44596429a7
2 changed files with 3 additions and 1 deletions

View File

@ -74,6 +74,8 @@ bool ApplyAndSendResponse::Apply(CommandExecutionContext context)
{ {
bool result = mCommand->Apply(context); bool result = mCommand->Apply(context);
wxString response = GetName(); wxString response = GetName();
// These three strings are deliberately not localised.
// They are used in script responses and always happen in English.
response += wxT(" finished: "); response += wxT(" finished: ");
if (result) if (result)
{ {

View File

@ -86,7 +86,7 @@ MultiDialog::MultiDialog(wxString prompt,
mBox->SetName(_("Please select an action")); mBox->SetName(_("Please select an action"));
mBox->SetSelection(0); mBox->SetSelection(0);
wxButton *ok = new wxButton(this, wxID_OK, wxT("OK")); wxButton *ok = new wxButton(this, wxID_OK, _("OK"));
vSizer->Add(mBox, 1, wxGROW|wxALIGN_CENTER|wxALL, 5); vSizer->Add(mBox, 1, wxGROW|wxALIGN_CENTER|wxALL, 5);
vSizer->Add(ok, 0, wxALIGN_CENTER|wxALL, 5); vSizer->Add(ok, 0, wxALIGN_CENTER|wxALL, 5);