kicad-developers team mailing list archive
-
kicad-developers team
-
Mailing list archive
-
Message #19913
wrong messages - please apply patch
See attach.
--
Marco Ciampa
I know a joke about UDP, but you might not get it.
+------------------------+
| GNU/Linux User #78271 |
| FSFE fellow #364 |
+------------------------+
=== modified file 'common/dialogs/dialog_env_var_config.cpp'
--- common/dialogs/dialog_env_var_config.cpp 2015-08-17 00:30:29 +0000
+++ common/dialogs/dialog_env_var_config.cpp 2015-08-23 21:19:47 +0000
@@ -116,7 +116,7 @@
// Name cannot be empty.
if( name.IsEmpty() )
{
- wxMessageBox( _( "Cannot have duplicate environment variable name cannot be empty." ),
+ wxMessageBox( _( "Environment variable name cannot be empty." ),
caption, wxOK | wxICON_ERROR, this );
m_grid->GoToCell( row, 0 );
m_grid->SetGridCursor( row, 0 );
@@ -126,7 +126,7 @@
// Value cannot be empty.
if( value.IsEmpty() )
{
- wxMessageBox( _( "Cannot have environment variable value cannot be empty." ), caption,
+ wxMessageBox( _( "Environment variable value cannot be empty." ), caption,
wxOK | wxICON_ERROR, this );
m_grid->GoToCell( row, 1 );
m_grid->SetGridCursor( row, 1 );
Follow ups