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: 8a4a54f0b44459914bc94cadcf04c47526d50af7 (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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
{
    "extensionName"                      : {
        "message"    : "Passwords for Nextcloud Browser Extension",
        "description": "Name of the extension."
    },
    "extensionDescription"               : {
        "message"    : "The official browser extension for Passwords for Nextcloud",
        "description": "Description of the extension."
    },
    "locale"                             : {
        "message"    : "en",
        "description": "The language tag of this translation. Same as the folder name"
    },
    "browserActionTitle"                 : {
        "message"    : "Passwords",
        "description": "Title of the button in the browser bar"
    },
    "contextMenuTitle"                   : {
        "message"    : "Passwords",
        "description": "Title of the context menu item"
    },
    "BrowserActionTitleCounter"          : {
        "message"     : "Passwords ($COUNTER$)",
        "description" : "Title of the button in the browser bar with suggestion counter",
        "placeholders": {
            "counter": {
                "content": "$1",
                "example": "2"
            }
        }
    },
    "UserAgent"                          : {
        "message"     : "Official Passwords Client for $BROWSER$ on $OS$",
        "description" : "The user agent used for api requests. Only ASCII characters allowed",
        "placeholders": {
            "browser": {
                "content": "$1",
                "example": "Firefox"
            },
            "os"     : {
                "content": "$2",
                "example": "Linux"
            }
        }
    },
    "MigrationAccountName"               : {
        "message"    : "Nextcloud Account",
        "description": "Label assigned to the account used by the v1.x migration"
    },
    "PrivatePasswordsFolderLabel"        : {
        "message"    : "Private Passwords",
        "description": "Label assigned to the hidden folder for private passwords. (folder is only visible when browsing in private mode)"
    },
    "SettingsTabAccounts"                : {
        "message"    : "Accounts",
        "description": "Label of the user accounts tab in the extension settings"
    },
    "SettingsTabTheming"                 : {
        "message"    : "Theming",
        "description": "Label of the themes tab in the extension settings"
    },
    "SettingsTabOther"                   : {
        "message"    : "Other Settings",
        "description": "Label of the general settings tab in the extension settings"
    },
    "SettingsTabDebug"                   : {
        "message"    : "Debug",
        "description": "Label of the extension debugging tab in the extension settings"
    },
    "SettingsAccountsMain"               : {
        "message"    : "Default account for new passwords",
        "description": "Label of the option to choose the main account in the extension settings. This account will be used to synchronize settings accross apps, store new passwords and so on"
    },
    "AutofillSettings"                   : {
        "message"    : "Pasting credentials",
        "description": "Headline above the password autofill section in the other settings tab in the extension settings"
    },
    "SettingsPastePopupClose"            : {
        "message"    : "Close popup after pasting credentials",
        "description": "Label of the setting in the extension settings to automatically close the extension popup after successful pasting"
    },
    "SettingsPasteFormSubmit"            : {
        "message"    : "Submit login forms when credentials pasted from popup",
        "description": "Label of the setting in the extension settings to automatically submit login forms after pasting"
    },
    "SettingsPasteWarnCompromised"       : {
        "message"    : "Warn when using compromised credentials",
        "description": "Label of the setting in the extension settings to show a warning after pasting a compromised password"
    },
    "SettingsPasteAutofillEnabled"       : {
        "message"    : "Automatically fill in best matching login data",
        "description": "Label of the setting in the extension settings to automatically paste the first recommended credential into login forms"
    },
    "HelpPasteAutofill"                  : {
        "message"    : "Automatically paste the first suggested credential into any login form in the tab. Be aware that this makes it accessible any script in the tab.",
        "description": "Help text in the extension settings for the setting to automatically paste credentials into login forms"
    },
    "SettingsPasteBasicAuth"             : {
        "message"    : "Automatically respond to HTTP basic authentication requests",
        "description": "Label of the setting in the extension settings to automatically respond with the first recommended credential to any http basic authentication request"
    },
    "HelpPasteBasicAuth"                 : {
        "message"    : "Automatically respond to http basic authentication requests with the first suggested credential. Be aware that this may expose credentials to untrustworthy servers.",
        "description": "Help text in the extension settings for the setting to automatically respond with the first recommended credential to any http basic authentication request"
    },
    "SettingsClearClipboardPasswords"    : {
        "message"    : "Delete passwords from clipboard automatically",
        "description": "Label of the setting in the extension settings to automatically clear passwords from clipboard after a certain time."
    },
    "HelpClearClipboardPasswords"        : {
        "message"    : "The clipboard will only be cleared if the browser ist still open. If the optional permission to read the clipboard is granted, it will only be cleared if the password is still in there",
        "description": "Help text in the extension settings for the setting to automatically clean passwords from clipboard after a certain time."
    },
    "SettingsClearClipboardDelay"        : {
        "message"    : "Empty clipboard after",
        "description": "Label of the setting in the extension settings to define the time when the clipboard content will be removed."
    },
    "SettingsClipboardClearDelayOptions" : {
        "message"     : "$ROW$ seconds",
        "description" : "Time in seconds until clipboard will get empty.",
        "placeholders": {
            "row": {
                "content": "$1",
                "example": "One of 15, 30, 45, 60, 90"
            }
        }
    },
    "NotificationSettings"               : {
        "message"    : "Notifications",
        "description": "Headline above the notification section in the other settings tab in the extension settings"
    },
    "SettingsNotifyPasswordNew"          : {
        "message"    : "Notification for new passwords",
        "description": "Label of the setting in the extension settings to enable or disable the notification for new detected passwords"
    },
    "SettingsNotifyPasswordUpdate"       : {
        "message"    : "Notification for updated passwords",
        "description": "Label of the setting in the extension settings to enable or disable the notification for detected password updates"
    },
    "SearchSettings"                     : {
        "message"    : "Search",
        "description": "Headline above the search section in the other settings tab in the extension settings"
    },
    "SettingsPopupRelatedSearch"         : {
        "message"    : "Start search when i type in \"Related\"",
        "description": "Label of the setting in the extension settings to enable or disable switching to the search tab in the popup if the user types in the related passwords tab"
    },
    "AccountList"                        : {
        "message"    : "User accounts",
        "description": "Headline above the user accounts section in the accounts tab in the extension settings"
    },
    "NoAccounts"                         : {
        "message"    : "There are no accounts yet. Click here to create one.",
        "description": "Message in place of the user accounts list in the extension settings if there are no user accounts yet. The user can click the message to create an account"
    },
    "NewAccountFormLabel"                : {
        "message"    : "Create account",
        "description": "Label of the new account form in the extension settings"
    },
    "ServerSaveTitle"                    : {
        "message"    : "Account saved",
        "description": "Title of the toast notification in the extension settings after an account was created or updated successfully"
    },
    "ServerSaveMessage"                  : {
        "message"    : "All changes were applied successfully",
        "description": "Message of the toast notification in the extension settings after an account was created successfully"
    },
    "ServerCreatedMessage"               : {
        "message"    : "The account has been created and is ready to be used",
        "description": "Message of the toast notification in the extension settings after an account was updated successfully"
    },
    "ServerSaveErrorTitle"               : {
        "message"    : "Saving failed",
        "description": "Title of the toast notification in the extension settings after an account could not be updated or saved. The message will be the specific error message"
    },
    "ServerDisabledWarning"              : {
        "message"    : "This account is deactivated. It will be activated after it was saved successfully.",
        "description": "Warning message which appears above the account details if the server was disabled. Usual reasons are invalid login data, unsupported extension version or permanent connection issues."
    },
    "ServerLabel"                        : {
        "message"    : "Name",
        "description": "Label of the account name field in account details in the extension settings"
    },
    "ServerBaseUrl"                      : {
        "message"    : "Url",
        "description": "Label of the server url field in account details in the extension settings"
    },
    "ServerUser"                         : {
        "message"    : "User",
        "description": "Label of the account login user field in account details in the extension settings"
    },
    "ServerToken"                        : {
        "message"    : "App Password",
        "description": "Label of the account login token field in account details in the extension settings"
    },
    "ServerTokenChange"                  : {
        "message"    : "Change App Password",
        "description": "Label of the button to change the login token of an existing account in the account details in the extension settings"
    },
    "ServerTimeout"                      : {
        "message"    : "Logout after",
        "description": "Label of the option to change the automatic logout time of an existing account in the account details in the extension settings"
    },
    "ServerTimeoutOptionNever"           : {
        "message"    : "Never",
        "description": "Label of the option for the server timeout to never expire"
    },
    "ServerTimeoutOptionMinutes"         : {
        "message"     : "After $MINUTES$ minutes",
        "description" : "Label of the option for the server timeout to expire after a given amount of minutes",
        "placeholders": {
            "minutes": {
                "content": "$1",
                "example": "One of 5, 10, 15 30 or 60"
            }
        }
    },
    "TabRelated"                         : {
        "message"    : "Suggestions",
        "description": "Label of the related passwords tab in the extension popup"
    },
    "TabSearch"                          : {
        "message"    : "Search",
        "description": "Label of the search tab in the extension popup"
    },
    "TabBrowse"                          : {
        "message"    : "Browse",
        "description": "Label of the browse servers tab in the extension popup"
    },
    "TabCollected"                       : {
        "message"    : "Collected",
        "description": "Label of the new collected passwords tab in the extension popup"
    },
    "TabTools"                           : {
        "message"    : "Tools",
        "description": "Label of the tools tab in the extension popup"
    },
    "PasswordItemTitle"                  : {
        "message"     : "Status: $STATUS$, Id: #$ID$",
        "description" : "The tooltip of any password entry in the popup",
        "placeholders": {
            "id"    : {
                "content": "$1",
                "example": "1234-1234-1234-1234"
            },
            "status": {
                "content": "$2",
                "example": "DUPLICATE"
            }
        }
    },
    "PasswordItemOpenUrl"                : {
        "message"    : "Open Website",
        "description": "Title of the menu option to open the password url in a new tab"
    },
    "PasswordItemToTrash"                : {
        "message"    : "Move to trash",
        "description": "Title of the menu option to move a password to the trash"
    },
    "PasswordItemDetails"                : {
        "message"    : "View details",
        "description": "Title of the menu option to view and edit a password"
    },
    "ValidationLabel"                    : {
        "message"    : "label",
        "description": "Name of the account label field in account validation message. This value is used when the user attempts to save an account with an invalid label"
    },
    "ValidationUser"                     : {
        "message"    : "user",
        "description": "Name of the account username field in account validation message. This value is used when the user attempts to save an account with an invalid username"
    },
    "ValidationToken"                    : {
        "message"    : "app password",
        "description": "Name of the account token field in account validation message. This value is used when the user attempts to save an account with an invalid token"
    },
    "ValidationBaseUrl"                  : {
        "message"    : "base url",
        "description": "Name of the account base url field in account validation message. This value is used when the user attempts to save an account with an invalid base url"
    },
    "ValidationNotEmpty"                 : {
        "message"     : "The $FIELD$ can not be empty.",
        "description" : "Validation message when the user attempts to save something (like an account) but a required field is empty.",
        "placeholders": {
            "field": {
                "content": "$1",
                "example": "user"
            }
        }
    },
    "ValidationMinLength"                : {
        "message"     : "The $FIELD$ must be at least $MIN$ characters long.",
        "description" : "Validation message when the user attempts to save something (like an account) but a field is shorter than required",
        "placeholders": {
            "field": {
                "content": "$1",
                "example": "user"
            },
            "min"  : {
                "content": "$2",
                "example": "29"
            }
        }
    },
    "ValidationMaxLength"                : {
        "message"     : "The $FIELD$ must be shorter than $MAX$ characters.",
        "description" : "Validation message when the user attempts to save something (like an account) but a field is longer than allowed",
        "placeholders": {
            "field": {
                "content": "$1",
                "example": "user"
            },
            "max"  : {
                "content": "$2",
                "example": "29"
            }
        }
    },
    "ValidationFailed"                   : {
        "message"    : "Validation failed.",
        "description": "Validation message when the user attempts to save something (like an account) but there were validation errors"
    },
    "ValidationNotAnUrl"                 : {
        "message"    : "The base url must be a valid url.",
        "description": "Validation message when the user attempts to save an account but the server url is not a valid url"
    },
    "ValidationNotAToken"                : {
        "message"    : "The app password must be a valid Nextcloud App Password.",
        "description": "Validation message when the user attempts to save an account but the token does not match the Nextcloud token schema"
    },
    "ValidationInvalidTimeout"           : {
        "message"    : "The logout time must be one of the given options.",
        "description": "Validation message when the user attempts to save an account but the timeout is not within the predefined range"
    },
    "ValidationDuplicate"                : {
        "message"    : "There is already an account for this user on this Nextcloud.",
        "description": "Validation message when the user attempts to save a new account, but a similar account with the same server and same user name already exists"
    },
    "ValidationNoConnection"             : {
        "message"     : "Unable to connect to $URL$.",
        "description" : "Validation message when the user attempts to save an account but it is not possible to connect to this server with the given url",
        "placeholders": {
            "url": {
                "content": "$1",
                "example": "https://cloud.example.com/"
            }
        }
    },
    "ValidationUnauthorizedError"        : {
        "message"     : "The server at $URL$ did not accept the login data.",
        "description" : "Validation message when the user attempts to save an account but the server did not accept the user name and token",
        "placeholders": {
            "url": {
                "content": "$1",
                "example": "https://cloud.example.com/"
            }
        }
    },
    "ValidationHttpError"                : {
        "message"     : "Trying to connect to $URL$ resulted in $ERROR$.",
        "description" : "Validation message when the user attempts to save an account but the server responded with an unexpected HTTP status code",
        "placeholders": {
            "url"  : {
                "content": "$1",
                "example": "https://cloud.example.com/"
            },
            "error": {
                "content": "$2",
                "example": "HTTP 401 - Forbidden"
            }
        }
    },
    "ValidationConnectionError"          : {
        "message"     : "Trying to connect to $URL$ resulted in $ERROR$.",
        "description" : "Validation message when the user attempts to save an account but the connection attempt resulted in any kind of error (including internal extension errors)",
        "placeholders": {
            "url"  : {
                "content": "$1",
                "example": "https://cloud.example.com/"
            },
            "error": {
                "content": "$2",
                "example": "Undefined variable example in file"
            }
        }
    },
    "ValidationServerVersion"            : {
        "message"    : "The app version installed on the server is outdated.",
        "description": "Validation message when the user attempts to save an account but the version of the passwords app installed on the server is outdated"
    },
    "NoRelatedPasswords"                 : {
        "message"    : "Did not find any related passwords",
        "description": "Used in the related tab when no entries match the current website"
    },
    "NoSearchResults"                    : {
        "message"    : "Did not find any passwords matching your query",
        "description": "Used in the search tab when no entries match the search query"
    },
    "NoSearchQuery"                      : {
        "message"    : "Write into the search box to find passwords",
        "description": "Used in the search tab when there is no search query"
    },
    "NoCollectedPasswords"               : {
        "message"    : "No new passwords found",
        "description": "Used in the collected tab when no new passwords have been found"
    },
    "AddPasswordForCurrentTab"           : {
        "message"    : "Add credentials for current tab",
        "description": "Used in the collected tab for the option to add a blank entry with just the url of the current tab"
    },
    "NoServerItems"                      : {
        "message"    : "No elements found",
        "description": "Used in the browse tab when a server has no entries to list"
    },
    "BrowseNoServers"                    : {
        "message"    : "No servers available",
        "description": "Used in the browse tab when no accounts/servers are available"
    },
    "SearchPlaceholder"                  : {
        "message"    : "Find passwords",
        "description": "Placeholder text of the search box"
    },
    "MiningItemIsNew"                    : {
        "message"    : "This is a new password",
        "description": "Text shown in a collected password that is new to tell the user that it is a new passwor"
    },
    "MiningItemIsUpdate"                 : {
        "message"     : "This seems to be an update of \"$PASSWORD$\"",
        "description" : "Text shown in a collected password that is an update of an existing password",
        "placeholders": {
            "password": {
                "content": "$1",
                "example": "My Password"
            }
        }
    },
    "TitleClickToEdit"                   : {
        "message"    : "Double click to edit",
        "description": "Tooltip used in the collected password form for any property of the password to inform the user that double clicking makes the text field editable"
    },
    "TitleEnterToExit"                   : {
        "message"    : "Press enter to save",
        "description": "Tooltip used in the collected password form to tell the user that the property can be saved by clicking enter"
    },
    "LabelLabel"                         : {
        "message"    : "Name",
        "description": "Label for the name of a password entry"
    },
    "LabelPassword"                      : {
        "message"    : "Password",
        "description": "Label for the password of a password entry"
    },
    "LabelUsername"                      : {
        "message"    : "User",
        "description": "Label for the username of a password entry"
    },
    "LabelHidden"                        : {
        "message"    : "Private Password",
        "description": "Label for the checkbox to mark a password entry as private or hidden in the webapp"
    },
    "LabelUrl"                           : {
        "message"    : "Url",
        "description": "Label for of a field that contains an url (used in collected password or server info)"
    },
    "LabelUser"                          : {
        "message"    : "User",
        "description": "Label for the username of in the server info in the browse tab"
    },
    "LabelPasswords"                     : {
        "message"    : "Passwords",
        "description": "Label for the password count in the server info in the browse tab"
    },
    "LabelFolders"                       : {
        "message"    : "Folders",
        "description": "Label for the folder count in the server info in the browse tab"
    },
    "LabelFolder"                        : {
        "message"    : "Folder",
        "description": "Label for the folder of this password."
    },
    "LabelCreated"                       : {
        "message"    : "Created",
        "description": "Label for the creation time of this password."
    },
    "LabelEdited"                        : {
        "message"    : "Modified",
        "description": "Label for the last edit time of this password."
    },
    "LabelNotes"                         : {
        "message"    : "Notes",
        "description": "Label for the notes of this password."
    },
    "LabelCustomFields"                  : {
        "message"    : "Custom Fields",
        "description": "Label for the custom fields of this password"
    },
    "LabelTags"                          : {
        "message"    : "Tags",
        "description": "Label for the tag count in the server info in the browse tab"
    },
    "LabelServerVersion"                 : {
        "message"    : "Server",
        "description": "Label for the nextcloud server version in the server info in the browse tab"
    },
    "LabelAppVersion"                    : {
        "message"    : "API",
        "description": "Label for the passwords app version in the server info in the browse tab"
    },
    "ServerLabelString"                  : {
        "message"     : "Nextcloud $VERSION$",
        "description" : "Value for the nextcloud server version in the server info in the browse tab",
        "placeholders": {
            "version": {
                "content": "$1",
                "example": "20"
            }
        }
    },
    "AppLabelString"                     : {
        "message"     : "Passwords $VERSION$",
        "description" : "Value for the passwords app version in the server info in the browse tab",
        "placeholders": {
            "version": {
                "content": "$1",
                "example": "20"
            }
        }
    },
    "PlaceholderPassword"                : {
        "message"    : "Password",
        "description": "Placeholder text in the master password field of the server authorization dialog"
    },
    "PlaceholderToken"                   : {
        "message"    : "Two-Factor Token",
        "description": "Placeholder text in the master password field of the server authorization dialog"
    },
    "ButtonLogin"                        : {
        "message"    : "Login",
        "description": "The text of the login button of the server authorization dialog"
    },
    "AuthorizationFailedTitle"           : {
        "message"    : "Authorization failed",
        "description": "Title of the toast notification when the login attempt was unsuccessful"
    },
    "AuthorizationFailedText"            : {
        "message"    : "Access to the password database with the provided login was denied",
        "description": "Text of the toast notification when the login attempt was unsuccessful"
    },
    "TokenRequestFailed"                 : {
        "message"    : "Token request failed",
        "description": "Title of the toast notification when the request for a two factor auth token failed. The text will be the error message."
    },
    "NotifyNewPasswordTitle"             : {
        "message"    : "New password detected",
        "description": "Title of the system notification when a new password was detected"
    },
    "NotifyNewPasswordText"              : {
        "message"     : "A new password for \"$LABEL$\" was detected.",
        "description" : "Text of the system notification when a new password was detected. Used in Chrome where the notification has buttons to save or view the password",
        "placeholders": {
            "label": {
                "content": "$1",
                "example": "Nextcloud Community Forum"
            }
        }
    },
    "NotifyNewPasswordTextFF"            : {
        "message"     : "A new password for \"$LABEL$\" was detected. Click the passwords icon in the toolbar to view and save it.",
        "description" : "Text of the system notification when a new password was detected. Used in Firefox where the notification is purely informational and the user must open the popup to save the password",
        "placeholders": {
            "label": {
                "content": "$1",
                "example": "Nextcloud Community Forum"
            }
        }
    },
    "NotifyUpdatePasswordTitle"          : {
        "message"    : "Updated password detected",
        "description": "Title of the system notification when an update for an existing password has been detected"
    },
    "NotifyUpdatePasswordText"           : {
        "message"     : "An update for \"$LABEL$\" was detected.",
        "description" : "Text of the system notification when an update for an existing password was detected. Used in Chrome where the notification has buttons to save or view the password",
        "placeholders": {
            "label": {
                "content": "$1",
                "example": "Nextcloud Community Forum"
            }
        }
    },
    "NotifyUpdatePasswordTextFF"         : {
        "message"     : "An update for \"$LABEL$\" was detected. Click the passwords icon in the toolbar to view and save it.",
        "description" : "Text of the system notification when an update for an existing password was detected. Used in Firefox where the notification is purely informational and the user must open the popup to save the password",
        "placeholders": {
            "label": {
                "content": "$1",
                "example": "Nextcloud Community Forum"
            }
        }
    },
    "ButtonSave"                         : {
        "message"    : "Save",
        "description": "The save button of a password detection system notification"
    },
    "ButtonMore"                         : {
        "message"    : "More Options",
        "description": "The more options button of a password detection system notification which opens the popup with the form which shows all password details"
    },
    "ButtonClose"                        : {
        "message"    : "Close",
        "description": "The title of the close button of a toast notification"
    },
    "ToastServerCheckTitle"              : {
        "message"     : "$SERVER$ needs to be upgraded",
        "description" : "Title of the toast notification when an account was disabled because the server uses an outdated and unsupported version of the passwords app",
        "placeholders": {
            "server": {
                "content": "$1",
                "example": "My Nextcloud"
            }
        }
    },
    "ToastServerCheckMessage"            : {
        "message"     : "The account \"$SERVER$\" uses passwords $SERVERVERSION$, but this extension requires at least $MINVERSION$. The app needs to be updated before the account can be activated again in the settings.",
        "description" : "Text of the toast notification when an account was disabled because the server uses an outdated and unsupported version of the passwords app",
        "placeholders": {
            "server"       : {
                "content": "$1",
                "example": "My Nextcloud"
            },
            "minversion"   : {
                "content": "$2",
                "example": "2020.1"
            },
            "serverversion": {
                "content": "$3",
                "example": "2020.3"
            }
        }
    },
    "ToastErrorMessage"                  : {
        "message"    : "An error occurred in the passwords client. Check the error log in the debug options for more details.",
        "description": "Text of the toast notification for error messages from the passwords client. The error message is the title"
    },
    "ToastPasswordTrashed"               : {
        "message"     : "$LABEL$ was moved to the trash. You can delete it permanently in the app or restore it",
        "description" : "Text of the toast notification after a password was moved to the trash",
        "placeholders": {
            "label": {
                "content": "$1",
                "example": "My Example Password"
            }
        }
    },
    "ToastPasswordHiddenTrashed"         : {
        "message"     : "$LABEL$ was deleted. If this was an accident you can still restore it below before it is deleted permanently",
        "description" : "Text of the toast notification after a hidden password was moved to the trash. Users can restore it within the notification but afterwards the password is lost for good",
        "placeholders": {
            "label": {
                "content": "$1",
                "example": "My Example Password"
            }
        }
    },
    "ToastPasswordTrashedRestore"        : {
        "message"    : "Restore",
        "description": "Text of the toast notification option to restore a password from the trash"
    },
    "ToastPasswordDeleteFailed"          : {
        "message"    : "Deleting password failed",
        "description": "Text of the toast notification when deleting the password failed"
    },
    "ToastPasswordRestored"              : {
        "message"     : "$LABEL$ was restored from trash. It will reappear after you reopen the popup",
        "description" : "Text of the toast notification after a password was restored from the trash",
        "placeholders": {
            "label": {
                "content": "$1",
                "example": "My Example Password"
            }
        }
    },
    "PasswordPastedSuccess"              : {
        "message"     : "$LABEL$ pasted successfully",
        "description" : "Text of the toast notification when a password entry was pasted successfully into the current tab",
        "placeholders": {
            "label": {
                "content": "$1",
                "example": "Nextcloud account"
            }
        }
    },
    "ToastPasswordUpdated"               : {
        "message"    : "Password updated",
        "description": "Text of the toast notification when password was updated"
    },
    "ToastPasswordUpdateFailed"          : {
        "message"    : "Password update failed",
        "description": "Text of the toast notification when password update failed"
    },
    "PasswordPastedError"                : {
        "message"     : "Could not paste $LABEL$",
        "description" : "Text of the toast notification when a password could not be pasted into the current tab",
        "placeholders": {
            "label": {
                "content": "$1",
                "example": "Nextcloud account"
            }
        }
    },
    "PasswordPropertyCopied"             : {
        "message"     : "Copied $PROPERTY$",
        "description" : "Text of the toast notification when a password property was copied successfully via one of the buttons",
        "placeholders": {
            "property": {
                "content": "$1",
                "example": "Username"
            }
        }
    },
    "PropertyPassword"                   : {
        "message"    : "Password",
        "description": "Label of the property password of the password entry used in PasswordPropertyCopied"
    },
    "PropertyUsername"                   : {
        "message"    : "Username",
        "description": "Label of the property username of the password entry used in PasswordPropertyCopied"
    },
    "PropertyUrl"                        : {
        "message"    : "Website",
        "description": "Label of the property url of the password entry used in PasswordPropertyCopied"
    },
    "ServerConnectionErrorTitle"         : {
        "message"     : "Unable to connect to $SERVER$",
        "description" : "Title of the toast notification when the connection to the server failed",
        "placeholders": {
            "server": {
                "content": "$1",
                "example": "My Nextcloud"
            }
        }
    },
    "ServerCredentialsRejected"          : {
        "message"    : "Server credentials rejected. Please update the login data in the settings.",
        "description": "Text of the toast notification when the server has rejected the login credentials"
    },
    "ServerHttpError"                    : {
        "message"     : "HTTP connection error: $ERROR$",
        "description" : "Text of the toast notification when the connection to the server failed with a HTTP error",
        "placeholders": {
            "error": {
                "content": "$1",
                "example": "500 - Internal Server Error"
            }
        }
    },
    "ServerNetworkError"                 : {
        "message"    : "A network error occurred. Please check if you're online and the server is reachable.",
        "description": "Text of the toast notification when the connection to the server failed with a network error"
    },
    "ServerUnknownError"                 : {
        "message"    : "Unknown error.",
        "description": "Text of the toast notification when the connection to the server failed with an unknown error and no error message is present"
    },
    "ServerGenericError"                 : {
        "message"     : "Error: $ERROR$",
        "description" : "Text of the toast notification when the connection to the server failed with an error",
        "placeholders": {
            "error": {
                "content"    : "$1",
                "description": "The error message",
                "example"    : "500 - Internal Server Error"
            }
        }
    },
    "DemoInfoNotification"               : {
        "message"    : "Info notification",
        "description": "Text and title of the info notification in the theme preview"
    },
    "DemoSuccessNotification"            : {
        "message"    : "Success notification",
        "description": "Text and title of the success notification in the theme preview"
    },
    "DemoWarningNotification"            : {
        "message"    : "Warning notification",
        "description": "Text and title of the warning notification in the theme preview"
    },
    "DemoErrorNotification"              : {
        "message"    : "Error notification",
        "description": "Text and title of the error notification in the theme preview"
    },
    "DemoText"                           : {
        "message"    : "Demo",
        "description": "Demo text used in the theme preview"
    },
    "SettingsThemeId"                    : {
        "message"    : "Active theme",
        "description": "Label of the option to choose the current theme in the extension settings"
    },
    "ThemeDark"                          : {
        "message"    : "Dark theme",
        "description": "Label of the dark theme"
    },
    "ThemeOledDark"                      : {
        "message"    : "Dark OLED",
        "description": "Label of the dark theme optimized for OLED-Displays"
    },
    "ThemeLight"                         : {
        "message"    : "Default",
        "description": "Label of the default light theme"
    },
    "ThemeAdaptaLight"                   : {
        "message"    : "Adapta",
        "description": "Label of the theme with the Adapta color scheme"
    },
    "ThemeAdaptaTeal"                    : {
        "message"    : "Adapta teal",
        "description": "Label of the theme with the Adapta teal color scheme"
    },
    "ThemeArcDark"                       : {
        "message"    : "Arc dark",
        "description": "Label of the theme with the Arc dark scheme"
    },
    "ThemeArcLight"                      : {
        "message"    : "Arc",
        "description": "Label of the theme with the Arc color scheme"
    },
    "ThemeHacker"                        : {
        "message"    : "Hacker",
        "description": "Label of the hacker style theme"
    },
    "ThemeRGB"                           : {
        "message"    : "Gaming RGB",
        "description": "Label of the gaming rgb animated theme"
    },
    "ThemeCustom"                        : {
        "message"    : "Custom theme",
        "description": "Label for the custom theme option"
    },
    "CustomFont"                         : {
        "message"    : "Font",
        "description": "Headline for the font settings in the custom theme settings"
    },
    "CustomDefaultElement"               : {
        "message"    : "Default element",
        "description": "Headline for the default element styling settings in the custom theme settings"
    },
    "CustomActiveElement"                : {
        "message"    : "Active element",
        "description": "Headline for the active element styling settings in the custom theme settings"
    },
    "CustomButtons"                      : {
        "message"    : "Buttons",
        "description": "Headline for the button styling settings in the custom theme settings"
    },
    "CustomSliderElement"                : {
        "message"    : "Switches",
        "description": "Headline for the switch styling settings in the custom theme settings"
    },
    "CustomToasts"                       : {
        "message"    : "Toast notifications",
        "description": "Headline for the toast notification styling settings in the custom theme settings"
    },
    "CustomBadge"                        : {
        "message"    : "Browser icon",
        "description": "Headline for the browser toolbar icon styling settings in the custom theme settings"
    },
    "BackgroundColorLabel"               : {
        "message"    : "Background color",
        "description": "Label of background color options in the custom theme settings"
    },
    "ForegroundColorLabel"               : {
        "message"    : "Foreground color",
        "description": "Label of foreground / text color options in the custom theme settings"
    },
    "BorderColorLabel"                   : {
        "message"    : "Border color",
        "description": "Label of border color options in the custom theme settings"
    },
    "BackgroundInheritLabel"             : {
        "message"    : "Inherit background",
        "description": "Label of options to inherit the background color in the custom theme settings"
    },
    "ForegroundInheritLabel"             : {
        "message"    : "Inherit foreground",
        "description": "Label of options to inherit the foreground / text color in the custom theme settings"
    },
    "BackgroundColorBaseTitle"           : {
        "message"    : "This color is usually used for the background",
        "description": "Tooltip of the color input field in the custom theme settings for the default background color for an element"
    },
    "BackgroundColorHoverTitle"          : {
        "message"    : "This color is used for the background if the element is active. It can also be used for the border of an inactive element",
        "description": "Tooltip of the color input field in the custom theme settings for the mouse hover / active background color for an element"
    },
    "ForegroundColorBaseTitle"           : {
        "message"    : "This color is usually used for texts and borders",
        "description": "Tooltip of the color input field in the custom theme settings for the default foreground / text color for an element"
    },
    "ForegroundColorHoverTitle"          : {
        "message"    : "This color is used for texts and borders if the element is active",
        "description": "Tooltip of the color input field in the custom theme settings for the hover / active foreground / text color for an element"
    },
    "BorderColorBaseTitle"               : {
        "message"    : "This color is usually used for borders",
        "description": "Tooltip of the color input field in the custom theme settings for the default border color for an element"
    },
    "BorderColorHoverTitle"              : {
        "message"    : "This color is used for borders if the element is active",
        "description": "Tooltip of the color input field in the custom theme settings for the hover / active border color for an element"
    },
    "BackgroundInheritTitle"             : {
        "message"    : "If activated, the value will be inherited from the parent element",
        "description": "Tooltip for the checkbox to inherit the background color (from the parent element in the html) in the custom theme settings"
    },
    "ForegroundInheritTitle"             : {
        "message"    : "If activated, the value will be inherited from the parent element",
        "description": "Tooltip for the checkbox to inherit the foreground / text color (from the parent element in the html) in the custom theme settings"
    },
    "SettingsCustomFont"                 : {
        "message"    : "Font family",
        "description": "Label of the font option in the custom theme settings"
    },
    "FontDefault"                        : {
        "message"    : "Default",
        "description": "Label of the default font option in the custom theme settings"
    },
    "FontMono"                           : {
        "message"    : "Monospace",
        "description": "Label of the monospaced font option in the custom theme settings"
    },
    "FontSerif"                          : {
        "message"    : "Serif",
        "description": "Label of the serif style (like Times New Roman) font option in the custom theme settings"
    },
    "FontSans"                           : {
        "message"    : "Sans serif",
        "description": "Label of the sans serif (like Arial) font option in the custom theme settings"
    },
    "FontLight"                          : {
        "message"    : "Light",
        "description": "Label of the thin font option in the custom theme settings"
    },
    "FontNextcloud"                      : {
        "message"    : "Nextcloud",
        "description": "Label of the Nextcloud font option in the custom theme settings"
    },
    "FontOpenDyslexic"                   : {
        "message"    : "Open Dyslexic",
        "description": "Label of the open dyslexic font option in the custom theme settings. This font is good for users with dyslexia"
    },
    "FontCustom"                         : {
        "message"    : "Custom",
        "description": "Label for unrecognized fonts in the custom theme settings. This option is usually not shown"
    },
    "SettingsCustomFontSize"             : {
        "message"    : "Font size",
        "description": "Label of the font size setting in the custom theme settings"
    },
    "FontSizeVerySmall"                  : {
        "message"    : "Very small",
        "description": "Label for the very small font size in the custom theme settings"
    },
    "FontSizeSmall"                      : {
        "message"    : "Small",
        "description": "Label for the small font size in the custom theme settings"
    },
    "FontSizeDefault"                    : {
        "message"    : "Default",
        "description": "Label for the default font size in the custom theme settings"
    },
    "FontSizeMedium"                     : {
        "message"    : "Medium",
        "description": "Label for the medium font size in the custom theme settings"
    },
    "FontSizeLarge"                      : {
        "message"    : "Large",
        "description": "Label for the large font size in the custom theme settings"
    },
    "FontSizeVeryLarge"                  : {
        "message"    : "Very large",
        "description": "Label for the very large font size in the custom theme settings"
    },
    "ToastInfoColors"                    : {
        "message"    : "Info toast",
        "description": "Label of the setting in the custom theme settings to choose the colors of informational toast notifications"
    },
    "ToastSuccessColors"                 : {
        "message"    : "Success toast",
        "description": "Label of the setting in the custom theme settings to choose the colors of success toast notifications"
    },
    "ToastWarningColors"                 : {
        "message"    : "Warning toast",
        "description": "Label of the setting in the custom theme settings to choose the colors of warning toast notifications"
    },
    "ToastErrorColors"                   : {
        "message"    : "Error toast",
        "description": "Label of the setting in the custom theme settings to choose the colors of error toast notifications"
    },
    "ToastBackgroundTitle"               : {
        "message"    : "Background color for the toast notification",
        "description": "Tooltip of the color input in the custom theme settings for a toast notification background color"
    },
    "ToastForegroundTitle"               : {
        "message"    : "Color for text and button backgrounds of the toast notification",
        "description": "Tooltip of the color input in the custom theme settings for a toast notification foreground / text color"
    },
    "SettingsBadgeIcon"                  : {
        "message"    : "Toolbar icon",
        "description": "Label of the setting to choose the toolbar icon in the custom theme settings"
    },
    "BadgeIconAuto"                      : {
        "message"    : "Automatic",
        "description": "Label of the automatic icon option for the toolbar icon in the custom theme settings"
    },
    "BadgeIconLight"                     : {
        "message"    : "Light icon",
        "description": "Label of the light icon option for the toolbar icon in the custom theme settings"
    },
    "BadgeIconMedium"                    : {
        "message"    : "Grey icon",
        "description": "Label of the grey icon option for the toolbar icon in the custom theme settings"
    },
    "BadgeIconDark"                      : {
        "message"    : "Dark icon",
        "description": "Label of the dark icon option for the toolbar icon in the custom theme settings"
    },
    "BadgeIconNewLight"                  : {
        "message"    : "Light modern icon",
        "description": "Label of the light modern icon option for the toolbar icon in the custom theme settings"
    },
    "BadgeIconNewMedium"                 : {
        "message"    : "Grey modern icon",
        "description": "Label of the grey modern icon option for the toolbar icon in the custom theme settings"
    },
    "BadgeIconNewDark"                   : {
        "message"    : "Dark modern icon",
        "description": "Label of the dark modern icon option for the toolbar icon in the custom theme settings"
    },
    "CustomBadgeColors"                  : {
        "message"    : "Badge colors",
        "description": "Label of the settings for the toolbar icon badge colors in the custom theme settings"
    },
    "BadgeBackgroundTitle"               : {
        "message"    : "Background color of the badge",
        "description": "Tooltip for the color input for the background color of the toolbar icon badge in the custom theme settings"
    },
    "BadgeForegroundTitle"               : {
        "message"    : "Text color of the badge",
        "description": "Tooltip for the color input for the text color of the toolbar icon badge in the custom theme settings"
    },
    "PasslinkErrorNoMessage"             : {
        "message"    : "There has been an error but no error message was provided",
        "description": "Error message shown in the PassLink popup window when and error happened but no error message was provided"
    },
    "PasslinkNoLinkProvided"             : {
        "message"    : "No link or action is missing",
        "description": "Error message shown in the PassLink popup window when the window was opened but no action or link to process was provided"
    },
    "PasslinkErrorClose"                 : {
        "message"    : "Close",
        "description": "Text of the close button in the PassLink error window"
    },
    "PasslinkNoActiveAction"             : {
        "message"    : "There is no active PassLink action of this type",
        "description": "Error message when an active PassLink action is required for a request but no active action can be found. (Example: Request to view the second step of the PassLink connect step, but no PassLink connect was started at all)"
    },
    "PasslinkConnectCheckCodes"          : {
        "message"    : "Check if the codes below match with the ones you see in the app. If they do, confirm the connection in the app and you're done.",
        "description": "Message during the PassLink Connect action telling the user to check if the codes below match the ones shown in the Nextcloud Passwords App. If so, the user just needs to confirm the connection in the Nextcloud app to add the account to the extension."
    },
    "PasslinkConnectServer"              : {
        "message"     : "The new account was saved as \"$LABEL$\"",
        "description" : "Confirmation message in the PassLink Connect action when a new account has been created successfully",
        "placeholders": {
            "label": {
                "content": "$1",
                "example": "Nexcloud - admin"
            }
        }
    },
    "PasslinkConnectNotFound"            : {
        "message"    : "This link is invalid. It may have been used already or is expired.",
        "description": "Error message in PassLink when the link used has expired or was already used."
    },
    "PasslinkConnectRejected"            : {
        "message"    : "The connection request was rejected by the server.",
        "description": "Error message when the server rejected the PassLink connect action was not confirmed by the server"
    },
    "PasslinkConnectNetworkError"        : {
        "message"    : "The connection to the server failed. Please check your network.",
        "description": "Error message in PassLink when the connection to the Nextcloud server failed with a networking error"
    },
    "PasslinkConnectSuccess"             : {
        "message"    : "Connection successful",
        "description": "Message in the PassLink window when the PassLink Connect action was successful"
    },
    "PasslinkConnectFailed"              : {
        "message"    : "Connection failed",
        "description": "Message in the PassLink window when the PassLink Connect action failed"
    },
    "PasslinkConnectSettings"            : {
        "message"    : "Open settings",
        "description": "Text of the button to open the extension settings in the PassLink result window"
    },
    "PasslinkConnectClose"               : {
        "message"    : "Close the window",
        "description": "Text of the button  in the PassLink result window to close the window"
    },
    "PasslinkScanInstructions"           : {
        "message"    : "Point your camera to the QR code and wait for it to be recognized and scanned.",
        "description": "Instructions shown above the PassLink QR scanner telling the use to point his camera at the qr code he wants to scan"
    },
    "PasslinkScanScanning"               : {
        "message"    : "Looking for a QR Code",
        "description": "Message used by the PassLink QR scanner while the camera feed is scanned for a qr code"
    },
    "PasslinkScanProcessingLink"         : {
        "message"    : "Processing QR Code",
        "description": "Message used by the PassLink QR scanner when a valid code was found and is now being analyzed"
    },
    "PasslinkScanInvalidQrCode"          : {
        "message"    : "This QR Code is not supported",
        "description": "Message used by the PassLink QR scanner when the user scans a code that does not contain a valid and supported uri of Passlink"
    },
    "QrNotAllowedError"                  : {
        "message"    : "Access to the camera was not granted",
        "description": "Message used by the PassLink QR scanner when the user did not allow camera access"
    },
    "QrNotFoundError"                    : {
        "message"    : "No cameras were found on this device",
        "description": "Message used by the PassLink QR scanner when the device has no cameras"
    },
    "QrNotSupportedError"                : {
        "message"    : "Insecure Context",
        "description": "Message used by the PassLink QR scanner when the page was opened in an insecure context (http://). This should never happen"
    },
    "QrNotReadableError"                 : {
        "message"    : "Camera not accessible. Maybe it is already in use?",
        "description": "Message used by the PassLink QR scanner when the camera stream can not be read"
    },
    "QrOverconstrainedError"             : {
        "message"    : "Camera not suitable to be used",
        "description": "Message used by the PassLink QR scanner when the camera is faulty"
    },
    "QrStreamApiNotSupportedError"       : {
        "message"    : "The Stream API is not supported by this browser",
        "description": "Message used by the PassLink QR scanner when the browser does not support the required streaming api. This should never happen"
    },
    "FirstRunConnectTitle"               : {
        "message"    : "Connect to Nextcloud",
        "description": "Title of the first run wizard step that helps the user to connect to their Nextcloud"
    },
    "FirstRunConnectText"                : {
        "message"    : "Open the passwords app, click on \"More\", open \"Apps & Extensions\" and open the PassLink Connect dialog.",
        "description": "Text in the first run wizard which explains users that they have to open the Passwords app in Nextcloud, then click on more in the app navigation, then apps & extension and then click the passlink connect button for their app"
    },
    "FirstRunConnectLink"                : {
        "message"    : "If the PassLink dialog is open on the same device, use the connect via link option",
        "description": "Text in the first run wizard. Firefox users can use the connect via link option in the PassLink Connect dialog in the Nextcloud app when they want to set up the Extension in the same Browser."
    },
    "FirstRunConnectScan"                : {
        "message"    : "If this is a different device, scan the PassLink Connect Code with the button below",
        "description": "Text in the first run wizard for Firefox users. They can scan the QR-Code in the Passlink Connect dialog in the Nextcloud App with the extension and coonnect the extension that way"
    },
    "FirstRunConnectManual"              : {
        "message"    : "You can also create the account manually in the extension settings",
        "description": "Text in the first run wizard to tell users they can also set up the connection manually in the extension settings."
    },
    "FirstRunConnectScanButton"          : {
        "message"    : "Scan PassLink Code",
        "description": "Text of the button to scan a PassLink QR Code"
    },
    "OpenSettings"                       : {
        "message"    : "Open Extension Settings",
        "description": "Label of the button to open the extension settings in the tools tab of the popup"
    },
    "ToolsTabGeneratePassword"           : {
        "message"    : "Generate Password",
        "description": "Label of the generate password section in the tools tab of the popup"
    },
    "ToolsTabDebugTools"                 : {
        "message"    : "Debug Tools",
        "description": "Label of the debugging tools section in the tools tab of the popup"
    },
    "GeneratedPasswordPlaceholder"       : {
        "message"    : "Generated Password",
        "description": "Placeholder of the field for the generated password in the tools tab of the popup"
    },
    "GeneratedPasswordTitle"             : {
        "message"     : "Password words: $WORDS$",
        "description" : "Title of the input field for the generated password in the tools tab of the popup. It shows the words used to generate the password",
        "placeholders": {
            "words": {
                "content"    : "$1",
                "description": "The words used for the password",
                "example"    : "First Second Third"
            }
        }
    },
    "LabelGenerateAddNumbers"            : {
        "message"    : "Numbers",
        "description": "Label of the option to include numbers in the password generator in the tools tab"
    },
    "LabelGenerateAddSpecial"            : {
        "message"    : "Symbols",
        "description": "Label of the option to include special characters in the password generator in the tools tab"
    },
    "LabelGenerateStrength"              : {
        "message"    : "Strength",
        "description": "Label of the option to set the strength in the password generator in the tools tab"
    },
    "LabelGeneratorStrengthLow"          : {
        "message"    : "Low",
        "description": "Label of the low (0) strength option for the password generator in the tools tab"
    },
    "LabelGeneratorStrengthStandard"     : {
        "message"    : "Standard",
        "description": "Label of the default (1) strength option for the password generator in the tools tab"
    },
    "LabelGeneratorStrengthMedium"       : {
        "message"    : "Medium",
        "description": "Label of the medium (2) strength option for the password generator in the tools tab"
    },
    "LabelGeneratorStrengthHigh"         : {
        "message"    : "High",
        "description": "Label of the high (3) strength option for the password generator in the tools tab"
    },
    "LabelGeneratorStrengthUltra"        : {
        "message"    : "Ultra",
        "description": "Label of the very high (4) strength option for the password generator in the tools tab"
    },
    "PasswordGenerateError"              : {
        "message"     : "Failed to generate a password: $ERROR$",
        "description" : "Notification shown when the generation of a password fails",
        "placeholders": {
            "error": {
                "content": "$1",
                "example": "Unexpected data type"
            }
        }
    },
    "DebugHighlightLoginForms"           : {
        "message"    : "Highlight Login Form Fields",
        "description": "Label of the button in the popup which triggers the option to highlight all login form fields in the current tab"
    },
    "PasteBadPasswordWarning"            : {
        "message"    : "This password is compromised and should be changed immediately",
        "description": "Notification shown after the user pasted a password with the security status breached/compromised"
    },
    "DebugInternalStats"                 : {
        "message"    : "Internal Status",
        "description": "Headline above the internal status section in the extension settings in the debug tab"
    },
    "DebugInfoExtensionVersion"          : {
        "message"    : "Extension Version",
        "description": "Description of the extension version in the internal status section in the debug tab in the extension settings"
    },
    "DebugInfoExtensionBuild"            : {
        "message"    : "Target Platform",
        "description": "Description of the extension build target (firefox or chrome) in the internal status section in the debug tab in the extension settings"
    },
    "DebugInfoExtensionPlatform"         : {
        "message"    : "User Agent",
        "description": "Description of the browser user agent in the internal status section in the debug tab in the extension settings"
    },
    "DebugInfoExtensionEnvironment"      : {
        "message"    : "Extension Mode",
        "description": "Description of the extension mode (production or development) in the internal status section in the debug tab in the extension settings"
    },
    "DebugInfoHiddenFolderId"            : {
        "message"    : "Hidden Passwords Folder ID",
        "description": "Description of the id of the folder used to store hidden/private passwords in the internal status section in the debug tab in the extension settings"
    },
    "DebugSettings"                      : {
        "message"    : "Debugging Settings",
        "description": "Headline above the debugging settings section in the extension settings in the debug tab"
    },
    "DebugLanguageTagsEnabled"           : {
        "message"    : "Show language keys",
        "description": "Label of the setting to disable translation of language keys in the debug settings section in the debug tab in the extension settings"
    },
    "DebugBuild"                         : {
        "message"    : "Build Information",
        "description": "Headline above the section for the build instructions in the debug tab in the extension settings"
    },
    "DebugSourceAndBuild"                : {
        "message"    : "Build instructions and source code download",
        "description": "Label of the link to open the page with build instructions and links to the source code in the debug tab in the extension settings"
    },
    "DebugErrorLog"                      : {
        "message"    : "Error Log",
        "description": "Headline above the error logs section in the extension settings in the debug tab"
    },
    "DebugErrorNoMessage"                : {
        "message"    : "No error message",
        "description": "Used as error message for errors with no error message (but have a timestamp) in the error logs section in the extension settings in the debug tab"
    },
    "DebugErrorNoDetails"                : {
        "message"    : "No error details",
        "description": "Used as error message for errors with no details at all in the error logs section in the extension settings in the debug tab"
    },
    "DebugErrorDataCopied"               : {
        "message"    : "Error details copied to clipboard",
        "description": "Success notification when you copy an error report to the clipboard in the error logs section in the extension settings in the debug tab"
    },
    "DebugNoErrors"                      : {
        "message"    : "No errors in log",
        "description": "Message shown when no error reports exist instead of the error logs in the error logs section in the extension settings in the debug tab"
    },
    "RecommendationSettings"             : {
        "message"    : "Recommending credentials",
        "description": "Label of the section password recommendations in the extension settings."
    },
    "SettingsSearchRecommendationOption" : {
        "message"    : "Search credentials with",
        "description": "Label of the setting in the extension settings to define how password recommendations are searched."
    },
    "LabelSearchRecommendationDomain"    : {
        "message"    : "same domain",
        "description": "Find password recommendations by domain. So on page mail.example.com you will see all passwords for the domain and sumdomains of example.com."
    },
    "LabelSearchRecommendationHost"      : {
        "message"    : "same host",
        "description": "Find password recommendations by host. So on page mail.example.com you will see all passwords for the sumdomain mail e.g. (mail.example.com or mail.example.com:8443)."
    },
    "LabelSearchRecommendationHostPort"  : {
        "message"    : "same host & port",
        "description": "Find password recommendations for the specific server and port."
    },
    "LabelSearchRecommendationExact"     : {
        "message"    : "same exact url",
        "description": "Find only passwords where th url matches exact to the current browser url."
    },
    "SettingsSearchRecommendationMaxRows": {
        "message"    : "Maximum number of recommendations",
        "description": "Label of the setting in the extension settings to define the maximum number of results for the password recommendation."
    },
    "SearchRecommendationMaxRowsNumber"  : {
        "message"     : "$ROW$",
        "description" : "Number of results that should be displayed for password recommendations.",
        "placeholders": {
            "row": {
                "content": "$1",
                "example": "One of 1, 5, 10, 15 or 20"
            }
        }
    },
    "UiSettings"                         : {
        "message"    : "User Interface",
        "description": "Label of the user interface section in the extension settings."
    },
    "SettingsShowUsernameInList"         : {
        "message"    : "Show username next to title",
        "description": "Label of the setting in the extension settings to show the username next to the title in password lists."
    },
    "InputSliderOn"                      : {
        "message"    : "Currently on",
        "description": "Tooltip of any slider input element that is currently in the active/enabled state"
    },
    "InputSliderOff"                     : {
        "message"    : "Currently off",
        "description": "Tooltip of any slider input element that is currently in the inactive/disabled state"
    },
    "PasswordCustomFieldsTypeText"       : {
        "message"    : "Text",
        "description": "Label of the password custom setting type 'text'."
    },
    "PasswordCustomFieldsTypeSecret"     : {
        "message"    : "Secret",
        "description": "Label of the password custom setting type 'secret'."
    },
    "PasswordCustomFieldsTypeEmail"      : {
        "message"    : "Email",
        "description": "Label of the password custom setting type 'email'."
    },
    "PasswordCustomFieldsTypeUrl"        : {
        "message"    : "Link",
        "description": "Label of the password custom setting type 'url'."
    },
    "PasswordCustomFieldsTypeFormField"  : {
        "message"    : "Form field",
        "description": "Label of the password custom setting form field to insert custom values to a web page."
    },
    "PasswordEditValidationInvalidValue" : {
        "message"    : "Invalid value",
        "description": "The validation error message in the password edit form if the value is invalid"
    },
    "PasswordEditValidationMaxLength"    : {
        "message"     : "Only $CHARACTERS$ characters allowed",
        "description" : "The validation error message in the password edit form if the value is longer than allowed",
        "placeholders": {
            "characters": {
                "content": "$1",
                "example": "One of 1, 48, 320, 370, 2048 or 8192"
            }
        }
    },
    "PasswordEditValidationRequired"     : {
        "message"    : "This field is required",
        "description": "The validation error message in the password edit form if a required field is empty"
    },
    "MiningPasswordDiscarded"            : {
        "message"    : "Password discarded",
        "description": "The toast notification after the user has successfully discarded a mined password"
    },
    "MiningPasswordCreated"              : {
        "message"    : "Password saved",
        "description": "The toast notification after the password was successfully saved"
    },
    "MiningPasswordUpdated"              : {
        "message"    : "Password updated",
        "description": "The toast notification after the password was successfully saved"
    }
}