tor-browser

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

toolbox.properties (13205B)


      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 (toolbox.titleTemplate1): This is the template
      6 # used to format the title of the toolbox.
      7 # The URL of the page being targeted: %1$S.
      8 toolbox.titleTemplate1=Developer Tools — %1$S
      9 
     10 # LOCALIZATION NOTE (toolbox.titleTemplate2): This is the template
     11 # used to format the title of the toolbox.
     12 # The page title or other name for the thing being targeted: %1$S
     13 # The URL of the page being targeted: %2$S.
     14 toolbox.titleTemplate2=Developer Tools — %1$S — %2$S
     15 
     16 # LOCALIZATION NOTE (toolbox.multiProcessBrowserToolboxTitle): Title used for
     17 # the Browser Toolbox when the pref `devtools.browsertoolbox.scope` is set to "everything".
     18 # This Browser Toolbox allows to debug the parent process as well as the content
     19 # processes in the same toolbox.
     20 toolbox.multiProcessBrowserToolboxTitle=Multiprocess Browser Toolbox
     21 
     22 # LOCALIZATION NOTE (toolbox.parentProcessBrowserToolboxTitle): Title used for
     23 # the Browser Toolbox when the pref `devtools.browsertoolbox.scope` is set to "parent-process".
     24 # This Browser Toolbox allows to debug only the parent process resources.
     25 toolbox.parentProcessBrowserToolboxTitle=Parent process Browser Toolbox
     26 
     27 # LOCALIZATION NOTE (toolbox.defaultTitle): This is used as the tool
     28 # name when no tool is selected.
     29 toolbox.defaultTitle=Developer Tools
     30 
     31 # LOCALIZATION NOTE (toolbox.label): This is used as the label for the
     32 # toolbox as a whole
     33 toolbox.label=Developer Tools
     34 
     35 # LOCALIZATION NOTE (options.autoTheme.label)
     36 # Used as a label for auto theme
     37 options.autoTheme.label=Auto
     38 
     39 # LOCALIZATION NOTE (options.toolNotSupportedMarker): This is the template
     40 # used to add a * marker to the label for the Options Panel tool checkbox for the
     41 # tool which is not supported for the current toolbox target.
     42 # The name of the tool: %1$S.
     43 options.toolNotSupportedMarker=%1$S *
     44 
     45 # LOCALIZATION NOTE (toolbox.pickButton.tooltip)
     46 # This is the tooltip of the element picker button in the toolbox toolbar.
     47 # %S is the keyboard shortcut that toggles the element picker.
     48 toolbox.elementPicker.tooltip=Pick an element from the page (%S)
     49 
     50 # LOCALIZATION NOTE (toolbox.pickButton.mac.tooltip)
     51 # Like toolbox.pickButton.tooltip, but for macOS there are two possible keyboard
     52 # shortcuts: Cmd+Shift+C or Cmd+Opt+C
     53 toolbox.elementPicker.mac.tooltip=Pick an element from the page (%1$S or %2$S)
     54 
     55 # LOCALIZATION NOTE (toolbox.androidElementPicker.tooltip)
     56 # This is the tooltip of the element picker button in the about:devtools-toolbox toolbox toolbar
     57 # when debugging an Android device
     58 # %S is the keyboard shortcut that toggles the element picker.
     59 toolbox.androidElementPicker.tooltip=Pick an element from the Android phone (%S)
     60 
     61 # LOCALIZATION NOTE (toolbox.androidElementPicker.mac.tooltip)
     62 # Like toolbox.androidElementPicker.tooltip, but for macOS as there are two possible keyboard
     63 # shortcuts (Cmd+Shift+C or Cmd+Opt+C)
     64 # %1$S and %2$S are the keyboard shortcuts that toggle the element picker.
     65 toolbox.androidElementPicker.mac.tooltip=Pick an element from the Android phone (%1$S or %2$S)
     66 
     67 # LOCALIZATION NOTE (toolbox.elementPicker.key)
     68 # Key shortcut used to toggle the element picker.
     69 toolbox.elementPicker.key=CmdOrCtrl+Shift+C
     70 
     71 # LOCALIZATION NOTE (toolbox.elementPicker.mac.key)
     72 # Key shortcut used to toggle the element picker for macOS.
     73 toolbox.elementPicker.mac.key=Cmd+Opt+C
     74 
     75 # LOCALIZATION NOTE (toolbox.viewCssSourceInStyleEditor.label)
     76 # Used as a message in either tooltips or contextual menu items to open the
     77 # corresponding URL as a css file in the Style-Editor tool.
     78 # DEV NOTE: Mostly used wherever toolbox.viewSourceInStyleEditorByXX is used.
     79 toolbox.viewCssSourceInStyleEditor.label=Open File in Style-Editor
     80 
     81 # LOCALIZATION NOTE (toolbox.viewJsSourceInDebugger.label)
     82 # Used as a message in either tooltips or contextual menu items to open the
     83 # corresponding URL as a js file in the Debugger tool.
     84 # DEV NOTE: Mostly used wherever toolbox.viewSourceInDebugger is used.
     85 toolbox.viewJsSourceInDebugger.label=Open File in Debugger
     86 
     87 toolbox.resumeOrderWarning=Page did not resume after the debugger was attached. To fix this, please close and re-open the toolbox.
     88 
     89 # LOCALIZATION NOTE (toolbox.errorOnReload)
     90 # Notification displayed at the top of the toolbox when
     91 # we failed reloading the debugged context.
     92 # The error message: %1$S.
     93 toolbox.errorOnReload=Unable to reload: %1$S
     94 
     95 # LOCALIZATION NOTE (toolbox.help.key)
     96 # Key shortcut used to open the options panel
     97 toolbox.help.key=F1
     98 
     99 # LOCALIZATION NOTE (toolbox.nextTool.key)
    100 # Key shortcut used to select the next tool
    101 toolbox.nextTool.key=CmdOrCtrl+]
    102 
    103 # LOCALIZATION NOTE (toolbox.previousTool.key)
    104 # Key shortcut used to select the previous tool
    105 toolbox.previousTool.key=CmdOrCtrl+[
    106 
    107 # LOCALIZATION NOTE (toolbox.zoom*.key)
    108 # Key shortcuts used to zomm in/out or reset the toolbox
    109 # Should match full-zoom-*-shortcut values from browserSets.ftl
    110 toolbox.zoomIn.key=CmdOrCtrl+Plus
    111 toolbox.zoomIn2.key=CmdOrCtrl+=
    112 
    113 toolbox.zoomOut.key=CmdOrCtrl+-
    114 toolbox.zoomOut2.key=
    115 
    116 toolbox.zoomReset.key=CmdOrCtrl+0
    117 toolbox.zoomReset2.key=
    118 
    119 # LOCALIZATION NOTE (toolbox.reload*.key)
    120 # Key shortcuts used to reload the page
    121 toolbox.reload.key=CmdOrCtrl+R
    122 toolbox.reload2.key=F5
    123 
    124 # LOCALIZATION NOTE (toolbox.forceReload*.key)
    125 # Key shortcuts used to force reload of the page by bypassing caches
    126 toolbox.forceReload.key=CmdOrCtrl+Shift+R
    127 toolbox.forceReload2.key=CmdOrCtrl+F5
    128 
    129 # LOCALIZATION NOTE (toolbox.toggleHost.key)
    130 # Key shortcut used to move the toolbox in bottom or side of the browser window
    131 toolbox.toggleHost.key=CmdOrCtrl+Shift+D
    132 
    133 # LOCALIZATION NOTE (toolbox.closeToolbox.key) Key shortcut used to close the toolbox
    134 toolbox.closeToolbox.key=CmdOrCtrl+W
    135 
    136 # LOCALIZATION NOTE (toolbox.toggleToolbox.key) Key shortcut used to toggle the toolbox
    137 toolbox.toggleToolbox.key=CmdOrCtrl+Shift+I
    138 
    139 # LOCALIZATION NOTE (toolbox.toggleToolboxOSX.key) Key shortcut used to toggle the toolbox
    140 toolbox.toggleToolboxOSX.key=CmdOrCtrl+Alt+I
    141 
    142 # LOCALIZATION NOTE (toolbox.toggleToolboxF12.key) Key shortcut used to toggle the toolbox
    143 toolbox.toggleToolboxF12.key=F12
    144 
    145 # LOCALIZATION NOTE (toolbox.frames.tooltip): This is the label for
    146 # the iframes menu list that appears only when the document has some.
    147 # It allows you to switch the context of the whole toolbox.
    148 toolbox.frames.tooltip=Select an iframe as the currently targeted document
    149 
    150 # LOCALIZATION NOTE (toolbox.frames.disabled.tooltip): This is the title
    151 # displayed as a tooltip of the iframes menu button, when disabled. The button
    152 # is normally hidden when no frames are available. But if the user is on the
    153 # DevTools Options panel, the button is always shown for discoverability.
    154 toolbox.frames.disabled.tooltip=This button is only available on pages with several iframes
    155 
    156 # LOCALIZATION NOTE (toolbox.showFrames.key)
    157 # Key shortcut used to show frames menu when 'frames' button is focused
    158 toolbox.showFrames.key=Alt+Down
    159 
    160 # LOCALIZATION NOTE (toolbox.meatballMenu.button.tooltip): This is the tooltip
    161 # for the "..." button on the developer tools toolbox.
    162 toolbox.meatballMenu.button.tooltip=Customize Developer Tools and Get Help
    163 
    164 # LOCALIZATION NOTE (toolbox.closebutton.tooltip): This is the tooltip for
    165 # the close button the developer tools toolbox.
    166 toolbox.closebutton.tooltip=Close Developer Tools
    167 
    168 # LOCALIZATION NOTE (toolbox.errorCountButton.tooltip): This is the tooltip for
    169 # the error count button displayed in the developer tools toolbox if the "Enable Split Console" setting is checked.
    170 toolbox.errorCountButton.tooltip=Show Split Console
    171 
    172 # LOCALIZATION NOTE (toolbox.errorCountButtonConsoleTab.tooltip): This is the tooltip for
    173 # the error count button displayed in the developer tools toolbox if the "Enable Split Console" setting is unchecked.
    174 toolbox.errorCountButtonConsoleTab.tooltip=Show Console
    175 
    176 # LOCALIZATION NOTE (toolbox.errorCountButton.description): This is the description that
    177 # will be used for the error count button in the devTools settings panel.
    178 toolbox.errorCountButton.description=Show the number of errors on the page
    179 
    180 # LOCALIZATION NOTE (toolbox.sourceMapFailure): This is shown in the web console
    181 # when there is a failure to fetch or parse a source map.
    182 # The text of the error: %1$S
    183 # The URL that caused DevTools to try to fetch a source map: %2$S
    184 # The URL of the source map itself: %3$S
    185 toolbox.sourceMapFailure=Source map error: %1$S\nResource URL: %2$S\nSource Map URL: %3$S
    186 
    187 # LOCALIZATION NOTE (toolbox.sourceMapSourceFailure): This is shown in
    188 # the web console when there is a failure to fetch or parse an
    189 # original source that was mentioned in a source map.
    190 # The text of the error: %1$S
    191 # The URL of the source: %2$S
    192 toolbox.sourceMapSourceFailure=Error while fetching an original source: %1$S\nSource URL: %2$S
    193 
    194 # LOCALIZATION NOTE (toolbox.debugTargetInfo.runtimeLabel): This is displayed as a toolbox
    195 # header in about:devtools-toolbox. about:devtools-toolbox is used for instance when
    196 # inspecting tabs in about:debugging.
    197 # e.g. Mozilla Fennec (65.0a1)
    198 # The name of runtime: %1$S
    199 # The version of runtime: %2$S
    200 toolbox.debugTargetInfo.runtimeLabel=%1$S (%2$S)
    201 
    202 # LOCALIZATION NOTE (toolbox.debugTargetInfo.runtimeLabel.thisRuntime): this is displayed
    203 # as a toolbox header in about:devtools-toolbox, when inspecting the current Firefox runtime
    204 # (for instance, when inspecting one of its tabs in about:debugging)
    205 # e.g. This Firefox (65.0a1)
    206 # The name of the current runtime/application (brandShorterName): %1$S
    207 # The version of runtime: %2$S
    208 toolbox.debugTargetInfo.runtimeLabel.thisRuntime=This %1$S (%2$S)
    209 
    210 # LOCALIZATION NOTE (toolbox.debugTargetInfo.tabTitleRemote):
    211 # Used as the tab title for about:devtools-toolbox when connected to a remote target.
    212 # The connection type (see toolbox.debugTargetInfo.connection.*): %1$S
    213 # The target type (see toolbox.debugTargetInfo.targetType.*): %2$S
    214 # The target name (retrieved from DevTools, eg the extension's name): %3$S
    215 toolbox.debugTargetInfo.tabTitleRemote=Toolbox (%1$S) - %2$S / %3$S
    216 
    217 # LOCALIZATION NOTE (toolbox.debugTargetInfo.tabTitleLocal):
    218 # Used as the tab title for about:devtools-toolbox when connected to This Firefox.
    219 # The target type (see toolbox.debugTargetInfo.targetType.*): %1$S
    220 # The target name (retrieved from DevTools, eg the extension's name): %2$S
    221 toolbox.debugTargetInfo.tabTitleLocal=Toolbox - %1$S / %2$S
    222 
    223 # LOCALIZATION NOTE (toolbox.debugTargetInfo.tabTitleError):
    224 # Used as the tab title for about:devtools-toolbox when it failed to connect to the
    225 # target.
    226 toolbox.debugTargetInfo.tabTitleError=Toolbox - error occurred
    227 
    228 # LOCALIZATION NOTE (toolbox.debugTargetInfo.connection.*): This is displayed in the
    229 # toolbox header in about:devtools-toolbox, to indicate how the connection to the
    230 # runtime being inspected was made.
    231 toolbox.debugTargetInfo.connection.usb=USB
    232 toolbox.debugTargetInfo.connection.network=Network
    233 
    234 # LOCALIZATION NOTE (toolbox.debugTargetInfo.reload):
    235 # Used as the reload button tooltip
    236 toolbox.debugTargetInfo.reload=Reload
    237 
    238 # LOCALIZATION NOTE (toolbox.debugTargetInfo.forward):
    239 # Used as the navigation's "forward" button tooltip
    240 toolbox.debugTargetInfo.forward=Forward
    241 
    242 # LOCALIZATION NOTE (toolbox.debugTargetInfo.back):
    243 # Used as the navigation's "back" button tooltip
    244 toolbox.debugTargetInfo.back=Back
    245 
    246 # LOCALIZATION NOTE (toolbox.debugTargetInfo.targetType.*): This is displayed as the
    247 # alt attribute for an icon in the toolbox header in about:devtools-toolbox,
    248 # to indicate what is the type of the debug target being inspected.
    249 toolbox.debugTargetInfo.targetType.extension=Extension
    250 toolbox.debugTargetInfo.targetType.process=Process
    251 toolbox.debugTargetInfo.targetType.tab=Tab
    252 toolbox.debugTargetInfo.targetType.worker=Worker
    253 
    254 # LOCALIZATION NOTE (browserToolbox.statusMessage): This is the label
    255 # shown next to status details when the Browser Toolbox fails to connect or
    256 # appears to be taking a while to do so.
    257 browserToolbox.statusMessage=Browser Toolbox connection status:
    258 
    259 # LOCALIZATION NOTE (toolbox.debugTargetErrorPage.title): This is the title
    260 # for the Error view shown by the toolbox when a connection to a debug target
    261 # could not be made
    262 toolbox.debugTargetErrorPage.title = Error
    263 
    264 # LOCALIZATION NOTE (toolbox.debugTargetErrorPage.description): This is the
    265 # text that appears in the Error view and explains to the user that an error
    266 # has happened while trying to connect to a debug target
    267 toolbox.debugTargetErrorPage.description = Cannot connect to the debug target. See error details below:
    268 
    269 # LOCALIZATION NOTE (options.deprecationNotice): This is the text that appears in the
    270 # settings panel for panel that will be removed in future releases.
    271 # This entire text is treated as a link to an MDN page.
    272 options.deprecationNotice=Deprecated. Learn More…
    273 
    274 # LOCALIZATION NOTE (options.enableMultiProcessToolbox): This is the text that appears in the
    275 # settings panel for the checkbox that enables the Multiprocess Browser Toolbox.
    276 options.enableMultiProcessToolbox=Enable the Multiprocess Browser Toolbox (requires restarting the Browser Toolbox)