123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- <!-- 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 : FILE This file contains the Scratchpad window strings -->
- <!-- LOCALIZATION NOTE : FILE Do not translate commandkeys -->
- <!-- LOCALIZATION NOTE : FILE 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 (scratchpad.title):
- - The Scratchpad is intended to provide a simple text editor for creating
- - and evaluating bits of JavaScript code for the purposes of function
- - prototyping, experimentation and convenient scripting.
- -
- - It's quite possible that you won't have a good analogue for the word
- - "Scratchpad" in your locale. You should feel free to find a close
- - approximation to it or choose a word (or words) that means
- - "simple discardable text editor". -->
- <!ENTITY window.title "Scratchpad">
- <!ENTITY fileMenu.label "File">
- <!ENTITY fileMenu.accesskey "F">
- <!ENTITY newWindowCmd.label "New Window">
- <!ENTITY newWindowCmd.accesskey "N">
- <!ENTITY newWindowCmd.commandkey "n">
- <!ENTITY openFileCmd.label "Open File…">
- <!ENTITY openFileCmd.accesskey "O">
- <!ENTITY openFileCmd.commandkey "o">
- <!ENTITY openRecentMenu.label "Open Recent">
- <!ENTITY openRecentMenu.accesskey "R">
- <!ENTITY revertCmd.label "Revert…">
- <!ENTITY revertCmd.accesskey "t">
- <!ENTITY saveFileCmd.label "Save">
- <!ENTITY saveFileCmd.accesskey "S">
- <!ENTITY saveFileCmd.commandkey "s">
- <!ENTITY saveFileAsCmd.label "Save As…">
- <!ENTITY saveFileAsCmd.accesskey "A">
- <!ENTITY closeCmd.label "Close">
- <!ENTITY closeCmd.key "W">
- <!ENTITY closeCmd.accesskey "C">
- <!ENTITY viewMenu.label "View">
- <!ENTITY viewMenu.accesskey "V">
- <!ENTITY lineNumbers.label "Show Line Numbers">
- <!ENTITY lineNumbers.accesskey "L">
- <!ENTITY wordWrap.label "Wrap Text">
- <!ENTITY wordWrap.accesskey "W">
- <!ENTITY highlightTrailingSpace.label "Highlight Trailing Space">
- <!ENTITY highlightTrailingSpace.accesskey "H">
- <!ENTITY largerFont.label "Larger Font">
- <!ENTITY largerFont.accesskey "a">
- <!ENTITY largerFont.commandkey "+">
- <!ENTITY largerFont.commandkey2 "="> <!-- + is above this key on many keyboards -->
- <!ENTITY smallerFont.label "Smaller Font">
- <!ENTITY smallerFont.accesskey "M">
- <!ENTITY smallerFont.commandkey "-">
- <!ENTITY normalSize.label "Normal Size">
- <!ENTITY normalSize.accesskey "N">
- <!ENTITY normalSize.commandkey "0">
- <!ENTITY editMenu.label "Edit">
- <!ENTITY editMenu.accesskey "E">
- <!ENTITY run.label "Run">
- <!ENTITY run.accesskey "R">
- <!ENTITY run.key "r">
- <!ENTITY inspect.label "Inspect">
- <!ENTITY inspect.accesskey "I">
- <!ENTITY inspect.key "i">
- <!ENTITY display.label "Display">
- <!ENTITY display.accesskey "D">
- <!ENTITY display.key "l">
- <!ENTITY pprint.label "Pretty Print">
- <!ENTITY pprint.key "p">
- <!ENTITY pprint.accesskey "P">
- <!-- LOCALIZATION NOTE (environmentMenu.label, accesskey): This menu item was
- - renamed from "Context" to avoid confusion with the right-click context
- - menu in the text area. It refers to the JavaScript Environment (or context)
- - the user is evaluating against. I.e., Content (current tab) or Chrome
- - (browser).
- -->
- <!ENTITY environmentMenu.label "Environment">
- <!ENTITY environmentMenu.accesskey "N">
- <!ENTITY contentContext.label "Content">
- <!ENTITY contentContext.accesskey "C">
- <!-- LOCALIZATION NOTE (browserContext.label, accesskey): This menu item is used
- - to select an execution environment for the browser window itself as opposed
- - to content. This is a feature for browser and addon developers and only
- - enabled via the devtools.chrome.enabled preference. Formerly, this label
- - was called "Chrome".
- -->
- <!ENTITY browserContext.label "Browser">
- <!ENTITY browserContext.accesskey "B">
- <!-- LOCALIZATION NOTE some localizations of Windows (ex:french, german) use "?"
- - for the help button in the menubar but Gnome does not.
- -->
- <!ENTITY helpMenu.label "Help">
- <!ENTITY helpMenu.accesskey "H">
- <!ENTITY helpMenuWin.label "Help">
- <!ENTITY helpMenuWin.accesskey "H">
- <!ENTITY documentationLink.label "Scratchpad Help on MDN">
- <!ENTITY documentationLink.accesskey "D">
- <!-- LOCALIZATION NOTE (resetContext2.label): This command allows the developer
- - to reset/clear the global object of the environment where the code executes.
- -->
- <!ENTITY resetContext2.label "Reset Variables">
- <!ENTITY resetContext2.accesskey "T">
- <!ENTITY reloadAndRun.label "Reload And Run">
- <!ENTITY reloadAndRun.accesskey "E">
- <!ENTITY reloadAndRun.key "r">
- <!ENTITY executeMenu.label "Execute">
- <!ENTITY executeMenu.accesskey "X">
- <!-- LOCALIZATION NOTE (errorConsoleCmd.commandkey): This command key launches
- - the browser Error Console, the key should be identical to the property of
- - the same name in browser.dtd.
- -->
- <!ENTITY errorConsoleCmd.commandkey "j">
- <!-- LOCALIZATION NOTE (evalFunction.label): This command allows the developer
- - to evaluate the top-level function that the cursor is currently at.
- -->
- <!ENTITY evalFunction.label "Evaluate Current Function">
- <!ENTITY evalFunction.accesskey "v">
- <!ENTITY evalFunction.key "e">
|