tor-browser

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

storage.ftl (6121B)


      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 Storage Inspector.
      6 
      7 # Key shortcut used to focus the filter box on top of the data view
      8 storage-filter-key = CmdOrCtrl+F
      9 
     10 # Hint shown when the selected storage host does not contain any data
     11 storage-table-empty-text = No data present for selected host
     12 
     13 # Hint shown when the cookies storage type is selected. Clicking the link will open
     14 # https://firefox-source-docs.mozilla.org/devtools-user/storage_inspector/cookies/
     15 storage-table-type-cookies-hint = View and edit cookies by selecting a host. <a data-l10n-name="learn-more-link">Learn more</a>
     16 
     17 # Hint shown when the local storage type is selected. Clicking the link will open
     18 # https://firefox-source-docs.mozilla.org/devtools-user/storage_inspector/local_storage_session_storage/
     19 storage-table-type-localstorage-hint = View and edit the local storage by selecting a host. <a data-l10n-name="learn-more-link">Learn more</a>
     20 
     21 # Hint shown when the session storage type is selected. Clicking the link will open
     22 # https://firefox-source-docs.mozilla.org/devtools-user/storage_inspector/local_storage_session_storage/
     23 storage-table-type-sessionstorage-hint = View and edit the session storage by selecting a host. <a data-l10n-name="learn-more-link">Learn more</a>
     24 
     25 # Hint shown when the IndexedDB storage type is selected. Clicking the link will open
     26 # https://firefox-source-docs.mozilla.org/devtools-user/storage_inspector/indexeddb/
     27 storage-table-type-indexeddb-hint = View and delete IndexedDB entries by selecting a database. <a data-l10n-name="learn-more-link">Learn more</a>
     28 
     29 # Hint shown when the cache storage type is selected. Clicking the link will open
     30 # https://firefox-source-docs.mozilla.org/devtools-user/storage_inspector/cache_storage/
     31 storage-table-type-cache-hint = View and delete the cache storage entries by selecting a storage. <a data-l10n-name="learn-more-link">Learn more</a>
     32 
     33 # Hint shown when the extension storage type is selected. Clicking the link will open
     34 # https://firefox-source-docs.mozilla.org/devtools-user/storage_inspector/extension_storage/
     35 storage-table-type-extensionstorage-hint = View and edit the extension storage by selecting a host. <a data-l10n-name="learn-more-link">Learn more</a>
     36 
     37 # Placeholder for the searchbox that allows you to filter the table items
     38 storage-search-box =
     39   .placeholder = Filter Items
     40 
     41 # Placeholder text in the sidebar search box
     42 storage-variable-view-search-box =
     43   .placeholder = Filter values
     44 
     45 # Add Item button title
     46 storage-add-button =
     47   .title = Add Item
     48 
     49 # Refresh button title
     50 storage-refresh-button =
     51   .title = Refresh Items
     52 
     53 # Context menu action to delete all storage items
     54 storage-context-menu-delete-all =
     55   .label = Delete All
     56 
     57 # Context menu action to delete all session cookies
     58 storage-context-menu-delete-all-session-cookies =
     59   .label = Delete All Session Cookies
     60 
     61 # Context menu action to copy a storage item
     62 storage-context-menu-copy =
     63   .label = Copy
     64 
     65 # Context menu action to delete storage item
     66 # Variables:
     67 #   $itemName (String) - Name of the storage item that will be deleted
     68 storage-context-menu-delete =
     69   .label = Delete “{ $itemName }”
     70 
     71 # Context menu action to add an item
     72 storage-context-menu-add-item =
     73   .label = Add Item
     74 
     75 # Context menu action to delete all storage items from a given host
     76 # Variables:
     77 #   $host (String) - Host for which we want to delete the items
     78 storage-context-menu-delete-all-from =
     79   .label = Delete All From “{ $host }”
     80 
     81 ## Header names of the columns in the Storage Table for each type of storage available
     82 ## through the Storage Tree to the side.
     83 
     84 storage-table-headers-cookies-name = Name
     85 storage-table-headers-cookies-value = Value
     86 storage-table-headers-cookies-expires = Expires / Max-Age
     87 storage-table-headers-cookies-size = Size
     88 storage-table-headers-cookies-last-accessed = Last Accessed
     89 storage-table-headers-cookies-creation-time = Created
     90 storage-table-headers-cookies-update-time = Updated
     91 storage-table-headers-cache-status = Status
     92 storage-table-headers-extension-storage-area = Storage Area
     93 
     94 ## Labels for Storage type groups present in the Storage Tree, like cookies, local storage etc.
     95 
     96 storage-tree-labels-cookies = Cookies
     97 storage-tree-labels-local-storage = Local Storage
     98 storage-tree-labels-session-storage = Session Storage
     99 storage-tree-labels-indexed-db = Indexed DB
    100 storage-tree-labels-cache = Cache Storage
    101 storage-tree-labels-extension-storage = Extension Storage
    102 
    103 ##
    104 
    105 # Tooltip for the button that collapses the right panel in the
    106 # storage UI when the panel is closed.
    107 storage-expand-pane =
    108   .title = Expand Pane
    109 
    110 # Tooltip for the button that collapses the right panel in the
    111 # storage UI when the panel is open.
    112 storage-collapse-pane =
    113   .title = Collapse Pane
    114 
    115 # String displayed in the expires column when the cookie is a Session Cookie
    116 storage-expires-session = Session
    117 
    118 # Heading displayed over the item value in the sidebar
    119 storage-data = Data
    120 
    121 # Heading displayed over the item parsed value in the sidebar
    122 storage-parsed-value = Parsed Value
    123 
    124 # Warning notification when IndexedDB database could not be deleted immediately.
    125 # Variables:
    126 #   $dbName (String) - Name of the database
    127 storage-idb-delete-blocked = Database “{ $dbName }” will be deleted after all connections are closed.
    128 
    129 # Error notification when IndexedDB database could not be deleted.
    130 # Variables:
    131 #   $dbName (String) - Name of the database
    132 storage-idb-delete-error = Database “{ $dbName }” could not be deleted.
    133 
    134 # Error notification when cookie could not be created (e.g. because it's invalid).
    135 # Variables:
    136 #   $errorString (String) - Platform error message
    137 storage-cookie-create-error = Cookie could not be created: “{ $errorString }”.
    138 
    139 # Error notification when cookie could not be edited (e.g. because it's invalid).
    140 # Variables:
    141 #   $errorString (String) - Platform error message
    142 storage-cookie-edit-error = Cookie could not be updated: “{ $errorString }”.