You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
956 B

  1. /**
  2. * @file pcbnew/help_common_strings.h
  3. * strings common to toolbars and menubar
  4. */
  5. /**
  6. * These strings are used in menus and tools, that do the same command
  7. * But they are internationalized, and therefore must be created
  8. * at run time, on the fly.
  9. * So they cannot be static.
  10. *
  11. * Therefore they are defined by \#define, used inside menu constructors
  12. */
  13. #define HELP_UNDO _( "Undo last edition" )
  14. #define HELP_REDO _( "Redo the last undo command" )
  15. #define HELP_FIND _( "Find components and text in current loaded board" )
  16. #define HELP_ZOOM_IN _( "Zoom in" )
  17. #define HELP_ZOOM_OUT _( "Zoom out" )
  18. #define HELP_ZOOM_FIT _( "Zoom to fit the board on the screen" )
  19. #define HELP_ZOOM_REDRAW _( "Redraw the current screen" )
  20. #define HELP_SHOW_HIDE_LAYERMANAGER _( "Show/hide the layers manager toolbar" )
  21. #define HELP_SHOW_HIDE_MICROWAVE_TOOLS _( "Show/hide the microwave toolbar\nThis is a experimental feature (under development)" )