7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-14 17:19:35 +00:00

Writeable -> Writable

This commit is contained in:
Seth Hillbrand 2021-11-08 15:42:09 -08:00
parent de93a071e2
commit 6e5a918377
3 changed files with 7 additions and 7 deletions

View File

@ -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;

View File

@ -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 )

View File

@ -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;
}