Welcome to mirror list, hosted at ThFree Co, Russian Federation.

messages.json « en « _locales « generic « platform « src - github.com/marius-wieschollek/passwords-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb29da531d65602aae99fdecac548fbf93e51f9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
{
    "extensionName"              : {
        "message"    : "Passwords for Nextcloud Client",
        "description": "Name of the extension."
    },
    "extensionDescription"       : {
        "message"    : "The official browser extension for Passwords for Nextcloud",
        "description": "Description of the extension."
    },
    "browserActionTitle"         : {
        "message"    : "Passwords",
        "description": "Title of the button in the browser bar"
    },
    "contextMenuTitle"           : {
        "message"    : "Passwords",
        "description": "Title of the context menu item"
    },
    "protocolHandler"            : {
        "message"    : "PassLink Client",
        "description": "Title of the custom protocol handler"
    },
    "MigrationAccountName"       : {
        "message"    : "Nextcloud Account",
        "description": "Label assigned to the account used by the v1.x migration"
    },
    "SettingsTabAccounts"        : {
        "message"    : "Accounts",
        "description": ""
    },
    "SettingsTabTheming"         : {
        "message"    : "Theming",
        "description": ""
    },
    "SettingsTabOther"           : {
        "message"    : "Other Settings",
        "description": ""
    },
    "SettingsAccountsMain"       : {
        "message"    : "Default account for new passwords",
        "description": ""
    },
    "TabRelated"                 : {
        "message"    : "Suggestions",
        "description": ""
    },
    "TabSearch"                  : {
        "message"    : "Search",
        "description": ""
    },
    "TabBrowse"                  : {
        "message"    : "Browse",
        "description": ""
    },
    "TabCollected"               : {
        "message"    : "Collected",
        "description": ""
    },
    "TabServers"                 : {
        "message"    : "Server Info",
        "description": ""
    },
    "TabTools"                   : {
        "message"    : "Tools",
        "description": ""
    },
    "ValidationLabel"            : {
        "message"    : "label",
        "description": ""
    },
    "ValidationUser"             : {
        "message"    : "user",
        "description": ""
    },
    "ValidationToken"            : {
        "message"    : "token",
        "description": ""
    },
    "ValidationBaseUrl"          : {
        "message"    : "base url",
        "description": ""
    },
    "ValidationNotEmpty"         : {
        "message"     : "The $FIELD$ can not be emtpy",
        "description" : "",
        "placeholders": {
            "field": {
                "content": "$1",
                "example": "token"
            }
        }
    },
    "ValidationMinLength"        : {
        "message"     : "The $FIELD$ must be at least $MIN$ characters long",
        "description" : "",
        "placeholders": {
            "field": {
                "content": "$1",
                "example": "token"
            },
            "min"  : {
                "content": "$2",
                "example": "29"
            }
        }
    },
    "ValidationMaxLength"        : {
        "message"     : "The $FIELD$ must be shorter than $MAX$ characters",
        "description" : "",
        "placeholders": {
            "field": {
                "content": "$1",
                "example": "token"
            },
            "max"  : {
                "content": "$2",
                "example": "29"
            }
        }
    },
    "ValidationNotAnUrl"         : {
        "message"    : "The base url must be a valid url",
        "description": ""
    },
    "ValidationNotAToken"        : {
        "message"    : "The token must be a valid Nextcloud token",
        "description": ""
    },
    "ValidationDuplicate"        : {
        "message"    : "There is already an account for this user on this Nextcloud.",
        "description": ""
    },





    "NoRelatedMatches"           : {
        "message"    : "No logins found",
        "description": "Shown when the related page did not find any results"
    },
    "NoSearchMatches"            : {
        "message"    : "No matches",
        "description": "Shown when the search did not find any results"
    },
    "NoSearchQuery"              : {
        "message"    : "Type more than two characters",
        "description": "Shown when the search query is empty"
    },
    "PasswordRequestFailedTitle" : {
        "message"    : "Nextcloud password request failed",
        "description": "Notification title when the password request fails"
    },
    "PasswordRequestFailedText"  : {
        "message"     : "The password list could not be retrieved.\nError: $ERROR$",
        "description" : "Notification text when the password request fails",
        "placeholders": {
            "error": {
                "content": "$1",
                "example": "Unknown Error"
            }
        }
    },
    "PasswordEncodingFailedTitle": {
        "message"    : "Could not parse password properties",
        "description": "Notification title when the password properties can not be parsed"
    },
    "PasswordEncodingFailedText" : {
        "message"     : "The properties of password #$ID$ do not contain valid JSON data and could not be processed",
        "description" : "Notification text when the password properties can not be parsed",
        "placeholders": {
            "id": {
                "content": "$1",
                "example": "0"
            }
        }
    },
    "NewLoginDetectedTitle"      : {
        "message"    : "New login found",
        "description": "Notification title when a new login is detected"
    },
    "NewLoginDetectedText"       : {
        "message"     : "Click here to save the password for \"$USER$\"",
        "description" : "Notification text when a new login is detected",
        "placeholders": {
            "user": {
                "content": "$1",
                "example": "username"
            }
        }
    },
    "PasswordCreatedTitle"       : {
        "message"    : "Password saved",
        "description": "Notification title when a password was saved"
    },
    "PasswordCreatedText"        : {
        "message"    : "The password was stored sucessfully",
        "description": "Notification text when a password was saved"
    },
    "CreatePasswordFailedTitle"  : {
        "message"    : "Save password failed",
        "description": "Notification title when saving a password failed"
    },
    "CreatePasswordFailedText"   : {
        "message"    : "The password could not be saved",
        "description": "Notification text when saving a password failed"
    },
    "UpdatedLoginDetectedTitle"  : {
        "message"    : "Updated login found",
        "description": "Notification title when an updated login is detected"
    },
    "UpdatedLoginDetectedText"   : {
        "message"     : "Click here to update the password for \"$USER$\"",
        "description" : "Notification text when an updated login is detected",
        "placeholders": {
            "user": {
                "content": "$1",
                "example": "username"
            }
        }
    },
    "PasswordUpdatedTitle"       : {
        "message"    : "Password updated",
        "description": "Notification title when a password was updated"
    },
    "PasswordUpdatedText"        : {
        "message"    : "The password was updated sucessfully",
        "description": "Notification text when a password was updated"
    },
    "UpdatePasswordFailedTitle"  : {
        "message"    : "Update password failed",
        "description": "Notification title when updating a password failed"
    },
    "UpdatePasswordFailedText"   : {
        "message"    : "The password could not be updated",
        "description": "Notification text when updating a password failed"
    },
    "ApiLogin200"                : {
        "message"    : "URL invalid or API disabled",
        "description": "Error text when an api request could not be decoded"
    },
    "ApiLogin401"                : {
        "message"    : "Invalid user credentials",
        "description": "Error text when an api request got a 401 Unauthorized response"
    },
    "ApiLogin403"                : {
        "message"    : "Access denied",
        "description": "Error text when an api request got a 403 Forbidden response"
    },
    "ApiLogin404"                : {
        "message"    : "URL is invalid",
        "description": "Error text when an api request got a 404 Not Found response"
    },
    "ApiLogin500"                : {
        "message"    : "Server crashed during request",
        "description": "Error text when an api request got a 50x Internal Server Error response"
    },
    "ApiLoginGeneric"            : {
        "message"     : "Http Error $STATUS$: $MESSAGE$",
        "description" : "Generic error message for failed requests",
        "placeholders": {
            "status" : {
                "content": "$1",
                "example": "HTTP status code"
            },
            "message": {
                "content": "$2",
                "example": "HTTP status text"
            }
        }
    },
    "SettingsInvalidUrl"         : {
        "message"     : "The url $URL$ seems to be invalid.\n\n If the url of the app is\nhttps://example.com/index.php/apps/passwords\nyou need to enter\nhttps://example.com\n\nIf the url of the app is\nhttps://example.com/nextcloud/index.php/apps/passwords\nyou need to enter\nhttps://example.com/nextcloud",
        "description" : "Generic error message for failed requests",
        "placeholders": {
            "url": {
                "content": "$1",
                "example": "The user input"
            }
        }
    },
    "DarkMode"                   : {
        "message"    : "Dark Mode",
        "description": "Lable of the Dark Mode setting"
    },
    "Url"                        : { "message": "Url" },
    "Password"                   : { "message": "Password" },
    "User"                       : { "message": "User" },
    "Save"                       : { "message": "Save" }
}