From 2e1267582b954fcc48877ee3370eac3588d72194 Mon Sep 17 00:00:00 2001 From: James Crook Date: Sun, 5 Apr 2020 22:22:32 +0100 Subject: [PATCH] Fix untranslated string. Thanks Paul. --- src/ProjectFileIO.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ProjectFileIO.cpp b/src/ProjectFileIO.cpp index 5e587347f..791a12029 100644 --- a/src/ProjectFileIO.cpp +++ b/src/ProjectFileIO.cpp @@ -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() ? "" : (const char *)name ); } // If we are not showing numbers, then shows as 'Audacity'.