Minor menu text consistency improvements.
This commit is contained in:
parent
b0f9864bc4
commit
194bd1d617
|
@ -183,11 +183,11 @@ void DISPLAY_FOOTPRINTS_FRAME::ReCreateOptToolbar()
|
|||
|
||||
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_UNIT_INCH, wxEmptyString,
|
||||
KiBitmap( unit_inch_xpm ),
|
||||
_( "Units in inches" ), wxITEM_CHECK );
|
||||
_( "Set units to inches" ), wxITEM_CHECK );
|
||||
|
||||
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_UNIT_MM, wxEmptyString,
|
||||
KiBitmap( unit_mm_xpm ),
|
||||
_( "Units in millimeters" ), wxITEM_CHECK );
|
||||
_( "Set units to millimeters" ), wxITEM_CHECK );
|
||||
|
||||
#ifndef __APPLE__
|
||||
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_CURSOR, wxEmptyString,
|
||||
|
|
|
@ -65,7 +65,7 @@ void LIB_EDIT_FRAME::ReCreateMenuBar()
|
|||
// Select current library
|
||||
AddMenuItem( fileMenu,
|
||||
ID_LIBEDIT_SELECT_CURRENT_LIB,
|
||||
_( "&Current Library" ),
|
||||
_( "Select &Current Library" ),
|
||||
_( "Select working library" ),
|
||||
KiBitmap( library_xpm ) );
|
||||
fileMenu->AppendSeparator();
|
||||
|
|
|
@ -232,11 +232,12 @@ void LIB_EDIT_FRAME::CreateOptionToolbar()
|
|||
_( "Turn grid off" ), wxITEM_CHECK );
|
||||
|
||||
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_UNIT_INCH, wxEmptyString,
|
||||
KiBitmap( unit_inch_xpm ), _( "Units in inches" ), wxITEM_CHECK );
|
||||
KiBitmap( unit_inch_xpm ), _( "Set units to inches" ),
|
||||
wxITEM_CHECK );
|
||||
|
||||
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_UNIT_MM, wxEmptyString,
|
||||
KiBitmap( unit_mm_xpm ),
|
||||
_( "Units in millimeters" ), wxITEM_CHECK );
|
||||
_( "Set units to millimeters" ), wxITEM_CHECK );
|
||||
|
||||
#ifndef __APPLE__
|
||||
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_CURSOR, wxEmptyString,
|
||||
|
|
|
@ -262,14 +262,14 @@ void KICAD_MANAGER_FRAME::ReCreateMenuBar()
|
|||
fileMenu->AppendSeparator();
|
||||
AddMenuItem( fileMenu,
|
||||
ID_SAVE_AND_ZIP_FILES,
|
||||
_( "&Archive" ),
|
||||
_( "&Archive Current Project" ),
|
||||
_( "Archive project files in zip archive" ),
|
||||
KiBitmap( zip_xpm ) );
|
||||
|
||||
// Unarchive
|
||||
AddMenuItem( fileMenu,
|
||||
ID_READ_ZIP_ARCHIVE,
|
||||
_( "&Unarchive" ),
|
||||
_( "&Unarchive Project" ),
|
||||
_( "Unarchive project files from zip file" ),
|
||||
KiBitmap( unzip_xpm ) );
|
||||
|
||||
|
|
|
@ -216,11 +216,11 @@ void FOOTPRINT_EDIT_FRAME::ReCreateOptToolbar()
|
|||
|
||||
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_UNIT_INCH, wxEmptyString,
|
||||
KiBitmap( unit_inch_xpm ),
|
||||
_( "Units in inches" ), wxITEM_CHECK );
|
||||
_( "Set units to inches" ), wxITEM_CHECK );
|
||||
|
||||
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_UNIT_MM, wxEmptyString,
|
||||
KiBitmap( unit_mm_xpm ),
|
||||
_( "Units in millimeters" ), wxITEM_CHECK );
|
||||
_( "Set units to millimeters" ), wxITEM_CHECK );
|
||||
|
||||
#ifndef __APPLE__
|
||||
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_CURSOR, wxEmptyString,
|
||||
|
|
|
@ -338,10 +338,10 @@ void PCB_EDIT_FRAME::ReCreateOptToolbar()
|
|||
_( "Display polar coordinates" ), wxITEM_CHECK );
|
||||
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_UNIT_INCH, wxEmptyString,
|
||||
KiBitmap( unit_inch_xpm ),
|
||||
_( "Units in inches" ), wxITEM_CHECK );
|
||||
_( "Set units to inches" ), wxITEM_CHECK );
|
||||
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_UNIT_MM, wxEmptyString,
|
||||
KiBitmap( unit_mm_xpm ),
|
||||
_( "Units in millimeters" ), wxITEM_CHECK );
|
||||
_( "Set units to millimeters" ), wxITEM_CHECK );
|
||||
|
||||
#ifndef __APPLE__
|
||||
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_CURSOR, wxEmptyString,
|
||||
|
|
Loading…
Reference in New Issue