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