Make app names and tooltips consistent.
Fixes: lp:1795236 * https://bugs.launchpad.net/kicad/+bug/1795236
This commit is contained in:
parent
f06bf81651
commit
7bcb5fd720
|
@ -69,42 +69,44 @@ void LAUNCHER_PANEL::CreateCommandToolbar()
|
|||
|
||||
AddButton( ID_TO_SCH,
|
||||
KiBitmap( icon_eeschema_xpm ),
|
||||
_( "Schematic layout editor" ) );
|
||||
_( "Schematic Layout Editor" ) );
|
||||
|
||||
AddButton( ID_TO_SCH_LIB_EDITOR,
|
||||
KiBitmap( icon_libedit_xpm ),
|
||||
_( "Symbol library editor" ) );
|
||||
_( "Symbol Library Editor" ) );
|
||||
|
||||
separator = new wxStaticLine( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLI_VERTICAL );
|
||||
m_buttonSizer->Add( separator, 0, wxEXPAND | wxALL, 8 );
|
||||
|
||||
AddButton( ID_TO_PCB,
|
||||
KiBitmap( icon_pcbnew_xpm ),
|
||||
_( "PCB layout editor" ) );
|
||||
_( "PCB Layout Editor" ) );
|
||||
|
||||
AddButton( ID_TO_PCB_FP_EDITOR,
|
||||
KiBitmap( icon_modedit_xpm ),
|
||||
_( "Footprint library editor" ) );
|
||||
_( "Footprint Library Editor" ) );
|
||||
|
||||
separator = new wxStaticLine( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLI_VERTICAL );
|
||||
m_buttonSizer->Add( separator, 0, wxEXPAND | wxALL, 8 );
|
||||
|
||||
AddButton( ID_TO_GERBVIEW,
|
||||
KiBitmap( icon_gerbview_xpm ),
|
||||
_( "Gerber viewer" ) );
|
||||
_( "Gerber Viewer" ) );
|
||||
|
||||
AddButton( ID_TO_BITMAP_CONVERTER,
|
||||
KiBitmap( icon_bitmap2component_xpm ),
|
||||
_( "Import bitmap\n"
|
||||
"Convert bitmap images to schematic or PCB elements" ) );
|
||||
_( "Bitmap to Component Converter\n"
|
||||
"Convert bitmap images to schematic or PCB components" ) );
|
||||
|
||||
AddButton( ID_TO_PCB_CALCULATOR,
|
||||
KiBitmap( icon_pcbcalculator_xpm ),
|
||||
_( "Calculator tools" ) );
|
||||
_( "PCB Calculator\n"
|
||||
"Run component calculations, track width calculations, etc." ) );
|
||||
|
||||
AddButton( ID_TO_PL_EDITOR,
|
||||
KiBitmap( icon_pagelayout_editor_xpm ),
|
||||
_( "Worksheet layout editor" ) );
|
||||
_( "Page Layout Editor\n"
|
||||
"Edit worksheet graphics and text" ) );
|
||||
|
||||
// Add a stretchy spacer to make button bar fill the entire screen
|
||||
m_buttonSizer->AddStretchSpacer();
|
||||
|
|
|
@ -362,7 +362,7 @@ void KICAD_MANAGER_FRAME::ReCreateMenuBar()
|
|||
kicad_Manager_Hokeys_Descr, HK_RUN_LIBEDIT );
|
||||
AddMenuItem( toolsMenu, ID_TO_SCH_LIB_EDITOR, msg, KiBitmap( libedit_xpm ) );
|
||||
|
||||
msg = AddHotkeyName( _( "Edit PCB Layout" ),
|
||||
msg = AddHotkeyName( _( "Edit PCB" ),
|
||||
kicad_Manager_Hokeys_Descr, HK_RUN_PCBNEW );
|
||||
AddMenuItem( toolsMenu, ID_TO_PCB, msg, KiBitmap( pcbnew_xpm ) );
|
||||
|
||||
|
@ -377,18 +377,17 @@ void KICAD_MANAGER_FRAME::ReCreateMenuBar()
|
|||
msg = AddHotkeyName( _( "Convert Image" ),
|
||||
kicad_Manager_Hokeys_Descr, HK_RUN_BM2COMPONENT );
|
||||
AddMenuItem( toolsMenu, ID_TO_BITMAP_CONVERTER, msg,
|
||||
_( "Bitmap2Component - Convert bitmap images to schematic\n"
|
||||
"or PCB elements" ),
|
||||
_( "Convert bitmap images to schematic or PCB components" ),
|
||||
KiBitmap( bitmap2component_xpm ) );
|
||||
|
||||
msg = AddHotkeyName( _( "Run PCB Calculator" ), kicad_Manager_Hokeys_Descr, HK_RUN_PCBCALCULATOR );
|
||||
msg = AddHotkeyName( _( "Calculator Tools" ), kicad_Manager_Hokeys_Descr, HK_RUN_PCBCALCULATOR );
|
||||
AddMenuItem( toolsMenu, ID_TO_PCB_CALCULATOR, msg,
|
||||
_( "Pcb calculator - Calculator for components, track width, etc." ),
|
||||
_( "Run component calculations, track width calculations, etc." ),
|
||||
KiBitmap( calculator_xpm ) );
|
||||
|
||||
msg = AddHotkeyName( _( "Edit Page Layout" ), kicad_Manager_Hokeys_Descr, HK_RUN_PLEDITOR );
|
||||
msg = AddHotkeyName( _( "Edit Worksheet" ), kicad_Manager_Hokeys_Descr, HK_RUN_PLEDITOR );
|
||||
AddMenuItem( toolsMenu, ID_TO_PL_EDITOR, msg,
|
||||
_( "Pl editor - Worksheet layout editor" ),
|
||||
_( "Edit worksheet graphics and text" ),
|
||||
KiBitmap( pagelayout_load_xpm ) );
|
||||
|
||||
// Menu Help:
|
||||
|
|
Loading…
Reference in New Issue