Browse Source

libedit: menu bar UI compliance tweaks

pull/3/merge
Chris Pavlina 9 years ago
parent
commit
9bb1b33e89
  1. 8
      eeschema/menubar_libedit.cpp

8
eeschema/menubar_libedit.cpp

@ -3,7 +3,7 @@
*
* Copyright (C) 2007 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
* Copyright (C) 2009-2011 Wayne Stambaugh <stambaughw@verizon.net>
* Copyright (C) 1992-2016 KiCad Developers, see AUTHORS.txt for contributors.
* Copyright (C) 1992-2017 KiCad Developers, see AUTHORS.txt for contributors.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@ -80,7 +80,7 @@ void LIB_EDIT_FRAME::ReCreateMenuBar()
// Save current library as...
AddMenuItem( fileMenu,
ID_LIBEDIT_SAVE_CURRENT_LIB_AS,
_( "Save Current Library &As" ),
_( "Save Current Library &As..." ),
_( "Save current active library as..." ),
KiBitmap( save_as_xpm ) );
@ -90,14 +90,14 @@ void LIB_EDIT_FRAME::ReCreateMenuBar()
// Export as png file
AddMenuItem( fileMenu,
ID_LIBEDIT_GEN_PNG_FILE,
_( "Create &PNG File from Screen" ),
_( "Create &PNG File from Screen..." ),
_( "Create a PNG file from the component displayed on screen" ),
KiBitmap( plot_xpm ) );
// Export as SVG file
AddMenuItem( fileMenu,
ID_LIBEDIT_GEN_SVG_FILE,
_( "Create S&VG File" ),
_( "Create S&VG File..." ),
_( "Create a SVG file from the current loaded component" ),
KiBitmap( plot_svg_xpm ) );

Loading…
Cancel
Save