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.

92 lines
4.1 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-2018 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 _( "Zoom to fit schematic page" )
  42. #define HELP_ZOOM_REDRAW _( "Redraw schematic view" )
  43. #define HELP_DELETE_ITEMS _( "Delete item" )
  44. // Schematic editor:
  45. #define HELP_SELECT _( "Select item" )
  46. #define HELP_HIGHLIGHT _( "Highlight net" )
  47. #define HELP_FIND _( "Find symbols and text" )
  48. #define HELP_REPLACE _( "Find and replace text in schematic items" )
  49. #define HELP_PLACE_COMPONENTS _( "Place symbol" )
  50. #define HELP_PLACE_POWERPORT _( "Place power port" )
  51. #define HELP_PLACE_WIRE _( "Place wire" )
  52. #define HELP_PLACE_BUS _( "Place bus" )
  53. #define HELP_PLACE_WIRE2BUS_ENTRY _( "Place wire to bus entry" )
  54. #define HELP_PLACE_BUS2BUS_ENTRY _( "Place bus to bus entry" )
  55. #define HELP_PLACE_NC_FLAG _( "Place no connection flag" )
  56. #define HELP_PLACE_NETLABEL _( "Place net label" )
  57. #define HELP_PLACE_GLOBALLABEL \
  58. _( "Place global label.\nAll global labels with same name are connected throughout the sheet hierarchy" )
  59. #define HELP_PLACE_HIER_LABEL \
  60. _( "Place a hierarchical label.\nHierarchical labels are exposed to other sheets through sheet pins" )
  61. #define HELP_PLACE_JUNCTION _( "Place junction" )
  62. #define HELP_PLACE_SHEET _( "Create hierarchical sheet" )
  63. #define HELP_IMPORT_SHEETPIN \
  64. _( "Place hierarchical sheet pin corresponding to a hierarchical label in the sheet" )
  65. #define HELP_PLACE_SHEETPIN _( "Place hierarchical sheet pin" )
  66. #define HELP_PLACE_GRAPHICLINES _( "Place graphic lines or polygons" )
  67. #define HELP_PLACE_GRAPHICTEXTS _( "Place text" )
  68. #define HELP_ANNOTATE _( "Annotate schematic symbols" )
  69. #define HELP_RUN_LIB_EDITOR _( "Create, delete, and edit symbols" )
  70. #define HELP_RUN_LIB_VIEWER _( "Browse symbol libraries" )
  71. #define HELP_GENERATE_BOM _( "Generate bill of materials" )
  72. #define HELP_BUS_MANAGER _( "Manage bus definitions" )
  73. #define HELP_IMPORT_FOOTPRINTS \
  74. _( "Back-import symbol footprint association fields from the .cmp back import file created by Pcbnew" )
  75. // Component editor:
  76. #define HELP_ADD_PIN _( "Add pins to symbol" )
  77. #define HELP_ADD_BODYTEXT _( "Add text to symbol body" )
  78. #define HELP_ADD_BODYRECT _( "Add graphic rectangle to symbol body" )
  79. #define HELP_ADD_BODYCIRCLE _( "Add circles to symbol body" )
  80. #define HELP_ADD_BODYARC _( "Add arcs to symbol body" )
  81. #define HELP_ADD_BODYPOLYGON _( "Add lines and polygons to symbol body" )
  82. #define HELP_PLACE_GRAPHICIMAGES _("Add bitmap image")