Minor string changes: "eeschema" / "pcbnew" in tooltips, and power port terminology
This commit is contained in:
parent
adc5c9eb20
commit
ef83d01455
|
@ -225,7 +225,7 @@ PANEL_COMMON_SETTINGS_BASE::PANEL_COMMON_SETTINGS_BASE( wxWindow* parent, wxWind
|
|||
|
||||
m_cbRememberOpenFiles = new wxCheckBox( sbSizer5->GetStaticBox(), wxID_ANY, _("Remember open files for next project launch"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||
m_cbRememberOpenFiles->SetValue(true);
|
||||
m_cbRememberOpenFiles->SetToolTip( _("If checked, launching a project will also launch tools such as eeschema and pcbnew with previously open files") );
|
||||
m_cbRememberOpenFiles->SetToolTip( _("If checked, launching a project will also launch tools such as the schematic and board editors with previously open files") );
|
||||
|
||||
sbSizer5->Add( m_cbRememberOpenFiles, 0, wxBOTTOM|wxRIGHT, 5 );
|
||||
|
||||
|
|
|
@ -2140,7 +2140,7 @@
|
|||
<property name="style"></property>
|
||||
<property name="subclass">; ; forward_declare</property>
|
||||
<property name="toolbar_pane">0</property>
|
||||
<property name="tooltip">If checked, launching a project will also launch tools such as eeschema and pcbnew with previously open files</property>
|
||||
<property name="tooltip">If checked, launching a project will also launch tools such as the schematic and board editors with previously open files</property>
|
||||
<property name="validator_data_type"></property>
|
||||
<property name="validator_style">wxFILTER_NONE</property>
|
||||
<property name="validator_type">wxDefaultValidator</property>
|
||||
|
|
|
@ -175,7 +175,7 @@ DIALOG_LIB_SYMBOL_PROPERTIES_BASE::DIALOG_LIB_SYMBOL_PROPERTIES_BASE( wxWindow*
|
|||
sbSizerSymbol->Add( m_AsConvertButt, 0, wxRIGHT|wxLEFT, 5 );
|
||||
|
||||
m_OptionPower = new wxCheckBox( sbSizerSymbol->GetStaticBox(), wxID_ANY, _("Define as power symbol"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||
m_OptionPower->SetToolTip( _("Setting this option makes the symbol in question appear in the\n\"add power port\" dialog. It will lock the value text to protect it\nfrom editing in Eeschema. The symbol will not be included in\nthe BOM and cannot be assigned a footprint.") );
|
||||
m_OptionPower->SetToolTip( _("Setting this option makes the symbol in question appear in the\n\"add power symbol\" dialog. It will lock the value text to protect it\nfrom editing in the schematic. The symbol will not be included in\nthe BOM and cannot be assigned a footprint.") );
|
||||
|
||||
sbSizerSymbol->Add( m_OptionPower, 0, wxALL, 5 );
|
||||
|
||||
|
|
|
@ -1293,7 +1293,7 @@
|
|||
<property name="style"></property>
|
||||
<property name="subclass"></property>
|
||||
<property name="toolbar_pane">0</property>
|
||||
<property name="tooltip">Setting this option makes the symbol in question appear in the
"add power port" dialog. It will lock the value text to protect it
from editing in Eeschema. The symbol will not be included in
the BOM and cannot be assigned a footprint.</property>
|
||||
<property name="tooltip">Setting this option makes the symbol in question appear in the
"add power symbol" dialog. It will lock the value text to protect it
from editing in the schematic. The symbol will not be included in
the BOM and cannot be assigned a footprint.</property>
|
||||
<property name="validator_data_type"></property>
|
||||
<property name="validator_style">wxFILTER_NONE</property>
|
||||
<property name="validator_type">wxDefaultValidator</property>
|
||||
|
|
|
@ -289,10 +289,10 @@ TOOL_ACTION EE_ACTIONS::placeSymbol( "eeschema.InteractiveDrawing.placeSymbol",
|
|||
_( "Add Symbol" ), _( "Add a symbol" ),
|
||||
BITMAPS::add_component, AF_ACTIVATE );
|
||||
|
||||
TOOL_ACTION EE_ACTIONS::placePower( "eeschema.InteractiveDrawing.placePowerPort",
|
||||
TOOL_ACTION EE_ACTIONS::placePower( "eeschema.InteractiveDrawing.placePowerSymbol",
|
||||
AS_GLOBAL,
|
||||
'P', LEGACY_HK_NAME( "Add Power" ),
|
||||
_( "Add Power" ), _( "Add a power port" ),
|
||||
_( "Add Power" ), _( "Add a power symbol" ),
|
||||
BITMAPS::add_power, AF_ACTIVATE );
|
||||
|
||||
TOOL_ACTION EE_ACTIONS::placeNoConnect( "eeschema.InteractiveDrawing.placeNoConnect",
|
||||
|
@ -625,7 +625,7 @@ TOOL_ACTION EE_ACTIONS::assignFootprints( "eeschema.EditorControl.assignFootprin
|
|||
TOOL_ACTION EE_ACTIONS::importFPAssignments( "eeschema.EditorControl.importFPAssignments",
|
||||
AS_GLOBAL, 0, "",
|
||||
_( "Import Footprint Assignments..." ),
|
||||
_( "Import symbol footprint assignments from .cmp file created by Pcbnew" ),
|
||||
_( "Import symbol footprint assignments from .cmp file created by board editor" ),
|
||||
BITMAPS::import_footprint_names );
|
||||
|
||||
TOOL_ACTION EE_ACTIONS::annotate( "eeschema.EditorControl.annotate",
|
||||
|
@ -918,4 +918,4 @@ TOOL_ACTION EE_ACTIONS::saveCurrSheetCopyAs( "eeschema.EditorControl.saveCurrShe
|
|||
|
||||
// Drag and drop
|
||||
TOOL_ACTION EE_ACTIONS::ddAppendFile( "eeschema.EditorControl.ddAppendFile",
|
||||
AS_GLOBAL );
|
||||
AS_GLOBAL );
|
||||
|
|
|
@ -827,7 +827,7 @@ TOOL_ACTION PCB_ACTIONS::showNetInRatsnest( "pcbnew.EditorControl.showNet",
|
|||
|
||||
TOOL_ACTION PCB_ACTIONS::showEeschema( "pcbnew.EditorControl.showEeschema",
|
||||
AS_GLOBAL, 0, "",
|
||||
_( "Switch to Schematic Editor" ), _( "Open schematic in Eeschema" ),
|
||||
_( "Switch to Schematic Editor" ), _( "Open in schematic editor" ),
|
||||
BITMAPS::icon_eeschema_24 );
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue