Make strings only used in debug mode not translatable.

This commit is contained in:
jean-pierre charras
2016-04-21 09:19:08 +02:00
parent 2b6889bc7a
commit d7f1400e44
4 changed files with 23 additions and 23 deletions
+1 -1
View File
@@ -272,7 +272,7 @@ static bool validateLongEntry( const wxTextEntry& entry,
if( !entry.GetValue().ToLong( &dest ) )
{
wxString err;
err.Printf( _("Bad integral value for %s: %s"), description, entry.GetValue() );
err.Printf( _("Bad numeric value for %s: %s"), description, entry.GetValue() );
errors.Add( err );
ok = false;
}