Commit ec8bf0c1 authored by Wayne Stambaugh's avatar Wayne Stambaugh

Library configuration menu naming improvements.

* Add footprint and drop table from the Pcbnew footprint library table menu
  entry to make it clear to new users.
* Add component to the Eeschema library configuration menu entry.
parent 74154480
......@@ -113,7 +113,7 @@ void CVPCB_MAINFRAME::ReCreateMenuBar()
wxMenu* preferencesMenu = new wxMenu;
AddMenuItem( preferencesMenu, ID_CVPCB_LIB_TABLE_EDIT,
_( "Edit Li&brary Table" ), _( "Setup footprint libraries" ),
_( "Footprint Li&braries" ), _( "Configure footprint libraries" ),
KiBitmap( library_table_xpm ) );
AddMenuItem( preferencesMenu, ID_CVPCB_EQUFILES_LIST_EDIT,
......
......@@ -378,8 +378,8 @@ void SCH_EDIT_FRAME::ReCreateMenuBar()
// Library
AddMenuItem( preferencesMenu,
ID_CONFIG_REQ,
_( "Set Active &Libraries" ),
_( "Set active library list and library paths" ),
_( "Component &Libraries" ),
_( "Configure component libraries and paths" ),
KiBitmap( library_xpm ) );
// Colors
......
......@@ -227,8 +227,8 @@ void LIB_EDIT_FRAME::ReCreateMenuBar()
// Library list
AddMenuItem( preferencesMenu,
ID_CONFIG_REQ,
_( "Set Active &Libraries" ),
_( "Set active library list and library paths" ),
_( "Component &Libraries" ),
_( "Configure component libraries and paths" ),
KiBitmap( library_xpm ) );
// Default values and options
......
......@@ -282,7 +282,7 @@ void FOOTPRINT_EDIT_FRAME::ReCreateMenuBar()
wxMenu* prefs_menu = new wxMenu;
AddMenuItem( prefs_menu, ID_PCB_LIB_TABLE_EDIT,
_( "Li&brary Tables" ), _( "Setup footprint libraries" ),
_( "Footprint Li&braries" ), _( "Configure footprint libraries" ),
KiBitmap( library_table_xpm ) );
// Settings
......
......@@ -480,7 +480,7 @@ void PCB_EDIT_FRAME::ReCreateMenuBar()
wxMenu* configmenu = new wxMenu;
AddMenuItem( configmenu, ID_PCB_LIB_TABLE_EDIT,
_( "Li&brary Tables" ), _( "Setup footprint libraries" ),
_( "Footprint Li&braries" ), _( "Configure footprint libraries" ),
KiBitmap( library_table_xpm ) );
// Colors and Visibility are also handled by the layers manager toolbar
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment