1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-04 16:14:00 +01: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. // is none.
if( number >= 0 ){ if( number >= 0 ){
/* i18n-hint: The %02i is the project number, the %s is the project name.*/ /* 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 ); name.empty() ? "<untitled>" : (const char *)name );
} }
// If we are not showing numbers, then <untitled> shows as 'Audacity'. // If we are not showing numbers, then <untitled> shows as 'Audacity'.