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.

66 lines
2.9 KiB

  1. /**
  2. * @file eeschema/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. // Common to schematic editor and component editor
  14. #define HELP_UNDO _( "Undo last command" )
  15. #define HELP_REDO _( "Redo last command" )
  16. #define HELP_ZOOM_IN _( "Zoom in" )
  17. #define HELP_ZOOM_OUT _( "Zoom out" )
  18. #define HELP_ZOOM_FIT _( "Fit schematic sheet on screen" )
  19. #define HELP_ZOOM_REDRAW _( "Redraw schematic view" )
  20. #define HELP_DELETE_ITEMS _( "Delete item" )
  21. // Schematic editor:
  22. #define HELP_FIND _( "Find components and text" )
  23. #define HELP_REPLACE _( "Find and replace text in schematic items" )
  24. #define HELP_PLACE_COMPONENTS _( "Place component" )
  25. #define HELP_PLACE_POWERPORT _( "Place power port" )
  26. #define HELP_PLACE_WIRE _( "Place wire" )
  27. #define HELP_PLACE_BUS _( "Place bus" )
  28. #define HELP_PLACE_WIRE2BUS_ENTRY _( "Place wire to bus entry" )
  29. #define HELP_PLACE_BUS2BUS_ENTRY _( "Place bus to bus entry" )
  30. #define HELP_PLACE_NC_FLAG _( "Place not-connected flag" )
  31. #define HELP_PLACE_NETLABEL _( "Place net name - local label" )
  32. #define HELP_PLACE_GLOBALLABEL \
  33. _(\
  34. "Place global label.\nWarning: inside global hierarchy , all global labels with same name are connected" )
  35. #define HELP_PLACE_HIER_LABEL \
  36. _( "Place a hierarchical label. Label will be seen as a hierarchical pin in the sheet symbol" )
  37. #define HELP_PLACE_JUNCTION _( "Place junction" )
  38. #define HELP_PLACE_SHEET _( "Create hierarchical sheet" )
  39. #define HELP_IMPORT_SHEETPIN _( \
  40. "Place hierarchical pin imported from the corresponding hierarchical label" )
  41. #define HELP_PLACE_SHEETPIN _( "Place hierarchical pin in sheet" )
  42. #define HELP_PLACE_GRAPHICLINES _( "Place graphic lines or polygons" )
  43. #define HELP_PLACE_GRAPHICTEXTS _( "Place text" )
  44. #define HELP_ANNOTATE _( "Annotate schematic components" )
  45. #define HELP_RUN_LIB_EDITOR _( "Library Editor - Create/edit components" )
  46. #define HELP_RUN_LIB_VIEWER _( "Library Browser - Browse components" )
  47. #define HELP_GENERATE_BOM _( "Generate bill of materials and/or cross references" )
  48. #define HELP_IMPORT_FOOTPRINTS \
  49. _( "Back-import component footprint fields via CvPcb .cmp file" )
  50. // Component editor:
  51. #define HELP_ADD_PIN _( "Add pins to component" )
  52. #define HELP_ADD_BODYTEXT _( "Add text to component body" )
  53. #define HELP_ADD_BODYRECT _( "Add graphic rectangle to component body" )
  54. #define HELP_ADD_BODYCIRCLE _( "Add circles to component body" )
  55. #define HELP_ADD_BODYARC _( "Add arcs to component body" )
  56. #define HELP_ADD_BODYPOLYGON _( "Add lines and polygons to component body" )
  57. #define HELP_PLACE_GRAPHICIMAGES _("Add bitmap image")