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