mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-29 23:29:41 +02:00
Corrected version of Ed's patch #18 to localise some strings.
This commit is contained in:
parent
8704db3f63
commit
44596429a7
@ -74,6 +74,8 @@ bool ApplyAndSendResponse::Apply(CommandExecutionContext context)
|
||||
{
|
||||
bool result = mCommand->Apply(context);
|
||||
wxString response = GetName();
|
||||
// These three strings are deliberately not localised.
|
||||
// They are used in script responses and always happen in English.
|
||||
response += wxT(" finished: ");
|
||||
if (result)
|
||||
{
|
||||
|
@ -86,7 +86,7 @@ MultiDialog::MultiDialog(wxString prompt,
|
||||
mBox->SetName(_("Please select an action"));
|
||||
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(ok, 0, wxALIGN_CENTER|wxALL, 5);
|
||||
|
Loading…
x
Reference in New Issue
Block a user