1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-02 22:27:10 +01:00

Fix some untranslated prompts and messages...

... Even if some commented out.  Such don't enlarge the .pot file, but make
them right in case they are ever un-commented.
This commit is contained in:
Paul Licameli
2017-09-08 17:31:45 -04:00
parent 3b7e99273e
commit 70b5076b0b
7 changed files with 35 additions and 29 deletions

View File

@@ -366,13 +366,13 @@ double BatchCommands::GetEndTime()
AudacityProject *project = GetActiveProject();
if( project == NULL )
{
//wxMessageBox( wxT("No project to process!") );
//wxMessageBox( _("No project to process!") );
return -1.0;
}
TrackList * tracks = project->GetTracks();
if( tracks == NULL )
{
//wxMessageBox( wxT("No tracks to process!") );
//wxMessageBox( _("No tracks to process!") );
return -1.0;
}
@@ -385,14 +385,14 @@ bool BatchCommands::IsMono()
AudacityProject *project = GetActiveProject();
if( project == NULL )
{
//wxMessageBox( wxT("No project and no Audio to process!") );
//wxMessageBox( _("No project and no Audio to process!") );
return false;
}
TrackList * tracks = project->GetTracks();
if( tracks == NULL )
{
//wxMessageBox( wxT("No tracks to process!") );
//wxMessageBox( _("No tracks to process!") );
return false;
}