webconsole.properties 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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
  5. # The correct localization of this file might be to keep it in
  6. # English, or another language commonly spoken among web developers.
  7. # You want to make that choice consistent across the developer tools.
  8. # A good criteria is the language in which you'd find the best
  9. # documentation on web development on the web.
  10. # LOCALIZATION NOTE (timestampFormat): %1$02S = hours (24-hour clock),
  11. # %2$02S = minutes, %3$02S = seconds, %4$03S = milliseconds.
  12. timestampFormat=%02S:%02S:%02S.%03S
  13. helperFuncUnsupportedTypeError=Can’t call pprint on this type of object.
  14. # LOCALIZATION NOTE (NetworkPanel.deltaDurationMS): this string is used to
  15. # show the duration between two network events (e.g request and response
  16. # header or response header and response body). Parameters: %S is the duration.
  17. NetworkPanel.durationMS=%Sms
  18. ConsoleAPIDisabled=The Web Console logging API (console.log, console.info, console.warn, console.error) has been disabled by a script on this page.
  19. # LOCALIZATION NOTE (webConsoleWindowTitleAndURL): the Web Console floating
  20. # panel title. For RTL languages you need to set the LRM in the string to give
  21. # the URL the correct direction. Parameters: %S is the web page URL.
  22. webConsoleWindowTitleAndURL=Web Console - %S
  23. # LOCALIZATION NOTE (webConsoleXhrIndicator): the indicator displayed before
  24. # a URL in the Web Console that was requested using an XMLHttpRequest.
  25. # Should probably be the same as &btnConsoleXhr; in webConsole.dtd
  26. webConsoleXhrIndicator=XHR
  27. # LOCALIZATION NOTE (webConsoleMixedContentWarning): the message displayed
  28. # after a URL in the Web Console that has been flagged for Mixed Content (i.e.
  29. # http content in an https page).
  30. webConsoleMixedContentWarning=Mixed Content
  31. # LOCALIZATION NOTE (webConsoleMoreInfoLabel): the more info tag displayed
  32. # after security related web console messages.
  33. webConsoleMoreInfoLabel=Learn More
  34. # LOCALIZATION NOTE (scratchpad.linkText): the text used in the right hand
  35. # side of the Web Console command line when JavaScript is being entered, to
  36. # indicate how to jump into scratchpad mode.
  37. scratchpad.linkText=Shift+RETURN - Open in Scratchpad
  38. # LOCALIZATION NOTE (reflow.*): the console displays reflow activity.
  39. # We can get 2 kind of lines: with JS link or without JS link. It looks like
  40. # that:
  41. # reflow: 12ms
  42. # reflow: 12ms function foobar, file.js line 42
  43. # The 2nd line, from "function" to the end of the line, is a link to the
  44. # JavaScript debugger.
  45. reflow.messageWithNoLink=reflow: %Sms
  46. reflow.messageWithLink=reflow: %Sms\u0020
  47. reflow.messageLinkText=function %1$S, %2$S line %3$S
  48. # LOCALIZATION NOTE (stacktrace.anonymousFunction): this string is used to
  49. # display JavaScript functions that have no given name - they are said to be
  50. # anonymous. Test console.trace() in the webconsole.
  51. stacktrace.anonymousFunction=<anonymous>
  52. # LOCALIZATION NOTE (stacktrace.asyncStack): this string is used to
  53. # indicate that a given stack frame has an async parent.
  54. # %S is the "Async Cause" of the frame.
  55. stacktrace.asyncStack=(Async: %S)
  56. # LOCALIZATION NOTE (timerStarted): this string is used to display the result
  57. # of the console.time() call. Parameters: %S is the name of the timer.
  58. timerStarted=%S: timer started
  59. # LOCALIZATION NOTE (timeEnd): this string is used to display the result of
  60. # the console.timeEnd() call. Parameters: %1$S is the name of the timer, %2$S
  61. # is the number of milliseconds.
  62. timeEnd=%1$S: %2$Sms
  63. # LOCALIZATION NOTE (consoleCleared): this string is displayed when receiving a
  64. # call to console.clear() to let the user know the previous messages of the
  65. # console have been removed programmatically.
  66. consoleCleared=Console was cleared.
  67. # LOCALIZATION NOTE (noCounterLabel): this string is used to display
  68. # count-messages with no label provided.
  69. noCounterLabel=<no label>
  70. # LOCALIZATION NOTE (noGroupLabel): this string is used to display
  71. # console.group messages with no label provided.
  72. noGroupLabel=<no group label>
  73. # LOCALIZATION NOTE (Autocomplete.blank): this string is used when inputnode
  74. # string containing anchor doesn't matches to any property in the content.
  75. Autocomplete.blank= <- no result
  76. maxTimersExceeded=The maximum allowed number of timers in this page was exceeded.
  77. # LOCALIZATION NOTE (maxCountersExceeded): Error message shown when the maximum
  78. # number of console.count()-counters was exceeded.
  79. maxCountersExceeded=The maximum allowed number of counters in this page was exceeded.
  80. # LOCALIZATION NOTE (longStringEllipsis): the string displayed after a long
  81. # string. This string is clickable such that the rest of the string is
  82. # retrieved from the server.
  83. longStringEllipsis=[…]
  84. # LOCALIZATION NOTE (longStringTooLong): the string displayed after the user
  85. # tries to expand a long string.
  86. longStringTooLong=The string you are trying to view is too long to be displayed by the Web Console.
  87. # LOCALIZATION NOTE (connectionTimeout): message displayed when the Remote Web
  88. # Console fails to connect to the server due to a timeout.
  89. connectionTimeout=Connection timeout. Check the Error Console on both ends for potential error messages. Reopen the Web Console to try again.
  90. # LOCALIZATION NOTE (propertiesFilterPlaceholder): this is the text that
  91. # appears in the filter text box for the properties view container.
  92. propertiesFilterPlaceholder=Filter properties
  93. # LOCALIZATION NOTE (emptyPropertiesList): the text that is displayed in the
  94. # properties pane when there are no properties to display.
  95. emptyPropertiesList=No properties to display
  96. # LOCALIZATION NOTE (messageRepeats.tooltip2): the tooltip text that is displayed
  97. # when you hover the red bubble that shows how many times a message is repeated
  98. # in the web console output.
  99. # This is a semi-colon list of plural forms.
  100. # See: http://developer.mozilla.org/en/docs/Localization_and_Plurals
  101. # #1 number of message repeats
  102. # example: 3 repeats
  103. messageRepeats.tooltip2=#1 repeat;#1 repeats
  104. # LOCALIZATION NOTE (openNodeInInspector): the text that is displayed in a
  105. # tooltip when hovering over the inspector icon next to a DOM Node in the console
  106. # output
  107. openNodeInInspector=Click to select the node in the inspector
  108. # LOCALIZATION NOTE (cdFunctionInvalidArgument): the text that is displayed when
  109. # cd() is invoked with an invalid argument.
  110. cdFunctionInvalidArgument=Cannot cd() to the given window. Invalid argument.
  111. # LOCALIZATION NOTE (selfxss.msg): the text that is displayed when
  112. # a new user of the developer tools pastes code into the console
  113. # %1 is the text of selfxss.okstring
  114. selfxss.msg=Scam Warning: Take care when pasting things you don’t understand. This could allow attackers to steal your identity or take control of your computer. Please type ‘%S’ below (no need to press enter) to allow pasting.
  115. # LOCALIZATION NOTE (selfxss.msg): the string to be typed
  116. # in by a new user of the developer tools when they receive the sefxss.msg prompt.
  117. # Please avoid using non-keyboard characters here
  118. selfxss.okstring=allow pasting
  119. # LOCALIZATION NOTE (messageToggleDetails): the text that is displayed when
  120. # you hover the arrow for expanding/collapsing the message details. For
  121. # console.error() and other messages we show the stacktrace.
  122. messageToggleDetails=Show/hide message details.
  123. # LOCALIZATION NOTE (groupToggle): the text that is displayed when
  124. # you hover the arrow for expanding/collapsing the messages of a group.
  125. groupToggle=Show/hide group.
  126. # LOCALIZATION NOTE (emptySlotLabel): the text is displayed when an Array
  127. # with empty slots is printed to the console.
  128. # This is a semi-colon list of plural forms.
  129. # See: http://developer.mozilla.org/en/docs/Localization_and_Plurals
  130. # #1 number of empty slots
  131. # example: 1 empty slot
  132. # example: 5 empty slots
  133. emptySlotLabel=#1 empty slot;#1 empty slots
  134. # LOCALIZATION NOTE (table.index, table.iterationIndex, table.key, table.value):
  135. # the column header displayed in the console table widget.
  136. table.index=(index)
  137. table.iterationIndex=(iteration index)
  138. table.key=Key
  139. table.value=Values
  140. # LOCALIZATION NOTE (severity.error, severity.warn, severity.info, severity.log):
  141. # tooltip for icons next to console output
  142. severity.error=Error
  143. severity.warn=Warning
  144. severity.info=Info
  145. severity.log=Log
  146. # LOCALIZATION NOTE (level.error, level.warn, level.info, level.log, level.debug):
  147. # tooltip for icons next to console output
  148. level.error=Error
  149. level.warn=Warning
  150. level.info=Info
  151. level.log=Log
  152. level.debug=Debug
  153. # LOCALIZATION NOTE (webconsole.find.key)
  154. # Key shortcut used to focus the search box on upper right of the console
  155. webconsole.find.key=CmdOrCtrl+F
  156. # LOCALIZATION NOTE (webconsole.close.key)
  157. # Key shortcut used to close the Browser console (doesn't work in regular web console)
  158. webconsole.close.key=CmdOrCtrl+W
  159. # LOCALIZATION NOTE (webconsole.clear.key*)
  160. # Key shortcut used to clear the console output
  161. webconsole.clear.key=Ctrl+Shift+L
  162. webconsole.clear.keyOSX=Ctrl+L