mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-21 06:01:13 +02:00
Substitute, don't concatenate, when composing localized strings...
... Avoid English syntax bias.
This commit is contained in:
@@ -307,10 +307,11 @@ void AudacityLogger::OnSave(wxCommandEvent & WXUNUSED(e))
|
||||
}
|
||||
|
||||
if (!mText->SaveFile(fName)) {
|
||||
AudacityMessageBox(_("Couldn't save log to file: ") + fName,
|
||||
_("Warning"),
|
||||
wxICON_EXCLAMATION,
|
||||
mFrame.get());
|
||||
AudacityMessageBox(
|
||||
wxString::Format( _("Couldn't save log to file: %s"), fName ),
|
||||
_("Warning"),
|
||||
wxICON_EXCLAMATION,
|
||||
mFrame.get());
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user