2010-06-30 11:15:34 +00:00
|
|
|
/**
|
2010-12-14 15:56:30 +00:00
|
|
|
* @file pcbnew/help_common_strings.h
|
2010-06-30 11:15:34 +00:00
|
|
|
* strings common to toolbars and menubar
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* These strings are used in menus and tools, that do the same command
|
2011-05-03 12:57:44 +00:00
|
|
|
* But they are internationalized, and therefore must be created
|
2010-06-30 11:15:34 +00:00
|
|
|
* at run time, on the fly.
|
|
|
|
* So they cannot be static.
|
|
|
|
*
|
2011-02-05 02:21:11 +00:00
|
|
|
* Therefore they are defined by \#define, used inside menu constructors
|
2010-06-30 11:15:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#define HELP_UNDO _( "Undo last edition" )
|
|
|
|
#define HELP_REDO _( "Redo the last undo command" )
|
|
|
|
#define HELP_FIND _( "Find components and text in current loaded board" )
|
|
|
|
|
|
|
|
#define HELP_ZOOM_IN _( "Zoom in" )
|
|
|
|
#define HELP_ZOOM_OUT _( "Zoom out" )
|
|
|
|
#define HELP_ZOOM_FIT _( "Zoom to fit the board on the screen" )
|
|
|
|
#define HELP_ZOOM_REDRAW _( "Redraw the screen of the board" )
|
|
|
|
|
|
|
|
#define HELP_SHOW_HIDE_LAYERMANAGER _( "Show/hide the layers manager toolbar" )
|