gcli.properties 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  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 These strings are used inside the Web Console
  5. # command line which is available from the Web Developer sub-menu
  6. # -> 'Web Console'.
  7. # The correct localization of this file might be to keep it in
  8. # English, or another language commonly spoken among web developers.
  9. # You want to make that choice consistent across the developer tools.
  10. # A good criteria is the language in which you'd find the best
  11. # documentation on web development on the web.
  12. # For each command there are in general two strings. As an example consider
  13. # the 'pref' command.
  14. # commandDesc (e.g. prefDesc for the command 'pref'): this string contains a
  15. # very short description of the command. It's designed to be shown in a menu
  16. # alongside the command name, which is why it should be as short as possible.
  17. # commandManual (e.g. prefManual for the command 'pref'): this string will
  18. # contain a fuller description of the command. It's diplayed when the user
  19. # asks for help about a specific command (e.g. 'help pref').
  20. # LOCALIZATION NOTE: This message is used to describe any command or command
  21. # parameter when no description has been provided.
  22. canonDescNone=(No description)
  23. # LOCALIZATION NOTE: The default name for a group of parameters.
  24. canonDefaultGroupName=Options
  25. # LOCALIZATION NOTE (canonProxyDesc, canonProxyManual): These commands are
  26. # used to execute commands on a remote system (using a proxy). Parameters: %S
  27. # is the name of the remote system.
  28. canonProxyDesc=Execute a command on %S
  29. canonProxyManual=A set of commands that are executed on a remote system. The remote system is reached via %S
  30. # LOCALIZATION NOTE: This error message is displayed when we try to add a new
  31. # command (using a proxy) where one already exists with the same name.
  32. canonProxyExists=There is already a command called ‘%S’
  33. # LOCALIZATION NOTE: This message describes the '{' command, which allows
  34. # entry of JavaScript like traditional developer tool command lines.
  35. cliEvalJavascript=Enter JavaScript directly
  36. # LOCALIZATION NOTE: This message is displayed when the command line has more
  37. # arguments than the current command can understand.
  38. cliUnusedArg=Too many arguments
  39. # LOCALIZATION NOTE: The title of the dialog which displays the options that
  40. # are available to the current command.
  41. cliOptions=Available Options
  42. # LOCALIZATION NOTE: The error message when the user types a command that
  43. # isn't registered
  44. cliUnknownCommand2=Invalid Command: ‘%1$S’.
  45. # LOCALIZATION NOTE: A parameter should have a value, but doesn't
  46. cliIncompleteParam=Value required for ‘%1$S’.
  47. # LOCALIZATION NOTE: Error message given when a file argument points to a file
  48. # that does not exist, but should (e.g. for use with File->Open) %1$S is a
  49. # filename
  50. fileErrNotExists=‘%1$S’ doesn’t exist
  51. # LOCALIZATION NOTE: Error message given when a file argument points to a file
  52. # that exists, but should not (e.g. for use with File->Save As) %1$S is a
  53. # filename
  54. fileErrExists=‘%1$S’ already exists
  55. # LOCALIZATION NOTE: Error message given when a file argument points to a
  56. # non-file, when a file is needed. %1$S is a filename
  57. fileErrIsNotFile=‘%1$S’ is not a file
  58. # LOCALIZATION NOTE: Error message given when a file argument points to a
  59. # non-directory, when a directory is needed (e.g. for use with 'cd') %1$S is a
  60. # filename
  61. fileErrIsNotDirectory=‘%1$S’ is not a directory
  62. # LOCALIZATION NOTE: Error message given when a file argument does not match
  63. # the specified regular expression %1$S is a filename %2$S is a regular
  64. # expression
  65. fileErrDoesntMatch=‘%1$S’ does not match ‘%2$S’
  66. # LOCALIZATION NOTE: When the menu has displayed all the matches that it
  67. # should (i.e. about 10 items) then we display this to alert the user that
  68. # more matches are available.
  69. fieldMenuMore=More matches, keep typing
  70. # LOCALIZATION NOTE: The command line provides completion for JavaScript
  71. # commands, however there are times when the scope of what we're completing
  72. # against can't be used. This error message is displayed when this happens.
  73. jstypeParseScope=Scope lost
  74. # LOCALIZATION NOTE (jstypeParseMissing, jstypeBeginSyntax,
  75. # jstypeBeginUnterm): These error messages are displayed when the command line
  76. # is doing JavaScript completion and encounters errors.
  77. jstypeParseMissing=Can’t find property ‘%S’
  78. jstypeBeginSyntax=Syntax error
  79. jstypeBeginUnterm=Unterminated string literal
  80. # LOCALIZATION NOTE: This message is displayed if the system for providing
  81. # JavaScript completions encounters and error it displays this.
  82. jstypeParseError=Error
  83. # LOCALIZATION NOTE (typesNumberNan, typesNumberNotInt2, typesDateNan): These
  84. # error messages are displayed when the command line is passed a variable
  85. # which has the wrong format and can't be converted. Parameters: %S is the
  86. # passed variable.
  87. typesNumberNan=Can’t convert “%S” to a number.
  88. typesNumberNotInt2=Can’t convert “%S” to an integer.
  89. typesDateNan=Can’t convert “%S” to a date.
  90. # LOCALIZATION NOTE (typesNumberMax, typesNumberMin, typesDateMax,
  91. # typesDateMin): These error messages are displayed when the command line is
  92. # passed a variable which has a value out of range (number or date).
  93. # Parameters: %1$S is the passed variable, %2$S is the limit value.
  94. typesNumberMax=%1$S is greater than maximum allowed: %2$S.
  95. typesNumberMin=%1$S is smaller than minimum allowed: %2$S.
  96. typesDateMax=%1$S is later than maximum allowed: %2$S.
  97. typesDateMin=%1$S is earlier than minimum allowed: %2$S.
  98. # LOCALIZATION NOTE: This error message is displayed when the command line is
  99. # passed an option with a limited number of correct values, but the passed
  100. # value is not one of them.
  101. typesSelectionNomatch=Can’t use ‘%S’.
  102. # LOCALIZATION NOTE: This error message is displayed when the command line is
  103. # expecting a CSS query string, however the passed string is not valid.
  104. nodeParseSyntax=Syntax error in CSS query
  105. # LOCALIZATION NOTE (nodeParseMultiple, nodeParseNone): These error messages
  106. # are displayed when the command line is expecting a CSS string that matches a
  107. # single node, but more nodes (or none) match.
  108. nodeParseMultiple=Too many matches (%S)
  109. nodeParseNone=No matches
  110. # LOCALIZATION NOTE (helpDesc, helpManual, helpSearchDesc, helpSearchManual3):
  111. # These strings describe the "help" command, used to display a description of
  112. # a command (e.g. "help pref"), and its parameter 'search'.
  113. helpDesc=Get help on the available commands
  114. helpManual=Provide help either on a specific command (if a search string is provided and an exact match is found) or on the available commands (if a search string is not provided, or if no exact match is found).
  115. helpSearchDesc=Search string
  116. helpSearchManual3=search string to use in narrowing down the displayed commands. Regular expressions not supported.
  117. # LOCALIZATION NOTE (helpManSynopsis, helpManDescription): These strings are
  118. # displayed in the help page for a command in the console.
  119. helpManSynopsis=Synopsis
  120. helpManDescription=Description
  121. # LOCALIZATION NOTE: This message is displayed in the help page if the command
  122. # has no parameters.
  123. helpManNone=None
  124. # LOCALIZATION NOTE: This message is displayed in response to the 'help'
  125. # command when used without a filter, just above the list of known commands.
  126. helpListAll=Available Commands:
  127. # LOCALIZATION NOTE (helpListPrefix, helpListNone): These messages are
  128. # displayed in response to the 'help <search>' command (i.e. with a search
  129. # string), just above the list of matching commands. Parameters: %S is the
  130. # search string.
  131. helpListPrefix=Commands starting with ‘%S’:
  132. helpListNone=No commands starting with ‘%S’
  133. # LOCALIZATION NOTE (helpManRequired, helpManOptional, helpManDefault): When
  134. # the 'help x' command wants to show the manual for the 'x' command, it needs
  135. # to be able to describe the parameters as either required or optional, or if
  136. # they have a default value.
  137. helpManRequired=required
  138. helpManOptional=optional
  139. helpManDefault=optional, default=%S
  140. # LOCALIZATION NOTE: This forms part of the output from the 'help' command.
  141. # 'GCLI' is a project name and should be left untranslated.
  142. helpIntro=GCLI is an experiment to create a highly usable command line for web developers.
  143. # LOCALIZATION NOTE: Text shown as part of the output of the 'help' command
  144. # when the command in question has sub-commands, before a list of the matching
  145. # sub-commands.
  146. subCommands=Sub-Commands
  147. # LOCALIZATION NOTE: Text shown as part of the output of the 'help' command
  148. # when the command in question should have sub-commands but in fact has none.
  149. subCommandsNone=None
  150. # LOCALIZATION NOTE: This error message is displayed when the command line is
  151. # cannot find a match for the parse types.
  152. commandParseError=Command line parsing error
  153. # LOCALIZATION NOTE (contextDesc, contextManual, contextPrefixDesc): These
  154. # strings are used to describe the 'context' command and its 'prefix'
  155. # parameter. See localization comment for 'connect' for an explanation about
  156. # 'prefix'.
  157. contextDesc=Concentrate on a group of commands
  158. contextManual=Setup a default prefix to future commands. For example ‘context git’ would allow you to type ‘commit’ rather than ‘git commit’.
  159. contextPrefixDesc=The command prefix
  160. # LOCALIZATION NOTE: This message message displayed during the processing of
  161. # the 'context' command, when the found command is not a parent command.
  162. contextNotParentError=Can’t use ‘%S’ as a prefix because it is not a parent command.
  163. # LOCALIZATION NOTE (contextReply, contextEmptyReply): These messages are
  164. # displayed during the processing of the 'context' command, to indicate
  165. # success or that there is no command prefix.
  166. contextReply=Using %S as a command prefix
  167. contextEmptyReply=Command prefix is unset
  168. # LOCALIZATION NOTE (connectDesc, connectManual, connectPrefixDesc,
  169. # connectMethodDesc, connectUrlDesc, connectDupReply): These strings describe
  170. # the 'connect' command and all its available parameters. A 'prefix' is an
  171. # alias for the remote server (think of it as a "connection name"), and it
  172. # allows to identify a specific server when connected to multiple remote
  173. # servers.
  174. connectDesc=Proxy commands to server
  175. connectManual=Connect to the server, creating local versions of the commands on the server. Remote commands initially have a prefix to distinguish them from local commands (but see the context command to get past this)
  176. connectPrefixDesc=Parent prefix for imported commands
  177. connectMethodDesc=The method of connecting
  178. connectUrlDesc=The URL to connect to
  179. connectDupReply=Connection called %S already exists.
  180. # LOCALIZATION NOTE: The output of the 'connect' command, telling the user
  181. # what it has done. Parameters: %S is the prefix command. See localization
  182. # comment for 'connect' for an explanation about 'prefix'.
  183. connectReply=Added %S commands.
  184. # LOCALIZATION NOTE (disconnectDesc2, disconnectManual2,
  185. # disconnectPrefixDesc): These strings describe the 'disconnect' command and
  186. # all its available parameters. See localization comment for 'connect' for an
  187. # explanation about 'prefix'.
  188. disconnectDesc2=Disconnect from server
  189. disconnectManual2=Disconnect from a server currently connected for remote commands execution
  190. disconnectPrefixDesc=Parent prefix for imported commands
  191. # LOCALIZATION NOTE: This is the output of the 'disconnect' command,
  192. # explaining the user what has been done. Parameters: %S is the number of
  193. # commands removed.
  194. disconnectReply=Removed %S commands.
  195. # LOCALIZATION NOTE (globalDesc, globalWindowDesc, globalOutput): These
  196. # strings describe the 'global' command and its parameters
  197. globalDesc=Change the JS global
  198. globalWindowDesc=The new window/global
  199. globalOutput=JS global is now %S
  200. # LOCALIZATION NOTE: These strings describe the 'clear' command
  201. clearDesc=Clear the output area
  202. # LOCALIZATION NOTE (langDesc, langOutput): These strings describe the 'lang'
  203. # command and its parameters
  204. langDesc=Enter commands in different languages
  205. langOutput=You are now using %S
  206. # LOCALIZATION NOTE (prefDesc, prefManual, prefListDesc, prefListManual,
  207. # prefListSearchDesc, prefListSearchManual, prefShowDesc, prefShowManual,
  208. # prefShowSettingDesc, prefShowSettingManual): These strings describe the
  209. # 'pref' command and all its available sub-commands and parameters.
  210. prefDesc=Commands to control settings
  211. prefManual=Commands to display and alter preferences both for GCLI and the surrounding environment
  212. prefListDesc=Display available settings
  213. prefListManual=Display a list of preferences, optionally filtered when using the ‘search’ parameter
  214. prefListSearchDesc=Filter the list of settings displayed
  215. prefListSearchManual=Search for the given string in the list of available preferences
  216. prefShowDesc=Display setting value
  217. prefShowManual=Display the value of a given preference
  218. prefShowSettingDesc=Setting to display
  219. prefShowSettingManual=The name of the setting to display
  220. # LOCALIZATION NOTE: This message is used to show the preference name and the
  221. # associated preference value. Parameters: %1$S is the preference name, %2$S
  222. # is the preference value.
  223. prefShowSettingValue=%1$S: %2$S
  224. # LOCALIZATION NOTE (prefSetDesc, prefSetManual, prefSetSettingDesc,
  225. # prefSetSettingManual, prefSetValueDesc, prefSetValueManual): These strings
  226. # describe the 'pref set' command and all its parameters.
  227. prefSetDesc=Alter a setting
  228. prefSetManual=Alter preferences defined by the environment
  229. prefSetSettingDesc=Setting to alter
  230. prefSetSettingManual=The name of the setting to alter.
  231. prefSetValueDesc=New value for setting
  232. prefSetValueManual=The new value for the specified setting
  233. # LOCALIZATION NOTE (prefResetDesc, prefResetManual, prefResetSettingDesc,
  234. # prefResetSettingManual): These strings describe the 'pref reset' command and
  235. # all its parameters.
  236. prefResetDesc=Reset a setting
  237. prefResetManual=Reset the value of a setting to the system defaults
  238. prefResetSettingDesc=Setting to reset
  239. prefResetSettingManual=The name of the setting to reset to the system default value
  240. # LOCALIZATION NOTE: This string is displayed in the output from the 'pref
  241. # list' command as a label to an input element that allows the user to filter
  242. # the results.
  243. prefOutputFilter=Filter
  244. # LOCALIZATION NOTE (prefOutputName, prefOutputValue): These strings are
  245. # displayed in the output from the 'pref list' command as table headings.
  246. prefOutputName=Name
  247. prefOutputValue=Value
  248. # LOCALIZATION NOTE (introDesc, introManual): These strings describe the
  249. # 'intro' command. The localization of 'Got it!' should be the same used in
  250. # introTextGo.
  251. introDesc=Show the opening message
  252. introManual=Redisplay the message that is shown to new users until they click the ‘Got it!’ button
  253. # LOCALIZATION NOTE (introTextOpening3, introTextCommands, introTextKeys2,
  254. # introTextF1Escape, introTextGo): These strings are displayed when the user
  255. # first opens the developer toolbar to explain the command line, and is shown
  256. # each time it is opened until the user clicks the 'Got it!' button.
  257. introTextOpening3=GCLI is an experiment to create a highly usable command line for web developers.
  258. introTextCommands=For a list of commands type
  259. introTextKeys2=, or to show/hide command hints press
  260. introTextF1Escape=F1/Escape
  261. introTextGo=Got it!
  262. # LOCALIZATION NOTE: This is a short description of the 'hideIntro' setting.
  263. hideIntroDesc=Show the initial welcome message
  264. # LOCALIZATION NOTE: This is a description of the 'eagerHelper' setting. It's
  265. # displayed when the user asks for help on the settings. eagerHelper allows
  266. # users to select between showing no tooltips, permanent tooltips, and only
  267. # important tooltips.
  268. eagerHelperDesc=How eager are the tooltips