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:
parent
de93a071e2
commit
6e5a918377
common/settings
eeschema
@ -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;
|
||||
|
||||
|
@ -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 )
|
||||
|
@ -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…
Reference in New Issue
Block a user