tor-browser

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

aboutdebugging.ftl (21568B)


      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 ### These strings are used inside the about:debugging UI.
      6 
      7 # Page Title strings
      8 
      9 # Page title (ie tab title) for the Setup page
     10 about-debugging-page-title-setup-page = Debugging - Setup
     11 
     12 # Page title (ie tab title) for the Runtime page
     13 # Variables:
     14 #   $selectedRuntimeId - ID of the current runtime, such as "this-firefox", "localhost:6080", etc.
     15 about-debugging-page-title-runtime-page = Debugging - Runtime / { $selectedRuntimeId }
     16 
     17 # Sidebar strings
     18 
     19 # Display name of the runtime for the currently running instance of Firefox. Used in the
     20 # Sidebar and in the Setup page.
     21 about-debugging-this-firefox-runtime-name = This { -brand-shorter-name }
     22 
     23 # Sidebar heading for selecting the currently running instance of Firefox
     24 # .name is processed by fluent-react / SidebarFixedItem
     25 about-debugging-sidebar-this-firefox =
     26   .name = { about-debugging-this-firefox-runtime-name }
     27 
     28 # Sidebar heading for connecting to some remote source
     29 # .name is processed by fluent-react / SidebarFixedItem
     30 about-debugging-sidebar-setup =
     31   .name = Setup
     32 
     33 # Text displayed in the about:debugging sidebar when USB devices discovery is enabled.
     34 about-debugging-sidebar-usb-enabled = USB enabled
     35 
     36 # Text displayed in the about:debugging sidebar when USB devices discovery is disabled
     37 # (for instance because the mandatory ADB extension is not installed).
     38 about-debugging-sidebar-usb-disabled = USB disabled
     39 
     40 # Connection status (connected) for runtime items in the sidebar
     41 aboutdebugging-sidebar-runtime-connection-status-connected = Connected
     42 # Connection status (disconnected) for runtime items in the sidebar
     43 aboutdebugging-sidebar-runtime-connection-status-disconnected = Disconnected
     44 
     45 # Text displayed in the about:debugging sidebar when no device was found.
     46 about-debugging-sidebar-no-devices = No devices discovered
     47 
     48 # Text displayed in buttons found in sidebar items representing remote runtimes.
     49 # Clicking on the button will attempt to connect to the runtime.
     50 about-debugging-sidebar-item-connect-button = Connect
     51 
     52 # Text displayed in buttons found in sidebar items when the runtime is connecting.
     53 about-debugging-sidebar-item-connect-button-connecting = Connecting…
     54 
     55 # Text displayed in buttons found in sidebar items when the connection failed.
     56 about-debugging-sidebar-item-connect-button-connection-failed = Connection failed
     57 
     58 # Text displayed in connection warning on sidebar item of the runtime when connecting to
     59 # the runtime is taking too much time.
     60 about-debugging-sidebar-item-connect-button-connection-not-responding = Connection still pending, check for messages on the target browser
     61 
     62 # Text displayed as connection error in sidebar item when the connection has timed out.
     63 about-debugging-sidebar-item-connect-button-connection-timeout = Connection timed out
     64 
     65 # Text displayed in sidebar items for remote devices where a compatible browser (eg
     66 # Firefox) has not been detected yet. Typically, Android phones connected via USB with
     67 # USB debugging enabled, but where Firefox is not started.
     68 about-debugging-sidebar-runtime-item-waiting-for-browser = Waiting for browser…
     69 
     70 # Text displayed in sidebar items for remote devices that have been disconnected from the
     71 # computer.
     72 about-debugging-sidebar-runtime-item-unplugged = Unplugged
     73 
     74 # Title for runtime sidebar items that are related to a specific device (USB, WiFi).
     75 # Variables:
     76 #   $displayName (string) - Displayed name
     77 #   $deviceName (string) - Name of the device
     78 about-debugging-sidebar-runtime-item-name =
     79   .title = { $displayName } ({ $deviceName })
     80 # Title for runtime sidebar items where we cannot get device information (network
     81 # locations).
     82 # Variables:
     83 #   $displayName (string) - Displayed name
     84 about-debugging-sidebar-runtime-item-name-no-device =
     85   .title = { $displayName }
     86 
     87 # Text to show in the footer of the sidebar that links to a help page
     88 # (currently: https://firefox-source-docs.mozilla.org/devtools-user/about_colon_debugging/)
     89 about-debugging-sidebar-support = Debugging Support
     90 
     91 # Text to show as the ALT attribute of a help icon that accompanies the help about
     92 # debugging link in the footer of the sidebar
     93 about-debugging-sidebar-support-icon =
     94   .alt = Help icon
     95 
     96 # Text displayed in a sidebar button to refresh the list of USB devices. Clicking on it
     97 # will attempt to update the list of devices displayed in the sidebar.
     98 about-debugging-refresh-usb-devices-button = Refresh devices
     99 
    100 # Setup Page strings
    101 
    102 # Title of the Setup page.
    103 about-debugging-setup-title = Setup
    104 
    105 # Introduction text in the Setup page to explain how to configure remote debugging.
    106 about-debugging-setup-intro = Configure the connection method you wish to remotely debug your device with.
    107 
    108 # Explanatory text in the Setup page about what the 'This Firefox' page is for
    109 about-debugging-setup-this-firefox2 = Use <a>{ about-debugging-this-firefox-runtime-name }</a> to debug extensions and service workers on this version of { -brand-shorter-name }.
    110 
    111 # Title of the heading Connect section of the Setup page.
    112 about-debugging-setup-connect-heading = Connect a Device
    113 
    114 # USB section of the Setup page
    115 about-debugging-setup-usb-title = USB
    116 
    117 # Explanatory text displayed in the Setup page when USB debugging is disabled
    118 about-debugging-setup-usb-disabled = Enabling this will download and add the required Android USB debugging components to { -brand-shorter-name }.
    119 
    120 # Text of the button displayed in the USB section of the setup page when USB debugging is disabled.
    121 # Clicking on it will download components needed to debug USB Devices remotely.
    122 about-debugging-setup-usb-enable-button = Enable USB Devices
    123 
    124 # Text of the button displayed in the USB section of the setup page when USB debugging is enabled.
    125 about-debugging-setup-usb-disable-button = Disable USB Devices
    126 
    127 # Text of the button displayed in the USB section of the setup page while USB debugging
    128 # components are downloaded and installed.
    129 about-debugging-setup-usb-updating-button = Updating…
    130 
    131 # USB section of the Setup page (USB status)
    132 about-debugging-setup-usb-status-enabled = Enabled
    133 about-debugging-setup-usb-status-disabled = Disabled
    134 about-debugging-setup-usb-status-updating = Updating…
    135 
    136 # USB section step by step guide
    137 about-debugging-setup-usb-step-enable-dev-menu2 = Enable Developer menu on your Android device.
    138 
    139 # USB section step by step guide
    140 about-debugging-setup-usb-step-enable-debug2 = Enable USB Debugging in the Android Developer Menu.
    141 
    142 # USB section step by step guide
    143 about-debugging-setup-usb-step-enable-file-transfer = Enable file transfer and ensure that your device is not in charging-only mode.
    144 
    145 # USB section step by step guide
    146 about-debugging-setup-usb-step-enable-debug-firefox2 = Enable USB Debugging in Firefox on the Android device.
    147 
    148 # USB section step by step guide
    149 about-debugging-setup-usb-step-plug-device = Connect the Android device to your computer.
    150 
    151 # Text shown in the USB section of the setup page with a link to troubleshoot connection errors.
    152 # The link goes to https://firefox-source-docs.mozilla.org/devtools-user/about_colon_debugging/index.html#connecting-to-a-remote-device
    153 about-debugging-setup-usb-troubleshoot = Problems connecting to the USB device? <a>Troubleshoot</a>
    154 
    155 # Network section of the Setup page
    156 about-debugging-setup-network =
    157   .title = Network Location
    158 
    159 # Text shown in the Network section of the setup page with a link to troubleshoot connection errors.
    160 # The link goes to https://firefox-source-docs.mozilla.org/devtools-user/about_colon_debugging/index.html#connecting-over-the-network
    161 about-debugging-setup-network-troubleshoot = Problems connecting via network location? <a>Troubleshoot</a>
    162 
    163 # Text of a button displayed after the network locations "Host" input.
    164 # Clicking on it will add the new network location to the list.
    165 about-debugging-network-locations-add-button = Add
    166 
    167 # Text of the label for the text input that allows users to add new network locations in
    168 # the Connect page. A host is a hostname and a port separated by a colon, as suggested by
    169 # the input's placeholder "localhost:6080".
    170 about-debugging-network-locations-host-input-label = Host
    171 
    172 # Text of a button displayed next to existing network locations in the Connect page.
    173 # Clicking on it removes the network location from the list.
    174 about-debugging-network-locations-remove-button = Remove
    175 
    176 # Text used as error message if the format of the input value was invalid in the network locations form of the Setup page.
    177 # Variables:
    178 #   $host-value (string) - The input value submitted by the user in the network locations form
    179 about-debugging-network-location-form-invalid = Invalid host “{ $host-value }”. The expected format is “hostname:portnumber”.
    180 
    181 # Text used as error message if the input value was already registered in the network locations form of the Setup page.
    182 # Variables:
    183 #   $host-value (string) - The input value submitted by the user in the network locations form
    184 about-debugging-network-location-form-duplicate = The host “{ $host-value }” is already registered
    185 
    186 # Runtime Page strings
    187 
    188 # Below are the titles for the various categories of debug targets that can be found
    189 # on "runtime" pages of about:debugging.
    190 # Title of the temporary extensions category (only available for "This Firefox" runtime).
    191 # .name is processed by fluent-react / DebugTargetPane
    192 about-debugging-runtime-temporary-extensions =
    193   .name = Temporary Extensions
    194 # Title of the extensions category.
    195 # .name is processed by fluent-react / DebugTargetPane
    196 about-debugging-runtime-extensions =
    197   .name = Extensions
    198 # Title of the tabs category.
    199 # .name is processed by fluent-react / DebugTargetPane
    200 about-debugging-runtime-tabs =
    201   .name = Tabs
    202 # Title of the service workers category.
    203 # .name is processed by fluent-react / DebugTargetPane
    204 about-debugging-runtime-service-workers =
    205   .name = Service Workers
    206 # Title of the shared workers category.
    207 # .name is processed by fluent-react / DebugTargetPane
    208 about-debugging-runtime-shared-workers =
    209   .name = Shared Workers
    210 # Title of the other workers category.
    211 # .name is processed by fluent-react / DebugTargetPane
    212 about-debugging-runtime-other-workers =
    213   .name = Other Workers
    214 # Title of the processes category.
    215 # .name is processed by fluent-react / DebugTargetPane
    216 about-debugging-runtime-processes =
    217   .name = Processes
    218 
    219 # Label of the button opening the performance profiler panel in runtime pages for remote
    220 # runtimes.
    221 about-debugging-runtime-profile-button2 = Profile performance
    222 
    223 # This string is displayed in the runtime page if the current configuration of the
    224 # target runtime is incompatible with service workers. "Learn more" points to:
    225 # https://firefox-source-docs.mozilla.org/devtools-user/about_colon_debugging/index.html#service-workers-not-compatible
    226 about-debugging-runtime-service-workers-not-compatible = Your browser configuration is not compatible with Service Workers. <a>Learn more</a>
    227 
    228 # This string is displayed in the runtime page if the remote browser version is too old.
    229 # "Troubleshooting" link points to https://firefox-source-docs.mozilla.org/devtools-user/about_colon_debugging/
    230 # { $runtimeVersion } is the version of the remote browser (for instance "67.0a1")
    231 # { $minVersion } is the minimum version that is compatible with the current Firefox instance (same format)
    232 about-debugging-browser-version-too-old = The connected browser has an old version ({ $runtimeVersion }). The minimum supported version is ({ $minVersion }). This is an unsupported setup and may cause DevTools to fail. Please update the connected browser. <a>Troubleshooting</a>
    233 
    234 # Dedicated message for a backward compatibility issue that occurs when connecting:
    235 # from Fx 70+ to the old Firefox for Android (aka Fennec) which uses Fx 68.
    236 about-debugging-browser-version-too-old-fennec = This version of Firefox cannot debug Firefox for Android (68). We recommend installing Firefox for Android Nightly on your phone for testing. <a>More details</a>
    237 
    238 # This string is displayed in the runtime page if the remote browser version is too recent.
    239 # "Troubleshooting" link points to https://firefox-source-docs.mozilla.org/devtools-user/about_colon_debugging/
    240 # { $runtimeID } is the build ID of the remote browser (for instance "20181231", format is yyyyMMdd)
    241 # { $localID } is the build ID of the current Firefox instance (same format)
    242 # { $runtimeVersion } is the version of the remote browser (for instance "67.0a1")
    243 # { $localVersion } is the version of your current browser (same format)
    244 about-debugging-browser-version-too-recent = The connected browser is more recent ({ $runtimeVersion }, buildID { $runtimeID }) than your { -brand-shorter-name } ({ $localVersion }, buildID { $localID }). This is an unsupported setup and may cause DevTools to fail. Please update Firefox. <a>Troubleshooting</a>
    245 
    246 # Displayed for runtime info in runtime pages.
    247 # { $name } is brand name such as "Firefox Nightly"
    248 # { $version } is version such as "64.0a1"
    249 about-debugging-runtime-name = { $name } ({ $version })
    250 
    251 # Text of a button displayed in Runtime pages for remote runtimes.
    252 # Clicking on the button will close the connection to the runtime.
    253 about-debugging-runtime-disconnect-button = Disconnect
    254 
    255 # Text of the connection prompt button displayed in Runtime pages, when the preference
    256 # "devtools.debugger.prompt-connection" is false on the target runtime.
    257 about-debugging-connection-prompt-enable-button = Enable connection prompt
    258 
    259 # Text of the connection prompt button displayed in Runtime pages, when the preference
    260 # "devtools.debugger.prompt-connection" is true on the target runtime.
    261 about-debugging-connection-prompt-disable-button = Disable connection prompt
    262 
    263 # Title of a modal dialog displayed on remote runtime pages after clicking on the Profile Runtime button.
    264 about-debugging-profiler-dialog-title2 = Profiler
    265 
    266 # Clicking on the header of a debug target category will expand or collapse the debug
    267 # target items in the category. This text is used as ’title’ attribute of the header,
    268 # to describe this feature.
    269 about-debugging-collapse-expand-debug-targets = Collapse / expand
    270 
    271 # Debug Targets strings
    272 
    273 # Displayed in the categories of "runtime" pages that don't have any debug target to
    274 # show. Debug targets depend on the category (extensions, tabs, workers...).
    275 about-debugging-debug-target-list-empty = Nothing yet.
    276 
    277 # Text of a button displayed next to debug targets of "runtime" pages. Clicking on this
    278 # button will open a DevTools toolbox that will allow inspecting the target.
    279 # A target can be an addon, a tab, a worker...
    280 about-debugging-debug-target-inspect-button = Inspect
    281 
    282 # Text of a button displayed in the "This Firefox" page, in the Temporary Extension
    283 # section. Clicking on the button will open a file picker to load a temporary extension
    284 about-debugging-tmp-extension-install-button = Load Temporary Add-on…
    285 
    286 # Text displayed when trying to install a temporary extension in the "This Firefox" page.
    287 about-debugging-tmp-extension-install-error = There was an error during the temporary add-on installation.
    288 
    289 # Text of a button displayed for a temporary extension loaded in the "This Firefox" page.
    290 # Clicking on the button will reload the extension.
    291 about-debugging-tmp-extension-reload-button = Reload
    292 
    293 # Text of a button displayed for a temporary extension loaded in the "This Firefox" page.
    294 # Clicking on the button will uninstall the extension and remove it from the page.
    295 about-debugging-tmp-extension-remove-button = Remove
    296 
    297 # Text of a button displayed for a temporary extension loaded in the "This Firefox" page.
    298 # Clicking on the button will forcefully terminate the extension background script (button
    299 # only visible in extensions that includes a non-persistent background script, either an
    300 # event page or a background service worker).
    301 about-debugging-tmp-extension-terminate-bgscript-button = Terminate background script
    302 
    303 # Message displayed in the file picker that opens to select a temporary extension to load
    304 # (triggered by the button using "about-debugging-tmp-extension-install-button")
    305 # manifest.json .xpi and .zip should not be localized.
    306 # Note: this message is only displayed in Windows and Linux platforms.
    307 about-debugging-tmp-extension-install-message = Select manifest.json file or .xpi/.zip archive
    308 
    309 # This string is displayed as a message about the add-on having a temporaryID.
    310 about-debugging-tmp-extension-temporary-id = This WebExtension has a temporary ID. <a>Learn more</a>
    311 
    312 # Text displayed for extensions in "runtime" pages, before displaying a link the extension's
    313 # manifest URL.
    314 about-debugging-extension-manifest-url =
    315   .label = Manifest URL
    316 
    317 # Text displayed for extensions in "runtime" pages, before displaying the extension's uuid.
    318 # UUIDs look like b293e463-481e-5148-a487-5aaf7a130429
    319 about-debugging-extension-uuid =
    320   .label = Internal UUID
    321 
    322 # Text displayed for extensions (temporary extensions only) in "runtime" pages, before
    323 # displaying the location of the temporary extension.
    324 about-debugging-extension-location =
    325   .label = Location
    326 
    327 # Text displayed for extensions in "runtime" pages, before displaying the extension's ID.
    328 # For instance "geckoprofiler@mozilla.com" or "{ed26ddcb-5611-4512-a89a-51b8db81cfb2}".
    329 about-debugging-extension-id =
    330   .label = Extension ID
    331 
    332 # Text displayed for extensions in "runtime" pages, before displaying the status of the
    333 # extension background script.
    334 about-debugging-extension-backgroundscript =
    335   .label = Background script
    336 
    337 # Displayed for extension using a non-persistent background page (either an event page or
    338 # background service worker) when the background script is currently running.
    339 about-debugging-extension-backgroundscript-status-running = Running
    340 
    341 # Displayed for extension using a non-persistent background page when is currently stopped.
    342 about-debugging-extension-backgroundscript-status-stopped = Stopped
    343 
    344 # This string is displayed as a label of the button that pushes a test payload
    345 # to a service worker.
    346 # Note this relates to the "Push" API, which is normally not localized so it is
    347 # probably better to not localize it.
    348 # .disabledTitle is processed by the fluent-react / ActionButton code.
    349 about-debugging-worker-action-push2 = Push
    350   .disabledTitle = Service Worker push is currently disabled for multiprocess { -brand-shorter-name }
    351 
    352 # This string is displayed as a label of the button that starts a service worker.
    353 # .disabledTitle is processed by the fluent-react / ActionButton code.
    354 about-debugging-worker-action-start2 = Start
    355   .disabledTitle = Service Worker start is currently disabled for multiprocess { -brand-shorter-name }
    356 
    357 # This string is displayed as a label of the button that unregisters a service worker.
    358 about-debugging-worker-action-unregister = Unregister
    359 
    360 # Displayed for service workers in runtime pages that listen to Fetch events.
    361 about-debugging-worker-fetch-listening =
    362   .label = Fetch
    363   .value = Listening for fetch events
    364 
    365 # Displayed for service workers in runtime pages that do not listen to Fetch events.
    366 about-debugging-worker-fetch-not-listening =
    367   .label = Fetch
    368   .value = Not listening for fetch events
    369 
    370 # Displayed for service workers in runtime pages that are currently running (service
    371 # worker instance is active).
    372 about-debugging-worker-status-running = Running
    373 
    374 # Displayed for service workers in runtime pages that are registered but stopped.
    375 about-debugging-worker-status-stopped = Stopped
    376 
    377 # Displayed for service workers in runtime pages that are registering.
    378 about-debugging-worker-status-registering = Registering
    379 
    380 # Displayed for service workers in runtime pages, to label the scope of a worker
    381 about-debugging-worker-scope =
    382   .label = Scope
    383 
    384 # Displayed for service workers in runtime pages, to label the push service endpoint (url)
    385 # of a worker
    386 about-debugging-worker-push-service =
    387   .label = Push Service
    388 
    389 # Displayed for service workers in runtime pages, to label the origin of a worker.
    390 about-debugging-worker-origin =
    391   .label = Origin
    392 
    393 # Displayed as title of the inspect button when service worker debugging is disabled.
    394 about-debugging-worker-inspect-action-disabled =
    395   .title = Service Worker inspection is currently disabled for multiprocess { -brand-shorter-name }
    396 
    397 # Displayed as title of the inspect button for zombie tabs (e.g. tabs loaded via a session restore).
    398 about-debugging-zombie-tab-inspect-action-disabled =
    399   .title = Tab is not fully loaded and cannot be inspected
    400 
    401 # Displayed as name for the Main Process debug target in the Processes category. Only for
    402 # remote runtimes, if `devtools.aboutdebugging.process-debugging` is true.
    403 about-debugging-multiprocess-toolbox-name = Multiprocess Toolbox
    404 
    405 # Displayed as description for the Main Process debug target in the Processes category.
    406 # Only for remote browsers, if `devtools.aboutdebugging.process-debugging` is true.
    407 about-debugging-multiprocess-toolbox-description = Main Process and Content Processes for the target browser
    408 
    409 # Alt text used for the close icon of message component (warnings, errors and notifications).
    410 about-debugging-message-close-icon =
    411   .alt = Close message
    412 
    413 # Label text used for the error details of message component.
    414 about-debugging-message-details-label-error = Error details
    415 
    416 # Label text used for the warning details of message component.
    417 about-debugging-message-details-label-warning = Warning details
    418 
    419 # Label text used for default state of details of message component.
    420 about-debugging-message-details-label = Details