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:
@@ -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() );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user