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
5# LOCALIZATION NOTE These strings are used inside the JavaScript scratchpad
6# which is available from the Web Developer sub-menu -> 'Scratchpad'.
7#
8# The correct localization of this file might be to keep it in
9# English, or another language commonly spoken among web developers.
10# You want to make that choice consistent across the developer tools.
11# A good criteria is the language in which you'd find the best
12# documentation on web development on the web.
13
14# LOCALIZATION NOTE  (export.fileOverwriteConfirmation): This is displayed when
15# the user attempts to save to an already existing file.
16export.fileOverwriteConfirmation=File exists. Overwrite?
17
18# LOCALIZATION NOTE  (browserWindow.unavailable): This error message is shown
19# when Scratchpad does not find any recently active main browser window.
20browserWindow.unavailable=Scratchpad cannot find any browser window to execute the code in.
21
22# LOCALIZATION NOTE  (scratchpadContext.invalid): This error message is shown
23# when user tries to run an operation in Scratchpad in an unsupported context.
24scratchpadContext.invalid=Scratchpad cannot run this operation in the current mode.
25
26# LOCALIZATION NOTE  (openFile.title): This is the file picker title, when you
27# open a file from Scratchpad.
28openFile.title=Open File
29
30# LOCALIZATION NOTE  (openFile.failed): This is the message displayed when file
31# open fails.
32openFile.failed=Failed to read the file.
33
34# LOCALIZATION NOTE  (importFromFile.convert.failed): This is the message
35# displayed when file conversion from some charset to Unicode fails.
36# %1 is the name of the charset from which the conversion failed.
37importFromFile.convert.failed=Failed to convert file to Unicode from %1$S.
38
39# LOCALIZATION NOTE (clearRecentMenuItems.label): This is the label for the
40# menuitem in the 'Open Recent'-menu which clears all recent files.
41clearRecentMenuItems.label=Clear Items
42
43# LOCALIZATION NOTE  (saveFileAs): This is the file picker title, when you save
44# a file in Scratchpad.
45saveFileAs=Save File As
46
47# LOCALIZATION NOTE  (saveFile.failed): This is the message displayed when file
48# save fails.
49saveFile.failed=The file save operation failed.
50
51# LOCALIZATION NOTE  (confirmClose): This is message in the prompt dialog when
52# you try to close a scratchpad with unsaved changes.
53confirmClose=Do you want to save the changes you made to this scratchpad?
54
55# LOCALIZATION NOTE  (confirmClose.title): This is title of the prompt dialog when
56# you try to close a scratchpad with unsaved changes.
57confirmClose.title=Unsaved Changes
58
59# LOCALIZATION NOTE  (confirmRevert): This is message in the prompt dialog when
60# you try to revert unsaved content of scratchpad.
61confirmRevert=Do you want to revert the changes you made to this scratchpad?
62
63# LOCALIZATION NOTE  (confirmRevert.title): This is title of the prompt dialog when
64# you try to revert unsaved content of scratchpad.
65confirmRevert.title=Revert Changes
66
67# LOCALIZATION NOTE  (scratchpadIntro): This is a multi-line comment explaining
68# how to use the Scratchpad. Note that this should be a valid JavaScript
69# comment inside /* and */.
70scratchpadIntro1=/*\n * This is a JavaScript Scratchpad.\n *\n * Enter some JavaScript, then Right Click or choose from the Execute Menu:\n * 1. Run to evaluate the selected text (%1$S),\n * 2. Inspect to bring up an Object Inspector on the result (%2$S), or,\n * 3. Display to insert the result in a comment after the selection. (%3$S)\n */\n\n
71
72# LOCALIZATION NOTE  (notification.browserContext): This is the message displayed
73# over the top of the editor when the user has switched to browser context.
74browserContext.notification=This scratchpad executes in the Browser context.
75
76# LOCALIZATION NOTE (help.openDocumentationPage): This returns a localized link with
77# documentation for Scratchpad on MDN.
78help.openDocumentationPage=https://developer.mozilla.org/en/Tools/Scratchpad
79
80# LOCALIZATION NOTE (scratchpad.statusBarLineCol): Line, Column
81# information displayed in statusbar when selection is made in
82# Scratchpad.
83scratchpad.statusBarLineCol  = Line %1$S, Col %2$S
84
85# LOCALIZATION NOTE (fileExists.notification): This is the message displayed
86# over the top of the the editor when a file does not exist.
87fileNoLongerExists.notification=This file no longer exists.
88
89# LOCALIZATION NOTE (propertiesFilterPlaceholder): this is the text that
90# appears in the filter text box for the properties view container.
91propertiesFilterPlaceholder=Filter properties
92
93# LOCALIZATION NOTE (connectionTimeout): message displayed when the Remote Scratchpad
94# fails to connect to the server due to a timeout.
95connectionTimeout=Connection timeout. Check the Error Console on both ends for potential error messages. Reopen the Scratchpad to try again.
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
100selfxss.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’ in the scratchpad below to allow pasting.
101
102# LOCALIZATION NOTE (selfxss.msg): 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
105selfxss.okstring=allow pasting
106