Browse Source

Writeable -> Writable

6.0.7
Seth Hillbrand 4 years ago
parent
commit
6e5a918377
  1. 4
      common/settings/settings_manager.cpp
  2. 4
      eeschema/symbol_editor/symbol_editor.cpp
  3. 6
      eeschema/tools/symbol_editor_control.cpp

4
common/settings/settings_manager.cpp

@ -1086,7 +1086,7 @@ bool SETTINGS_MANAGER::BackupProject( REPORTER& aReporter ) const
if( !target.IsDirWritable() )
{
wxLogTrace( traceSettings, "Backup directory %s is not writeable", target.GetPath() );
wxLogTrace( traceSettings, "Backup directory %s is not writable", target.GetPath() );
return false;
}
@ -1149,7 +1149,7 @@ bool SETTINGS_MANAGER::TriggerBackupIfNeeded( REPORTER& aReporter ) const
wxFileName projectPath( Prj().GetProjectPath() );
// Skip backup if project path isn't valid or writeable
// Skip backup if project path isn't valid or writable
if( !projectPath.IsOk() || !projectPath.Exists() || !projectPath.IsDirWritable() )
return true;

4
eeschema/symbol_editor/symbol_editor.cpp

@ -571,7 +571,7 @@ void SYMBOL_EDIT_FRAME::Save()
if( m_libMgr->IsLibraryReadOnly( libName ) )
{
wxString msg = wxString::Format( _( "Symbol library '%s' is not writeable." ),
wxString msg = wxString::Format( _( "Symbol library '%s' is not writable." ),
libName );
wxString msg2 = _( "You must save to a different location." );
@ -1170,7 +1170,7 @@ bool SYMBOL_EDIT_FRAME::saveAllLibraries( bool aRequireConfirmation )
}
else
{
msg.Printf( _( "Symbol library '%s' is not writeable." ), libNickname );
msg.Printf( _( "Symbol library '%s' is not writable." ), libNickname );
msg2 = _( "You must save to a different location." );
if( dirtyCount == 1 )

6
eeschema/tools/symbol_editor_control.cpp

@ -167,7 +167,7 @@ int SYMBOL_EDITOR_CONTROL::AddSymbol( const TOOL_EVENT& aEvent )
if( editFrame->GetLibManager().IsLibraryReadOnly( libName ) )
{
msg.Printf( _( "Symbol library '%s' is not writeable." ), libName );
msg.Printf( _( "Symbol library '%s' is not writable." ), libName );
m_frame->ShowInfoBarError( msg );
return 0;
}
@ -237,7 +237,7 @@ int SYMBOL_EDITOR_CONTROL::CutCopyDelete( const TOOL_EVENT& aEvt )
if( editFrame->GetLibManager().IsLibraryReadOnly( libName ) )
{
msg.Printf( _( "Symbol library '%s' is not writeable." ), libName );
msg.Printf( _( "Symbol library '%s' is not writable." ), libName );
m_frame->ShowInfoBarError( msg );
return 0;
}
@ -262,7 +262,7 @@ int SYMBOL_EDITOR_CONTROL::DuplicateSymbol( const TOOL_EVENT& aEvent )
if( editFrame->GetLibManager().IsLibraryReadOnly( libName ) )
{
msg.Printf( _( "Symbol library '%s' is not writeable." ), libName );
msg.Printf( _( "Symbol library '%s' is not writable." ), libName );
m_frame->ShowInfoBarError( msg );
return 0;
}

Loading…
Cancel
Save