123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- # This Source Code Form is subject to the terms of the Mozilla Public
- # License, v. 2.0. If a copy of the MPL was not distributed with this
- # file, You can obtain one at http://mozilla.org/MPL/2.0/.
- # LOCALIZATION NOTE
- # The correct localization of this file might be to keep it in
- # English, or another language commonly spoken among web developers.
- # You want to make that choice consistent across the developer tools.
- # A good criteria is the language in which you'd find the best
- # documentation on web development on the web.
- # LOCALIZATION NOTE (timestampFormat): %1$02S = hours (24-hour clock),
- # %2$02S = minutes, %3$02S = seconds, %4$03S = milliseconds.
- timestampFormat=%02S:%02S:%02S.%03S
- helperFuncUnsupportedTypeError=Can’t call pprint on this type of object.
- # LOCALIZATION NOTE (NetworkPanel.deltaDurationMS): this string is used to
- # show the duration between two network events (e.g request and response
- # header or response header and response body). Parameters: %S is the duration.
- NetworkPanel.durationMS=%Sms
- ConsoleAPIDisabled=The Web Console logging API (console.log, console.info, console.warn, console.error) has been disabled by a script on this page.
- # LOCALIZATION NOTE (webConsoleWindowTitleAndURL): the Web Console floating
- # panel title. For RTL languages you need to set the LRM in the string to give
- # the URL the correct direction. Parameters: %S is the web page URL.
- webConsoleWindowTitleAndURL=Web Console - %S
- # LOCALIZATION NOTE (webConsoleXhrIndicator): the indicator displayed before
- # a URL in the Web Console that was requested using an XMLHttpRequest.
- # Should probably be the same as &btnConsoleXhr; in webConsole.dtd
- webConsoleXhrIndicator=XHR
- # LOCALIZATION NOTE (webConsoleMixedContentWarning): the message displayed
- # after a URL in the Web Console that has been flagged for Mixed Content (i.e.
- # http content in an https page).
- webConsoleMixedContentWarning=Mixed Content
- # LOCALIZATION NOTE (webConsoleMoreInfoLabel): the more info tag displayed
- # after security related web console messages.
- webConsoleMoreInfoLabel=Learn More
- # LOCALIZATION NOTE (scratchpad.linkText): the text used in the right hand
- # side of the Web Console command line when JavaScript is being entered, to
- # indicate how to jump into scratchpad mode.
- scratchpad.linkText=Shift+RETURN - Open in Scratchpad
- # LOCALIZATION NOTE (reflow.*): the console displays reflow activity.
- # We can get 2 kind of lines: with JS link or without JS link. It looks like
- # that:
- # reflow: 12ms
- # reflow: 12ms function foobar, file.js line 42
- # The 2nd line, from "function" to the end of the line, is a link to the
- # JavaScript debugger.
- reflow.messageWithNoLink=reflow: %Sms
- reflow.messageWithLink=reflow: %Sms\u0020
- reflow.messageLinkText=function %1$S, %2$S line %3$S
- # LOCALIZATION NOTE (stacktrace.anonymousFunction): this string is used to
- # display JavaScript functions that have no given name - they are said to be
- # anonymous. Test console.trace() in the webconsole.
- stacktrace.anonymousFunction=<anonymous>
- # LOCALIZATION NOTE (stacktrace.asyncStack): this string is used to
- # indicate that a given stack frame has an async parent.
- # %S is the "Async Cause" of the frame.
- stacktrace.asyncStack=(Async: %S)
- # LOCALIZATION NOTE (timerStarted): this string is used to display the result
- # of the console.time() call. Parameters: %S is the name of the timer.
- timerStarted=%S: timer started
- # LOCALIZATION NOTE (timeEnd): this string is used to display the result of
- # the console.timeEnd() call. Parameters: %1$S is the name of the timer, %2$S
- # is the number of milliseconds.
- timeEnd=%1$S: %2$Sms
- # LOCALIZATION NOTE (consoleCleared): this string is displayed when receiving a
- # call to console.clear() to let the user know the previous messages of the
- # console have been removed programmatically.
- consoleCleared=Console was cleared.
- # LOCALIZATION NOTE (noCounterLabel): this string is used to display
- # count-messages with no label provided.
- noCounterLabel=<no label>
- # LOCALIZATION NOTE (noGroupLabel): this string is used to display
- # console.group messages with no label provided.
- noGroupLabel=<no group label>
- # LOCALIZATION NOTE (Autocomplete.blank): this string is used when inputnode
- # string containing anchor doesn't matches to any property in the content.
- Autocomplete.blank= <- no result
- maxTimersExceeded=The maximum allowed number of timers in this page was exceeded.
- # LOCALIZATION NOTE (maxCountersExceeded): Error message shown when the maximum
- # number of console.count()-counters was exceeded.
- maxCountersExceeded=The maximum allowed number of counters in this page was exceeded.
- # LOCALIZATION NOTE (longStringEllipsis): the string displayed after a long
- # string. This string is clickable such that the rest of the string is
- # retrieved from the server.
- longStringEllipsis=[…]
- # LOCALIZATION NOTE (longStringTooLong): the string displayed after the user
- # tries to expand a long string.
- longStringTooLong=The string you are trying to view is too long to be displayed by the Web Console.
- # LOCALIZATION NOTE (connectionTimeout): message displayed when the Remote Web
- # Console fails to connect to the server due to a timeout.
- connectionTimeout=Connection timeout. Check the Error Console on both ends for potential error messages. Reopen the Web Console to try again.
- # LOCALIZATION NOTE (propertiesFilterPlaceholder): this is the text that
- # appears in the filter text box for the properties view container.
- propertiesFilterPlaceholder=Filter properties
- # LOCALIZATION NOTE (emptyPropertiesList): the text that is displayed in the
- # properties pane when there are no properties to display.
- emptyPropertiesList=No properties to display
- # LOCALIZATION NOTE (messageRepeats.tooltip2): the tooltip text that is displayed
- # when you hover the red bubble that shows how many times a message is repeated
- # in the web console output.
- # This is a semi-colon list of plural forms.
- # See: http://developer.mozilla.org/en/docs/Localization_and_Plurals
- # #1 number of message repeats
- # example: 3 repeats
- messageRepeats.tooltip2=#1 repeat;#1 repeats
- # LOCALIZATION NOTE (openNodeInInspector): the text that is displayed in a
- # tooltip when hovering over the inspector icon next to a DOM Node in the console
- # output
- openNodeInInspector=Click to select the node in the inspector
- # LOCALIZATION NOTE (cdFunctionInvalidArgument): the text that is displayed when
- # cd() is invoked with an invalid argument.
- cdFunctionInvalidArgument=Cannot cd() to the given window. Invalid argument.
- # LOCALIZATION NOTE (selfxss.msg): the text that is displayed when
- # a new user of the developer tools pastes code into the console
- # %1 is the text of selfxss.okstring
- 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.
- # LOCALIZATION NOTE (selfxss.msg): the string to be typed
- # in by a new user of the developer tools when they receive the sefxss.msg prompt.
- # Please avoid using non-keyboard characters here
- selfxss.okstring=allow pasting
- # LOCALIZATION NOTE (messageToggleDetails): the text that is displayed when
- # you hover the arrow for expanding/collapsing the message details. For
- # console.error() and other messages we show the stacktrace.
- messageToggleDetails=Show/hide message details.
- # LOCALIZATION NOTE (groupToggle): the text that is displayed when
- # you hover the arrow for expanding/collapsing the messages of a group.
- groupToggle=Show/hide group.
- # LOCALIZATION NOTE (emptySlotLabel): the text is displayed when an Array
- # with empty slots is printed to the console.
- # This is a semi-colon list of plural forms.
- # See: http://developer.mozilla.org/en/docs/Localization_and_Plurals
- # #1 number of empty slots
- # example: 1 empty slot
- # example: 5 empty slots
- emptySlotLabel=#1 empty slot;#1 empty slots
- # LOCALIZATION NOTE (table.index, table.iterationIndex, table.key, table.value):
- # the column header displayed in the console table widget.
- table.index=(index)
- table.iterationIndex=(iteration index)
- table.key=Key
- table.value=Values
- # LOCALIZATION NOTE (severity.error, severity.warn, severity.info, severity.log):
- # tooltip for icons next to console output
- severity.error=Error
- severity.warn=Warning
- severity.info=Info
- severity.log=Log
- # LOCALIZATION NOTE (level.error, level.warn, level.info, level.log, level.debug):
- # tooltip for icons next to console output
- level.error=Error
- level.warn=Warning
- level.info=Info
- level.log=Log
- level.debug=Debug
- # LOCALIZATION NOTE (webconsole.find.key)
- # Key shortcut used to focus the search box on upper right of the console
- webconsole.find.key=CmdOrCtrl+F
- # LOCALIZATION NOTE (webconsole.close.key)
- # Key shortcut used to close the Browser console (doesn't work in regular web console)
- webconsole.close.key=CmdOrCtrl+W
- # LOCALIZATION NOTE (webconsole.clear.key*)
- # Key shortcut used to clear the console output
- webconsole.clear.key=Ctrl+Shift+L
- webconsole.clear.keyOSX=Ctrl+L
|