diff options
author | saurabhb17 | 2020-02-26 16:11:59 +0530 |
---|---|---|
committer | GitHub | 2020-02-26 16:11:59 +0530 |
commit | e255d0622297488c1c52755be670733418c994cf (patch) | |
tree | 1392c90227aeea231c1d86371131e04c40382918 /pcbnew/help_common_strings.h | |
parent | 0db48f6533517ecebfd9f0693f89deca28408b76 (diff) | |
parent | c38609295ad4b617aef472b9c575aee18710a50f (diff) | |
download | KiCad-eSim-e255d0622297488c1c52755be670733418c994cf.tar.gz KiCad-eSim-e255d0622297488c1c52755be670733418c994cf.tar.bz2 KiCad-eSim-e255d0622297488c1c52755be670733418c994cf.zip |
Merge pull request #1 from saurabhb17/develop
Secondary files
Diffstat (limited to 'pcbnew/help_common_strings.h')
-rw-r--r-- | pcbnew/help_common_strings.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/pcbnew/help_common_strings.h b/pcbnew/help_common_strings.h new file mode 100644 index 0000000..05486c9 --- /dev/null +++ b/pcbnew/help_common_strings.h @@ -0,0 +1,26 @@ +/** + * @file pcbnew/help_common_strings.h + * strings common to toolbars and menubar + */ + +/** + * These strings are used in menus and tools, that do the same command + * But they are internationalized, and therefore must be created + * at run time, on the fly. + * So they cannot be static. + * + * Therefore they are defined by \#define, used inside menu constructors + */ + +#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 current screen" ) + +#define HELP_SHOW_HIDE_LAYERMANAGER _( "Show/hide the layers manager toolbar" ) + +#define HELP_SHOW_HIDE_MICROWAVE_TOOLS _( "Show/hide the microwave toolbar\nThis is a experimental feature (under development)" ) |