1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-31 16:09:28 +02:00

Fix untranslated string.

Thanks Paul.
This commit is contained in:
James Crook 2020-04-05 22:22:32 +01:00
parent ead26dd2aa
commit 2e1267582b

View File

@ -113,7 +113,7 @@ void ProjectFileIO::SetProjectTitle( int number)
// is none.
if( number >= 0 ){
/* i18n-hint: The %02i is the project number, the %s is the project name.*/
name = wxString::Format( _TS("[Project %02i] Audacity \"%s\""), number+1 ,
name = wxString::Format( _("[Project %02i] Audacity \"%s\""), number+1 ,
name.empty() ? "<untitled>" : (const char *)name );
}
// If we are not showing numbers, then <untitled> shows as 'Audacity'.