scratchpad.dtd 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <!-- This Source Code Form is subject to the terms of the Mozilla Public
  2. - License, v. 2.0. If a copy of the MPL was not distributed with this
  3. - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
  4. <!-- LOCALIZATION NOTE : FILE This file contains the Scratchpad window strings -->
  5. <!-- LOCALIZATION NOTE : FILE Do not translate commandkeys -->
  6. <!-- LOCALIZATION NOTE : FILE The correct localization of this file might be to
  7. - keep it in English, or another language commonly spoken among web developers.
  8. - You want to make that choice consistent across the developer tools.
  9. - A good criteria is the language in which you'd find the best
  10. - documentation on web development on the web. -->
  11. <!-- LOCALIZATION NOTE (scratchpad.title):
  12. - The Scratchpad is intended to provide a simple text editor for creating
  13. - and evaluating bits of JavaScript code for the purposes of function
  14. - prototyping, experimentation and convenient scripting.
  15. -
  16. - It's quite possible that you won't have a good analogue for the word
  17. - "Scratchpad" in your locale. You should feel free to find a close
  18. - approximation to it or choose a word (or words) that means
  19. - "simple discardable text editor". -->
  20. <!ENTITY window.title "Scratchpad">
  21. <!ENTITY fileMenu.label "File">
  22. <!ENTITY fileMenu.accesskey "F">
  23. <!ENTITY newWindowCmd.label "New Window">
  24. <!ENTITY newWindowCmd.accesskey "N">
  25. <!ENTITY newWindowCmd.commandkey "n">
  26. <!ENTITY openFileCmd.label "Open File…">
  27. <!ENTITY openFileCmd.accesskey "O">
  28. <!ENTITY openFileCmd.commandkey "o">
  29. <!ENTITY openRecentMenu.label "Open Recent">
  30. <!ENTITY openRecentMenu.accesskey "R">
  31. <!ENTITY revertCmd.label "Revert…">
  32. <!ENTITY revertCmd.accesskey "t">
  33. <!ENTITY saveFileCmd.label "Save">
  34. <!ENTITY saveFileCmd.accesskey "S">
  35. <!ENTITY saveFileCmd.commandkey "s">
  36. <!ENTITY saveFileAsCmd.label "Save As…">
  37. <!ENTITY saveFileAsCmd.accesskey "A">
  38. <!ENTITY closeCmd.label "Close">
  39. <!ENTITY closeCmd.key "W">
  40. <!ENTITY closeCmd.accesskey "C">
  41. <!ENTITY viewMenu.label "View">
  42. <!ENTITY viewMenu.accesskey "V">
  43. <!ENTITY lineNumbers.label "Show Line Numbers">
  44. <!ENTITY lineNumbers.accesskey "L">
  45. <!ENTITY wordWrap.label "Wrap Text">
  46. <!ENTITY wordWrap.accesskey "W">
  47. <!ENTITY highlightTrailingSpace.label "Highlight Trailing Space">
  48. <!ENTITY highlightTrailingSpace.accesskey "H">
  49. <!ENTITY largerFont.label "Larger Font">
  50. <!ENTITY largerFont.accesskey "a">
  51. <!ENTITY largerFont.commandkey "+">
  52. <!ENTITY largerFont.commandkey2 "="> <!-- + is above this key on many keyboards -->
  53. <!ENTITY smallerFont.label "Smaller Font">
  54. <!ENTITY smallerFont.accesskey "M">
  55. <!ENTITY smallerFont.commandkey "-">
  56. <!ENTITY normalSize.label "Normal Size">
  57. <!ENTITY normalSize.accesskey "N">
  58. <!ENTITY normalSize.commandkey "0">
  59. <!ENTITY editMenu.label "Edit">
  60. <!ENTITY editMenu.accesskey "E">
  61. <!ENTITY run.label "Run">
  62. <!ENTITY run.accesskey "R">
  63. <!ENTITY run.key "r">
  64. <!ENTITY inspect.label "Inspect">
  65. <!ENTITY inspect.accesskey "I">
  66. <!ENTITY inspect.key "i">
  67. <!ENTITY display.label "Display">
  68. <!ENTITY display.accesskey "D">
  69. <!ENTITY display.key "l">
  70. <!ENTITY pprint.label "Pretty Print">
  71. <!ENTITY pprint.key "p">
  72. <!ENTITY pprint.accesskey "P">
  73. <!-- LOCALIZATION NOTE (environmentMenu.label, accesskey): This menu item was
  74. - renamed from "Context" to avoid confusion with the right-click context
  75. - menu in the text area. It refers to the JavaScript Environment (or context)
  76. - the user is evaluating against. I.e., Content (current tab) or Chrome
  77. - (browser).
  78. -->
  79. <!ENTITY environmentMenu.label "Environment">
  80. <!ENTITY environmentMenu.accesskey "N">
  81. <!ENTITY contentContext.label "Content">
  82. <!ENTITY contentContext.accesskey "C">
  83. <!-- LOCALIZATION NOTE (browserContext.label, accesskey): This menu item is used
  84. - to select an execution environment for the browser window itself as opposed
  85. - to content. This is a feature for browser and addon developers and only
  86. - enabled via the devtools.chrome.enabled preference. Formerly, this label
  87. - was called "Chrome".
  88. -->
  89. <!ENTITY browserContext.label "Browser">
  90. <!ENTITY browserContext.accesskey "B">
  91. <!-- LOCALIZATION NOTE some localizations of Windows (ex:french, german) use "?"
  92. - for the help button in the menubar but Gnome does not.
  93. -->
  94. <!ENTITY helpMenu.label "Help">
  95. <!ENTITY helpMenu.accesskey "H">
  96. <!ENTITY helpMenuWin.label "Help">
  97. <!ENTITY helpMenuWin.accesskey "H">
  98. <!ENTITY documentationLink.label "Scratchpad Help on MDN">
  99. <!ENTITY documentationLink.accesskey "D">
  100. <!-- LOCALIZATION NOTE (resetContext2.label): This command allows the developer
  101. - to reset/clear the global object of the environment where the code executes.
  102. -->
  103. <!ENTITY resetContext2.label "Reset Variables">
  104. <!ENTITY resetContext2.accesskey "T">
  105. <!ENTITY reloadAndRun.label "Reload And Run">
  106. <!ENTITY reloadAndRun.accesskey "E">
  107. <!ENTITY reloadAndRun.key "r">
  108. <!ENTITY executeMenu.label "Execute">
  109. <!ENTITY executeMenu.accesskey "X">
  110. <!-- LOCALIZATION NOTE (errorConsoleCmd.commandkey): This command key launches
  111. - the browser Error Console, the key should be identical to the property of
  112. - the same name in browser.dtd.
  113. -->
  114. <!ENTITY errorConsoleCmd.commandkey "j">
  115. <!-- LOCALIZATION NOTE (evalFunction.label): This command allows the developer
  116. - to evaluate the top-level function that the cursor is currently at.
  117. -->
  118. <!ENTITY evalFunction.label "Evaluate Current Function">
  119. <!ENTITY evalFunction.accesskey "v">
  120. <!ENTITY evalFunction.key "e">