libedit: menu bar UI compliance tweaks

This commit is contained in:
Chris Pavlina 2017-02-07 16:19:48 -05:00
parent 93a90926c2
commit 9bb1b33e89
1 changed files with 4 additions and 4 deletions

View File

@ -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 ) );