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.

90 lines
3.9 KiB

  1. /*
  2. * This program source code file is part of KiCad, a free EDA CAD application.
  3. *
  4. * Copyright (C) 2010 CERN
  5. * Copyright (C) 2014 KiCad Developers, see CHANGELOG.TXT for contributors.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version 2
  10. * of the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, you may find one here:
  19. * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
  20. * or you may search the http://www.gnu.org website for the version 2 license,
  21. * or you may write to the Free Software Foundation, Inc.,
  22. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  23. */
  24. /**
  25. * @file eeschema/help_common_strings.h
  26. * strings common to toolbars and menubar
  27. */
  28. /**
  29. * These strings are used in menus and tools, that do the same command
  30. * But they are internationalized, and therefore must be created
  31. * at run time, on the fly.
  32. * So they cannot be static.
  33. *
  34. * Therefore they are defined by \#define, used inside menu constructors
  35. */
  36. // Common to schematic editor and component editor
  37. #define HELP_UNDO _( "Undo last command" )
  38. #define HELP_REDO _( "Redo last command" )
  39. #define HELP_ZOOM_IN _( "Zoom in" )
  40. #define HELP_ZOOM_OUT _( "Zoom out" )
  41. #define HELP_ZOOM_FIT _( "Fit schematic sheet on screen" )
  42. #define HELP_ZOOM_REDRAW _( "Redraw schematic view" )
  43. #define HELP_DELETE_ITEMS _( "Delete item" )
  44. // Schematic editor:
  45. #define HELP_FIND _( "Find components and text" )
  46. #define HELP_REPLACE _( "Find and replace text in schematic items" )
  47. #define HELP_PLACE_COMPONENTS _( "Place component" )
  48. #define HELP_PLACE_POWERPORT _( "Place power port" )
  49. #define HELP_PLACE_WIRE _( "Place wire" )
  50. #define HELP_PLACE_BUS _( "Place bus" )
  51. #define HELP_PLACE_WIRE2BUS_ENTRY _( "Place wire to bus entry" )
  52. #define HELP_PLACE_BUS2BUS_ENTRY _( "Place bus to bus entry" )
  53. #define HELP_PLACE_NC_FLAG _( "Place not-connected flag" )
  54. #define HELP_PLACE_NETLABEL _( "Place net name - local label" )
  55. #define HELP_PLACE_GLOBALLABEL \
  56. _(\
  57. "Place global label.\nWarning: inside global hierarchy , all global labels with same name are connected" )
  58. #define HELP_PLACE_HIER_LABEL \
  59. _( "Place a hierarchical label. Label will be seen as a hierarchical pin in the sheet symbol" )
  60. #define HELP_PLACE_JUNCTION _( "Place junction" )
  61. #define HELP_PLACE_SHEET _( "Create hierarchical sheet" )
  62. #define HELP_IMPORT_SHEETPIN _( \
  63. "Place hierarchical pin imported from the corresponding hierarchical label" )
  64. #define HELP_PLACE_SHEETPIN _( "Place hierarchical pin in sheet" )
  65. #define HELP_PLACE_GRAPHICLINES _( "Place graphic lines or polygons" )
  66. #define HELP_PLACE_GRAPHICTEXTS _( "Place text" )
  67. #define HELP_ANNOTATE _( "Annotate schematic components" )
  68. #define HELP_RUN_LIB_EDITOR _( "Library Editor - Create/edit components" )
  69. #define HELP_RUN_LIB_VIEWER _( "Library Browser - Browse components" )
  70. #define HELP_GENERATE_BOM _( "Generate bill of materials and/or cross references" )
  71. #define HELP_IMPORT_FOOTPRINTS \
  72. _( "Back-import component footprint fields via CvPcb .cmp file" )
  73. // Component editor:
  74. #define HELP_ADD_PIN _( "Add pins to component" )
  75. #define HELP_ADD_BODYTEXT _( "Add text to component body" )
  76. #define HELP_ADD_BODYRECT _( "Add graphic rectangle to component body" )
  77. #define HELP_ADD_BODYCIRCLE _( "Add circles to component body" )
  78. #define HELP_ADD_BODYARC _( "Add arcs to component body" )
  79. #define HELP_ADD_BODYPOLYGON _( "Add lines and polygons to component body" )
  80. #define HELP_PLACE_GRAPHICIMAGES _("Add bitmap image")