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 Storage Editor tool.
6# LOCALIZATION NOTE The correct localization of this file might be to keep it
7# in English, or another language commonly spoken among web developers.
8# You want to make that choice consistent across the developer tools.
9# A good criteria is the language in which you'd find the best documentation
10# on web development on the web.
11
12# LOCALIZATION NOTE (storage.filter.key):
13# Key shortcut used to focus the filter box on top of the data view
14storage.filter.key=CmdOrCtrl+F
15
16# LOCALIZATION NOTE (tree.labels.*):
17# These strings are the labels for Storage type groups present in the Storage
18# Tree, like cookies, local storage etc.
19tree.labels.cookies=Cookies
20tree.labels.localStorage=Local Storage
21tree.labels.sessionStorage=Session Storage
22tree.labels.indexedDB=Indexed DB
23tree.labels.Cache=Cache Storage
24tree.labels.extensionStorage=Extension Storage
25
26# LOCALIZATION NOTE (table.headers.*.*):
27# These strings are the header names of the columns in the Storage Table for
28# each type of storage available through the Storage Tree to the side.
29table.headers.cookies.name=Name
30table.headers.cookies.value=Value
31table.headers.cookies.expires2=Expires / Max-Age
32table.headers.cookies.size=Size
33table.headers.cookies.lastAccessed2=Last Accessed
34table.headers.cookies.creationTime2=Created
35
36table.headers.Cache.status=Status
37
38table.headers.indexedDB.uniqueKey=Unique key
39table.headers.indexedDB.name=Key
40table.headers.indexedDB.db=Database Name
41table.headers.indexedDB.storage=Storage
42table.headers.indexedDB.objectStore=Object Store Name
43table.headers.indexedDB.value=Value
44table.headers.indexedDB.origin=Origin
45table.headers.indexedDB.version=Version
46table.headers.indexedDB.objectStores=Object Stores
47table.headers.indexedDB.keyPath2=Key Path
48table.headers.indexedDB.autoIncrement=Auto Increment
49table.headers.indexedDB.indexes=Indexes
50
51table.headers.extensionStorage.area=Storage Area
52
53# LOCALIZATION NOTE (label.expires.session):
54# This string is displayed in the expires column when the cookie is Session
55# Cookie
56label.expires.session=Session
57
58# LOCALIZATION NOTE (storage.search.placeholder):
59# This is the placeholder text in the sidebar search box
60storage.search.placeholder=Filter values
61
62# LOCALIZATION NOTE (storage.data.label):
63# This is the heading displayed over the item value in the sidebar
64storage.data.label=Data
65
66# LOCALIZATION NOTE (storage.parsedValue.label):
67# This is the heading displayed over the item parsed value in the sidebar
68storage.parsedValue.label=Parsed Value
69
70# LOCALIZATION NOTE (storage.popupMenu.deleteLabel):
71# Label of popup menu action to delete storage item.
72storage.popupMenu.deleteLabel=Delete “%S”
73
74# LOCALIZATION NOTE (storage.popupMenu.addItemLabel):
75# Label of popup menu action to add an item.
76storage.popupMenu.addItemLabel=Add Item
77
78# LOCALIZATION NOTE (storage.popupMenu.refreshItemLabel):
79# Label of popup menu action to refresh an item.
80storage.popupMenu.refreshItemLabel=Refresh Items
81
82# LOCALIZATION NOTE (storage.popupMenu.deleteAllFromLabel):
83# Label of popup menu action to delete all storage items.
84storage.popupMenu.deleteAllFromLabel=Delete All From “%S”
85
86# LOCALIZATION NOTE (storage.idb.deleteBlocked):
87# Warning notification when IndexedDB database could not be deleted immediately.
88storage.idb.deleteBlocked=Database “%S” will be deleted after all connections are closed.
89
90# LOCALIZATION NOTE (storage.idb.deleteError):
91# Error notification when IndexedDB database could not be deleted.
92storage.idb.deleteError=Database “%S” could not be deleted.
93
94# LOCALIZATION NOTE (storage.expandPane):
95# This is the tooltip for the button that collapses the right panel in the
96# storage UI when the panel is closed.
97storage.expandPane=Expand Pane
98
99# LOCALIZATION NOTE (storage.collapsePane):
100# This is the tooltip for the button that collapses the right panel in the
101# storage UI when the panel is open.
102storage.collapsePane=Collapse Pane
103