webconsole.properties (32715B)
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 11 # LOCALIZATION NOTE (multiProcessBrowserConsole.title): Title of the Browser 12 # Console window when the pref `devtools.browsertoolbox.scope` is set to "everything". This 13 # Browser Console will log messages from all processes, not just the the parent 14 # process. 15 multiProcessBrowserConsole.title=Multiprocess Browser Console 16 17 # LOCALIZATION NOTE (parentProcessBrowserConsole.title): Title used for 18 # the Browser Console when the pref `devtools.browsertoolbox.scope` is set to "parent-process". 19 parentProcessBrowserConsole.title=Parent process Browser Console 20 21 # LOCALIZATION NOTE (timestampFormat): %1$02S = hours (24-hour clock), 22 # %2$02S = minutes, %3$02S = seconds, %4$03S = milliseconds. 23 timestampFormat=%02S:%02S:%02S.%03S 24 25 ConsoleAPIDisabled=The Web Console logging API (console.log, console.info, console.warn, console.error) has been disabled by a script on this page. 26 27 # LOCALIZATION NOTE (webConsoleXhrIndicator): the indicator displayed before 28 # a URL in the Web Console that was requested using an XMLHttpRequest. 29 webConsoleXhrIndicator=XHR 30 31 # LOCALIZATION NOTE (webConsoleMoreInfoLabel): the more info tag displayed 32 # after security related web console messages. 33 webConsoleMoreInfoLabel=Learn More 34 35 # LOCALIZATION NOTE (stacktrace.anonymousFunction): this string is used to 36 # display JavaScript functions that have no given name - they are said to be 37 # anonymous. Test console.trace() in the webconsole. 38 stacktrace.anonymousFunction=<anonymous> 39 40 # LOCALIZATION NOTE (stacktrace.asyncStack): this string is used to 41 # indicate that a given stack frame has an async parent. 42 # %S is the "Async Cause" of the frame. 43 stacktrace.asyncStack=(Async: %S) 44 45 # LOCALIZATION NOTE (timeLog): this string is used to display the result of 46 # the console.timeLog() call. Parameters: %1$S is the name of the timer, %2$S 47 # is the number of milliseconds. 48 timeLog=%1$S: %2$Sms 49 50 # LOCALIZATION NOTE (console.timeEnd): this string is used to display the result of 51 # the console.timeEnd() call. Parameters: %1$S is the name of the timer, %2$S 52 # is the number of milliseconds. 53 console.timeEnd=%1$S: %2$Sms - timer ended 54 55 # LOCALIZATION NOTE (consoleCleared): this string is displayed when receiving a 56 # call to console.clear() to let the user know the previous messages of the 57 # console have been removed programmatically. 58 consoleCleared=Console was cleared. 59 60 # LOCALIZATION NOTE (preventedConsoleClear): this string is displayed when receiving a 61 # call to console.clear() when the user has the "Persist logs" option enabled, to let the 62 # user know the console method call was ignored. 63 # "Persist Logs" should be kept in sync with webconsole.console.settings.menu.item.enablePersistentLogs.label 64 preventedConsoleClear=console.clear() was prevented due to “Persist Logs” 65 66 # LOCALIZATION NOTE (noCounterLabel): this string is used to display 67 # count-messages with no label provided. 68 noCounterLabel=<no label> 69 70 # LOCALIZATION NOTE (counterDoesntExist): this string is displayed when 71 # console.countReset() is called with a counter that doesn't exist. 72 counterDoesntExist=Counter “%S” doesn’t exist. 73 74 # LOCALIZATION NOTE (noGroupLabel): this string is used to display 75 # console.group messages with no label provided. 76 noGroupLabel=<no group label> 77 78 maxTimersExceeded=The maximum allowed number of timers in this page was exceeded. 79 timerAlreadyExists=Timer “%S” already exists. 80 timerDoesntExist=Timer “%S” doesn’t exist. 81 timerJSError=Failed to process the timer name. 82 83 # LOCALIZATION NOTE (messageRepeats.tooltip2): the tooltip text that is displayed 84 # when you hover the red bubble that shows how many times a message is repeated 85 # in the web console output. 86 # This is a semi-colon list of plural forms. 87 # See: http://developer.mozilla.org/en/docs/Localization_and_Plurals 88 # #1 number of message repeats 89 # example: 3 repeats 90 messageRepeats.tooltip2=#1 repeat;#1 repeats 91 92 # LOCALIZATION NOTE (openNodeInInspector): the text that is displayed in a 93 # tooltip when hovering over the inspector icon next to a DOM Node in the console 94 # output 95 openNodeInInspector=Click to select the node in the inspector 96 97 # LOCALIZATION NOTE (selfxss.msg): the text that is displayed when 98 # a new user of the developer tools pastes code into the console 99 # %1 is the text of selfxss.okstring 100 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. 101 102 # LOCALIZATION NOTE (selfxss.okstring): the string to be typed 103 # in by a new user of the developer tools when they receive the sefxss.msg prompt. 104 # Please avoid using non-keyboard characters here 105 selfxss.okstring=allow pasting 106 107 # LOCALIZATION NOTE (evaluationNotifcation.noOriginalVariableMapping.msg): the text for the notification message that is displayed 108 # in the console when the debugger is paused in a non-pretty printed original file and original variable mapping is turned off. 109 # `Show original variables` should be kept in sync with the checkbox label in the Scopes panel header. 110 evaluationNotifcation.noOriginalVariableMapping.msg=Original variables name mapping in the debugger is disabled. Evaluation results might not be accurate. Click the `Show original variables` checkbox in the debugger scopes panel to enable. 111 112 # LOCALIZATION NOTE (messageToggleDetails): the text that is displayed when 113 # you hover the arrow for expanding/collapsing the message details. For 114 # console.error() and other messages we show the stacktrace. 115 messageToggleDetails=Show/hide message details. 116 117 # LOCALIZATION NOTE (groupToggle): the text that is displayed when 118 # you hover the arrow for expanding/collapsing the messages of a group. 119 groupToggle=Show/hide group. 120 121 # LOCALIZATION NOTE (table.index, table.iterationIndex, table.key, table.value): 122 # the column header displayed in the console table widget. 123 table.index=(index) 124 table.iterationIndex=(iteration index) 125 table.key=Key 126 table.value=Values 127 128 # LOCALIZATION NOTE (level.error, level.warn, level.info, level.log, level.debug, level.jstracer): 129 # tooltip for icons next to console output. 130 # "level.jstracer" isn't related to console.api call, but rather to the JavaScript Tracer, 131 # each item represents a function call being logged in the console. 132 level.error=Error 133 level.warn=Warning 134 level.info=Info 135 level.log=Log 136 level.debug=Debug 137 level.jstracer=Function call 138 139 # LOCALIZATION NOTE (logpoint.title) 140 # Tooltip shown for logpoints sent from the debugger 141 logpoint.title=Logpoints from the debugger 142 143 # LOCALIZATION NOTE (logtrace.title) 144 # Tooltip shown for JavaScript tracing logs 145 logtrace.title=JavaScript tracing 146 147 # LOCALIZATION NOTE (blockedrequest.label2) 148 # Tooltip shown for blocked network events 149 blockedrequest.label2=Blocked 150 151 # LOCALIZATION NOTE (webconsole.disableIcon.title) 152 # Tooltip shown for disabled console messages 153 webconsole.disableIcon.title=This message is no longer active, message details are not available 154 155 # LOCALIZATION NOTE (command.title) 156 # Tooltip shown for console input evaluated code displayed in the console output 157 command.title=Evaluated code 158 159 # LOCALIZATION NOTE (result.title) 160 # Tooltip shown for evaluation result displayed in the console output 161 result.title=Evaluation result 162 163 # LOCALIZATION NOTE (webconsole.find.key) 164 # Key shortcut used to focus the search box on upper right of the console 165 webconsole.find.key=CmdOrCtrl+F 166 167 # LOCALIZATION NOTE (webconsole.close.key) 168 # Key shortcut used to close the Browser console (doesn't work in regular web console) 169 webconsole.close.key=CmdOrCtrl+W 170 171 # LOCALIZATION NOTE (webconsole.clear.key*) 172 # Key shortcut used to clear the console output 173 webconsole.clear.key=Ctrl+Shift+L 174 webconsole.clear.keyOSX=Ctrl+L 175 webconsole.clear.alternativeKeyOSX=Cmd+K 176 177 # LOCALIZATION NOTE (webconsole.menu.copyURL.label) 178 # Label used for a context-menu item displayed for network message logs. Clicking on it 179 # copies the URL displayed in the message to the clipboard. 180 webconsole.menu.copyURL.label=Copy Link Location 181 webconsole.menu.copyURL.accesskey=a 182 183 # LOCALIZATION NOTE (webconsole.menu.openURL.label) 184 # Label used for a context-menu item displayed for network message logs. Clicking on it 185 # opens the URL displayed in a new browser tab. 186 webconsole.menu.openURL.label=Open URL in New Tab 187 webconsole.menu.openURL.accesskey=T 188 189 # LOCALIZATION NOTE (webconsole.menu.openInNetworkPanel.label) 190 # Label used for a context-menu item displayed for network message logs. Clicking on it 191 # opens the network message in the Network panel 192 webconsole.menu.openInNetworkPanel.label=Open in Network Panel 193 webconsole.menu.openInNetworkPanel.accesskey=N 194 195 # LOCALIZATION NOTE (webconsole.menu.resendNetworkRequest.label) 196 # Label used for a context-menu item displayed for network message logs. Clicking on it 197 # resends the network request 198 webconsole.menu.resendNetworkRequest.label=Resend Request 199 webconsole.menu.resendNetworkRequest.accesskey=n 200 201 # LOCALIZATION NOTE (webconsole.menu.openNodeInInspector.label) 202 # Label used for a context-menu item displayed for DOM Node logs. Clicking on it will 203 # reveal that specific DOM Node in the Inspector. 204 webconsole.menu.openNodeInInspector.label=Reveal in Inspector 205 webconsole.menu.openNodeInInspector.accesskey=Q 206 207 # LOCALIZATION NOTE (webconsole.menu.storeAsGlobalVar.label) 208 # Label used for a context-menu item displayed for object/variable logs. Clicking on it 209 # creates a new global variable pointing to the logged variable. 210 webconsole.menu.storeAsGlobalVar.label=Store as Global Variable 211 webconsole.menu.storeAsGlobalVar.accesskey=S 212 213 # LOCALIZATION NOTE (webconsole.menu.copyMessage.label) 214 # Label used for a context-menu item displayed for any log. Clicking on it will copy the 215 # content of the log (or the user selection, if any). 216 webconsole.menu.copyMessage.label=Copy Message 217 webconsole.menu.copyMessage.accesskey=C 218 219 # LOCALIZATION NOTE (webconsole.menu.copyObject.label) 220 # Label used for a context-menu item displayed for object/variable log. Clicking on it 221 # will copy the object/variable. 222 webconsole.menu.copyObject.label=Copy Object 223 webconsole.menu.copyObject.accesskey=o 224 225 # LOCALIZATION NOTE (webconsole.menu.openInSidebar.label) 226 # Label used for a context-menu item displayed for object/variable logs. Clicking on it 227 # opens the webconsole sidebar for the logged variable. 228 webconsole.menu.openInSidebar.label1=Inspect object in Sidebar 229 webconsole.menu.openInSidebar.accesskey=V 230 231 # LOCALIZATION NOTE (webconsole.menu.copyAllMessages.label) 232 # Label used for a context-menu item displayed on the output. Clicking on it 233 # copies the entire output of the console to the clipboard. 234 webconsole.menu.copyAllMessages.label=Copy all Messages 235 webconsole.menu.copyAllMessages.accesskey=M 236 237 # LOCALIZATION NOTE (webconsole.menu.saveAllMessagesFile.label) 238 # Label used for a context-menu item displayed on the output. Clicking on it 239 # opens a file picker to allow the user save a file containing 240 # the output of the console. 241 webconsole.menu.saveAllMessagesFile.label=Save all Messages to File 242 webconsole.menu.saveAllMessagesFile.accesskey=F 243 244 # LOCALIZATION NOTE (webconsole.clearButton.tooltipWithHotkeyHint) 245 # Label used for the tooltip on the clear logs button in the console top toolbar bar. 246 # Clicking on it will clear the content of the console. 247 webconsole.clearButton.tooltipWithHotkeyHint=Clear the Web Console output (%S) 248 249 # LOCALIZATION NOTE (webconsole.toggleFilterButton.tooltip) 250 # Label used for the tooltip on the toggle filter bar button in the console top 251 # toolbar bar. Clicking on it will toggle the visibility of an additional bar which 252 # contains filter buttons. 253 webconsole.toggleFilterButton.tooltip=Toggle filter bar 254 255 # LOCALIZATION NOTE (webconsole.filterInput.placeholder) 256 # Label used for for the placeholder on the filter input, in the console top toolbar. 257 webconsole.filterInput.placeholder=Filter Output 258 259 # LOCALIZATION NOTE (webconsole.errorsFilterButton.label) 260 # Label used as the text of the "Errors" button in the additional filter toolbar. 261 # It shows or hides error messages, either inserted in the page using 262 # console.error() or as a result of a javascript error.. 263 webconsole.errorsFilterButton.label=Errors 264 265 # LOCALIZATION NOTE (webconsole.warningsFilterButton.label) 266 # Label used as the text of the "Warnings" button in the additional filter toolbar. 267 # It shows or hides warning messages, inserted in the page using console.warn(). 268 webconsole.warningsFilterButton.label=Warnings 269 270 # LOCALIZATION NOTE (webconsole.logsFilterButton.label) 271 # Label used as the text of the "Logs" button in the additional filter toolbar. 272 # It shows or hides log messages, inserted in the page using console.log(). 273 webconsole.logsFilterButton.label=Logs 274 275 # LOCALIZATION NOTE (webconsole.infoFilterButton.label) 276 # Label used as the text of the "Info" button in the additional filter toolbar. 277 # It shows or hides info messages, inserted in the page using console.info(). 278 webconsole.infoFilterButton.label=Info 279 280 # LOCALIZATION NOTE (webconsole.debugFilterButton.label) 281 # Label used as the text of the "Debug" button in the additional filter toolbar. 282 # It shows or hides debug messages, inserted in the page using console.debug(). 283 webconsole.debugFilterButton.label=Debug 284 285 # LOCALIZATION NOTE (webconsole.cssFilterButton.label) 286 # Label used as the text of the "CSS" button in the additional filter toolbar. 287 # It shows or hides CSS warning messages, inserted in the page by the browser 288 # when there are CSS errors in the page. 289 webconsole.cssFilterButton.label=CSS 290 291 # LOCALIZATION NOTE (webconsole.cssFilterButton.inactive.tooltip) 292 # Label used as the tooltip of the "CSS" button in the additional filter toolbar, when the 293 # filter is inactive (=unchecked). 294 webconsole.cssFilterButton.inactive.tooltip=Stylesheets will be reparsed to check for errors. Refresh the page to also see errors from stylesheets modified from Javascript. 295 296 # LOCALIZATION NOTE (webconsole.xhrFilterButton.label) 297 # Label used as the text of the "XHR" button in the additional filter toolbar. 298 # It shows or hides messages displayed when the page makes an XMLHttpRequest or 299 # a fetch call. 300 webconsole.xhrFilterButton.label=XHR 301 302 # LOCALIZATION NOTE (webconsole.requestsFilterButton.label) 303 # Label used as the text of the "Requests" button in the additional filter toolbar. 304 # It shows or hides messages displayed when the page makes a network call, for example 305 # when an image or a scripts is requested. 306 webconsole.requestsFilterButton.label=Requests 307 308 # LOCALIZATION NOTE (webconsole.filteredMessagesByText.label) 309 # Text on the filter input displayed when some console messages are hidden because the 310 # user has filled in the input. 311 # This is a semi-colon list of plural forms. 312 # See: http://developer.mozilla.org/en/docs/Localization_and_Plurals 313 # example: 345 hidden. 314 webconsole.filteredMessagesByText.label=#1 hidden;#1 hidden 315 316 # LOCALIZATION NOTE (webconsole.filteredMessagesByText.tooltip) 317 # Tooltip on the filter input "hidden" text, displayed when some console messages are 318 # hidden because the user has filled in the input. 319 # This is a semi-colon list of plural forms. 320 # See: http://developer.mozilla.org/en/docs/Localization_and_Plurals 321 # example: 345 items hidden by text filter. 322 webconsole.filteredMessagesByText.tooltip=#1 item hidden by text filter;#1 items hidden by text filter 323 324 # LOCALIZATION NOTE (webconsole.console.settings.menu.menuButton.tooltip) 325 # Tooltip for the filter bar preferences menu. This menu will display multiple perefences for the 326 # filter bar, such as enabling the compact toolbar mode, enable the timestamps, persist logs, etc 327 webconsole.console.settings.menu.button.tooltip=Console Settings 328 329 # LOCALIZATION NOTE (webconsole.console.settings.menu.item.compactToolbar.label) 330 # Label for the `Compact Toolbar` preference option. This will turn the message filters buttons 331 # into a Menu Button, making the filter bar more compact. 332 webconsole.console.settings.menu.item.compactToolbar.label=Compact Toolbar 333 334 # LOCALIZATION NOTE (webconsole.console.settings.menu.item.timestamps.label) 335 # Label for enabling the timestamps in the Web Console. 336 webconsole.console.settings.menu.item.timestamps.label=Show Timestamps 337 # LOCALIZATION NOTE (webconsole.console.settings.menu.item.timestamps.tooltip) 338 webconsole.console.settings.menu.item.timestamps.tooltip=If you enable this option commands and output in the Web Console will display a timestamp 339 340 # LOCALIZATION NOTE (webconsole.console.settings.menu.item.warningGroups.label) 341 # Label for grouping the similar messages in the Web Console 342 webconsole.console.settings.menu.item.warningGroups.label=Group Similar Messages 343 # LOCALIZATION NOTE (webconsole.console.settings.menu.item.warningGroups.tooltip) 344 webconsole.console.settings.menu.item.warningGroups.tooltip=When enabled, similar messages are placed into groups 345 346 # LOCALIZATION NOTE (webconsole.console.settings.menu.item.autocomplete.label) 347 # Label for enabling autocomplete for input in the Web Console 348 webconsole.console.settings.menu.item.autocomplete.label=Enable Autocompletion 349 # LOCALIZATION NOTE (webconsole.console.settings.menu.item.autocomplete.tooltip) 350 webconsole.console.settings.menu.item.autocomplete.tooltip=If you enable this option the input will display suggestions as you type in it 351 352 # LOCALIZATION NOTE (webconsole.console.settings.menu.item.enablePersistentLogs.label) 353 webconsole.console.settings.menu.item.enablePersistentLogs.label=Persist Logs 354 # LOCALIZATION NOTE (webconsole.console.settings.menu.item.enablePersistentLogs.tooltip) 355 webconsole.console.settings.menu.item.enablePersistentLogs.tooltip=If you enable this option the output will not be cleared each time you navigate to a new page 356 357 # LOCALIZATION NOTE (webconsole.console.settings.menu.item.instantEvaluation.label) 358 webconsole.console.settings.menu.item.instantEvaluation.label=Instant Evaluation 359 # LOCALIZATION NOTE (webconsole.console.settings.menu.item.instantEvaluation.tooltip) 360 webconsole.console.settings.menu.item.instantEvaluation.tooltip=If you enable this option the input will be instantly evaluated as you type in it 361 362 # LOCALIZATION NOTE (browserconsole.enableNetworkMonitoring.label) 363 # Label used in the browser console / browser toolbox console. This label is used for a checkbox that 364 # allows the user enable monitoring of network requests. 365 browserconsole.enableNetworkMonitoring.label=Enable Network Monitoring 366 # LOCALIZATION NOTE (browserconsole.enableNetworkMonitoring.tooltip) 367 # Tooltip for the "Enable Network Monitoring" check item. 368 browserconsole.enableNetworkMonitoring.tooltip=Enable this to start listening to network requests 369 370 # LOCALIZATION NOTE (webconsole.navigated): this string is used in the console when the 371 # current inspected page is navigated to a new location. 372 # Parameters: %S is the new URL. 373 webconsole.navigated=Navigated to %S 374 375 # LOCALIZATION NOTE (webconsole.reloaded): this string is used in the console when the 376 # current inspected page is reloaded from DevTools. 377 webconsole.reloaded=Reloaded 378 379 # LOCALIZATION NOTE (webconsole.closeSplitConsoleButton.tooltip): This is the tooltip for 380 # the close button of the split console. 381 webconsole.closeSplitConsoleButton.tooltip=Close Split Console (Esc) 382 383 # LOCALIZATION NOTE (webconsole.closeSidebarButton.tooltip): This is the tooltip for 384 # the close button of the sidebar. 385 webconsole.closeSidebarButton.tooltip=Close Sidebar 386 387 # LOCALIZATION NOTE (webconsole.reverseSearch.input.placeHolder): 388 # This string is displayed in the placeholder of the reverse search input in the console. 389 webconsole.reverseSearch.input.placeHolder=Search history 390 391 # LOCALIZATION NOTE (webconsole.reverseSearch.result.closeButton.tooltip): 392 # This string is displayed in the tooltip of the close button in the reverse search toolbar. 393 # A keyboard shortcut will be shown inside the latter pair of brackets. 394 webconsole.reverseSearch.closeButton.tooltip=Close (%S) 395 396 # LOCALIZATION NOTE (webconsole.reverseSearch.results): 397 # This string is displayed in the reverse search UI when there are at least one result 398 # to the search. 399 # This is a semi-colon list of plural forms. 400 # See: http://developer.mozilla.org/en/docs/Localization_and_Plurals 401 # #1 index of current search result displayed. 402 # #2 total number of search results. 403 webconsole.reverseSearch.results=#2 result;#1 of #2 results 404 405 # LOCALIZATION NOTE (webconsole.reverseSearch.noResult): 406 # This string is displayed in the reverse search UI when there is no results to the search. 407 webconsole.reverseSearch.noResult=No results 408 409 # LOCALIZATION NOTE (webconsole.reverseSearch.result.previousButton.tooltip): 410 # This string is displayed in the tooltip of the "previous result" button in the reverse search toolbar. 411 # A keyboard shortcut will be shown inside the latter pair of brackets. 412 webconsole.reverseSearch.result.previousButton.tooltip=Previous result (%S) 413 414 # LOCALIZATION NOTE (webconsole.reverseSearch.result.nextButton.tooltip): 415 # This string is displayed in the tooltip of the "next result" button in the reverse search toolbar. 416 # A keyboard shortcut will be shown inside the latter pair of brackets. 417 webconsole.reverseSearch.result.nextButton.tooltip=Next result (%S) 418 419 # LOCALIZATION NOTE (webconsole.confirmDialog.getter.label) 420 # Label used for the "invoke getter" confirm dialog that appears in the console when 421 # a user tries to autocomplete a property with a getter. 422 # Example: given the following object `x = {get y() {}}`, when the user types `x.y.`, it 423 # would return "Invoke getter y to retrieve the property list?". 424 # Parameters: %S is the name of the getter. 425 webconsole.confirmDialog.getter.label=Invoke getter %S to retrieve the property list? 426 427 # LOCALIZATION NOTE (webconsole.confirmDialog.getter.invokeButtonLabelWithShortcut) 428 # Label used for the confirm button in the "invoke getter" dialog that appears in the 429 # console when a user tries to autocomplete a property with a getter. 430 # A keyboard shortcut will be shown inside the latter pair of brackets. 431 webconsole.confirmDialog.getter.invokeButtonLabelWithShortcut=Invoke (%S) 432 433 # LOCALIZATION NOTE (webconsole.confirmDialog.getter.closeButton.tooltip) 434 # Label used as the tooltip for the close button in the "invoke getter" dialog that 435 # appears in the console when a user tries to autocomplete a property with a getter. 436 # A keyboard shortcut will be shown inside the latter pair of brackets. 437 webconsole.confirmDialog.getter.closeButton.tooltip=Close (%S) 438 439 # LOCALIZATION NOTE (webconsole.cssWarningElements.label) 440 # Label for the list of HTML elements matching the selector associated 441 # with the CSS warning. Parameters: %S is the CSS selector. 442 webconsole.cssWarningElements.label=Elements matching selector: %S 443 444 # LOCALIZATION NOTE (webconsole.message.componentDidCatch.label) 445 # Label displayed when the webconsole couldn't handle a given packet. 446 # Parameters: %S is the URL to file a bug about the error. 447 webconsole.message.componentDidCatch.label=[DEVTOOLS ERROR] We’re sorry, we couldn’t render the message. This shouldn’t have happened - please file a bug at %S with the message metadata in the description. 448 449 # LOCALIZATION NOTE (webconsole.message.commands.copyValueToClipboard) 450 # Label displayed when the string is copied to the clipboard as a result of a copy command, 451 # in the console, for example, copy({hello: "world"}). 452 webconsole.message.commands.copyValueToClipboard=String was copied to clipboard. 453 454 # LOCALIZATION NOTE (webconsole.message.commands.startTracingToWebConsole) 455 # Label displayed when :trace command was executed and the JavaScript tracer started to log to the web console. 456 webconsole.message.commands.startTracingToWebConsole=Started tracing to Web Console 457 458 # LOCALIZATION NOTE (webconsole.message.commands.startTracingToDebuggerSidebar) 459 # Label displayed when :trace command was executed and the JavaScript tracer started to log to the debugger sidebar. 460 webconsole.message.commands.startTracingToDebuggerSidebar=Started tracing to Debugger Sidebar 461 462 # LOCALIZATION NOTE (webconsole.message.commands.startTracingToStdout) 463 # Label displayed when :trace command was executed and the JavaScript tracer started to log to stdout. 464 webconsole.message.commands.startTracingToStdout=Started tracing to stdout 465 466 # LOCALIZATION NOTE (webconsole.message.commands.startTracingToProfiler) 467 # Label displayed when :trace command was executed and the JavaScript tracer will open the profiler showing all the traces, 468 # but only on stop. 469 webconsole.message.commands.startTracingToProfiler=Started tracing to the Profiler. The traces will be displayed in the profiler on stop. 470 471 # LOCALIZATION NOTE (webconsole.message.commands.stopTracing) 472 # Label displayed when the JavaScript tracer stopped 473 webconsole.message.commands.stopTracing=Stopped tracing 474 475 # LOCALIZATION NOTE (webconsole.message.commands.stopTracingWithReason) 476 # Label displayed when the JavaScript tracer stopped with a particular reason 477 # which isn't user explicit stop request. Can be reaching the max-depth option, or an infinite loop. 478 webconsole.message.commands.stopTracingWithReason=Stopped tracing (reason: %S) 479 480 # LOCALIZATION NOTE (webconsole.error.commands.copyError): 481 # the error that is displayed when the "copy" command can't stringify an object 482 # "copy" should not be translated, because is a function name. 483 # Parameters: %S is the original error message 484 webconsole.error.commands.copyError=`copy` command failed, object can’t be stringified: %S 485 486 # LOCALIZATION NOTE (webconsole.message.commands.blockedUR) 487 # Label displayed when the :block <url> command is successful 488 # Parameters: %S is the URL filter 489 webconsole.message.commands.blockedURL=Requests to URL containing “%S” are now blocked 490 491 # LOCALIZATION NOTE (webconsole.message.commands.unblockedURL) 492 # Label displayed when the :unblock <url> command is successful 493 # Parameters: %S is the URL filter 494 webconsole.message.commands.unblockedURL=Removed blocking filter “%S” 495 496 # LOCALIZATION NOTE (webconsole.messages.commands.blockArgMissing) 497 # Message displayed when no filter is passed to block/unblock command 498 webconsole.messages.commands.blockArgMissing=No filter was specified 499 500 # LOCALIZATION NOTE (webconsole.message.componentDidCatch.copyButton.label) 501 # Label displayed on the button next to the message we display when the webconsole 502 # couldn't handle a given packet (See webconsole.message.componentDidCatch.label). 503 webconsole.message.componentDidCatch.copyButton.label=Copy message metadata to clipboard 504 505 506 # LOCALIZATION NOTE (webconsole.editor.toolbar.executeButton.label) 507 # Label used for the text of the execute button, in the editor toolbar, which is 508 # displayed when the editor mode is enabled (devtools.webconsole.input.editor=true). 509 webconsole.editor.toolbar.executeButton.label=Run 510 511 # LOCALIZATION NOTE (webconsole.editor.toolbar.reverseSearchButton.openReverseSearch.tooltip) 512 # Label used for the tooltip on the reverse search button for opening the Reverse Search UI. 513 # The Reverse Search is a feature that mimics the bash-like reverse search of 514 # command history in WebConsole, searching commands from the last item backwards. 515 # Parameters: %S is the keyboard shortcut. 516 webconsole.editor.toolbar.reverseSearchButton.openReverseSearch.tooltip=Open History Reverse Search (%S) 517 518 # LOCALIZATION NOTE (webconsole.editor.toolbar.reverseSearchButton.closeReverseSearch.tooltip) 519 # Label used for the tooltip on the reverse search button for closing the Reverse Search UI. 520 # The Reverse Search is a feature that mimics the bash-like reverse search of 521 # command history in WebConsole, searching commands from the last item backwards. 522 # Parameters: %S is the keyboard shortcut. 523 webconsole.editor.toolbar.reverseSearchButton.closeReverseSearch.tooltip=Close History Reverse Search (%S) 524 525 # LOCALIZATION NOTE (webconsole.editor.toolbar.executeButton.tooltip) 526 # Label used for the tooltip on the execute button, in the editor toolbar, which is 527 # displayed when the editor mode is enabled (devtools.webconsole.input.editor=true). 528 # Parameters: %S is the keyboard shortcut. 529 webconsole.editor.toolbar.executeButton.tooltip=Run expression (%S). This won’t clear the input. 530 531 # LOCALIZATION NOTE (webconsole.editor.toolbar.prettyPrintButton.tooltip) 532 # Label used for the tooltip on the prettyPrint button, in the editor toolbar, which is 533 # displayed when the editor mode is enabled (devtools.webconsole.input.editor=true). 534 webconsole.editor.toolbar.prettyPrintButton.tooltip=Pretty print expression 535 536 # LOCALIZATION NOTE (webconsole.editor.toolbar.executeButton.tooltip) 537 # Label used for the tooltip on the history previous expression, in the editor toolbar, 538 # which is displayed when the editor mode is enabled (devtools.webconsole.input.editor=true). 539 webconsole.editor.toolbar.history.prevExpressionButton.tooltip=Previous Expression 540 541 542 # LOCALIZATION NOTE (webconsole.editor.toolbar.executeButton.tooltip) 543 # Label used for the tooltip on the history next expression, in the editor toolbar, 544 # which is displayed when the editor mode is enabled (devtools.webconsole.input.editor=true). 545 webconsole.editor.toolbar.history.nextExpressionButton.tooltip=Next Expression 546 547 # LOCALIZATION NOTE (webconsole.editor.toolbar.closeButton.tooltip2) 548 # Label used for the tooltip on the close button, in the editor toolbar, which is 549 # displayed when the editor mode is enabled (devtools.webconsole.input.editor=true). 550 # Parameters: %S is the keyboard shortcut. 551 webconsole.editor.toolbar.closeButton.tooltip2=Switch back to inline mode (%S) 552 553 # LOCALIZATION NOTE (webconsole.input.openEditorButton.tooltip2) 554 # Label used for the tooltip on the open editor button, in console input, which is 555 # displayed when the console is in regular mode. 556 # Parameters: %S is the keyboard shortcut. 557 webconsole.input.openEditorButton.tooltip2=Switch to multi-line editor mode (%S) 558 559 # LOCALIZATION NOTE (webconsole.warningGroup.messageCount.tooltip): the tooltip text 560 # displayed when you hover a warning group badge (i.e. repeated warning messages for a 561 # given category, for example Content Blocked messages) in the web console output. 562 # This is a semi-colon list of plural forms. 563 # See: http://developer.mozilla.org/en/docs/Localization_and_Plurals 564 # #1 number of message in the group. 565 # example: 3 messages 566 webconsole.warningGroup.messageCount.tooltip=#1 message;#1 messages 567 568 # LOCALIZATION NOTE (webconsole.input.editor.onboarding.label): the text that is displayed 569 # when displaying the multiline-input mode for the first time, until the user dismiss the 570 # text. 571 # Parameters: %1$S is Enter key, %2$S is the shortcut to evaluate the expression ( 572 # Ctrl+Enter or Cmd+Enter on OSX). 573 webconsole.input.editor.onboarding.label=Iterate on your code faster with the new multi-line editor mode. Use %1$S to add new lines and %2$S to run. 574 575 # LOCALIZATION NOTE (webconsole.input.editor.onboarding.dismiss.label): the text that is 576 # displayed in the multiline-input mode onboarding UI to dismiss it. 577 webconsole.input.editor.onboarding.dismiss.label=Got it! 578 579 # LOCALIZATION NOTE (webconsole.enterKey): The text that will be used to represent the 580 # Enter key in the editor onboarding UI, as well as on the Editor toolbar "Run" button 581 # tooltip. 582 webconsole.enterKey=Enter 583 584 # LOCALIZATION NOTE (webconsole.input.openJavaScriptFile): This is a label 585 # used for opening a file in the console input (Ctrl+O or Cmd+O on OSX while 586 # being focused on the input). 587 webconsole.input.openJavaScriptFile=Open JavaScript File 588 589 # LOCALIZATION NOTE (webconsole.input.openJavaScriptFileFilter): 590 # This string is displayed as a filter when opening a file in the console input. 591 webconsole.input.openJavaScriptFileFilter=JavaScript Files 592 593 # LOCALIZATION NOTE (webconsole.input.selector.top): This is the term used 594 # to describe the primary thread of execution in the page 595 webconsole.input.selector.top=Top 596 597 # LOCALIZATION NOTE (webconsole.input.selector.tooltip): This is the tooltip 598 # shown when users select a thread that they want to evaluate an 599 # expression for. 600 webconsole.input.selector.tooltip=Select evaluation context 601 602 # LOCALIZATION NOTE (webconsole.group.cookie): 603 webconsole.group.cookie=Cookie warnings 604 605 # LOCALIZATION NOTE (webconsole.group.csp): do not translate 606 # 'Content-Security-Policy', as that's the name of the header. 607 webconsole.group.csp=Content-Security-Policy warnings