1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-17 00:07:54 +01:00

TranslatableString caption & message in MessageBoxException

This commit is contained in:
Paul Licameli
2019-12-07 10:04:35 -05:00
parent 54e2bbd8ff
commit 503ccabdd8
16 changed files with 50 additions and 53 deletions

View File

@@ -13,10 +13,9 @@ NotYetAvailableException::~NotYetAvailableException()
{
}
wxString NotYetAvailableException::ErrorMessage() const
TranslatableString NotYetAvailableException::ErrorMessage() const
{
return wxString::Format(
_("This operation cannot be done until importation of %s completes."),
fileName.GetFullName()
);
return
XO("This operation cannot be done until importation of %s completes.")
.Format( fileName.GetFullName() );
}