tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

sourceeditor.properties (4786B)


      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 Source Editor component.
      6 # This component is used whenever source code is displayed for the purpose of
      7 # being edited, inside the Firefox developer tools (like Style Editor).
      8 
      9 # LOCALIZATION NOTE The correct localization of this file might be to keep it
     10 # in English, or another language commonly spoken among web developers.
     11 # You want to make that choice consistent across the developer tools.
     12 # A good criteria is the language in which you'd find the best documentation
     13 # on web development on the web.
     14 
     15 # LOCALIZATION NOTE  (findCmd.promptMessage): This is the message shown when
     16 # the user wants to search for a string in the code. You can
     17 # access this feature by pressing Ctrl-F on Windows/Linux or Cmd-F on Mac.
     18 findCmd.promptMessage=Search for:
     19 
     20 # LOCALIZATION NOTE  (gotoLineCmd.promptTitle): This is the dialog title used
     21 # when the user wants to jump to a specific line number in the code. You can
     22 # access this feature by pressing Ctrl-J on Windows/Linux or Cmd-J on Mac.
     23 gotoLineCmd.promptTitle=Go to line…
     24 
     25 # LOCALIZATION NOTE  (autocompletion.docsLink): This is the text shown on
     26 # the link inside of the documentation popup, used in the source editor.
     27 autocompletion.docsLink=docs
     28 
     29 # LOCALIZATION NOTE  (autocompletion.notFound): This is the text shown in
     30 # the documentation popup if Tern fails to find a type for the object.
     31 autocompletion.notFound=not found
     32 
     33 # LOCALIZATION NOTE  (jumpToLine.commandkey): This is the key to use in
     34 # conjunction with accel (Command on Mac or Ctrl on other platforms) to jump to
     35 # a specific line in the editor.
     36 jumpToLine.commandkey=J
     37 
     38 # LOCALIZATION NOTE  (toggleComment.commandkey): This is the key to use in
     39 # conjunction with accel (Command on Mac or Ctrl on other platforms) to either
     40 # comment or uncomment selected lines in the editor.
     41 toggleComment.commandkey=/
     42 
     43 # LOCALIZATION NOTE  (indentLess.commandkey): This is the key to use in
     44 # conjunction with accel (Command on Mac or Ctrl on other platforms) to reduce
     45 # indentation level in CodeMirror. However, its default value also used by
     46 # the Toolbox to switch between tools so we disable it.
     47 indentLess.commandkey=[
     48 
     49 # LOCALIZATION NOTE  (indentMore.commandkey): This is the key to use in
     50 # conjunction with accel (Command on Mac or Ctrl on other platforms) to increase
     51 # indentation level in CodeMirror. However, its default value also used by
     52 # the Toolbox to switch between tools
     53 indentMore.commandkey=]
     54 
     55 # LOCALIZATION NOTE  (moveLineUp.commandkey): This is the combination of keys
     56 # used to move the current line up.
     57 # Do not localize "Alt", "Up", or change the format of the string. These are key
     58 # identifiers, not messages displayed to the user.
     59 moveLineUp.commandkey=Alt-Up
     60 
     61 # LOCALIZATION NOTE  (moveLineDown.commandkey): This is the combination of keys
     62 # used to move the current line up.
     63 # Do not localize "Alt", "Down", or change the format of the string. These are
     64 # key identifiers, not messages displayed to the user.
     65 moveLineDown.commandkey=Alt-Down
     66 
     67 # LOCALIZATION NOTE  (autocompletion.commandkey): This is the key, used with
     68 # Ctrl, for code autocompletion.
     69 # Do not localize "Space", it's the key identifier, not a message displayed to
     70 # the user.
     71 autocompletion.commandkey=Space
     72 
     73 # LOCALIZATION NOTE  (find.key):
     74 # Key shortcut used to find the typed search
     75 # Do not localize "CmdOrCtrl", "F", or change the format of the string. These are
     76 # key identifiers, not messages displayed to the user.
     77 find.key=CmdOrCtrl+F
     78 
     79 # LOCALIZATION NOTE (replaceAll.key):
     80 # Key shortcut used to replace the content of the editor
     81 # Do not localize "Shift", "CmdOrCtrl", "F", or change the format of the string. These are
     82 # key identifiers, not messages displayed to the user.
     83 replaceAll.key=Shift+CmdOrCtrl+F
     84 
     85 # LOCALIZATION NOTE (replaceAllMac.key):
     86 # Key shortcut used to replace the content of the editor on Mac
     87 # Do not localize "Alt", "CmdOrCtrl", "F", or change the format of the string. These are
     88 # key identifiers, not messages displayed to the user.
     89 replaceAllMac.key=Alt+CmdOrCtrl+F
     90 
     91 # LOCALIZATION NOTE  (findNext.key):
     92 # Key shortcut used to find again the typed search
     93 # Do not localize "CmdOrCtrl", "G", or change the format of the string. These are
     94 # key identifiers, not messages displayed to the user.
     95 findNext.key=CmdOrCtrl+G
     96 
     97 # LOCALIZATION NOTE (findPrev.key):
     98 # Key shortcut used to find the previous typed search
     99 # Do not localize "Shift", "CmdOrCtrl", "G", or change the format of the string. These are
    100 # key identifiers, not messages displayed to the user.
    101 findPrev.key=Shift+CmdOrCtrl+G