aboutsummaryrefslogtreecommitdiffhomepage
path: root/locale/translations.go
blob: c7fcbd9ffabe222328ce6bedcc1417eb3b793a8c (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
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
// Code generated by go generate; DO NOT EDIT.

package locale // import "miniflux.app/locale"

var translations = map[string]string{
	"de_DE": `{
    "confirm.question": "Sind Sie sicher?",
    "confirm.yes": "ja",
    "confirm.no": "nein",
    "confirm.loading": "In Arbeit...",
    "action.subscribe": "Abonnieren",
    "action.save": "Speichern",
    "action.or": "oder",
    "action.cancel": "abbrechen",
    "action.remove": "Entfernen",
    "action.remove_feed": "Dieses Abonnement entfernen",
    "action.update": "Aktualisieren",
    "action.edit": "Bearbeiten",
    "action.download": "Herunterladen",
    "action.import": "Importieren",
    "action.login": "Anmelden",
    "tooltip.keyboard_shortcuts": "Tastenkürzel: %s",
    "tooltip.logged_user": "Angemeldet als %s",
    "menu.unread": "Ungelesen",
    "menu.starred": "Lesezeichen",
    "menu.history": "Verlauf",
    "menu.feeds": "Abonnements",
    "menu.categories": "Kategorien",
    "menu.settings": "Einstellungen",
    "menu.logout": "Abmelden",
    "menu.preferences": "Einstellungen",
    "menu.integrations": "Dienste",
    "menu.sessions": "Sitzungen",
    "menu.users": "Benutzer",
    "menu.about": "Über",
    "menu.export": "Exportieren",
    "menu.import": "Importieren",
    "menu.create_category": "Kategorie anlegen",
    "menu.mark_page_as_read": "Diese Seite als gelesen markieren",
    "menu.mark_all_as_read": "Alle als gelesen markieren",
    "menu.mark_all_as_read_wip": "In Arbeit...",
    "menu.refresh_feed": "Aktualisieren",
    "menu.refresh_all_feeds": "Alle Abonnements im Hintergrund aktualisieren",
    "menu.edit_feed": "Bearbeiten",
    "menu.edit_category": "Bearbeiten",
    "menu.add_feed": "Abonnement hinzufügen",
    "menu.add_user": "Benutzer anlegen",
    "menu.flush_history": "Verlauf leeren",
    "search.label": "Suche",
    "search.placeholder": "Suche...",
    "pagination.next": "Nächste",
    "pagination.previous": "Vorherige",
    "entry.status.unread": "Ungelesen",
    "entry.status.read": "Gelesen",
    "entry.status.title": "Status des Artikels ändern",
    "entry.bookmark.toggle.on": "Lesezeichen hinzufügen",
    "entry.bookmark.toggle.off": "Lesezeichen entfernen",
    "entry.state.saving": "Speichern...",
    "entry.state.loading": "Lade...",
    "entry.save.label": "Speichern",
    "entry.save.title": "Diesen Artikel speichern",
    "entry.save.completed": "Erledigt!",
    "entry.scraper.label": "Inhalt herunterladen",
    "entry.scraper.title": "Inhalt herunterladen",
    "entry.scraper.completed": "Erledigt!",
    "entry.original.label": "Original-Artikel",
    "entry.comments.label": "Kommentare",
    "entry.comments.title": "Kommentare anzeigen",
    "page.unread.title": "Ungelesen",
    "page.starred.title": "Lesezeichen",
    "page.categories.title": "Kategorien",
    "page.categories.no_feed": "Kein Abonnement.",
    "page.categories.feed_count": [
        "Es gibt %d Abonnement.",
        "Es gibt %d Abonnements."
    ],
    "page.new_category.title": "Neue Kategorie",
    "page.new_user.title": "Neuer Benutzer",
    "page.edit_category.title": "Kategorie bearbeiten: %s",
    "page.edit_user.title": "Benutzer bearbeiten: %s",
    "page.feeds.title": "Abonnements",
    "page.feeds.last_check": "Letzte Aktualisierung:",
    "page.feeds.error_count": [
        "%d Fehler",
        "%d Fehler"
    ],
    "page.history.title": "Verlauf",
    "page.import.title": "Importieren",
    "page.search.title": "Suchergebnisse",
    "page.about.title": "Über",
    "page.about.credits": "Urheberrechte",
    "page.about.version": "Version:",
    "page.about.build_date": "Datum der Kompilierung:",
    "page.about.author": "Autor:",
    "page.about.license": "Lizenz:",
    "page.add_feed.title": "Neues Abonnement",
    "page.add_feed.no_category": "Es ist keine Kategorie vorhanden. Wenigstens eine Kategorie muss angelegt sein.",
    "page.add_feed.label.url": "URL",
    "page.add_feed.submit": "Abonnement suchen",
    "page.add_feed.legend.advanced_options": "Erweiterte Optionen",
    "page.add_feed.choose_feed": "Abonnement auswählen",
    "page.edit_feed.title": "Abonnement bearbeiten: %s",
    "page.edit_feed.last_check": "Letzte Aktualisierung:",
    "page.edit_feed.last_modified_header": "Zuletzt geändert:",
    "page.edit_feed.etag_header": "ETag-Kopfzeile:",
    "page.edit_feed.no_header": "Nicht verfügbar",
    "page.edit_feed.last_parsing_error": "Letzter Analysefehler",
    "page.keyboard_shortcuts.title": "Tastenkürzel",
    "page.keyboard_shortcuts.subtitle.sections": "Navigation zwischen den Menüpunkten",
    "page.keyboard_shortcuts.subtitle.items": "Navigation zwischen den Artikeln",
    "page.keyboard_shortcuts.subtitle.pages": "Navigation zwischen den Seiten",
    "page.keyboard_shortcuts.subtitle.actions": "Aktionen",
    "page.keyboard_shortcuts.go_to_unread": "Zu den ungelesenen Artikeln gehen",
    "page.keyboard_shortcuts.go_to_starred": "Zu den Lesezeichen gehen",
    "page.keyboard_shortcuts.go_to_history": "Zum Verlauf gehen",
    "page.keyboard_shortcuts.go_to_feeds": "Zu den Abonnements gehen",
    "page.keyboard_shortcuts.go_to_categories": "Zu den Kategorien gehen",
    "page.keyboard_shortcuts.go_to_settings": "Zu den Einstellungen gehen",
    "page.keyboard_shortcuts.show_keyboard_shortcuts": "Liste der Tastenkürzel anzeigen",
    "page.keyboard_shortcuts.go_to_previous_item": "Zum vorherigen Artikel gehen",
    "page.keyboard_shortcuts.go_to_next_item": "Zum nächsten Artikel gehen",
    "page.keyboard_shortcuts.go_to_feed": "Zum Abonnement gehen",
    "page.keyboard_shortcuts.go_to_previous_page": "Zur vorherigen Seite gehen",
    "page.keyboard_shortcuts.go_to_next_page": "Zur nächsten Seite gehen",
    "page.keyboard_shortcuts.open_item": "Gewählten Artikel öffnen",
    "page.keyboard_shortcuts.open_original": "Original-Artikel öffnen",
    "page.keyboard_shortcuts.toggle_read_status": "Gewählten Artikel als gelesen/ungelesen markieren",
    "page.keyboard_shortcuts.mark_page_as_read": "Aktuelle Seite als gelesen markieren",
    "page.keyboard_shortcuts.download_content": "Vollständigen Inhalt herunterladen",
    "page.keyboard_shortcuts.toggle_bookmark_status": "Lesezeichen hinzufügen/entfernen",
    "page.keyboard_shortcuts.save_article": "Artikel speichern",
    "page.keyboard_shortcuts.remove_feed": "Dieses Abonnement entfernen",
    "page.keyboard_shortcuts.go_to_search": "Fokus auf das Suchformular setzen",
    "page.keyboard_shortcuts.close_modal": "Liste der Tastenkürzel schließen",
    "page.users.title": "Benutzer",
    "page.users.username": "Benutzername",
    "page.users.never_logged": "Niemals",
    "page.users.admin.yes": "Ja",
    "page.users.admin.no": "Nein",
    "page.users.actions": "Aktionen",
    "page.users.last_login": "Letzte Anmeldung",
    "page.users.is_admin": "Administrator",
    "page.settings.title": "Einstellungen",
    "page.settings.link_google_account": "Google Konto verknüpfen",
    "page.settings.unlink_google_account": "Diese Kategorie existiert nicht für diesen Benutzer",
    "page.login.title": "Anmeldung",
    "page.login.google_signin": "Anmeldung mit Google",
    "page.integrations.title": "Dienste",
    "page.integration.miniflux_api": "Miniflux API",
    "page.integration.miniflux_api_endpoint": "API Endpunkt",
    "page.integration.miniflux_api_username": "Benutzername",
    "page.integration.miniflux_api_password": "Passwort",
    "page.integration.miniflux_api_password_value": "Ihr Konto Passwort",
    "page.integration.bookmarklet": "Bookmarklet",
    "page.integration.bookmarklet.name": "Mit Miniflux abonnieren",
    "page.integration.bookmarklet.instructions": "Ziehen Sie diesen Link in Ihre Lesezeichen.",
    "page.integration.bookmarklet.help": "Dieser spezielle Link ermöglicht es, eine Webseite direkt über ein Lesezeichen im Browser zu abonnieren.",
    "page.sessions.title": "Sitzungen",
    "page.sessions.table.date": "Datum",
    "page.sessions.table.ip": "IP Addresse",
    "page.sessions.table.user_agent": "Benutzeragent",
    "page.sessions.table.actions": "Aktionen",
    "page.sessions.table.current_session": "Aktuelle Sitzung",
    "alert.no_bookmark": "Es existiert derzeit kein Lesezeichen.",
    "alert.no_category": "Es ist keine Kategorie vorhanden.",
    "alert.no_category_entry": "Es befindet sich kein Artikel in dieser Kategorie.",
    "alert.no_feed_entry": "Es existiert kein Artikel für dieses Abonnement.",
    "alert.no_feed": "Es sind keine Abonnements vorhanden.",
    "alert.no_history": "Es existiert zur Zeit kein Verlauf.",
    "alert.feed_error": "Es gibt ein Problem mit diesem Abonnement",
    "alert.no_search_result": "Es gibt kein Ergebnis für diese Suche.",
    "alert.no_unread_entry": "Es existiert kein ungelesener Artikel.",
    "alert.no_user": "Sie sind der einzige Benutzer.",
    "alert.account_unlinked": "Ihr externer Account ist jetzt getrennt!",
    "alert.account_linked": "Ihr externes Konto wurde verknüpft!",
    "alert.pocket_linked": "Ihr Pocket Konto ist jetzt verknüpft!",
    "alert.prefs_saved": "Einstellungen gespeichert!",
    "error.unlink_account_without_password": "Sie müssen ein Passwort festlegen, sonst können Sie sich nicht erneut anmelden.",
    "error.duplicate_linked_account": "Es ist bereits jemand mit diesem Anbieter assoziiert!",
    "error.duplicate_fever_username": "Es existiert bereits jemand mit diesem Fever Benutzernamen!",
    "error.pocket_request_token": "Anfrage-Token konnte nicht von Pocket abgerufen werden!",
    "error.pocket_access_token": "Zugriffstoken konnte nicht von Pocket abgerufen werden!",
    "error.category_already_exists": "Diese Kategorie existiert bereits.",
    "error.unable_to_create_category": "Diese Kategorie konnte nicht angelegt werden.",
    "error.unable_to_update_category": "Diese Kategorie konnte nicht aktualisiert werden.",
    "error.user_already_exists": "Dieser Benutzer existiert bereits.",
    "error.unable_to_create_user": "Dieser Benutzer kann nicht erstellt werden.",
    "error.unable_to_update_user": "Dieser Benutzer konnte nicht aktualisiert werden.",
    "error.unable_to_update_feed": "Dieser Feed konnte nicht aktualisiert werden.",
    "error.subscription_not_found": "Es wurden keine Abonnements gefunden.",
    "error.empty_file": "Diese Datei ist leer.",
    "error.bad_credentials": "Benutzername oder Passwort ungültig.",
    "error.fields_mandatory": "Alle Felder sind obligatorisch.",
    "error.title_required": "Der Titel ist obligatorisch.",
    "error.different_passwords": "Passwörter stimmen nicht überein.",
    "error.password_min_length": "Wenigstens 6 Zeichen müssen genutzt werden.",
    "error.settings_mandatory_fields": "Die Felder für Benutzername, Thema, Sprache und Zeitzone sind obligatorisch.",
    "error.feed_mandatory_fields": "Die URL und die Kategorie sind obligatorisch.",
    "error.user_mandatory_fields": "Der Benutzername ist obligatorisch.",
    "form.feed.label.title": "Titel",
    "form.feed.label.site_url": "Webseite-URL",
    "form.feed.label.feed_url": "Abonnement-URL",
    "form.feed.label.category": "Kategorie",
    "form.feed.label.crawler": "Inhalt herunterladen",
    "form.feed.label.feed_username": "Benutzername des Abonnements",
    "form.feed.label.feed_password": "Passwort des Abonnements",
    "form.feed.label.user_agent": "Standardbenutzeragenten überschreiben",
    "form.feed.label.scraper_rules": "Extraktionsregeln",
    "form.feed.label.rewrite_rules": "Umschreiberegeln",
    "form.category.label.title": "Titel",
    "form.user.label.username": "Benutzername",
    "form.user.label.password": "Passwort",
    "form.user.label.confirmation": "Passwort Bestätigung",
    "form.user.label.admin": "Administrator",
    "form.prefs.label.language": "Sprache",
    "form.prefs.label.timezone": "Zeitzone",
    "form.prefs.label.theme": "Thema",
    "form.prefs.label.entry_sorting": "Sortierung der Artikel",
    "form.prefs.select.older_first": "Älteste Artikel zuerst",
    "form.prefs.select.recent_first": "Neueste Artikel zuerst",
    "form.import.label.file": "OPML Datei",
    "form.integration.fever_activate": "Fever API aktivieren",
    "form.integration.fever_username": "Fever Benutzername",
    "form.integration.fever_password": "Fever Passwort",
    "form.integration.fever_endpoint": "Fever API Endpunkt:",
    "form.integration.pinboard_activate": "Artikel in Pinboard speichern",
    "form.integration.pinboard_token": "Pinboard API Token",
    "form.integration.pinboard_tags": "Pinboard Tags",
    "form.integration.pinboard_bookmark": "Lesezeichen als ungelesen markieren",
    "form.integration.instapaper_activate": "Artikel in Instapaper speichern",
    "form.integration.instapaper_username": "Instapaper Benutzername",
    "form.integration.instapaper_password": "Instapaper Passwort",
    "form.integration.pocket_activate": "Artikel in Pocket speichern",
    "form.integration.pocket_consumer_key": "Pocket Consumer Key",
    "form.integration.pocket_access_token": "Pocket Access Token",
    "form.integration.pocket_connect_link": "Verbinden Sie Ihr Pocket Konto",
    "form.integration.wallabag_activate": "Artikel in Wallabag speichern",
    "form.integration.wallabag_endpoint": "Wallabag URL",
    "form.integration.wallabag_client_id": "Wallabag Client-ID",
    "form.integration.wallabag_client_secret": "Wallabag Client-Secret",
    "form.integration.wallabag_username": "Wallabag Benutzername",
    "form.integration.wallabag_password": "Wallabag Passwort",
    "form.integration.nunux_keeper_activate": "Artikel in Nunux Keeper speichern",
    "form.integration.nunux_keeper_endpoint": "Nunux Keeper API-Endpunkt",
    "form.integration.nunux_keeper_api_key": "Nunux Keeper API-Schlüssel",
    "form.submit.loading": "Lade...",
    "form.submit.saving": "Speichern...",
    "time_elapsed.not_yet": "noch nicht",
    "time_elapsed.yesterday": "gestern",
    "time_elapsed.now": "gerade",
    "time_elapsed.minutes": [
        "vor %d Minute",
        "vor %d Minuten"
    ],
    "time_elapsed.hours": [
        "vor %d Stunde",
        "vor %d Stunden"
    ],
    "time_elapsed.days": [
        "vor %d Tag",
        "vor %d Tagen"
    ],
    "time_elapsed.weeks": [
        "vor %d Woche",
        "vor %d Wochen"
    ],
    "time_elapsed.months": [
        "vor %d Monat",
        "vor %d Monaten"
    ],
    "time_elapsed.years": [
        "vor %d Jahr",
        "vor %d Jahren"
    ],
    "This feed already exists (%s)": "Diese Abonnement existiert bereits (%s)",
    "Unable to fetch feed (Status Code = %d)": "Abonnement konnte nicht abgerufen werden (code=%d)",
    "Unable to open this link: %v": "Dieser Link konnte nicht geöffnet werden: %v",
    "Unable to analyze this page: %v": "Diese Seite konnte nicht analysiert werden: %v",
    "Unable to execute request: %v": "Diese Anfrage konnte nicht ausgeführt werden: %v",
    "Unable to parse OPML file: %q": "OPML Datei konnte nicht gelesen werden: %q",
    "Unable to parse RSS feed: %q": "RSS Abonnement konnte nicht gelesen werden: %q",
    "Unable to parse Atom feed: %q": "Atom Abonnement konnte nicht gelesen werden: %q",
    "Unable to parse JSON feed: %q": "JSON Abonnement konnte nicht gelesen werden: %q",
    "Unable to parse RDF feed: %q": "RDF Abonnement konnte nicht gelesen werden: %q",
    "Unable to normalize encoding: %q": "Zeichenkodierung konnte nicht normalisiert werden: %q",
    "This feed is empty": "Dieses Abonnement ist leer",
    "This web page is empty": "Diese Webseite ist leer",
    "Invalid SSL certificate (original error: %q)": "Ungültiges SSL-Zertifikat (ursprünglicher Fehler: %q)",
    "This website is temporarily unreachable (original error: %q)": "Diese Webseite ist vorübergehend nicht erreichbar (ursprünglicher Fehler: %q)",
    "This website is permanently unreachable (original error: %q)": "Diese Webseite ist dauerhaft nicht erreichbar (ursprünglicher Fehler: %q)",
    "Website unreachable, the request timed out after %d seconds": "Webseite nicht erreichbar, die Anfrage endete nach %d Sekunden",
    "You are not authorized to access this resource (invalid username/password)": "Sie sind nicht berechtigt, auf diese Ressource zuzugreifen (Benutzername/Passwort ungültig)",
    "Unable to fetch this resource (Status Code = %d)": "Ressource konnte nicht abgerufen werden (code=%d)",
    "Resource not found (404), this feed doesn't exists anymore, check the feed URL": "Ressource nicht gefunden (404), dieses Abonnement existiert nicht mehr, überprüfen Sie die Abonnement-URL"
}
`,
	"en_US": `{
    "confirm.question": "Are you sure?",
    "confirm.yes": "yes",
    "confirm.no": "no",
    "confirm.loading": "In progress...",
    "action.subscribe": "Subscribe",
    "action.save": "Save",
    "action.or": "or",
    "action.cancel": "cancel",
    "action.remove": "Remove",
    "action.remove_feed": "Remove this feed",
    "action.update": "Update",
    "action.edit": "Edit",
    "action.download": "Download",
    "action.import": "Import",
    "action.login": "Login",
    "tooltip.keyboard_shortcuts": "Keyboard Shortcut: %s",
    "tooltip.logged_user": "Logged as %s",
    "menu.unread": "Unread",
    "menu.starred": "Starred",
    "menu.history": "History",
    "menu.feeds": "Feeds",
    "menu.categories": "Categories",
    "menu.settings": "Settings",
    "menu.logout": "Logout",
    "menu.preferences": "Preferences",
    "menu.integrations": "Integrations",
    "menu.sessions": "Sessions",
    "menu.users": "Users",
    "menu.about": "About",
    "menu.export": "Export",
    "menu.import": "Import",
    "menu.create_category": "Create a category",
    "menu.mark_page_as_read": "Mark this page as read",
    "menu.mark_all_as_read": "Mark all as read",
    "menu.mark_all_as_read_wip": "Operation in progress...",
    "menu.refresh_feed": "Refresh",
    "menu.refresh_all_feeds": "Refresh all feeds in the background",
    "menu.edit_feed": "Edit",
    "menu.edit_category": "Edit",
    "menu.add_feed": "Add subscription",
    "menu.add_user": "Add user",
    "menu.flush_history": "Flush history",
    "search.label": "Search",
    "search.placeholder": "Search...",
    "pagination.next": "Next",
    "pagination.previous": "Previous",
    "entry.status.unread": "Unread",
    "entry.status.read": "Read",
    "entry.status.title": "Change entry status",
    "entry.bookmark.toggle.on": "Star",
    "entry.bookmark.toggle.off": "Unstar",
    "entry.state.saving": "Saving...",
    "entry.state.loading": "Loading...",
    "entry.save.label": "Save",
    "entry.save.title": "Save this article",
    "entry.save.completed": "Done!",
    "entry.scraper.label": "Fetch original content",
    "entry.scraper.title": "Fetch original content",
    "entry.scraper.completed": "Done!",
    "entry.original.label": "Original",
    "entry.comments.label": "Comments",
    "entry.comments.title": "View Comments",
    "page.unread.title": "Unread",
    "page.starred.title": "Starred",
    "page.categories.title": "Categories",
    "page.categories.no_feed": "No feed.",
    "page.categories.feed_count": [
        "There is %d feed.",
        "There are %d feeds."
    ],
    "page.new_category.title": "New Category",
    "page.new_user.title": "New User",
    "page.edit_category.title": "Edit Category: %s",
    "page.edit_user.title": "Edit User: %s",
    "page.feeds.title": "Feeds",
    "page.feeds.last_check": "Last check:",
    "page.feeds.error_count": [
        "%d error",
        "%d errors"
    ],
    "page.history.title": "History",
    "page.import.title": "Import",
    "page.search.title": "Search Results",
    "page.about.title": "About",
    "page.about.credits": "Credits",
    "page.about.version": "Version:",
    "page.about.build_date": "Build Date:",
    "page.about.author": "Author:",
    "page.about.license": "License:",
    "page.add_feed.title": "New Subscription",
    "page.add_feed.no_category": "There is no category. You must have at least one category.",
    "page.add_feed.label.url": "URL",
    "page.add_feed.submit": "Find a subscription",
    "page.add_feed.legend.advanced_options": "Advanced Options",
    "page.add_feed.choose_feed": "Choose a Subscription",
    "page.edit_feed.title": "Edit Feed: %s",
    "page.edit_feed.last_check": "Last check:",
    "page.edit_feed.last_modified_header": "LastModified header:",
    "page.edit_feed.etag_header": "ETag header:",
    "page.edit_feed.no_header": "None",
    "page.edit_feed.last_parsing_error": "Last Parsing Error",
    "page.keyboard_shortcuts.title": "Keyboard Shortcuts",
    "page.keyboard_shortcuts.subtitle.sections": "Sections Navigation",
    "page.keyboard_shortcuts.subtitle.items": "Items Navigation",
    "page.keyboard_shortcuts.subtitle.pages": "Pages Navigation",
    "page.keyboard_shortcuts.subtitle.actions": "Actions",
    "page.keyboard_shortcuts.go_to_unread": "Go to unread",
    "page.keyboard_shortcuts.go_to_starred": "Go to bookmarks",
    "page.keyboard_shortcuts.go_to_history": "Go to history",
    "page.keyboard_shortcuts.go_to_feeds": "Go to feeds",
    "page.keyboard_shortcuts.go_to_categories": "Go to categories",
    "page.keyboard_shortcuts.go_to_settings": "Go to settings",
    "page.keyboard_shortcuts.show_keyboard_shortcuts": "Show keyboard shortcuts",
    "page.keyboard_shortcuts.go_to_previous_item": "Go to previous item",
    "page.keyboard_shortcuts.go_to_next_item": "Go to next item",
    "page.keyboard_shortcuts.go_to_feed": "Go to feed",
    "page.keyboard_shortcuts.go_to_previous_page": "Go to previous page",
    "page.keyboard_shortcuts.go_to_next_page": "Go to next page",
    "page.keyboard_shortcuts.open_item": "Open selected item",
    "page.keyboard_shortcuts.open_original": "Open original link",
    "page.keyboard_shortcuts.toggle_read_status": "Toggle read/unread",
    "page.keyboard_shortcuts.mark_page_as_read": "Mark current page as read",
    "page.keyboard_shortcuts.download_content": "Download original content",
    "page.keyboard_shortcuts.toggle_bookmark_status": "Toggle bookmark",
    "page.keyboard_shortcuts.save_article": "Save article",
    "page.keyboard_shortcuts.remove_feed": "Remove this feed",
    "page.keyboard_shortcuts.go_to_search": "Set focus on search form",
    "page.keyboard_shortcuts.close_modal": "Close modal dialog",
    "page.users.title": "Users",
    "page.users.username": "Username",
    "page.users.never_logged": "Never",
    "page.users.admin.yes": "Yes",
    "page.users.admin.no": "No",
    "page.users.actions": "Actions",
    "page.users.last_login": "Last Login",
    "page.users.is_admin": "Administrator",
    "page.settings.title": "Settings",
    "page.settings.link_google_account": "Link my Google account",
    "page.settings.unlink_google_account": "Unlink my Google account",
    "page.login.title": "Sign In",
    "page.login.google_signin": "Sign in with Google",
    "page.integrations.title": "Integrations",
    "page.integration.miniflux_api": "Miniflux API",
    "page.integration.miniflux_api_endpoint": "API Endpoint",
    "page.integration.miniflux_api_username": "Username",
    "page.integration.miniflux_api_password": "Password",
    "page.integration.miniflux_api_password_value": "Your account password",
    "page.integration.bookmarklet": "Bookmarklet",
    "page.integration.bookmarklet.name": "Add to Miniflux",
    "page.integration.bookmarklet.instructions": "Drag and drop this link to your bookmarks.",
    "page.integration.bookmarklet.help": "This special link allows you to subscribe to a website directly by using a bookmark in your web browser.",
    "page.sessions.title": "Sessions",
    "page.sessions.table.date": "Date",
    "page.sessions.table.ip": "IP Address",
    "page.sessions.table.user_agent": "User Agent",
    "page.sessions.table.actions": "Actions",
    "page.sessions.table.current_session": "Current Session",
    "alert.no_bookmark": "There is no bookmark at the moment.",
    "alert.no_category": "There is no category.",
    "alert.no_category_entry": "There is no article in this category.",
    "alert.no_feed_entry": "There is no article for this feed.",
    "alert.no_feed": "You don't have any subscription.",
    "alert.no_history": "There is no history at the moment.",
    "alert.feed_error": "There is a problem with this feed",
    "alert.no_search_result": "There is no result for this search.",
    "alert.no_unread_entry": "There is no unread article.",
    "alert.no_user": "You are the only user.",
    "alert.account_unlinked": "Your external account is now dissociated!",
    "alert.account_linked": "Your external account is now linked!",
    "alert.pocket_linked": "Your Pocket account is now linked!",
    "alert.prefs_saved": "Preferences saved!",
    "error.unlink_account_without_password": "You must define a password otherwise you won't be able to login again.",
    "error.duplicate_linked_account": "There is already someone associated with this provider!",
    "error.duplicate_fever_username": "There is already someone else with the same Fever username!",
    "error.pocket_request_token": "Unable to fetch request token from Pocket!",
    "error.pocket_access_token": "Unable to fetch access token from Pocket!",
    "error.category_already_exists": "This category already exists.",
    "error.unable_to_create_category": "Unable to create this category.",
    "error.unable_to_update_category": "Unable to update this category.",
    "error.user_already_exists": "This user already exists.",
    "error.unable_to_create_user": "Unable to create this user.",
    "error.unable_to_update_user": "Unable to update this user.",
    "error.unable_to_update_feed": "Unable to update this feed.",
    "error.subscription_not_found": "Unable to find any subscription.",
    "error.empty_file": "This file is empty.",
    "error.bad_credentials": "Invalid username or password.",
    "error.fields_mandatory": "All fields are mandatory.",
    "error.title_required": "The title is mandatory.",
    "error.different_passwords": "Passwords are not the same.",
    "error.password_min_length": "The password must have at least 6 characters.",
    "error.settings_mandatory_fields": "The username, theme, language and timezone fields are mandatory.",
    "error.feed_mandatory_fields": "The URL and the category are mandatory.",
    "error.user_mandatory_fields": "The username is mandatory.",
    "form.feed.label.title": "Title",
    "form.feed.label.site_url": "Site URL",
    "form.feed.label.feed_url": "Feed URL",
    "form.feed.label.category": "Category",
    "form.feed.label.crawler": "Fetch original content",
    "form.feed.label.feed_username": "Feed Username",
    "form.feed.label.feed_password": "Feed Password",
    "form.feed.label.user_agent": "Override Default User Agent",
    "form.feed.label.scraper_rules": "Scraper Rules",
    "form.feed.label.rewrite_rules": "Rewrite Rules",
    "form.category.label.title": "Title",
    "form.user.label.username": "Username",
    "form.user.label.password": "Password",
    "form.user.label.confirmation": "Password Confirmation",
    "form.user.label.admin": "Administrator",
    "form.prefs.label.language": "Language",
    "form.prefs.label.timezone": "Timezone",
    "form.prefs.label.theme": "Theme",
    "form.prefs.label.entry_sorting": "Entry Sorting",
    "form.prefs.select.older_first": "Older entries first",
    "form.prefs.select.recent_first": "Recent entries first",
    "form.import.label.file": "OPML file",
    "form.integration.fever_activate": "Activate Fever API",
    "form.integration.fever_username": "Fever Username",
    "form.integration.fever_password": "Fever Password",
    "form.integration.fever_endpoint": "Fever API endpoint:",
    "form.integration.pinboard_activate": "Save articles to Pinboard",
    "form.integration.pinboard_token": "Pinboard API Token",
    "form.integration.pinboard_tags": "Pinboard Tags",
    "form.integration.pinboard_bookmark": "Mark bookmark as unread",
    "form.integration.instapaper_activate": "Save articles to Instapaper",
    "form.integration.instapaper_username": "Instapaper Username",
    "form.integration.instapaper_password": "Instapaper Password",
    "form.integration.pocket_activate": "Save articles to Pocket",
    "form.integration.pocket_consumer_key": "Pocket Consumer Key",
    "form.integration.pocket_access_token": "Pocket Access Token",
    "form.integration.pocket_connect_link": "Connect your Pocket account",
    "form.integration.wallabag_activate": "Save articles to Wallabag",
    "form.integration.wallabag_endpoint": "Wallabag API Endpoint",
    "form.integration.wallabag_client_id": "Wallabag Client ID",
    "form.integration.wallabag_client_secret": "Wallabag Client Secret",
    "form.integration.wallabag_username": "Wallabag Username",
    "form.integration.wallabag_password": "Wallabag Password",
    "form.integration.nunux_keeper_activate": "Save articles to Nunux Keeper",
    "form.integration.nunux_keeper_endpoint": "Nunux Keeper API Endpoint",
    "form.integration.nunux_keeper_api_key": "Nunux Keeper API key",
    "form.submit.loading": "Loading...",
    "form.submit.saving": "Saving...",
    "time_elapsed.not_yet": "not yet",
    "time_elapsed.yesterday": "yesterday",
    "time_elapsed.now": "just now",
    "time_elapsed.minutes": [
        "%d minute ago",
        "%d minutes ago"
    ],
    "time_elapsed.hours": [
        "%d hour ago",
        "%d hours ago"
    ],
    "time_elapsed.days": [
        "%d day ago",
        "%d days ago"
    ],
    "time_elapsed.weeks": [
        "%d week ago",
        "%d weeks ago"
    ],
    "time_elapsed.months": [
        "%d month ago",
        "%d months ago"
    ],
    "time_elapsed.years": [
        "%d year ago",
        "%d years ago"
    ]
}
`,
	"fr_FR": `{
    "confirm.question": "Êtes-vous sûr ?",
    "confirm.yes": "oui",
    "confirm.no": "non",
    "confirm.loading": "En cours...",
    "action.subscribe": "S'abonner",
    "action.save": "Sauvegarder",
    "action.or": "ou",
    "action.cancel": "annuler",
    "action.remove": "Supprimer",
    "action.remove_feed": "Supprimer ce flux",
    "action.update": "Mettre à jour",
    "action.edit": "Modifier",
    "action.download": "Télécharger",
    "action.import": "Importer",
    "action.login": "Se connecter",
    "tooltip.keyboard_shortcuts": "Raccourci clavier : %s",
    "tooltip.logged_user": "Connecté en tant que %s",
    "menu.unread": "Non lus",
    "menu.starred": "Favoris",
    "menu.history": "Historique",
    "menu.feeds": "Abonnements",
    "menu.categories": "Catégories",
    "menu.settings": "Réglages",
    "menu.logout": "Se déconnecter",
    "menu.preferences": "Préférences",
    "menu.integrations": "Intégrations",
    "menu.sessions": "Sessions",
    "menu.users": "Utilisateurs",
    "menu.about": "A propos",
    "menu.export": "Export",
    "menu.import": "Import",
    "menu.create_category": "Créer une catégorie",
    "menu.mark_page_as_read": "Marquer cette page comme lu",
    "menu.mark_all_as_read": "Tout marquer comme lu",
    "menu.mark_all_as_read_wip": "Opération en cours...",
    "menu.refresh_feed": "Actualiser",
    "menu.refresh_all_feeds": "Actualiser les abonnements en arrière-plan",
    "menu.edit_feed": "Modifier",
    "menu.edit_category": "Modifier",
    "menu.add_feed": "Ajouter un abonnement",
    "menu.add_user": "Ajouter un utilisateur",
    "menu.flush_history": "Supprimer l'historique",
    "search.label": "Recherche",
    "search.placeholder": "Recherche...",
    "pagination.next": "Suivant",
    "pagination.previous": "Précédent",
    "entry.status.unread": "Non lu",
    "entry.status.read": "Lu",
    "entry.status.title": "Changer le statut de l'entrée",
    "entry.bookmark.toggle.on": "Favoris",
    "entry.bookmark.toggle.off": "Enlever favoris",
    "entry.state.saving": "Sauvegarde en cours...",
    "entry.state.loading": "Chargement...",
    "entry.save.label": "Sauvegarder",
    "entry.save.title": "Sauvegarder cet article",
    "entry.save.completed": "Terminé !",
    "entry.scraper.label": "Contenu original",
    "entry.scraper.title": "Récupérer le contenu original",
    "entry.scraper.completed": "Terminé !",
    "entry.original.label": "Original",
    "entry.comments.label": "Commentaires",
    "entry.comments.title": "Voir les commentaires",
    "page.unread.title": "Non lus",
    "page.starred.title": "Favoris",
    "page.categories.title": "Catégories",
    "page.categories.no_feed": "Aucun abonnement.",
    "page.categories.feed_count": [
        "Il y a %d abonnement.",
        "Il y a %d abonnements."
    ],
    "page.new_category.title": "Nouvelle catégorie",
    "page.new_user.title": "Nouvel Utilisateur",
    "page.edit_category.title": "Modification de la catégorie : %s",
    "page.edit_user.title": "Modification de l'utilisateur : %s",
    "page.feeds.title": "Abonnements",
    "page.feeds.last_check": "Dernière vérification :",
    "page.feeds.error_count": [
        "%d erreur",
        "%d erreurs"
    ],
    "page.history.title": "Historique",
    "page.import.title": "Importation",
    "page.search.title": "Résultats de la recherche",
    "page.about.title": "A propos",
    "page.about.credits": "Crédits",
    "page.about.version": "Version :",
    "page.about.build_date": "Date de la compilation :",
    "page.about.author": "Auteur :",
    "page.about.license": "Licence :",
    "page.add_feed.title": "Nouvel Abonnement",
    "page.add_feed.no_category": "Il n'y a aucune catégorie. Vous devez avoir au moins une catégorie.",
    "page.add_feed.label.url": "Lien",
    "page.add_feed.submit": "Trouver un abonnement",
    "page.add_feed.legend.advanced_options": "Options avancées",
    "page.add_feed.choose_feed": "Choisissez un abonnement",
    "page.edit_feed.title": "Modification de l'abonnement : %s",
    "page.edit_feed.last_check": "Dernière vérification :",
    "page.edit_feed.last_modified_header": "En-tête LastModified :",
    "page.edit_feed.etag_header": "En-tête ETag :",
    "page.edit_feed.no_header": "Aucune",
    "page.edit_feed.last_parsing_error": "Dernière erreur d'analyse",
    "page.keyboard_shortcuts.title": "Raccourcis clavier",
    "page.keyboard_shortcuts.subtitle.sections": "Naviguation entre les sections",
    "page.keyboard_shortcuts.subtitle.items": "Naviguation entre les éléments",
    "page.keyboard_shortcuts.subtitle.pages": "Naviguation entre les pages",
    "page.keyboard_shortcuts.subtitle.actions": "Actions",
    "page.keyboard_shortcuts.go_to_unread": "Aller aux éléments non lus",
    "page.keyboard_shortcuts.go_to_starred": "Voir les favoris",
    "page.keyboard_shortcuts.go_to_history": "Voir l'historique",
    "page.keyboard_shortcuts.go_to_feeds": "Voir les abonnements",
    "page.keyboard_shortcuts.go_to_categories": "Voir les catégories",
    "page.keyboard_shortcuts.go_to_settings": "Voir les réglages",
    "page.keyboard_shortcuts.show_keyboard_shortcuts": "Voir les raccourcis clavier",
    "page.keyboard_shortcuts.go_to_previous_item": "Élément précédent",
    "page.keyboard_shortcuts.go_to_next_item": "Élément suivant",
    "page.keyboard_shortcuts.go_to_feed": "Voir abonnement",
    "page.keyboard_shortcuts.go_to_previous_page": "Page précédente",
    "page.keyboard_shortcuts.go_to_next_page": "Page suivante",
    "page.keyboard_shortcuts.open_item": "Ouvrir élément sélectionné",
    "page.keyboard_shortcuts.open_original": "Ouvrir lien original",
    "page.keyboard_shortcuts.toggle_read_status": "Basculer entre lu/non lu",
    "page.keyboard_shortcuts.mark_page_as_read": "Marquer la page actuelle comme lu",
    "page.keyboard_shortcuts.download_content": "Télécharger le contenu original",
    "page.keyboard_shortcuts.toggle_bookmark_status": "Ajouter/Enlever favoris",
    "page.keyboard_shortcuts.save_article": "Sauvegarder l'article",
    "page.keyboard_shortcuts.remove_feed": "Supprimer ce flux",
    "page.keyboard_shortcuts.go_to_search": "Mettre le focus sur le champ de recherche",
    "page.keyboard_shortcuts.close_modal": "Fermer la boite de dialogue",
    "page.users.title": "Utilisateurs",
    "page.users.username": "Nom d'utilisateur",
    "page.users.never_logged": "Jamais",
    "page.users.admin.yes": "Oui",
    "page.users.admin.no": "Non",
    "page.users.actions": "Actions",
    "page.users.last_login": "Dernière connexion",
    "page.users.is_admin": "Administrateur",
    "page.settings.title": "Réglages",
    "page.settings.link_google_account": "Associer mon compte Google",
    "page.settings.unlink_google_account": "Dissocier mon compte Google",
    "page.login.title": "Connexion",
    "page.login.google_signin": "Se connecter avec Google",
    "page.integrations.title": "Intégrations",
    "page.integration.miniflux_api": "API de Miniflux",
    "page.integration.miniflux_api_endpoint": "Point de terminaison de l'API",
    "page.integration.miniflux_api_username": "Nom d'utilisateur",
    "page.integration.miniflux_api_password": "Mot de passe",
    "page.integration.miniflux_api_password_value": "Le mot de passe de votre compte",
    "page.integration.bookmarklet": "Bookmarklet",
    "page.integration.bookmarklet.name": "Ajouter à Miniflux",
    "page.integration.bookmarklet.instructions": "Glisser-déposer ce lien dans vos favoris.",
    "page.integration.bookmarklet.help": "Ce lien spécial vous permet de vous abonner à un site web directement en utilisant un marque page dans votre navigateur web.",
    "page.sessions.title": "Sessions",
    "page.sessions.table.date": "Date",
    "page.sessions.table.ip": "Adresse IP",
    "page.sessions.table.user_agent": "Navigateur Web",
    "page.sessions.table.actions": "Actions",
    "page.sessions.table.current_session": "Session actuelle",
    "alert.no_bookmark": "Il n'y a aucun favoris pour le moment.",
    "alert.no_category": "Il n'y a aucune catégorie.",
    "alert.no_category_entry": "Il n'y a aucun article dans cette catégorie.",
    "alert.no_feed_entry": "Il n'y a aucun article pour cet abonnement.",
    "alert.no_feed": "Vous n'avez aucun abonnement.",
    "alert.no_history": "Il n'y a aucun historique pour le moment.",
    "alert.feed_error": "Il y a un problème avec cet abonnement",
    "alert.no_search_result": "Il n'y a aucun résultat pour cette recherche.",
    "alert.no_unread_entry": "Il n'y a rien de nouveau à lire.",
    "alert.no_user": "Vous êtes le seul utilisateur.",
    "alert.account_unlinked": "Votre compte externe est maintenant dissocié !",
    "alert.account_linked": "Votre compte externe est maintenant associé !",
    "alert.pocket_linked": "Votre compte Pocket est maintenant connecté !",
    "alert.prefs_saved": "Préférences sauvegardées !",
    "error.unlink_account_without_password": "Vous devez définir un mot de passe sinon vous ne pourrez plus vous connecter par la suite.",
    "error.duplicate_linked_account": "Il y a déjà quelqu'un d'associé avec ce provider !",
    "error.duplicate_fever_username": "Il y a déjà quelqu'un d'autre avec le même nom d'utilisateur Fever !",
    "error.pocket_request_token": "Impossible de récupérer le jeton d'accès depuis Pocket !",
    "error.pocket_access_token": "Impossible de récupérer le jeton d'accès depuis Pocket !",
    "error.category_already_exists": "Cette catégorie existe déjà.",
    "error.unable_to_create_category": "Impossible de créer cette catégorie.",
    "error.unable_to_update_category": "Impossible de mettre à jour cette catégorie.",
    "error.user_already_exists": "Cet utilisateur existe déjà.",
    "error.unable_to_create_user": "Impossible de créer cet utilisateur.",
    "error.unable_to_update_user": "Impossible de mettre à jour cet utilisateur.",
    "error.unable_to_update_feed": "Impossible de mettre à jour cet abonnement.",
    "error.subscription_not_found": "Impossible de trouver un abonnement.",
    "error.empty_file": "Ce fichier est vide.",
    "error.bad_credentials": "Mauvais identifiant ou mot de passe.",
    "error.fields_mandatory": "Tous les champs sont obligatoire.",
    "error.title_required": "Le titre est obligatoire.",
    "error.different_passwords": "Les mots de passe ne sont pas les mêmes.",
    "error.password_min_length": "Vous devez utiliser au moins 6 caractères pour le mot de passe.",
    "error.settings_mandatory_fields": "Le nom d'utilisateur, le thème, la langue et le fuseau horaire sont obligatoire.",
    "error.feed_mandatory_fields": "L'URL et la catégorie sont obligatoire.",
    "error.user_mandatory_fields": "Le nom d'utilisateur est obligatoire.",
    "form.feed.label.title": "Titre",
    "form.feed.label.site_url": "URL du site web",
    "form.feed.label.feed_url": "URL du flux",
    "form.feed.label.category": "Catégorie",
    "form.feed.label.crawler": "Récupérer le contenu original",
    "form.feed.label.feed_username": "Nom d'utilisateur du flux",
    "form.feed.label.feed_password": "Mot de passe du flux",
    "form.feed.label.user_agent": "Remplacer l'agent utilisateur par défaut",
    "form.feed.label.scraper_rules": "Règles pour récupérer le contenu original",
    "form.feed.label.rewrite_rules": "Règles de réécriture",
    "form.category.label.title": "Titre",
    "form.user.label.username": "Nom d'utilisateur",
    "form.user.label.password": "Mot de passe",
    "form.user.label.confirmation": "Confirmation du mot de passe",
    "form.user.label.admin": "Administrateur",
    "form.prefs.label.language": "Langue",
    "form.prefs.label.timezone": "Fuseau horaire",
    "form.prefs.label.theme": "Thème",
    "form.prefs.label.entry_sorting": "Ordre des éléments",
    "form.prefs.select.older_first": "Ancien éléments en premier",
    "form.prefs.select.recent_first": "Éléments récents en premier",
    "form.import.label.file": "Fichier OPML",
    "form.integration.fever_activate": "Activer l'API de Fever",
    "form.integration.fever_username": "Nom d'utilisateur pour l'API de Fever",
    "form.integration.fever_password": "Mot de passe pour l'API de Fever",
    "form.integration.fever_endpoint": "Point de terminaison de l'API Fever :",
    "form.integration.pinboard_activate": "Sauvegarder les articles vers Pinboard",
    "form.integration.pinboard_token": "Jeton de sécurité de l'API de Pinboard",
    "form.integration.pinboard_tags": "Libellés de Pinboard",
    "form.integration.pinboard_bookmark": "Marquer le lien comme non lu",
    "form.integration.instapaper_activate": "Sauvegarder les articles vers Instapaper",
    "form.integration.instapaper_username": "Nom d'utilisateur Instapaper",
    "form.integration.instapaper_password": "Mot de passe Instapaper",
    "form.integration.pocket_activate": "Sauvegarder les articles vers Pocket",
    "form.integration.pocket_consumer_key": "Clé de l'API de Pocket",
    "form.integration.pocket_access_token": "Jeton d'accès de l'API de Pocket",
    "form.integration.pocket_connect_link": "Connectez votre compte Pocket",
    "form.integration.wallabag_activate": "Sauvegarder les articles vers Wallabag",
    "form.integration.wallabag_endpoint": "URL de l'API de Wallabag",
    "form.integration.wallabag_client_id": "Identifiant unique du client Wallabag",
    "form.integration.wallabag_client_secret": "Clé secrète du client Wallabag",
    "form.integration.wallabag_username": "Nom d'utilisateur de Wallabag",
    "form.integration.wallabag_password": "Mot de passe de Wallabag",
    "form.integration.nunux_keeper_activate": "Sauvegarder les articles vers Nunux Keeper",
    "form.integration.nunux_keeper_endpoint": "URL de l'API de Nunux Keeper",
    "form.integration.nunux_keeper_api_key": "Clé d'API de Nunux Keeper",
    "form.submit.loading": "Chargement...",
    "form.submit.saving": "Sauvegarde en cours...",
    "time_elapsed.not_yet": "pas encore",
    "time_elapsed.yesterday": "hier",
    "time_elapsed.now": "à l'instant",
    "time_elapsed.minutes": [
        "il y a %d minute",
        "il y a %d minutes"
    ],
    "time_elapsed.hours": [
        "il y a %d heure",
        "il y a %d heures"
    ],
    "time_elapsed.days": [
        "il y a %d jour",
        "il y a %d jours"
    ],
    "time_elapsed.weeks": [
        "il y a %d semaine",
        "il y a %d semaines"
    ],
    "time_elapsed.months": [
        "il y a %d mois",
        "il y a %d mois"
    ],
    "time_elapsed.years": [
        "il y a %d an",
        "il y a %d ans"
    ],
    "This feed already exists (%s)": "Cet abonnement existe déjà (%s)",
    "Unable to fetch feed (Status Code = %d)": "Impossible de récupérer cet abonnement (code=%d)",
    "Unable to open this link: %v": "Impossible d'ouvrir ce lien : %v",
    "Unable to analyze this page: %v": "Impossible d'analyzer cette page : %v",
    "Unable to execute request: %v": "Impossible d'exécuter cette requête: %v",
    "Unable to parse OPML file: %q": "Impossible de lire ce fichier OPML : %q",
    "Unable to parse RSS feed: %q": "Impossible de lire ce flux RSS : %q",
    "Unable to parse Atom feed: %q": "Impossible de lire ce flux Atom : %q",
    "Unable to parse JSON feed: %q": "Impossible de lire ce flux JSON : %q",
    "Unable to parse RDF feed: %q": "Impossible de lire ce flux RDF : %q",
    "Unable to normalize encoding: %q": "Impossible de normaliser l'encodage : %q",
    "This feed is empty": "Cet abonnement est vide",
    "This web page is empty": "Cette page web est vide",
    "Invalid SSL certificate (original error: %q)": "Certificat SSL invalide (erreur originale : %q)",
    "This website is temporarily unreachable (original error: %q)": "Ce site web est temporairement injoignable (erreur originale : %q)",
    "This website is permanently unreachable (original error: %q)": "Ce site web n'est pas joignable de façon permanente (erreur originale : %q)",
    "Website unreachable, the request timed out after %d seconds": "Site web injoignable, la requête à échouée après %d secondes",
    "You are not authorized to access this resource (invalid username/password)": "Vous n'êtes pas autorisé à accéder à cette ressource (nom d'utilisateur / mot de passe incorrect)",
    "Unable to fetch this resource (Status Code = %d)": "Impossible de récupérer cette ressource (code=%d)",
    "Resource not found (404), this feed doesn't exists anymore, check the feed URL": "Page introuvable (404), cet abonnement n'existe plus, vérifiez l'adresse du flux"
}
`,
	"nl_NL": `{
    "confirm.question": "Weet je het zeker?",
    "confirm.yes": "ja",
    "confirm.no": "nee",
    "confirm.loading": "Bezig...",
    "action.subscribe": "Abboneren",
    "action.save": "Opslaan",
    "action.or": "of",
    "action.cancel": "annuleren",
    "action.remove": "Verwijderen",
    "action.remove_feed": "Verwijder deze feed",
    "action.update": "Updaten",
    "action.edit": "Bewerken",
    "action.download": "Download",
    "action.import": "Importeren",
    "action.login": "Inloggen",
    "tooltip.keyboard_shortcuts": "Sneltoets: %s",
    "tooltip.logged_user": "Ingelogd als %s",
    "menu.unread": "Ongelezen",
    "menu.starred": "Favorieten",
    "menu.history": "Geschiedenis",
    "menu.feeds": "Feeds",
    "menu.categories": "Categorieën",
    "menu.settings": "Instellingen",
    "menu.logout": "Uitloggen",
    "menu.preferences": "Voorkeuren",
    "menu.integrations": "Integraties",
    "menu.sessions": "Sessies",
    "menu.users": "Users",
    "menu.about": "Over",
    "menu.export": "Exporteren",
    "menu.import": "Importeren",
    "menu.create_category": "Categorie toevoegen",
    "menu.mark_page_as_read": "Markeer deze pagina als gelezen",
    "menu.mark_all_as_read": "Markeer alle items als gelezen",
    "menu.mark_all_as_read_wip": "Bezig...",
    "menu.refresh_feed": "Vernieuwen",
    "menu.refresh_all_feeds": "Vernieuw alle feeds in de achtergrond",
    "menu.edit_feed": "Bewerken",
    "menu.edit_category": "Bewerken",
    "menu.add_feed": "Feed toevoegen",
    "menu.add_user": "Gebruiker toevoegen",
    "menu.flush_history": "Verwijder geschiedenis",
    "search.label": "Zoeken",
    "search.placeholder": "Zoeken...",
    "pagination.next": "Volgende",
    "pagination.previous": "Vorige",
    "entry.status.unread": "Ongelezen",
    "entry.status.read": "Gelezen",
    "entry.status.title": "Verander status van item",
    "entry.bookmark.toggle.on": "Ster toevoegen",
    "entry.bookmark.toggle.off": "Ster weghalen",
    "entry.state.saving": "Opslaag...",
    "entry.state.loading": "Laden...",
    "entry.save.label": "Opslaan",
    "entry.save.title": "Artikel opslaan",
    "entry.save.completed": "Done!",
    "entry.scraper.label": "Fetch original content",
    "entry.scraper.title": "Fetch original content",
    "entry.scraper.completed": "Klaar!",
    "entry.original.label": "Origineel",
    "entry.comments.label": "Comments",
    "entry.comments.title": "Bekijk de reacties",
    "page.unread.title": "Ongelezen",
    "page.starred.title": "Favorieten",
    "page.categories.title": "Categorieën",
    "page.categories.no_feed": "Geen feeds.",
    "page.categories.feed_count": [
        "Er is %d feed.",
        "Er zijn %d feeds."
    ],
    "page.new_category.title": "Nieuwe categorie",
    "page.new_user.title": "Nieuwe gebruiker",
    "page.edit_category.title": "Bewerken van categorie: %s",
    "page.edit_user.title": "Bewerk gebruiker: %s",
    "page.feeds.title": "Feeds",
    "page.feeds.last_check": "Laatste update:",
    "page.feeds.error_count": [
        "%d error",
        "%d errors"
    ],
    "page.history.title": "Geschiedenis",
    "page.import.title": "Importeren",
    "page.login.title": "Inloggen",
    "page.search.title": "Zoekresultaten",
    "page.about.title": "Over",
    "page.about.credits": "Copyrights",
    "page.about.version": "Versie:",
    "page.about.build_date": "Datum build:",
    "page.about.author": "Auteur:",
    "page.about.license": "Licentie:",
    "page.add_feed.title": "Nieuwe feed",
    "page.add_feed.no_category": "Er zijn geen categorieën. Je moet op zijn minst één caterogie hebben.",
    "page.add_feed.label.url": "URL",
    "page.add_feed.submit": "Feed zoeken",
    "page.add_feed.legend.advanced_options": "Geavanceerde mogelijkheden",
    "page.add_feed.choose_feed": "Feed kiezen",
    "page.edit_feed.title": "Bewerken van feed: %s",
    "page.edit_feed.last_check": "Laatste update:",
    "page.edit_feed.last_modified_header": "LastModified-header:",
    "page.edit_feed.etag_header": "ETAG-header:",
    "page.edit_feed.no_header": "Geen",
    "page.edit_feed.last_parsing_error": "Laatste parse error",
    "page.keyboard_shortcuts.title": "Sneltoetsen",
    "page.keyboard_shortcuts.subtitle.sections": "Naviguatie tussen menu's",
    "page.keyboard_shortcuts.subtitle.items": "Navigatie tussen items",
    "page.keyboard_shortcuts.subtitle.pages": "Naviguatie tussen pagina's",
    "page.keyboard_shortcuts.subtitle.actions": "Actions",
    "page.keyboard_shortcuts.go_to_unread": "Ga naar ongelezen",
    "page.keyboard_shortcuts.go_to_starred": "Ga naar favorieten",
    "page.keyboard_shortcuts.go_to_history": "Ga naar geschiedenis",
    "page.keyboard_shortcuts.go_to_feeds": "Ga naar feeds",
    "page.keyboard_shortcuts.go_to_categories": "Ga naar categorieën",
    "page.keyboard_shortcuts.go_to_settings": "Ga naar instellingen",
    "page.keyboard_shortcuts.show_keyboard_shortcuts": "Laat sneltoetsen zien",
    "page.keyboard_shortcuts.go_to_previous_item": "Vorige item",
    "page.keyboard_shortcuts.go_to_next_item": "Volgende item",
    "page.keyboard_shortcuts.go_to_feed": "Ga naar feed",
    "page.keyboard_shortcuts.go_to_previous_page": "Vorige pagina",
    "page.keyboard_shortcuts.go_to_next_page": "Volgende pagina",
    "page.keyboard_shortcuts.open_item": "Open geselecteerde link",
    "page.keyboard_shortcuts.open_original": "Open originele link",
    "page.keyboard_shortcuts.toggle_read_status": "Markeer gelezen/ongelezen",
    "page.keyboard_shortcuts.mark_page_as_read": "Markeer deze pagina als gelezen",
    "page.keyboard_shortcuts.download_content": "Download originele content",
    "page.keyboard_shortcuts.toggle_bookmark_status": "Ster toevoegen/weghalen",
    "page.keyboard_shortcuts.save_article": "Artikel opslaan",
    "page.keyboard_shortcuts.remove_feed": "Verwijder deze feed",
    "page.keyboard_shortcuts.go_to_search": "Focus instellen op zoekformulier",
    "page.keyboard_shortcuts.close_modal": "Sluit dialoogscherm",
    "page.users.title": "Gebruikers",
    "page.users.username": "Gebruikersnaam",
    "page.users.never_logged": "Nooit",
    "page.users.admin.yes": "Ja",
    "page.users.admin.no": "Nee",
    "page.users.actions": "Acties",
    "page.users.last_login": "Laatste login",
    "page.users.is_admin": "Administrator",
    "page.settings.title": "Instellingen",
    "page.settings.link_google_account": "Koppel mijn Google-account",
    "page.settings.unlink_google_account": "Ontkoppel mijn Google-account",
    "page.login.google_signin": "Inloggen via Google",
    "page.integrations.title": "Integraties",
    "page.integration.miniflux_api": "Miniflux API",
    "page.integration.miniflux_api_endpoint": "API-URL",
    "page.integration.miniflux_api_username": "Gebruikersnaam",
    "page.integration.miniflux_api_password": "Wachtwoord",
    "page.integration.miniflux_api_password_value": "Wachtwoord van jouw account",
    "page.integration.bookmarklet": "Bookmarklet",
    "page.integration.bookmarklet.name": "Toevoegen aan Miniflux",
    "page.integration.bookmarklet.instructions": "Sleep deze link naar je bookmarks.",
    "page.integration.bookmarklet.help": "Gebruik deze link als bookmark in je browser om je direct te abboneren op een website.",
    "page.sessions.title": "Sessies",
    "page.sessions.table.date": "Datum",
    "page.sessions.table.ip": "IP-adres",
    "page.sessions.table.user_agent": "User-agent",
    "page.sessions.table.actions": "Acties",
    "page.sessions.table.current_session": "Huidige sessie",
    "alert.no_bookmark": "Er zijn op dit moment geen favorieten.",
    "alert.no_category": "Er zijn geen categorieën.",
    "alert.no_category_entry": "Deze categorie bevat geen feeds.",
    "alert.no_feed_entry": "Er zijn geen artikelen in deze feed.",
    "alert.no_feed": "Je hebt nog geen feeds geabboneerd staan.",
    "alert.no_history": "Geschiedenis is op dit moment leeg.",
    "alert.feed_error": "Er is een probleem met deze feed",
    "alert.no_search_result": "Er is geen resultaat voor deze zoekopdracht.",
    "alert.no_unread_entry": "Er zijn geen ongelezen artikelen.",
    "alert.no_user": "Je bent de enige gebruiker.",
    "alert.account_unlinked": "Uw externe account is nu gedissocieerd!",
    "alert.account_linked": "Uw externe account is nu gekoppeld!",
    "alert.pocket_linked": "Uw Pocket-account is nu gekoppeld!",
    "alert.prefs_saved": "Instellingen opgeslagen!",
    "error.unlink_account_without_password": "U moet een wachtwoord definiëren anders kunt u zich niet opnieuw aanmelden.",
    "error.duplicate_linked_account": "Er is al iemand geregistreerd met deze provider!",
    "error.duplicate_fever_username": "Er is al iemand met dezelfde Fever gebruikersnaam!",
    "error.pocket_request_token": "Kon geen aanvraagtoken ophalen van Pocket!",
    "error.pocket_access_token": "Kon geen toegangstoken ophalen van Pocket!",
    "error.category_already_exists": "Deze categorie bestaat al.",
    "error.unable_to_create_category": "Kan deze categorie niet maken.",
    "error.unable_to_update_category": "Kon categorie niet updaten.",
    "error.user_already_exists": "Deze gebruiker bestaat al.",
    "error.unable_to_create_user": "Kan deze gebruiker niet maken.",
    "error.unable_to_update_user": "Kan deze gebruiker niet updaten.",
    "error.unable_to_update_feed": "Kan deze feed niet bijwerken.",
    "error.subscription_not_found": "Kon geen feeds vinden.",
    "error.empty_file": "Dit bestand is leeg.",
    "error.bad_credentials": "Onjuiste gebruikersnaam of wachtwoord.",
    "error.fields_mandatory": "Alle velden moeten ingevuld zijn.",
    "error.title_required": "Naam van categorie is verplicht.",
    "error.different_passwords": "Wachtwoorden zijn niet hetzelfde.",
    "error.password_min_length": "Je moet minstens 6 tekens gebruiken.",
    "error.settings_mandatory_fields": "Gebruikersnaam, skin, taal en tijdzone zijn verplicht.",
    "error.feed_mandatory_fields": "The URL en de categorie zijn verplicht.",
    "error.user_mandatory_fields": "Gebruikersnaam is verplicht",
    "form.feed.label.title": "Naam",
    "form.feed.label.site_url": "Website URL",
    "form.feed.label.feed_url": "Feed URL",
    "form.feed.label.category": "Categorie",
    "form.feed.label.crawler": "Download originele content",
    "form.feed.label.feed_username": "Feed-gebruikersnaam",
    "form.feed.label.feed_password": "Feed wachtwoord",
    "form.feed.label.user_agent": "Standaard User Agent overschrijven",
    "form.feed.label.scraper_rules": "Scraper regels",
    "form.feed.label.rewrite_rules": "Rewrite regels",
    "form.category.label.title": "Naam",
    "form.user.label.username": "Gebruikersnaam",
    "form.user.label.password": "Wachtwoord",
    "form.user.label.confirmation": "Bevestig wachtwoord",
    "form.user.label.admin": "Administrator",
    "form.prefs.label.language": "Taal",
    "form.prefs.label.timezone": "Tijdzone",
    "form.prefs.label.theme": "Skin",
    "form.prefs.label.entry_sorting": "Volgorde van items",
    "form.prefs.select.older_first": "Oudere items eerst",
    "form.prefs.select.recent_first": "Recente items eerst",
    "form.import.label.file": "OPML-bestand",
    "form.integration.fever_activate": "Activeer Fever API",
    "form.integration.fever_username": "Fever gebruikersnaam",
    "form.integration.fever_password": "Fever wachtwoord",
    "form.integration.fever_endpoint": "Fever URL:",
    "form.integration.pinboard_activate": "Artikelen opslaan naar Pinboard",
    "form.integration.pinboard_token": "Pinboard API token",
    "form.integration.pinboard_tags": "Pinboard tags",
    "form.integration.pinboard_bookmark": "Markeer bookmark als gelezen",
    "form.integration.instapaper_activate": "Artikelen opstaan naar Instapaper",
    "form.integration.instapaper_username": "Instapaper gebruikersnaam",
    "form.integration.instapaper_password": "Instapaper wachtwoord",
    "form.integration.pocket_activate": "Bewaar artikelen in Pocket",
    "form.integration.pocket_consumer_key": "Pocket Consumer Key",
    "form.integration.pocket_access_token": "Pocket Access Token",
    "form.integration.pocket_connect_link": "Verbind je Pocket-account",
    "form.integration.wallabag_activate": "Opslaan naar Wallabag",
    "form.integration.wallabag_endpoint": "Wallabag URL",
    "form.integration.wallabag_client_id": "Wallabag Client-ID",
    "form.integration.wallabag_client_secret": "Wallabag Client-Secret",
    "form.integration.wallabag_username": "Wallabag gebruikersnaam",
    "form.integration.wallabag_password": "Wallabag wachtwoord",
    "form.integration.nunux_keeper_activate": "Opslaan naar Nunux Keeper",
    "form.integration.nunux_keeper_endpoint": "Nunux Keeper URL",
    "form.integration.nunux_keeper_api_key": "Nunux Keeper API-sleutel",
    "form.submit.loading": "Laden...",
    "form.submit.saving": "Opslaag...",
    "time_elapsed.not_yet": "in de toekomst",
    "time_elapsed.yesterday": "gisteren",
    "time_elapsed.now": "minder dan een minuut geleden",
    "time_elapsed.minutes": [
        "%d minuut geleden",
        "%d minuten geleden"
    ],
    "time_elapsed.hours": [
        "%d uur geleden",
        "%d uur geleden"
    ],
    "time_elapsed.days": [
        "%d dag geleden",
        "%d dagen geleden"
    ],
    "time_elapsed.weeks": [
        "%d week geleden",
        "%d weken geleden"
    ],
    "time_elapsed.months": [
        "%d maand geleden",
        "%d maanden geleden"
    ],
    "time_elapsed.years": [
        "%d jaar geleden",
        "%d jaar geleden"
    ],
    "This feed already exists (%s)": "Deze feed bestaat al (%s)",
    "Unable to fetch feed (Status Code = %d)": "Kon feed niet updaten (statuscode = %d)",
    "Unable to open this link: %v": "Kon link niet volgen: %v",
    "Unable to analyze this page: %v": "Kon pagina niet analyseren: %v",
    "Unable to execute request: %v": "Kon request niet uitvoeren: %v",
    "Unable to parse OPML file: %q": "Kon OPML niet parsen: %q",
    "Unable to parse RSS feed: %q": "Kon RSS-feed niet parsen: %q",
    "Unable to parse Atom feed: %q": "Kon Atom-feed niet parsen: %q",
    "Unable to parse JSON feed: %q": "Kon JSON-feed niet parsen: %q",
    "Unable to parse RDF feed: %q": "Kon RDF-feed niet parsen: %q",
    "Unable to normalize encoding: %q": "Kon encoding niet normaliseren: %q",
    "Unable to create this category.": "Kon categorie niet aanmaken.",
    "Category not found for this user": "Categorie niet gevonden voor deze gebruiker",
    "This web page is empty": "Deze webpagina is leeg",
    "Invalid SSL certificate (original error: %q)": "Ongeldig SSL-certificaat (originele error: %q)",
    "This website is temporarily unreachable (original error: %q)": "Deze website is tijdelijk onbereikbaar (originele error: %q)",
    "This website is permanently unreachable (original error: %q)": "Deze website is permanent onbereikbaar (originele error: %q)",
    "Website unreachable, the request timed out after %d seconds": "Website onbereikbaar, de request gaf een timeout na %d seconden"
}
`,
	"pl_PL": `{
    "confirm.question": "Czy jesteś pewny?",
    "confirm.yes": "tak",
    "confirm.no": "nie",
    "confirm.loading": "W toku...",
    "action.subscribe": "Subskrypcja",
    "action.save": "Zapisz",
    "action.or": "lub",
    "action.cancel": "anuluj",
    "action.remove": "Usuń",
    "action.remove_feed": "Usuń ten kanał",
    "action.update": "Zaktualizuj",
    "action.edit": "Edytuj",
    "action.download": "Pobierz",
    "action.import": "Importuj",
    "action.login": "Zaloguj się",
    "tooltip.keyboard_shortcuts": "Skróty klawiszowe: %s",
    "tooltip.logged_user": "Zalogowany jako %s",
    "menu.unread": "Nieprzeczytane",
    "menu.starred": "Ulubione",
    "menu.history": "Historia",
    "menu.feeds": "Kanały",
    "menu.categories": "Kategorie",
    "menu.settings": "Ustawienia",
    "menu.logout": "Wyloguj się",
    "menu.preferences": "Preferencje",
    "menu.integrations": "Usługi",
    "menu.sessions": "Sesje",
    "menu.users": "Użytkownicy",
    "menu.about": "O stronie",
    "menu.export": "Eksportuj",
    "menu.import": "Importuj",
    "menu.create_category": "Utwórz kategorię",
    "menu.mark_page_as_read": "Oznacz jako przeczytane",
    "menu.mark_all_as_read": "Oznacz wszystko jako przeczytane",
    "menu.mark_all_as_read_wip": "W toku...",
    "menu.refresh_feed": "Odśwież",
    "menu.refresh_all_feeds": "Odśwież wszystkie subskrypcje w tle",
    "menu.edit_feed": "Edytuj",
    "menu.edit_category": "Edytuj",
    "menu.add_feed": "Dodaj subskrypcję",
    "menu.add_user": "Dodaj użytkownika",
    "menu.flush_history": "Usuń historię",
    "search.label": "Szukaj",
    "search.placeholder": "Szukaj...",
    "pagination.next": "Następny",
    "pagination.previous": "Poprzedni",
    "entry.status.unread": "Nieprzeczytane",
    "entry.status.read": "Przeczytane",
    "entry.status.title": "Zmień status artykułu",
    "entry.bookmark.toggle.on": "Oznacz gwiazdką",
    "entry.bookmark.toggle.off": "Usuń gwiazdkę",
    "entry.state.saving": "Zapisywanie...",
    "entry.state.loading": "Ładowanie...",
    "entry.save.label": "Zapisz",
    "entry.save.title": "Zapisz ten artykuł",
    "entry.save.completed": "Gotowe!",
    "entry.scraper.label": "Pobierz treść",
    "entry.scraper.title": "Pobierz oryginalną treść",
    "entry.scraper.completed": "Gotowe!",
    "entry.original.label": "Oryginalny artykuł",
    "entry.comments.label": "Komentarze",
    "entry.comments.title": "Zobacz komentarze",
    "page.unread.title": "Nieprzeczytane",
    "page.starred.title": "Oznaczone gwiazdką",
    "page.categories.title": "Kategorie",
    "page.categories.no_feed": "Brak kanałów.",
    "page.categories.feed_count": [
        "Jest %d kanał.",
        "Są %d kanały.",
        "Jest %d kanałów."
    ],
    "page.new_category.title": "Nowa kategoria",
    "page.new_user.title": "Nowy użytkownik",
    "page.edit_category.title": "Edycja Kategorii: %s",
    "page.edit_user.title": "Edytuj użytkownika: %s",
    "page.feeds.title": "Kanały",
    "page.feeds.last_check": "Ostatnia aktualizacja:",
    "page.feeds.error_count": [
        "%d błąd",
        "%d błąd",
        "%d błędów"
    ],
    "page.history.title": "Historia",
    "page.import.title": "Importuj",
    "page.search.title": "Wyniki wyszukiwania",
    "page.about.title": "O",
    "page.about.credits": "Prawa autorskie",
    "page.about.version": "Wersja:",
    "page.about.build_date": "Data opracowania:",
    "page.about.author": "Autor:",
    "page.about.license": "Licencja:",
    "page.add_feed.title": "Nowa subskrypcja",
    "page.add_feed.no_category": "Nie ma żadnej kategorii. Musisz mieć co najmniej jedną kategorię.",
    "page.add_feed.label.url": "URL",
    "page.add_feed.submit": "Znajdź subskrypcję",
    "page.add_feed.legend.advanced_options": "Zaawansowane opcje",
    "page.add_feed.choose_feed": "Wybierz subskrypcję",
    "page.edit_feed.title": "Edytuj kanał: %s",
    "page.edit_feed.last_check": "Ostatnia aktualizacja:",
    "page.edit_feed.last_modified_header": "Ostatnio zmienione:",
    "page.edit_feed.etag_header": "Nagłówek ETag:",
    "page.edit_feed.no_header": "Brak",
    "page.edit_feed.last_parsing_error": "Ostatni błąd analizy",
    "page.keyboard_shortcuts.title": "Skróty klawiszowe",
    "page.keyboard_shortcuts.subtitle.sections": "Nawigacja między punktami menu",
    "page.keyboard_shortcuts.subtitle.items": "Nawigacja między artykułami",
    "page.keyboard_shortcuts.subtitle.pages": "Nawigacja między stronami",
    "page.keyboard_shortcuts.subtitle.actions": "Działania",
    "page.keyboard_shortcuts.go_to_unread": "Przejdź do nieprzeczytanych artykułów",
    "page.keyboard_shortcuts.go_to_starred": "Przejdź do zakładek",
    "page.keyboard_shortcuts.go_to_history": "Przejdź do historii",
    "page.keyboard_shortcuts.go_to_feeds": "Przejdź do kanałów",
    "page.keyboard_shortcuts.go_to_categories": "Przejdź do kategorii",
    "page.keyboard_shortcuts.go_to_settings": "Przejdź do ustawień",
    "page.keyboard_shortcuts.show_keyboard_shortcuts": "Pokaż listę skrótów klawiszowych",
    "page.keyboard_shortcuts.go_to_previous_item": "Przejdź do poprzedniego artykułu",
    "page.keyboard_shortcuts.go_to_next_item": "Przejdź do następnego punktu artykułu",
    "page.keyboard_shortcuts.go_to_feed": "Przejdź do subskrypcji",
    "page.keyboard_shortcuts.go_to_previous_page": "Przejdź do poprzedniej strony",
    "page.keyboard_shortcuts.go_to_next_page": "Przejdź do następnej strony",
    "page.keyboard_shortcuts.open_item": "Otwórz zaznaczony artykuł",
    "page.keyboard_shortcuts.open_original": "Otwórz oryginalny artykuł",
    "page.keyboard_shortcuts.toggle_read_status": "Oznacz jako przeczytane/nieprzeczytane",
    "page.keyboard_shortcuts.mark_page_as_read": "Zaznacz aktualną stronę jako przeczytaną",
    "page.keyboard_shortcuts.download_content": "Pobierz oryginalną zawartość",
    "page.keyboard_shortcuts.toggle_bookmark_status": "Dodaj/usuń zakładki",
    "page.keyboard_shortcuts.save_article": "Zapisz artykuł",
    "page.keyboard_shortcuts.remove_feed": "Usuń ten kanał",
    "page.keyboard_shortcuts.go_to_search": "Ustaw fokus na formularzu wyszukiwania",
    "page.keyboard_shortcuts.close_modal": "Zamknij listę skrótów klawiszowych",
    "page.users.title": "Użytkownicy",
    "page.users.username": "Nazwa użytkownika",
    "page.users.never_logged": "Nigdy",
    "page.users.admin.yes": "Tak",
    "page.users.admin.no": "Nie",
    "page.users.actions": "Działania",
    "page.users.last_login": "Ostatnie logowanie",
    "page.users.is_admin": "Administrator",
    "page.settings.title": "Ustawienia",
    "page.settings.link_google_account": "Połącz z moim kontem Google",
    "page.settings.unlink_google_account": "Odłącz moje konto Google",
    "page.login.title": "Zaloguj się",
    "page.login.google_signin": "Zaloguj przez Google",
    "page.integrations.title": "Usługi",
    "page.integration.miniflux_api": "Miniflux API",
    "page.integration.miniflux_api_endpoint": "Punkt końcowy API",
    "page.integration.miniflux_api_username": "Nazwa Użytkownika",
    "page.integration.miniflux_api_password": "Hasło",
    "page.integration.miniflux_api_password_value": "Hasło konta",
    "page.integration.bookmarklet": "Bookmarklet",
    "page.integration.bookmarklet.name": "Dodaj do Miniflux",
    "page.integration.bookmarklet.instructions": "Przeciągnij i upuść to łącze do zakładek.",
    "page.integration.bookmarklet.help": "Ten link umożliwia subskrypcję strony internetowej bezpośrednio za pomocą zakładki w przeglądarce internetowej.",
    "page.sessions.title": "Sesje",
    "page.sessions.table.date": "Data",
    "page.sessions.table.ip": "Adres IP",
    "page.sessions.table.user_agent": "Agent użytkownika",
    "page.sessions.table.actions": "Działania",
    "page.sessions.table.current_session": "Bieżąca sesja",
    "alert.no_bookmark": "Obecnie nie ma żadnych zakładek.",
    "alert.no_category": "Nie ma żadnej kategorii!",
    "alert.no_category_entry": "W tej kategorii nie ma żadnych artykułów",
    "alert.no_feed_entry": "Nie ma artykułu dla tego kanału.",
    "alert.no_feed": "Nie masz żadnej subskrypcji.",
    "alert.no_history": "Obecnie nie ma żadnej historii.",
    "alert.feed_error": "Z tym kanałem jest problem",
    "alert.no_search_result": "Brak wyników dla tego wyszukiwania.",
    "alert.no_unread_entry": "Nie ma żadnych nieprzeczytanych artykułów.",
    "alert.no_user": "Jesteś jedynym użytkownikiem.",
    "alert.account_unlinked": "Twoje konto zewnętrzne jest teraz zdysocjowane!",
    "alert.account_linked": "Twoje konto zewnętrzne jest teraz połączone!",
    "alert.pocket_linked": "Twoje konto Pocket jest teraz połączone!",
    "alert.prefs_saved": "Ustawienia zapisane!",
    "error.unlink_account_without_password": "Musisz zdefiniować hasło, inaczej nie będziesz mógł się ponownie zalogować.",
    "error.duplicate_linked_account": "Już ktoś jest powiązany z tym dostawcą!",
    "error.duplicate_fever_username": "Już ktoś inny używa tej nazwy użytkownika Fever!",
    "error.pocket_request_token": "Nie można pobrać tokena żądania z Pocket!",
    "error.pocket_access_token": "Nie można pobrać tokena dostępu z Pocket!",
    "error.category_already_exists": "Ta kategoria już istnieje.",
    "error.unable_to_create_category": "Ta kategoria nie mogła zostać utworzona.",
    "error.unable_to_update_category": "Ta kategoria nie mogła zostać zaktualizowana.",
    "error.user_already_exists": "Ten użytkownik już istnieje.",
    "error.unable_to_create_user": "Nie można utworzyć tego użytkownika.",
    "error.unable_to_update_user": "Nie można zaktualizować tego użytkownika.",
    "error.unable_to_update_feed": "Nie można zaktualizować tego kanału.",
    "error.subscription_not_found": "Nie znaleziono żadnych subskrypcji.",
    "error.empty_file": "Ten plik jest pusty.",
    "error.bad_credentials": "Nieprawidłowa nazwa użytkownika lub hasło.",
    "error.fields_mandatory": "Wszystkie pola są obowiązkowe.",
    "error.title_required": "Tytuł jest obowiązkowy.",
    "error.different_passwords": "Hasła nie są identyczne.",
    "error.password_min_length": "Musisz użyć co najmniej 6 znaków.",
    "error.settings_mandatory_fields": "Pola nazwy użytkownika, tematu, języka i strefy czasowej są obowiązkowe.",
    "error.feed_mandatory_fields": "URL i kategoria są obowiązkowe.",
    "error.user_mandatory_fields": "Nazwa użytkownika jest obowiązkowa.",
    "form.feed.label.title": "Tytuł",
    "form.feed.label.site_url": "URL strony",
    "form.feed.label.feed_url": "URL kanału",
    "form.feed.label.category": "Kategoria",
    "form.feed.label.crawler": "Pobierz oryginalną treść",
    "form.feed.label.feed_username": "Subskrypcję nazwa użytkownika",
    "form.feed.label.feed_password": "Subskrypcję Hasło",
    "form.feed.label.user_agent": "Zastąp domyślny agent użytkownika",
    "form.feed.label.scraper_rules": "Zasady ekstrakcji",
    "form.feed.label.rewrite_rules": "Reguły zapisu",
    "form.category.label.title": "Tytuł",
    "form.user.label.username": "Nazwa użytkownika",
    "form.user.label.password": "Hasło",
    "form.user.label.confirmation": "Potwierdzenie hasła",
    "form.user.label.admin": "Administrator",
    "form.prefs.label.language": "Język",
    "form.prefs.label.timezone": "Strefa czasowa",
    "form.prefs.label.theme": "Wygląd",
    "form.prefs.label.entry_sorting": "Sortowanie artykułów",
    "form.prefs.select.older_first": "Najstarsze wpisy jako pierwsze",
    "form.prefs.select.recent_first": "Najnowsze wpisy jako pierwsze",
    "form.import.label.file": "Plik OPML",
    "form.integration.fever_activate": "Aktywuj Fever API",
    "form.integration.fever_username": "Login do Fever",
    "form.integration.fever_password": "Hasło do Fever",
    "form.integration.fever_endpoint": "Punkt końcowy API gorączka:",
    "form.integration.pinboard_activate": "Zapisz artykuł w Pinboard",
    "form.integration.pinboard_token": "Token Pinboard API",
    "form.integration.pinboard_tags": "Pinboard Tags",
    "form.integration.pinboard_bookmark": "Zaznacz zakładkę jako nieprzeczytaną",
    "form.integration.instapaper_activate": "Zapisz artykuł w Instapaper",
    "form.integration.instapaper_username": "Login do Instapaper",
    "form.integration.instapaper_password": "Hasło do Instapaper",
    "form.integration.pocket_activate": "Zapisz artykuły w Pocket",
    "form.integration.pocket_consumer_key": "Pocket Consumer Key",
    "form.integration.pocket_access_token": "Token dostępu kieszeń",
    "form.integration.pocket_connect_link": "Połącz swoje konto Pocket",
    "form.integration.wallabag_activate": "Zapisz artykuły do Wallabag",
    "form.integration.wallabag_endpoint": "Wallabag URL",
    "form.integration.wallabag_client_id": "Wallabag Client-ID",
    "form.integration.wallabag_client_secret": "Wallabag Client Secret",
    "form.integration.wallabag_username": "Login do Wallabag",
    "form.integration.wallabag_password": "Hasło do Wallabag",
    "form.integration.nunux_keeper_activate": "Zapisz artykuly do Nunux Keeper",
    "form.integration.nunux_keeper_endpoint": "Nunux Keeper URL",
    "form.integration.nunux_keeper_api_key": "Nunux Keeper API key",
    "form.submit.loading": "Ładowanie...",
    "form.submit.saving": "Zapisywanie...",
    "time_elapsed.not_yet": "jeszcze nie",
    "time_elapsed.yesterday": "wczoraj",
    "time_elapsed.now": "przed chwilą",
    "time_elapsed.minutes": [
        "%d minuta temu",
        "%d minuty temu",
        "%d minut temu"
    ],
    "time_elapsed.hours": [
        "%d godzinę temu",
        "%d godziny temu",
        "%d godzin temu"
    ],
    "time_elapsed.days": [
        "%d dzień temu",
        "%d dni temu",
        "%d dni temu"
    ],
    "time_elapsed.weeks": [
        "%d tydzień temu",
        "%d tygodni temu",
        "%d tygodni temu"
    ],
    "time_elapsed.months": [
        "%d miesiąc temu",
        "%d miesięcy temu",
        "%d miesięcy temu"
    ],
    "time_elapsed.years": [
        "%d rok temu",
        "%d lat temu",
        "%d lat temu"
    ],
    "This feed already exists (%s)": "Ten kanał już istnieje (%s)",
    "Unable to fetch feed (Status Code = %d)": "Kanał nie mógł zostać pobrany (kod=%d)",
    "Unable to open this link: %v": "Nie można było otworzyć tego linku: %v",
    "Unable to analyze this page: %v": "Nie można przeanalizować tej strony: %v",
    "Unable to execute request: %v": "To polecenie nie mogło zostać wykonane: %v",
    "Unable to parse OPML file: %q": "Plik OPML nie mógł zostać odczytany: %q",
    "Unable to parse RSS feed: %q": "Nie można było odczytać kanału RSS: %q",
    "Unable to parse Atom feed: %q": "Nie można było odczytać kanału Atom: %q",
    "Unable to parse JSON feed: %q": "Nie można było odczytać kanału JSON: %q",
    "Unable to parse RDF feed: %q": "Nie można było odczytać kanału RDF: %q",
    "Unable to normalize encoding: %q": "Kodowanie znaków nie mogło zostać znormalizowane: %q",
    "Category not found for this user": "Kategoria nie znaleziona dla tego użytkownika",
    "This feed is empty": "Ten kanał jest pusty",
    "This web page is empty": "Ta strona jest pusta",
    "Invalid SSL certificate (original error: %q)": "Certyfikat SSL jest nieprawidłowy (błąd: %q)",
    "This website is temporarily unreachable (original error: %q)": "Ta strona jest tymczasowo niedostępna (błąd: %q)",
    "This website is permanently unreachable (original error: %q)": "Ta strona jest niedostępna (błąd: %q)",
    "Website unreachable, the request timed out after %d seconds": "Strona internetowa nieosiągalna, żądanie wygasło po %d sekundach"
}
`,
	"ru_RU": `{
    "confirm.question": "Вы уверены?",
    "confirm.yes": "да",
    "confirm.no": "нет",
    "confirm.loading": "В процессе…",
    "action.subscribe": "Подписаться",
    "action.save": "Сохранить",
    "action.or": "или",
    "action.cancel": "закрыть",
    "action.remove": "Удалить",
    "action.remove_feed": "Удалить эту подписку",
    "action.update": "Обновить",
    "action.edit": "Изменить",
    "action.download": "Загрузить",
    "action.import": "Импорт",
    "action.login": "Войти",
    "tooltip.keyboard_shortcuts": "Сочетания клавиш: %s",
    "tooltip.logged_user": "Авторизован как %s",
    "menu.unread": "Непрочитанное",
    "menu.starred": "Избранное",
    "menu.history": "История",
    "menu.feeds": "Подписки",
    "menu.categories": "Категории",
    "menu.settings": "Настройки",
    "menu.logout": "Выйти",
    "menu.preferences": "Предпочтения",
    "menu.integrations": "Интеграции",
    "menu.sessions": "Сессии",
    "menu.users": "Пользователи",
    "menu.about": "О приложении",
    "menu.export": "Экспорт",
    "menu.import": "Импорт",
    "menu.create_category": "Создать категорию",
    "menu.mark_page_as_read": "Отметить эту страницу прочитанной",
    "menu.mark_all_as_read": "Отметить всё как прочитанное",
    "menu.mark_all_as_read_wip": "В процессе…",
    "menu.refresh_feed": "Обновить",
    "menu.refresh_all_feeds": "Обновить все подписки в фоне",
    "menu.edit_feed": "Изменить",
    "menu.edit_category": "Изменить",
    "menu.add_feed": "Добавить подписку",
    "menu.add_user": "Добавить пользователя",
    "menu.flush_history": "Отчистить историю",
    "search.label": "Поиск",
    "search.placeholder": "Поиск…",
    "pagination.next": "Следующая",
    "pagination.previous": "Предыдущая",
    "entry.status.unread": "Непрочитано",
    "entry.status.read": "Прочитано",
    "entry.status.title": "Изменить статус записи",
    "entry.bookmark.toggle.on": "Добавить в Избранное",
    "entry.bookmark.toggle.off": "Удалить из Избранного",
    "entry.state.saving": "Сохранение…",
    "entry.state.loading": "Загрузка…",
    "entry.save.label": "Сохранить",
    "entry.save.title": "Сохранить эту статью",
    "entry.save.completed": "Готово!",
    "entry.scraper.label": "Извлечь оригинальное содержимое",
    "entry.scraper.title": "Извлечь оригинальное содержимое",
    "entry.scraper.completed": "Готово!",
    "entry.original.label": "Оригинал",
    "entry.comments.label": "Комментарии",
    "entry.comments.title": "Показать комментарии",
    "page.unread.title": "Непрочитанное",
    "page.starred.title": "Избранное",
    "page.categories.title": "Категории",
    "page.categories.no_feed": "Нет подписок.",
    "page.categories.feed_count": [
        "Есть %d подписка.",
        "Есть %d подписки.",
        "Есть %d подписок."
    ],
    "page.new_category.title": "Новая категория",
    "page.new_user.title": "Новый пользователь",
    "page.edit_category.title": "Изменить категорию: %s",
    "page.edit_user.title": "Изменить пользователя: %s",
    "page.feeds.title": "Подписки",
    "page.feeds.last_check": "Последняя проверка:",
    "page.feeds.error_count": [
        "%d ошибка",
        "%d ошибки",
        "%d ошибок"
    ],
    "page.history.title": "История",
    "page.import.title": "Импорт",
    "page.search.title": "Результаты поиска",
    "page.about.title": "О приложении",
    "page.about.credits": "Авторы",
    "page.about.version": "Версия:",
    "page.about.build_date": "Дата сборки:",
    "page.about.author": "Автор:",
    "page.about.license": "Лицензия:",
    "page.add_feed.title": "Новая подписка",
    "page.add_feed.no_category": "Категории отсутствуют. У вас должна быть хотя бы одна категория.",
    "page.add_feed.label.url": "URL",
    "page.add_feed.submit": "Найти подписку",
    "page.add_feed.legend.advanced_options": "Расширенные настройки",
    "page.add_feed.choose_feed": "Выбрать подписку",
    "page.edit_feed.title": "Изменить подписку: %s",
    "page.edit_feed.last_check": "Последняя проверка:",
    "page.edit_feed.last_modified_header": "Заголовок LastModified:",
    "page.edit_feed.etag_header": "Заголовок ETag:",
    "page.edit_feed.no_header": "Отсутствует",
    "page.edit_feed.last_parsing_error": "Последняя ошибка парсинга",
    "page.keyboard_shortcuts.title": "Сочетания клавиш",
    "page.keyboard_shortcuts.subtitle.sections": "Навигация по секциям",
    "page.keyboard_shortcuts.subtitle.items": "Навигация по элементам",
    "page.keyboard_shortcuts.subtitle.pages": "Навигация по страницам",
    "page.keyboard_shortcuts.subtitle.actions": "Действия",
    "page.keyboard_shortcuts.go_to_unread": "Перейти к Непрочитанным",
    "page.keyboard_shortcuts.go_to_starred": "Перейти к Избранному",
    "page.keyboard_shortcuts.go_to_history": "Перейти к Истории",
    "page.keyboard_shortcuts.go_to_feeds": "Перейти к Подпискам",
    "page.keyboard_shortcuts.go_to_categories": "Перейти к Категориям",
    "page.keyboard_shortcuts.go_to_settings": "Перейти к Настройкам",
    "page.keyboard_shortcuts.show_keyboard_shortcuts": "Показать сочетания клавиш",
    "page.keyboard_shortcuts.go_to_previous_item": "Перейти к предыдущему элементу",
    "page.keyboard_shortcuts.go_to_next_item": "Перейти к следующему элементу",
    "page.keyboard_shortcuts.go_to_feed": "Перейти к подписке",
    "page.keyboard_shortcuts.go_to_previous_page": "Перейти к предыдущей странице",
    "page.keyboard_shortcuts.go_to_next_page": "Перейти к следующей странице",
    "page.keyboard_shortcuts.open_item": "Открыть выбранный элемент",
    "page.keyboard_shortcuts.open_original": "Открыть оригинальную ссылку",
    "page.keyboard_shortcuts.toggle_read_status": "Переключатель прочитанного",
    "page.keyboard_shortcuts.mark_page_as_read": "Отметить текущую страницу прочитанной",
    "page.keyboard_shortcuts.download_content": "Загрузить оригинальное содержимое",
    "page.keyboard_shortcuts.toggle_bookmark_status": "Переключатель избранного",
    "page.keyboard_shortcuts.save_article": "Сохранить статью",
    "page.keyboard_shortcuts.remove_feed": "Удалить эту подписку",
    "page.keyboard_shortcuts.go_to_search": "Установить фокус в поисковой форме",
    "page.keyboard_shortcuts.close_modal": "Закрыть модальный диалог",
    "page.users.title": "Пользователи",
    "page.users.username": "Имя пользователя",
    "page.users.never_logged": "Никогда",
    "page.users.admin.yes": "Да",
    "page.users.admin.no": "Нет",
    "page.users.actions": "Действия",
    "page.users.last_login": "Последний вход",
    "page.users.is_admin": "Администратор",
    "page.settings.title": "Настройки",
    "page.settings.link_google_account": "Привязать мой Google аккаунт",
    "page.settings.unlink_google_account": "Отвязать мой Google аккаунт",
    "page.login.title": "Войти",
    "page.login.google_signin": "Войти с помощью Google",
    "page.integrations.title": "Интеграции",
    "page.integration.miniflux_api": "Miniflux API",
    "page.integration.miniflux_api_endpoint": "Конечная точка API",
    "page.integration.miniflux_api_username": "Имя пользователя",
    "page.integration.miniflux_api_password": "Пароль",
    "page.integration.miniflux_api_password_value": "Пароль вашего аккаунта",
    "page.integration.bookmarklet": "Букмарклет",
    "page.integration.bookmarklet.name": "Добавить в Miniflux",
    "page.integration.bookmarklet.instructions": "Перетащите эту ссылку в ваши закладки.",
    "page.integration.bookmarklet.help": "Эта специальная ссылка позволит вам подписаться на сайт, используя обыкновенную закладку в вашем браузере.",
    "page.sessions.title": "Сессии",
    "page.sessions.table.date": "Время",
    "page.sessions.table.ip": "IP адрес",
    "page.sessions.table.user_agent": "User Agent",
    "page.sessions.table.actions": "Действия",
    "page.sessions.table.current_session": "Текущая сессия",
    "alert.no_bookmark": "Нет закладок на данный момент.",
    "alert.no_category": "Категории отсутствуют.",
    "alert.no_category_entry": "В этой категории нет статей.",
    "alert.no_feed_entry": "В этой подписке отсутствуют статьи.",
    "alert.no_feed": "У вас нет ни одной подписки.",
    "alert.no_history": "Истории пока нет.",
    "alert.feed_error": "С этой подпиской есть проблема",
    "alert.no_search_result": "Нет результатов для данного поискового запроса.",
    "alert.no_unread_entry": "Нет непрочитанных статей.",
    "alert.no_user": "Вы единственный пользователь.",
    "alert.account_unlinked": "Ваш внешний аккаунт теперь отвязан!",
    "alert.account_linked": "Ваш внешний аккаунт теперь привязан!",
    "alert.pocket_linked": "Ваш Pocket аккаунт теперь привязан!",
    "alert.prefs_saved": "Предпочтения сохранены!",
    "error.unlink_account_without_password": "Вы должны установить пароль, иначе вы не сможете войти снова.",
    "error.duplicate_linked_account": "Уже есть кто-то, кто ассоциирован с этим аккаунтом!",
    "error.duplicate_fever_username": "Уже есть кто-то с таким же именем пользователя Fever!",
    "error.pocket_request_token": "Не удается извлечь request token из Pocket!",
    "error.pocket_access_token": "Не удается извлечь access token из Pocket!",
    "error.category_already_exists": "Эта категория уже существует.",
    "error.unable_to_create_category": "Не удается создать эту категорию.",
    "error.unable_to_update_category": "Не удается обновить эту категорию.",
    "error.user_already_exists": "Этот пользователь уже существует.",
    "error.unable_to_create_user": "Не удается создать этого пользователя.",
    "error.unable_to_update_user": "Не удается обновить этого пользователя.",
    "error.unable_to_update_feed": "Не удается обновить эту подписку.",
    "error.subscription_not_found": "Не удается найти подписки.",
    "error.empty_file": "Этот файл пуст.",
    "error.bad_credentials": "Неверное имя пользователя или пароль.",
    "error.fields_mandatory": "Все поля обязательны.",
    "error.title_required": "Название обязательно.",
    "error.different_passwords": "Пароли не совпадают.",
    "error.password_min_length": "Вы должны использовать минимум 6 символов.",
    "error.settings_mandatory_fields": "Имя пользователя, тема, язык и часовой пояс обязательны.",
    "error.feed_mandatory_fields": "URL и категория обязательны.",
    "error.user_mandatory_fields": "Имя пользователя обязательно.",
    "form.feed.label.title": "Название",
    "form.feed.label.site_url": "URL сайта",
    "form.feed.label.feed_url": "URL подписки",
    "form.feed.label.category": "Категория",
    "form.feed.label.crawler": "Извлечь оригинальное содержимое",
    "form.feed.label.feed_username": "Имя пользователя подписки",
    "form.feed.label.feed_password": "Пароль подписки",
    "form.feed.label.user_agent": "Переопределить User Agent по умолчанию",
    "form.feed.label.scraper_rules": "Правила Scraper",
    "form.feed.label.rewrite_rules": "Правила Rewrite",
    "form.category.label.title": "Название",
    "form.user.label.username": "Имя пользователя",
    "form.user.label.password": "Пароль",
    "form.user.label.confirmation": "Подтверждение пароля",
    "form.user.label.admin": "Администратор",
    "form.prefs.label.language": "Язык",
    "form.prefs.label.timezone": "Часовой пояс",
    "form.prefs.label.theme": "Тема",
    "form.prefs.label.entry_sorting": "Сортировка записей",
    "form.prefs.select.older_first": "Сначала старые записи",
    "form.prefs.select.recent_first": "Сначала последние записи",
    "form.import.label.file": "OPML файл",
    "form.integration.fever_activate": "Активировать Fever API",
    "form.integration.fever_username": "Имя пользователя Fever",
    "form.integration.fever_password": "Пароль Fever",
    "form.integration.fever_endpoint": "Конечная точка Fever API:",
    "form.integration.pinboard_activate": "Сохранять статьи в Pinboard",
    "form.integration.pinboard_token": "Pinboard API Token",
    "form.integration.pinboard_tags": "Теги Pinboard",
    "form.integration.pinboard_bookmark": "Помечать закладки как непрочитанное",
    "form.integration.instapaper_activate": "Сохранять статьи в Instapaper",
    "form.integration.instapaper_username": "Имя пользователя Instapaper",
    "form.integration.instapaper_password": "Пароль Instapaper",
    "form.integration.pocket_activate": "Сохранять статьи в Pocket",
    "form.integration.pocket_consumer_key": "Pocket Consumer Key",
    "form.integration.pocket_access_token": "Pocket Access Token",
    "form.integration.pocket_connect_link": "Подключить аккаунт Pocket",
    "form.integration.wallabag_activate": "Сохранять статьи в Wallabag",
    "form.integration.wallabag_endpoint": "Конечная точка Wallabag API",
    "form.integration.wallabag_client_id": "Wallabag Client ID",
    "form.integration.wallabag_client_secret": "Wallabag Client Secret",
    "form.integration.wallabag_username": "Имя пользователя Wallabag",
    "form.integration.wallabag_password": "Пароль Wallabag",
    "form.integration.nunux_keeper_activate": "Сохранять статьи в Nunux Keeper",
    "form.integration.nunux_keeper_endpoint": "Конечная точка Nunux Keeper API",
    "form.integration.nunux_keeper_api_key": "Nunux Keeper API key",
    "form.submit.loading": "Загрузка…",
    "form.submit.saving": "Сохранение…",
    "time_elapsed.not_yet": "ещё нет",
    "time_elapsed.yesterday": "вчера",
    "time_elapsed.now": "только что",
    "time_elapsed.minutes": [
        "%d минуту назад",
        "%d минуты назад",
        "%d минут назад"
    ],
    "time_elapsed.hours": [
        "%d час назад",
        "%d часа назад",
        "%d часов назад"
    ],
    "time_elapsed.days": [
        "%d день назад",
        "%d дня назад",
        "%d дней назад"
    ],
    "time_elapsed.weeks": [
        "%d неделю назад",
        "%d недели назад",
        "%d недель назад"
    ],
    "time_elapsed.months": [
        "%d месяц назад",
        "%d месяца назад",
        "%d месяцев назад"
    ],
    "time_elapsed.years": [
        "%d год назад",
        "%d года назад",
        "%d лет назад"
    ]
}
`,
	"zh_CN": `{
    "confirm.question": "您确认吗?",
    "confirm.yes": "是",
    "confirm.no": "否",
    "confirm.loading": "执行中...",
    "action.subscribe": "订阅",
    "action.save": "保存",
    "action.or": "或",
    "action.cancel": "取消",
    "action.remove": "删除",
    "action.remove_feed": "删除此Feed",
    "action.update": "更新",
    "action.edit": "编辑",
    "action.download": "下载",
    "action.import": "导入",
    "action.login": "登陆",
    "tooltip.keyboard_shortcuts": "快捷键: %s",
    "tooltip.logged_user": "当前登录 %s",
    "menu.unread": "未读",
    "menu.starred": "星标",
    "menu.history": "历史",
    "menu.feeds": "源",
    "menu.categories": "分类",
    "menu.settings": "设置",
    "menu.logout": "登出",
    "menu.preferences": "优先",
    "menu.integrations": "集成",
    "menu.sessions": "会话",
    "menu.users": "用户",
    "menu.about": "关于",
    "menu.export": "导出",
    "menu.import": "导入",
    "menu.create_category": "新建分类",
    "menu.mark_page_as_read": "标记为已读",
    "menu.mark_all_as_read": "全标记为已读",
    "menu.mark_all_as_read_wip": "执行中...",
    "menu.refresh_feed": "更新",
    "menu.refresh_all_feeds": "在后台更新全部源",
    "menu.edit_feed": "编辑",
    "menu.edit_category": "编辑",
    "menu.add_feed": "新增订阅",
    "menu.add_user": "新建用户",
    "menu.flush_history": "清理历史",
    "search.label": "搜索",
    "search.placeholder": "搜索...",
    "pagination.next": "下一页",
    "pagination.previous": "上一页",
    "entry.status.unread": "未读",
    "entry.status.read": "标为已读",
    "entry.status.title": "更改状态",
    "entry.bookmark.toggle.on": "标记星标",
    "entry.bookmark.toggle.off": "去掉星标",
    "entry.state.saving": "保存中...",
    "entry.state.loading": "载入中...",
    "entry.save.label": "保存",
    "entry.save.title": "保存这篇文章",
    "entry.save.completed": "完成",
    "entry.scraper.label": "抓取原内容",
    "entry.scraper.title": "抓取原内容",
    "entry.scraper.completed": "完成",
    "entry.original.label": "原版的",
    "entry.comments.label": "注释",
    "entry.comments.title": "查看评论",
    "page.unread.title": "未读",
    "page.starred.title": "星标",
    "page.categories.title": "分类",
    "page.categories.no_feed": "没有源.",
    "page.categories.feed_count": [
        "有 %d 个源."
    ],
    "page.new_category.title": "新分类",
    "page.new_user.title": "新用户",
    "page.edit_category.title": "编辑分类 : %s",
    "page.edit_user.title": "编辑用户 : %s",
    "page.feeds.title": "源",
    "page.feeds.last_check": "最后检查时间:",
    "page.feeds.error_count": [
        "%d 错误"
    ],
    "page.history.title": "历史",
    "page.import.title": "导入",
    "page.search.title": "搜索结果",
    "page.about.title": "关于",
    "page.about.credits": "版权",
    "page.about.version": "版:",
    "page.about.build_date": "建造日期:",
    "page.about.author": "作者:",
    "page.about.license": "执照:",
    "page.add_feed.title": "新订阅",
    "page.add_feed.no_category": "没有类别。 您必须至少有一个类别。",
    "page.add_feed.label.url": "网址",
    "page.add_feed.submit": "查找订阅",
    "page.add_feed.legend.advanced_options": "高级选项",
    "page.add_feed.choose_feed": "选择一个订阅",
    "page.edit_feed.title": "编辑源 : %s",
    "page.edit_feed.last_check": "最后检查时间:",
    "page.edit_feed.last_modified_header": "最后修改的Header:",
    "page.edit_feed.etag_header": "ETag标题:",
    "page.edit_feed.no_header": "无",
    "page.edit_feed.last_parsing_error": "最后一次解析错误",
    "page.keyboard_shortcuts.title": "快捷键",
    "page.keyboard_shortcuts.subtitle.sections": "分区导航",
    "page.keyboard_shortcuts.subtitle.items": "条目导航",
    "page.keyboard_shortcuts.subtitle.pages": "页面导航",
    "page.keyboard_shortcuts.subtitle.actions": "操作",
    "page.keyboard_shortcuts.go_to_unread": "去往未读",
    "page.keyboard_shortcuts.go_to_starred": "去往书签",
    "page.keyboard_shortcuts.go_to_history": "去往历史",
    "page.keyboard_shortcuts.go_to_feeds": "去往源",
    "page.keyboard_shortcuts.go_to_categories": "去往分类",
    "page.keyboard_shortcuts.go_to_settings": "去往设定",
    "page.keyboard_shortcuts.show_keyboard_shortcuts": "显示快捷键",
    "page.keyboard_shortcuts.go_to_previous_item": "上一条目",
    "page.keyboard_shortcuts.go_to_next_item": "下一条目",
    "page.keyboard_shortcuts.go_to_feed": "转到订阅",
    "page.keyboard_shortcuts.go_to_previous_page": "上一页",
    "page.keyboard_shortcuts.go_to_next_page": "下一页",
    "page.keyboard_shortcuts.open_item": "打开选定的条目",
    "page.keyboard_shortcuts.open_original": "打开原始链接",
    "page.keyboard_shortcuts.toggle_read_status": "切换已读/未读状态",
    "page.keyboard_shortcuts.mark_page_as_read": "标记当前",
    "page.keyboard_shortcuts.download_content": "下载原始内容",
    "page.keyboard_shortcuts.toggle_bookmark_status": "切换收藏状态",
    "page.keyboard_shortcuts.save_article": "保存文章",
    "page.keyboard_shortcuts.remove_feed": "删除此Feed",
    "page.keyboard_shortcuts.go_to_search": "将重点放在搜索表单上",
    "page.keyboard_shortcuts.close_modal": "关闭模态对话窗口",
    "page.users.title": "用户",
    "page.users.username": "用户名",
    "page.users.never_logged": "永不",
    "page.users.admin.yes": "是",
    "page.users.admin.no": "否",
    "page.users.actions": "操作",
    "page.users.last_login": "最后登录时间",
    "page.users.is_admin": "管理员",
    "page.settings.title": "设置",
    "page.settings.link_google_account": "关联我的Google账户",
    "page.settings.unlink_google_account": "去除Google账号关联",
    "page.login.title": "登陆",
    "page.login.google_signin": "使用Google登陆",
    "page.integrations.title": "集成",
    "page.integration.miniflux_api": "Miniflux API",
    "page.integration.miniflux_api_endpoint": "API端点",
    "page.integration.miniflux_api_username": "用户名",
    "page.integration.miniflux_api_password": "密码",
    "page.integration.miniflux_api_password_value": "您账户的密码",
    "page.integration.bookmarklet": "书签小应用",
    "page.integration.bookmarklet.name": "新增到Miniflux",
    "page.integration.bookmarklet.instructions": "拖动这个链接到书签.",
    "page.integration.bookmarklet.help": "你可以打开这个特殊的书签来直接订阅网站.",
    "page.sessions.title": "会话",
    "page.sessions.table.date": "日期",
    "page.sessions.table.ip": "IP地址",
    "page.sessions.table.user_agent": "用户代理",
    "page.sessions.table.actions": "操作",
    "page.sessions.table.current_session": "当前会话",
    "alert.no_bookmark": "目前没有书签。",
    "alert.no_category": "目前没有分类.",
    "alert.no_category_entry": "该分类下没有文章.",
    "alert.no_feed_entry": "这个源中没有文章.",
    "alert.no_feed": "当前没有订阅.",
    "alert.no_history": "当前没有历史.",
    "alert.feed_error": "这一源存在问题",
    "alert.no_search_result": "此搜索没有结果。",
    "alert.no_unread_entry": "目前没有未读文章.",
    "alert.no_user": "你是目前仅有的用户.",
    "alert.account_unlinked": "您的外部帐户现已解散!",
    "alert.account_linked": "您的外部账号已关联!",
    "alert.pocket_linked": "您的Pocket帐户现已关联",
    "alert.prefs_saved": "偏好已存储!",
    "error.unlink_account_without_password": "您必须定义密码,否则您将无法再次登录。",
    "error.duplicate_linked_account": "该Provider已被关联!",
    "error.duplicate_fever_username": "Fever用户名已被占用!",
    "error.pocket_request_token": "无法从Pocket获取请求令牌!",
    "error.pocket_access_token": "无法从Pocket获取访问令牌!",
    "error.category_already_exists": "分类已存在.",
    "error.unable_to_create_category": "无法建立这个分类.",
    "error.unable_to_update_category": "无法更新该分类.",
    "error.user_already_exists": "用户已存在.",
    "error.unable_to_create_user": "无法创建此用户。",
    "error.unable_to_update_user": "无法更新此用户。",
    "error.unable_to_update_feed": "无法更新此Feed。",
    "error.subscription_not_found": "找不到任何订阅.",
    "error.empty_file": "此文件为空。",
    "error.bad_credentials": "用户名或密码无效.",
    "error.fields_mandatory": "必须填写全部信息.",
    "error.title_required": "必须填写标题.",
    "error.different_passwords": "两次输入的密码不同.",
    "error.password_min_length": "请至少使用6个字符.",
    "error.settings_mandatory_fields": "必须填写用户名,主题,语言和时区.",
    "error.feed_mandatory_fields": "必须填写URL和分类.",
    "error.user_mandatory_fields": "必须填写用户名.",
    "form.feed.label.title": "标题",
    "form.feed.label.site_url": "站点URL",
    "form.feed.label.feed_url": "源URL",
    "form.feed.label.category": "类别",
    "form.feed.label.crawler": "获取原始内容",
    "form.feed.label.feed_username": "Feed用户名",
    "form.feed.label.feed_password": "Feed密码",
    "form.feed.label.user_agent": "覆盖默认用户代理",
    "form.feed.label.scraper_rules": "Scraper规则",
    "form.feed.label.rewrite_rules": "重写规则",
    "form.category.label.title": "标题",
    "form.user.label.username": "用户名",
    "form.user.label.password": "密码",
    "form.user.label.confirmation": "确认",
    "form.user.label.admin": "管理员",
    "form.prefs.label.language": "语言",
    "form.prefs.label.timezone": "时区",
    "form.prefs.label.theme": "主题",
    "form.prefs.label.entry_sorting": "内容排序",
    "form.prefs.select.older_first": "旧->新",
    "form.prefs.select.recent_first": "新->旧",
    "form.import.label.file": "OPML 文件",
    "form.integration.fever_activate": "启用 Fever API",
    "form.integration.fever_username": "Fever 用户名",
    "form.integration.fever_password": "Fever 密码",
    "form.integration.fever_endpoint": "Fever API endpoint:",
    "form.integration.pinboard_activate": "保存文章到Pinboard",
    "form.integration.pinboard_token": "Pinboard API Token",
    "form.integration.pinboard_tags": "Pinboard 标签",
    "form.integration.pinboard_bookmark": "标记为未读",
    "form.integration.instapaper_activate": "保存文章到Instapaper",
    "form.integration.instapaper_username": "Instapaper 用户名",
    "form.integration.instapaper_password": "Instapaper 密码",
    "form.integration.pocket_activate": "将文章保存到Pocket",
    "form.integration.pocket_consumer_key": "口袋消费者密钥",
    "form.integration.pocket_access_token": "口袋访问令牌",
    "form.integration.pocket_connect_link": "连接您的Pocket帐户",
    "form.integration.wallabag_activate": "保存文章到Wallabag",
    "form.integration.wallabag_endpoint": "Wallabag URL",
    "form.integration.wallabag_client_id": "Wallabag 客户端ID",
    "form.integration.wallabag_client_secret": "Wallabag 客户端Secret",
    "form.integration.wallabag_username": "Wallabag 用户名",
    "form.integration.wallabag_password": "Wallabag 密码",
    "form.integration.nunux_keeper_activate": "保存文章到Nunux Keeper",
    "form.integration.nunux_keeper_endpoint": "Nunux Keeper API Endpoint",
    "form.integration.nunux_keeper_api_key": "Nunux Keeper API key",
    "form.submit.loading": "载入中...",
    "form.submit.saving": "保存中...",
    "time_elapsed.not_yet": "尚未",
    "time_elapsed.yesterday": "昨天",
    "time_elapsed.now": "刚刚",
    "time_elapsed.minutes": [
        "%d 分钟前"
    ],
    "time_elapsed.hours": [
        "%d 小时前"
    ],
    "time_elapsed.days": [
        "%d 天前"
    ],
    "time_elapsed.weeks": [
        "%d 周前"
    ],
    "time_elapsed.months": [
        "%d 月前"
    ],
    "time_elapsed.years": [
        "%d 年前"
    ],
    "This feed already exists (%s)": "源已存在 (%s)",
    "Unable to fetch feed (Status Code = %d)": "无法获取源 (错误代码=%d)",
    "Unable to open this link: %v": "无法打开这一链接: %v",
    "Unable to analyze this page: %v": "无法分析这一页面: %v",
    "Unable to execute request: %v": "无法执行这一请求: %v",
    "Unable to parse OPML file: %q": "无法解析OPML文件: %q",
    "Unable to parse RSS feed: %q": "无法解析RSS源: %q",
    "Unable to parse Atom feed: %q": "无法解析Atom源: %q",
    "Unable to parse JSON feed: %q": "无法解析JSON源: %q",
    "Unable to parse RDF feed: %q": "无法解析RDF源: %q",
    "Unable to normalize encoding: %q": "无法正则化编码: %q",
    "Category not found for this user": "未找到该用户的这一分类",
    "This feed is empty": "该源是空的",
    "This web page is empty": "该网页是空的",
    "Invalid SSL certificate (original error: %q)": "无效的SSL证书 (原始错误: %q)",
    "This website is temporarily unreachable (original error: %q)": "该网站暂时不可达 (原始错误: %q)",
    "This website is permanently unreachable (original error: %q)": "该网站永久不可达 (原始错误: %q)",
    "Website unreachable, the request timed out after %d seconds": "网站不可达, 请求已在 %d 秒后超时"
}
`,
}

var translationsChecksums = map[string]string{
	"de_DE": "51ddd870cc5c228f2cc92f32797f805a5ca62baa5be95c037ba78eb41e69c490",
	"en_US": "d4342f431da69a4ce26162862d649c42cc395b4266e0125c5bc9df7577e401be",
	"fr_FR": "687d1c0147eb3925911d48972b39c94a4accf2e03e7327fe99ae05e0b5f11a9f",
	"nl_NL": "08513979f3194bb1df3207f14ea7adf81cc4a62abec347a9dacbc201ce6846f0",
	"pl_PL": "7c445e94570e42c08268153ba63b297874e22da519eb161551fdf56957627a17",
	"ru_RU": "03aef503278965e7dbc2f2d9b34d32d50c4e75c2834bd8814bbdd6c261450385",
	"zh_CN": "effecdd0cd6139de8488fda0f26a6279b1958ed5ec8c7445b42e1cc361756134",
}