From 6e5a9183778b0dbe2939d21b63d5bd84d1e3d422 Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Mon, 8 Nov 2021 15:42:09 -0800 Subject: [PATCH] Writeable -> Writable --- common/settings/settings_manager.cpp | 4 ++-- eeschema/symbol_editor/symbol_editor.cpp | 4 ++-- eeschema/tools/symbol_editor_control.cpp | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/common/settings/settings_manager.cpp b/common/settings/settings_manager.cpp index 1cf68842c4..684c19208a 100644 --- a/common/settings/settings_manager.cpp +++ b/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; diff --git a/eeschema/symbol_editor/symbol_editor.cpp b/eeschema/symbol_editor/symbol_editor.cpp index 6dc9214307..5d3b66c951 100644 --- a/eeschema/symbol_editor/symbol_editor.cpp +++ b/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 ) diff --git a/eeschema/tools/symbol_editor_control.cpp b/eeschema/tools/symbol_editor_control.cpp index c83b2e14b5..713f124ed0 100644 --- a/eeschema/tools/symbol_editor_control.cpp +++ b/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; }