tor-browser

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

application.ftl (6400B)


      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 Application panel which is available
      6 ### by setting the preference `devtools-application-enabled` to true.
      7 
      8 ### The correct localization of this file might be to keep it in English, or another
      9 ### language commonly spoken among web developers. You want to make that choice consistent
     10 ### across the developer tools. A good criteria is the language in which you'd find the
     11 ### best documentation on web development on the web.
     12 
     13 # Header for the list of Service Workers displayed in the application panel for the current page.
     14 serviceworker-list-header = Service Workers
     15 
     16 # Text displayed next to the list of Service Workers to encourage users to check out
     17 # about:debugging to see all registered Service Workers.
     18 serviceworker-list-aboutdebugging = Open <a>about:debugging</a> for Service Workers from other domains
     19 
     20 # Text for the button to unregister a Service Worker. Displayed for active Service Workers.
     21 serviceworker-worker-unregister = Unregister
     22 
     23 # Alt text for the image icon displayed inside a debug link for a service worker.
     24 serviceworker-worker-inspect-icon =
     25   .alt = Inspect
     26 
     27 # Text for the start link displayed for a registered but not running Service Worker.
     28 # Clicking on the link will attempt to start the service worker.
     29 serviceworker-worker-start3 = Start
     30 
     31 # Text displayed for the updated time of the service worker. The <time> element will
     32 # display the last update time of the service worker script.
     33 # Variables:
     34 #   $date (date) - Update date
     35 serviceworker-worker-updated = Updated <time>{ DATETIME($date, month: "long", year: "numeric", day: "numeric", hour: "numeric", minute: "numeric", second: "numeric") }</time>
     36 
     37 ## Service Worker status strings: all serviceworker-worker-status-* strings are also
     38 ## defined in aboutdebugging.properties and should be synchronized with them.
     39 
     40 # Service Worker status. A running service worker is registered, currently executed, can
     41 # be debugged and stopped.
     42 serviceworker-worker-status-running = Running
     43 
     44 # Service Worker status. A stopped service worker is registered but not currently active.
     45 serviceworker-worker-status-stopped = Stopped
     46 
     47 # Text displayed when no service workers are visible for the current page.
     48 serviceworker-empty-intro2 = No service workers found
     49 
     50 # Link will open https://developer.mozilla.org/docs/Web/API/Service_Worker_API/Using_Service_Workers
     51 serviceworker-empty-intro-link = Learn more
     52 
     53 # Text displayed when there are no Service Workers to display for the current page,
     54 # introducing hints to debug Service Worker issues.
     55 # <a> and <span> are links that will open the webconsole and the debugger, respectively.
     56 serviceworker-empty-suggestions2 = If the current page should have a service worker, you could look for errors in the <a>Console</a> or step through your service worker registration in the <span>Debugger</span>.
     57 
     58 # Suggestion to go to about:debugging in order to see Service Workers for all domains.
     59 # Link will open about:debugging in a new tab.
     60 serviceworker-empty-suggestions-aboutdebugging2 = View service workers from other domains
     61 
     62 # Header for the Manifest page when we have an actual manifest
     63 manifest-view-header = App Manifest
     64 
     65 # Header for the Manifest page when there's no manifest to inspect
     66 manifest-empty-intro2 = No web app manifest detected
     67 
     68 # The link will open https://developer.mozilla.org/en-US/docs/Web/Manifest
     69 manifest-empty-intro-link = Learn how to add a manifest
     70 
     71 # Header for the Errors and Warnings section of Manifest inspection displayed in the application panel.
     72 manifest-item-warnings = Errors and Warnings
     73 
     74 # Header for the Identity section of Manifest inspection displayed in the application panel.
     75 manifest-item-identity = Identity
     76 
     77 # Header for the Presentation section of Manifest inspection displayed in the application panel.
     78 manifest-item-presentation = Presentation
     79 
     80 # Header for the Icon section of Manifest inspection displayed in the application panel.
     81 manifest-item-icons = Icons
     82 
     83 # Text displayed while we are loading the manifest file
     84 manifest-loading = Loading manifest…
     85 
     86 # Text displayed when the manifest has been successfully loaded
     87 manifest-loaded-ok = Manifest loaded.
     88 
     89 # Text displayed as a caption when there has been an error while trying to
     90 # load the manifest
     91 manifest-loaded-error = There was an error while loading the manifest:
     92 
     93 # Text displayed as an error when there has been a Firefox DevTools error while
     94 # trying to load the manifest
     95 manifest-loaded-devtools-error = Firefox DevTools error
     96 
     97 # Text displayed when the page has no manifest available
     98 manifest-non-existing = No manifest found to inspect.
     99 
    100 # Text displayed when the page has a manifest embedded in a Data URL and
    101 # thus we cannot link to it.
    102 manifest-json-link-data-url = The manifest is embedded in a Data URL.
    103 
    104 # Text displayed at manifest icons to label their purpose, as declared
    105 # in the manifest.
    106 # Variables:
    107 #   $purpose (string) - Manifest purpose
    108 manifest-icon-purpose = Purpose: <code>{ $purpose }</code>
    109 
    110 # Text displayed as the alt attribute for <img> tags showing the icons in the
    111 # manifest.
    112 manifest-icon-img =
    113   .alt = Icon
    114 
    115 # Text displayed as the title attribute for <img> tags showing the icons in the
    116 # manifest.
    117 # Variables:
    118 #   $sizes (string) - User-dependent string that has been parsed as a
    119 #                     space-separated list of `<width>x<height>` sizes or
    120 #                     the keyword `any`.
    121 manifest-icon-img-title = Icon with sizes: { $sizes }
    122 
    123 # Text displayed as the title attribute for <img> tags showing the icons in the
    124 # manifest, in case there's no icon size specified by the user
    125 manifest-icon-img-title-no-sizes = Unspecified size icon
    126 
    127 # Sidebar navigation item for Manifest sidebar item section
    128 sidebar-item-manifest = Manifest
    129   .alt = Manifest Icon
    130   .title = Manifest
    131 
    132 # Sidebar navigation item for Service Workers sidebar item section
    133 sidebar-item-service-workers = Service Workers
    134   .alt = Service Workers Icon
    135   .title = Service Workers
    136 
    137 # Text for the ALT and TITLE attributes of the warning icon
    138 icon-warning =
    139   .alt = Warning icon
    140   .title = Warning
    141 
    142 # Text for the ALT and TITLE attributes of the error icon
    143 icon-error =
    144   .alt = Error icon
    145   .title = Error