aboutsummaryrefslogtreecommitdiffhomepage
path: root/locale/translations.go
blob: 2cccb9f81b7b8a9871d931dbcf235252f3112424 (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
// Code generated by go generate; DO NOT EDIT.

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

var translations = map[string]string{
	"de_DE": `{
    "plural.feed.error_count": [
        "%d Fehler",
        "%d Fehler"
    ],
    "plural.categories.feed_count": [
        "Es gibt %d Abonnement.",
        "Es gibt %d Abonnements."
    ],
    "Username": "Benutzername",
    "Password": "Passwort",
    "Unread": "Ungelesen",
    "History": "Verlauf",
    "Feeds": "Abonnements",
    "Categories": "Kategorien",
    "Settings": "Einstellungen",
    "Logout": "Abmelden",
    "Next": "Nächste",
    "Previous": "Vorherige",
    "New Subscription": "Neues Abonnement",
    "Import": "Importieren",
    "Export": "Exportieren",
    "There is no category. You must have at least one category.": "Es ist keine Kategorie vorhanden. Wenigstens eine Kategorie muss angelegt sein.",
    "URL": "URL",
    "Category": "Kategorie",
    "Find a subscription": "Abonnement suchen",
    "Loading...": "Lade...",
    "Create a category": "Kategorie anlegen",
    "There is no category.": "Es ist keine Kategorie vorhanden.",
    "Edit": "Bearbeiten",
    "Remove": "Entfernen",
    "No feed.": "Kein Abonnement.",
    "There is no article in this category.": "Es befindet sich kein Artikel in dieser Kategorie.",
    "Original": "Original-Artikel",
    "Mark this page as read": "Diese Seite als gelesen markieren",
    "not yet": "noch nicht",
    "just now": "gerade",
    "1 minute ago": "vor einer Minute",
    "%d minutes ago": "vor %d Minuten",
    "1 hour ago": "vor einer Stunde",
    "%d hours ago": "vor %d Stunden",
    "yesterday": "gestern",
    "%d days ago": "vor %d Tagen",
    "%d weeks ago": "vor %d Wochen",
    "%d months ago": "vor %d Monaten",
    "%d years ago": "vor %d Jahren",
    "Date": "Datum",
    "IP Address": "IP Adresse",
    "User Agent": "Benutzeragent",
    "Actions": "Aktionen",
    "Current session": "Aktuelle Sitzung",
    "Sessions": "Sitzungen",
    "Users": "Benutzer",
    "Add user": "Benutzer anlegen",
    "Choose a Subscription": "Abonnement auswählen",
    "Subscribe": "Abonnieren",
    "New Category": "Neue Kategorie",
    "Title": "Titel",
    "Save": "Speichern",
    "or": "oder",
    "cancel": "abbrechen",
    "New User": "Neuer Benutzer",
    "Confirmation": "Bestätigung",
    "Administrator": "Administrator",
    "Edit Category: %s": "Kategorie bearbeiten: %s",
    "Update": "Aktualisieren",
    "Edit Feed: %s": "Abonnement bearbeiten: %s",
    "There is no category!": "Es ist keine Kategorie vorhanden!",
    "Edit user: %s": "Benutzer bearbeiten: %s",
    "There is no article for this feed.": "Es existiert kein Artikel für dieses Abonnement.",
    "Add subscription": "Abonnement hinzufügen",
    "You don't have any subscription.": "Es sind keine Abonnements vorhanden",
    "Last check:": "Letzte Aktualisierung:",
    "Refresh": "Aktualisieren",
    "There is no history at the moment.": "Es exisitiert zur Zeit kein Verlauf.",
    "OPML file": "OPML Datei",
    "Sign In": "Anmeldung",
    "Sign in": "Anmelden",
    "Theme": "Thema",
    "Timezone": "Zeitzone",
    "Language": "Sprache",
    "There is no unread article.": "Es existiert kein ungelesener Artikel.",
    "You are the only user.": "Sie sind der einzige Benutzer.",
    "Last Login": "Letzte Anmeldung",
    "Yes": "Ja",
    "No": "Nein",
    "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 find any subscription.": "Es wurden keine Abonnements gefunden.",
    "The URL and the category are mandatory.": "Die URL und die Kategorie sind obligatorisch.",
    "All fields are mandatory.": "Alle Felder sind obligatorisch.",
    "Passwords are not the same.": "Passwörter stimmen nicht überein.",
    "You must use at least 6 characters.": "Wenigstens 6 Zeichen müssen genutzt werden.",
    "The username is mandatory.": "Der Benutzername ist obligatorisch.",
    "The username, theme, language and timezone fields are mandatory.": "Die Felder für Benutzername, Thema, Sprache und Zeitzone sind obligatorisch.",
    "The title is mandatory.": "Der Titel ist obligatorisch.",
    "About": "Über",
    "Version": "Version",
    "Version:": "Version:",
    "Build Date:": "Datum der Kompilierung:",
    "Author:": "Autor:",
    "Authors": "Autoren",
    "License:": "Lizenz:",
    "Attachments": "Anhänge",
    "Download": "Herunterladen",
    "Invalid username or password.": "Benutzername oder Passwort ungültig.",
    "Never": "Niemals",
    "Unable to execute request: %v": "Diese Anfrage konnte nicht ausgeführt werden: %v",
    "Last Parsing Error": "Letzter Analysefehler",
    "There is a problem with this feed": "Es gibt ein Problem mit diesem Abonnement",
    "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",
    "Unable to create this category.": "Diese Kategorie konnte nicht angelegt werden.",
    "yes": "ja",
    "no": "nein",
    "Are you sure?": "Sind Sie sicher?",
    "Work in progress...": "In Arbeit...",
    "This user already exists.": "Dieser Benutzer existiert bereits.",
    "This category already exists.": "Diese Kategorie existiert bereits.",
    "Unable to update this category.": "Diese Kategorie konnte nicht aktualisiert werden.",
    "Integrations": "Dienste",
    "Bookmarklet": "Bookmarklet",
    "Drag and drop this link to your bookmarks.": "Ziehen Sie diesen Link in Ihre Lesezeichen.",
    "This special link allows you to subscribe to a website directly by using a bookmark in your web browser.": "Dieser spezielle Link ermöglicht es, eine Webseite direkt über ein Lesezeichen im Browser zu abonnieren.",
    "Add to Miniflux": "Mit Miniflux abonnieren",
    "Refresh all feeds in background": "Alle Abonnements im Hintergrund aktualisieren",
    "Sign in with Google": "Anmeldung mit Google",
    "Unlink my Google account": "Google Konto abmelden",
    "Link my Google account": "Google Konto verknüpfen",
    "Category not found for this user": "Diese Kategorie existiert nicht für diesen Benutzer",
    "Invalid theme.": "Dieses Thema ist fehlerhaft.",
    "Entry Sorting": "Sortierung der Artikel",
    "Older entries first": "Älteste Artikel zuerst",
    "Recent entries first": "Neueste Artikel zuerst",
    "Saving...": "Speichern...",
    "Done!": "Erledigt!",
    "Save this article": "Diesen Artikel speichern",
    "Mark bookmark as unread": "Lesezeichen als ungelesen markieren",
    "Pinboard Tags": "Pinboard Tags",
    "Pinboard API Token": "Pinboard API Token",
    "Save articles to Pinboard": "Artikel in Pinboard speichern",
    "Save articles to Instapaper": "Artikel in Instapaper speichern",
    "Instapaper Username": "Instapaper Benutzername",
    "Instapaper Password": "Instapaper Passwort",
    "Activate Fever API": "Fever API aktivieren",
    "Fever Username": "Fever Benutzername",
    "Fever Password": "Fever Passwort",
    "Fetch original content": "Inhalt herunterladen",
    "Scraper Rules": "Extraktionsregeln",
    "Rewrite Rules": "Umschreiberegeln",
    "Preferences saved!": "Einstellungen gespeichert!",
    "Your external account is now linked!": "Ihr externes Konto wurde verknüpft!",
    "Save articles to Wallabag": "Artikel in Wallabag speichern",
    "Wallabag API Endpoint": "Wallabag URL",
    "Wallabag Client ID": "Wallabag Client-ID",
    "Wallabag Client Secret": "Wallabag Client-Secret",
    "Wallabag Username": "Wallabag Benutzername",
    "Wallabag Password": "Wallabag Passwort",
    "Save articles to Nunux Keeper": "Artikel in Nunux Keeper speichern",
    "Nunux Keeper API Endpoint": "Nunux Keeper API-Endpunkt",
    "Nunux Keeper API key": "Nunux Keeper API-Schlüssel",
    "Keyboard Shortcut: %s": "Tastenkürzel: %s",
    "Favorites": "Lesezeichen",
    "Star": "Lesezeichen hinzufügen",
    "Unstar": "Lesezeichen entfernen",
    "Starred": "Lesezeichen",
    "There is no bookmark at the moment.": "Es existiert derzeit kein Lesezeichen.",
    "Last checked:": "Zuletzt geprüft:",
    "ETag header:": "ETag-Kopfzeile:",
    "LastModified header:": "Zuletzt geändert:",
    "None": "Nicht verfügbar",
    "Keyboard Shortcuts": "Tastenkürzel",
    "Sections Navigation": "Navigation zwischen den Menüpunkten",
    "Go to unread": "Zu den ungelesenen Artikeln gehen",
    "Go to bookmarks": "Zu den Lesezeichen gehen",
    "Go to history": "Zum Verlauf gehen",
    "Go to feeds": "Zu den Abonnements gehen",
    "Go to categories": "Zu den Kategorien gehen",
    "Go to settings": "Zu den Einstellungen gehen",
    "Show keyboard shortcuts": "Liste der Tastenkürzel anzeigen",
    "Items Navigation": "Navigation zwischen den Artikeln",
    "Go to previous item": "Zum vorherigen Artikel gehen",
    "Go to next item": "Zum nächsten Artikel gehen",
    "Pages Navigation": "Navigation zwischen den Seiten",
    "Go to previous page": "Zur vorherigen Seite gehen",
    "Go to next page": "Zur nächsten Seite gehen",
    "Open selected item": "Gewählten Artikel öffnen",
    "Open original link": "Original-Artikel öffnen",
    "Toggle read/unread": "Gewählten Artikel als gelesen/ungelesen markieren",
    "Mark current page as read": "Aktuelle Seite als gelesen markieren",
    "Download original content": "Vollständigen Inhalt herunterladen",
    "Toggle bookmark": "Lesezeichen hinzufügen/entfernen",
    "Close modal dialog": "Liste der Tastenkürzel schließen",
    "Save article": "Artikel speichern",
    "There is already someone associated with this provider!": "Es ist bereits jemand mit diesem Anbieter assoziiert!",
    "There is already someone else with the same Fever username!": "Es existiert bereits jemand mit diesem Fever Benutzernamen!",
    "Mark all as read": "Alle als gelesen markieren",
    "This feed is empty": "Dieses Abonnement ist leer",
    "Flush history": "Verlauf leeren",
    "Site URL": "Webseite-URL",
    "Feed URL": "Abonnement-URL",
    "Logged as %s": "Angemeldet als %s",
    "Unread Items": "Ungelesen",
    "Change entry status": "Status des Artikels ändern",
    "Read": "Gelesen",
    "Fever API endpoint:": "Fever API Endpunkt:",
    "Miniflux API": "Miniflux API",
    "API Endpoint": "API Endpunkt",
    "Your account password": "Ihr Konto Passwort",
    "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",
    "Comments": "Kommentare",
    "View Comments": "Kommentare anzeigen",
    "This file is empty": "Diese Datei ist leer",
    "Your external account is now dissociated!": "Ihr externer Account ist jetzt getrennt!",
    "You must define a password otherwise you won't be able to login again.": "Sie müssen ein Passwort festlegen, sonst können Sie sich nicht erneut anmelden.",
    "Save articles to Pocket": "Artikel in Pocket speichern",
    "Connect your Pocket account": "Verbinden Sie Ihr Pocket Konto",
    "Pocket Consumer Key": "« Pocket Consumer Key »",
    "Pocket Access Token": "« Pocket Access Token »",
    "Your Pocket account is now linked!": "Ihr Pocket Konto ist jetzt verknüpft!",
    "Unable to fetch access token from Pocket!": "Zugriffstoken konnte nicht von Pocket abgerufen werden!",
    "Unable to fetch request token from Pocket!": "Anfrage-Token konnte nicht von Pocket abgerufen werden!",
    "Advanced Options": "Erweiterte Optionen",
    "Feed Username": "Benutzername des Abonnements",
    "Feed Password": "Passwort des Abonnements",
    "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",
    "Search Results": "Suchergebnisse",
    "There is no result for this search.": "Es gibt kein Ergebnis für diese Suche.",
    "Search...": "Suche...",
    "Set focus on search form": "Fokus auf das Suchformular setzen",
    "Search": "Suche",
    "Remove this feed": "Dieses Abonnement entfernen"
}
`,
	"en_US": `{
    "plural.feed.error_count": [
        "%d error",
        "%d errors"
    ],
    "plural.categories.feed_count": [
        "There is %d feed.",
        "There are %d feeds."
    ]
}`,
	"fr_FR": `{
    "plural.feed.error_count": [
        "%d erreur",
        "%d erreurs"
    ],
    "plural.categories.feed_count": [
        "Il y a %d abonnement.",
        "Il y a %d abonnements."
    ],
    "Username": "Nom d'utilisateur",
    "Password": "Mot de passe",
    "Unread": "Non lus",
    "History": "Historique",
    "Feeds": "Abonnements",
    "Categories": "Catégories",
    "Settings": "Réglages",
    "Logout": "Se déconnecter",
    "Next": "Suivant",
    "Previous": "Précédent",
    "New Subscription": "Nouvel Abonnment",
    "Import": "Importation",
    "Export": "Exportation",
    "There is no category. You must have at least one category.": "Il n'y a aucune catégorie. Vous devez avoir au moins une catégorie.",
    "URL": "URL",
    "Category": "Catégorie",
    "Find a subscription": "Trouver un abonnement",
    "Loading...": "Chargement...",
    "Create a category": "Créer une catégorie",
    "There is no category.": "Il n'y a aucune catégorie.",
    "Edit": "Modifier",
    "Remove": "Supprimer",
    "No feed.": "Aucun abonnement.",
    "There is no article in this category.": "Il n'y a aucun article dans cette catégorie.",
    "Original": "Original",
    "Mark this page as read": "Marquer cette page comme lu",
    "not yet": "pas encore",
    "just now": "à l'instant",
    "1 minute ago": "il y a une minute",
    "%d minutes ago": "il y a %d minutes",
    "1 hour ago": "il y a une heure",
    "%d hours ago": "il y a %d heures",
    "yesterday": "hier",
    "%d days ago": "il y a %d jours",
    "%d weeks ago": "il y a %d semaines",
    "%d months ago": "il y a %d mois",
    "%d years ago": "il y a %d ans",
    "Date": "Date",
    "IP Address": "Adresse IP",
    "User Agent": "Navigateur Web",
    "Actions": "Actions",
    "Current session": "Session actuelle",
    "Sessions": "Sessions",
    "Users": "Utilisateurs",
    "Add user": "Ajouter un utilisateur",
    "Choose a Subscription": "Choisissez un abonnement",
    "Subscribe": "S'abonner",
    "New Category": "Nouvelle Catégorie",
    "Title": "Titre",
    "Save": "Sauvegarder",
    "or": "ou",
    "cancel": "annuler",
    "New User": "Nouvel Utilisateur",
    "Confirmation": "Confirmation",
    "Administrator": "Administrateur",
    "Edit Category: %s": "Modification de la catégorie : %s",
    "Update": "Mettre à jour",
    "Edit Feed: %s": "Modification de l'abonnement : %s",
    "There is no category!": "Il n'y a aucune catégorie !",
    "Edit user: %s": "Modification de l'utilisateur : %s",
    "There is no article for this feed.": "Il n'y a aucun article pour cet abonnement.",
    "Add subscription": "Ajouter un abonnement",
    "You don't have any subscription.": "Vous n'avez aucun abonnement",
    "Last check:": "Dernière vérification :",
    "Refresh": "Actualiser",
    "There is no history at the moment.": "Il n'y a aucun historique pour le moment.",
    "OPML file": "Fichier OPML",
    "Sign In": "Connexion",
    "Sign in": "Connexion",
    "Theme": "Thème",
    "Timezone": "Fuseau horaire",
    "Language": "Langue",
    "There is no unread article.": "Il n'y a rien de nouveau à lire.",
    "You are the only user.": "Vous êtes le seul utilisateur.",
    "Last Login": "Dernière connexion",
    "Yes": "Oui",
    "No": "Non",
    "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 find any subscription.": "Impossible de trouver un abonnement.",
    "The URL and the category are mandatory.": "L'URL et la catégorie sont obligatoire.",
    "All fields are mandatory.": "Tous les champs sont obligatoire.",
    "Passwords are not the same.": "Les mots de passe ne sont pas les mêmes.",
    "You must use at least 6 characters.": "Vous devez utiliser au moins 6 caractères.",
    "The username is mandatory.": "Le nom d'utilisateur est obligatoire.",
    "The username, theme, language and timezone fields are mandatory.": "Le nom d'utilisateur, le thème, la langue et le fuseau horaire sont obligatoire.",
    "The title is mandatory.": "Le titre est obligatoire.",
    "About": "A propos",
    "Version": "Version",
    "Version:": "Version :",
    "Build Date:": "Date de la compilation :",
    "Author:": "Auteur :",
    "Authors": "Auteurs",
    "License:": "Licence :",
    "Attachments": "Pièces jointes",
    "Download": "Télécharger",
    "Invalid username or password.": "Mauvais identifiant ou mot de passe.",
    "Never": "Jamais",
    "Unable to execute request: %v": "Impossible d'exécuter cette requête: %v",
    "Last Parsing Error": "Dernière erreur d'analyse",
    "There is a problem with this feed": "Il y a un problème avec cet abonnement",
    "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",
    "Unable to create this category.": "Impossible de créer cette catégorie.",
    "yes": "oui",
    "no": "non",
    "Are you sure?": "Êtes-vous sûr ?",
    "Work in progress...": "Travail en cours...",
    "This user already exists.": "Cet utilisateur existe déjà.",
    "This category already exists.": "Cette catégorie existe déjà.",
    "Unable to update this category.": "Impossible de mettre à jour cette catégorie.",
    "Integrations": "Intégrations",
    "Bookmarklet": "Bookmarklet",
    "Drag and drop this link to your bookmarks.": "Glisser-déposer ce lien dans vos favoris.",
    "This special link allows you to subscribe to a website directly by using a bookmark in your web browser.": "Ce lien spécial vous permet de vous abonner à un site web directement en utilisant un marque page dans votre navigateur web.",
    "Add to Miniflux": "Ajouter à Miniflux",
    "Refresh all feeds in background": "Actualiser les abonnements en arrière-plan",
    "Sign in with Google": "Se connecter avec Google",
    "Unlink my Google account": "Dissocier mon compte Google",
    "Link my Google account": "Associer mon compte Google",
    "Category not found for this user": "Cette catégorie n'existe pas pour cet utilisateur",
    "Invalid theme.": "Le thème est invalide.",
    "Entry Sorting": "Ordre des éléments",
    "Older entries first": "Ancien éléments en premier",
    "Recent entries first": "Éléments récents en premier",
    "Saving...": "Enregistrement...",
    "Done!": "Terminé !",
    "Save this article": "Sauvegarder cet article",
    "Mark bookmark as unread": "Marquer le lien comme non lu",
    "Pinboard Tags": "Libellés de Pinboard",
    "Pinboard API Token": "Jeton de sécurité de l'API de Pinboard",
    "Save articles to Pinboard": "Sauvegarder les articles vers Pinboard",
    "Save articles to Instapaper": "Sauvegarder les articles vers Instapaper",
    "Instapaper Username": "Nom d'utilisateur Instapaper",
    "Instapaper Password": "Mot de passe Instapaper",
    "Activate Fever API": "Activer l'API de Fever",
    "Fever Username": "Nom d'utilisateur pour l'API de Fever",
    "Fever Password": "Mot de passe pour l'API de Fever",
    "Fetch original content": "Récupérer le contenu original",
    "Scraper Rules": "Règles pour récupérer le contenu original",
    "Rewrite Rules": "Règles de réécriture",
    "Preferences saved!": "Préférences sauvegardées !",
    "Your external account is now linked!": "Votre compte externe est maintenant associé !",
    "Save articles to Wallabag": "Sauvegarder les articles vers Wallabag",
    "Wallabag API Endpoint": "URL de l'API de Wallabag",
    "Wallabag Client ID": "Identifiant du client Wallabag",
    "Wallabag Client Secret": "Clé secrète du client Wallabag",
    "Wallabag Username": "Nom d'utilisateur de Wallabag",
    "Wallabag Password": "Mot de passe de Wallabag",
    "Save articles to Nunux Keeper": "Sauvegarder les articles vers Nunux Keeper",
    "Nunux Keeper API Endpoint": "URL de l'API de Nunux Keeper",
    "Nunux Keeper API key": "Clé d'API de Nunux Keeper",
    "Keyboard Shortcut: %s": "Raccourci clavier : %s",
    "Favorites": "Favoris",
    "Star": "Favoris",
    "Unstar": "Enlever favoris",
    "Starred": "Favoris",
    "There is no bookmark at the moment.": "Il n'y a aucun favoris pour le moment.",
    "Last checked:": "Dernière vérification :",
    "ETag header:": "En-tête ETag :",
    "LastModified header:": "En-tête LastModified :",
    "None": "Aucun/Aucune",
    "Keyboard Shortcuts": "Raccourcis clavier",
    "Sections Navigation": "Naviguation entre les sections",
    "Go to unread": "Aller aux éléments non lus",
    "Go to bookmarks": "Aller aux favoris",
    "Go to history": "Voir l'historique",
    "Go to feeds": "Voir les abonnements",
    "Go to categories": "Voir les catégories",
    "Go to settings": "Voir les réglages",
    "Show keyboard shortcuts": "Voir les raccourcis clavier",
    "Items Navigation": "Naviguation entre les éléments",
    "Go to previous item": "Élément précédent",
    "Go to next item": "Élément suivant",
    "Pages Navigation": "Naviguation entre les pages",
    "Go to previous page": "Page précédente",
    "Go to next page": "Page suivante",
    "Open selected item": "Ouvrir élément sélectionné",
    "Open original link": "Ouvrir lien original",
    "Toggle read/unread": "Basculer entre lu/non lu",
    "Mark current page as read": "Marquer la page actuelle comme lu",
    "Download original content": "Télécharger le contenu original",
    "Toggle bookmark": "Ajouter/Enlever favoris",
    "Close modal dialog": "Fermer la boite de dialogue",
    "Save article": "Sauvegarder l'article",
    "There is already someone associated with this provider!": "Il y a déjà quelqu'un d'associé avec ce provider !",
    "There is already someone else with the same Fever username!": "Il y a déjà quelqu'un d'autre avec le même nom d'utilisateur Fever !",
    "Mark all as read": "Tout marquer comme lu",
    "This feed is empty": "Cet abonnement est vide",
    "Flush history": "Supprimer l'historique",
    "Site URL": "URL du site web",
    "Feed URL": "URL du flux",
    "Logged as %s": "Connecté en tant que %s",
    "Unread Items": "Éléments non lus",
    "Change entry status": "Changer le statut de l'élément",
    "Read": "Lu",
    "Fever API endpoint:": "Point de terminaison de l'API Fever :",
    "Miniflux API": "API de Miniflux",
    "API Endpoint": "Point de terminaison de l'API",
    "Your account password": "Le mot de passe de votre compte",
    "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",
    "Comments": "Commentaires",
    "View Comments": "Voir les commentaires",
    "This file is empty": "Ce fichier est vide",
    "Your external account is now dissociated!": "Votre compte externe est maintenant dissocié !",
    "You must define a password otherwise you won't be able to login again.": "Vous devez définir un mot de passe sinon vous ne pourrez plus vous connecter par la suite.",
    "Save articles to Pocket": "Sauvegarder les articles vers Pocket",
    "Connect your Pocket account": "Connectez votre compte Pocket",
    "Pocket Consumer Key": "« Pocket Consumer Key »",
    "Pocket Access Token": "« Pocket Access Token »",
    "Your Pocket account is now linked!": "Votre compte Pocket est maintenant connecté !",
    "Unable to fetch access token from Pocket!": "Impossible de récupérer le jeton d'accès depuis Pocket !",
    "Unable to fetch request token from Pocket!": "Impossible de récupérer le jeton d'accès depuis Pocket !",
    "Advanced Options": "Options avancées",
    "Feed Username": "Nom d'utilisateur du flux",
    "Feed Password": "Mot de passe du flux",
    "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",
    "Search Results": "Résultats de la recherche",
    "There is no result for this search.": "Il n'y a aucun résultat pour cette recherche.",
    "Search...": "Recherche...",
    "Set focus on search form": "Mettre le focus sur le champ de recherche",
    "Search": "Recherche",
    "Remove this feed": "Supprimer cet abonnement"
}
`,
	"nl_NL": `{
    "plural.feed.error_count": [
        "%d error",
        "%d errors"
    ],
    "plural.categories.feed_count": [
        "Er is %d feed.",
        "Er zijn %d feeds."
    ],
    "Username": "Gebruikersnaam",
    "Password": "Wachtwoord",
    "Unread": "Ongelezen",
    "History": "Geschiedenis",
    "Feeds": "Feeds",
    "Categories": "Categorieën",
    "Settings": "Instellingen",
    "Logout": "Uitloggen",
    "Next": "Volgende",
    "Previous": "Vorige",
    "New Subscription": "Nieuwe feed",
    "Import": "Importeren",
    "Export": "Exporteren",
    "There is no category. You must have at least one category.": "Er zijn geen categorieën. Je moet op zijn minst één caterogie hebben.",
    "URL": "URL",
    "Category": "Categorie",
    "Find a subscription": "Feed zoeken",
    "Loading...": "Laden...",
    "Create a category": "Categorie toevoegen",
    "There is no category.": "Er zijn geen categorieën.",
    "Edit": "Bewerken",
    "Remove": "Verwijderen",
    "No feed.": "Geen feeds.",
    "There is no article in this category.": "Deze categorie bevat geen feeds.",
    "Original": "Origineel",
    "Mark this page as read": "Markeer deze pagina als gelezen",
    "not yet": "in de toekomst",
    "just now": "minder dan een minuut geleden",
    "1 minute ago": "een minuut geleden",
    "%d minutes ago": "%d minuten geleden",
    "1 hour ago": "een uur geleden",
    "%d hours ago": "%d uur geleden",
    "yesterday": "gisteren",
    "%d days ago": "%d dagen geleden",
    "%d weeks ago": "%d weken geleden",
    "%d months ago": "%d maanden geleden",
    "%d years ago": "%d jaar geleden",
    "Date": "Datum",
    "IP Address": "IP-adres",
    "User Agent": "User-agent",
    "Actions": "Acties",
    "Current session": "Huidige sessie",
    "Sessions": "Sessies",
    "Users": "Gebruikers",
    "Add user": "Gebruiker toevoegen",
    "Choose a Subscription": "Feed kiezen",
    "Subscribe": "Abboneren",
    "New Category": "Nieuwe categorie",
    "Title": "Naam",
    "Save": "Opslaan",
    "or": "of",
    "cancel": "annuleren",
    "New User": "Nieuwe gebruiker",
    "Confirmation": "Bevestig wachtwoord",
    "Administrator": "Administrator",
    "Edit Category: %s": "Bewerken van categorie: %s",
    "Update": "Updaten",
    "Edit Feed: %s": "Bewerken van feed: %s",
    "There is no category!": "Er zijn geen categorieën!",
    "Edit user: %s": "Gebruiker aanpassen: %s",
    "There is no article for this feed.": "Er zijn geen artikelen in deze feed.",
    "Add subscription": "Feed toevoegen",
    "You don't have any subscription.": "Je hebt nog geen feeds geabboneerd staan.",
    "Last check:": "Laatste update:",
    "Refresh": "Vernieuwen",
    "There is no history at the moment.": "Geschiedenis is op dit moment leeg.",
    "OPML file": "OPML-bestand",
    "Sign In": "Inloggen",
    "Theme": "Skin",
    "Timezone": "Tijdzone",
    "Language": "Taal",
    "There is no unread article.": "Er zijn geen ongelezen artikelen.",
    "You are the only user.": "Je bent de enige gebruiker.",
    "Last Login": "Laatste login",
    "Yes": "Ja",
    "No": "Nee",
    "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 find any subscription.": "Kon geen feeds vinden.",
    "The URL and the category are mandatory.": "The URL en de categorie zijn verplicht.",
    "All fields are mandatory.": "Alle velden moeten ingevuld zijn.",
    "Passwords are not the same.": "Wachtwoorden zijn niet hetzelfde.",
    "You must use at least 6 characters.": "Je moet minstens 6 tekens gebruiken.",
    "The username is mandatory.": "Gebruikersnaam is verplicht",
    "The username, theme, language and timezone fields are mandatory.": "Gebruikersnaam, skin, taal en tijdzone zijn verplicht.",
    "The title is mandatory.": "Naam van categorie is verplicht.",
    "About": "Over Miniflux",
    "Version": "Versie",
    "Version:": "Versie:",
    "Build Date:": "Datum build:",
    "Author:": "Auteur:",
    "Authors": "Auteurs",
    "License:": "Licentie:",
    "Attachments": "Bijlages",
    "Download": "Download",
    "Invalid username or password.": "Onjuiste gebruikersnaam of wachtwoord.",
    "Never": "Nooit",
    "Unable to execute request: %v": "Kon request niet uitvoeren: %v",
    "Last Parsing Error": "Laatste parse error",
    "There is a problem with this feed": "Er is een probleem met deze feed",
    "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.",
    "yes": "ja",
    "no": "nee",
    "Are you sure?": "Weet je het zeker?",
    "Work in progress...": "Bezig...",
    "This user already exists.": "Deze gebruiker bestaat al.",
    "This category already exists.": "Deze categorie bestaat al.",
    "Unable to update this category.": "Kon categorie niet updaten.",
    "Integrations": "Integraties",
    "Bookmarklet": "Bookmarklet",
    "Drag and drop this link to your bookmarks.": "Sleep deze link naar je bookmarks.",
    "This special link allows you to subscribe to a website directly by using a bookmark in your web browser.": "Gebruik deze link als bookmark in je browser om je direct te abboneren op een website.",
    "Add to Miniflux": "Toevoegen aan Miniflux",
    "Refresh all feeds in background": "Vernieuw alle feeds in de achtergrond",
    "Sign in with Google": "Inloggen via Google",
    "Unlink my Google account": "Ontkoppel mijn Google-account",
    "Link my Google account": "Koppel mijn Google-account",
    "Category not found for this user": "Categorie niet gevonden voor deze gebruiker",
    "Invalid theme.": "Ongeldige skin.",
    "Entry Sorting": "Volgorde van items",
    "Older entries first": "Oudere items eerst",
    "Recent entries first": "Recente items eerst",
    "Saving...": "Opslaag...",
    "Done!": "Klaar!",
    "Save this article": "Artikel opslaan",
    "Mark bookmark as unread": "Markeer bookmark als gelezen",
    "Pinboard Tags": "Pinboard tags",
    "Pinboard API Token": "Pinboard API token",
    "Save articles to Pinboard": "Artikelen opslaan naar Pinboard",
    "Save articles to Instapaper": "Artikelen opstaan naar Instapaper",
    "Instapaper Username": "Instapaper gebruikersnaam",
    "Instapaper Password": "Instapaper wachtwoord",
    "Activate Fever API": "Activeer Fever API",
    "Fever Username": "Fever gebruikersnaam",
    "Fever Password": "Fever wachtwoord",
    "Fetch original content": "Download originele content",
    "Scraper Rules": "Scraper regels",
    "Rewrite Rules": "Rewrite regels",
    "Preferences saved!": "Instellingen opgeslagen!",
    "Your external account is now linked!": "Je externe account is nu gekoppeld!",
    "Save articles to Wallabag": "Sauvegarder les articles vers Wallabag",
    "Wallabag API Endpoint": "Wallabag URL",
    "Wallabag Client ID": "Wallabag Client-ID",
    "Wallabag Client Secret": "Wallabag Client-Secret",
    "Wallabag Username": "Wallabag gebruikersnaam",
    "Wallabag Password": "Wallabag wachtwoord",
    "Save articles to Nunux Keeper": "Opslaan naar Nunux Keeper",
    "Nunux Keeper API Endpoint": "Nunux Keeper URL",
    "Nunux Keeper API key": "Nunux Keeper API-sleutel",
    "Keyboard Shortcut: %s": "Sneltoets: %s",
    "Favorites": "Favorieten",
    "Star": "Ster toevoegen",
    "Unstar": "Ster weghalen",
    "Starred": "Favorieten",
    "There is no bookmark at the moment.": "Er zijn op dit moment geen favorieten.",
    "Last checked:": "Laatste update:",
    "ETag header:": "ETAG-header:",
    "LastModified header:": "LastModified-header:",
    "None": "Geen",
    "Keyboard Shortcuts": "Sneltoetsen",
    "Sections Navigation": "Naviguatie tussen menu's",
    "Go to unread": "Ga naar ongelezen",
    "Go to bookmarks": "Ga naar favorieten",
    "Go to history": "Ga naar geschiedenis",
    "Go to feeds": "Ga naar feeds",
    "Go to categories": "Ga naar categorieën",
    "Go to settings": "Ga naar instellingen",
    "Show keyboard shortcuts": "Laat sneltoetsen zien",
    "Items Navigation": "Navigatie tussen items",
    "Go to previous item": "Vorige item",
    "Go to next item": "Volgende item",
    "Pages Navigation": "Naviguatie tussen pagina's",
    "Go to previous page": "Vorige pagina",
    "Go to next page": "Volgende pagina",
    "Open selected item": "Open geselecteerde link",
    "Open original link": "Open originele link",
    "Toggle read/unread": "Markeer gelezen/ongelezen",
    "Mark current page as read": "Markeer deze pagina als gelezen",
    "Download original content": "Download originele content",
    "Toggle bookmark": "Ster toevoegen/weghalen",
    "Close modal dialog": "Sluit dialoogscherm",
    "Save article": "Artikel opslaan",
    "There is already someone associated with this provider!": "Er is al iemand geregistreerd met deze provider!",
    "There is already someone else with the same Fever username!": "Er is al iemand met dezelfde Fever gebruikersnaam!",
    "Mark all as read": "Markeer alle items als gelezen",
    "This feed is empty": "Deze feed is leeg",
    "Flush history": "Verwijder geschiedenis",
    "Site URL": "Website URL",
    "Feed URL": "Feed URL",
    "Logged as %s": "Ingelogd als %s",
    "Unread Items": "Ongelezen items",
    "Change entry status": "Verander status van item",
    "Read": "Gelezen",
    "Fever API endpoint:": "Fever URL:",
    "Miniflux API": "Miniflux API",
    "API Endpoint": "API-URL",
    "Your account password": "Wachtwoord van jouw account",
    "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": `{
    "plural.feed.error_count": [
        "%d błąd",
        "%d błąd",
        "%d błędów"
    ],
    "plural.categories.feed_count": [
        "Jest %d kanał.",
        "Są %d kanały.",
        "Jest %d kanałów."
    ],
    "Username": "Nazwa użytkownika",
    "Password": "Hasło",
    "Unread": "Nieprzeczytane",
    "History": "Historia",
    "Feeds": "Kanały",
    "Categories": "Kategorie",
    "Settings": "Ustawienia",
    "Logout": "Wyloguj się",
    "Next": "Następny",
    "Previous": "Poprzedni",
    "New Subscription": "Nowa subskrypcja",
    "Import": "Importuj",
    "Export": "Eksportuj",
    "There is no category. You must have at least one category.": "Nie ma żadnej kategorii. Musisz mieć co najmniej jedną kategorię",
    "URL": "URL",
    "Category": "Kategoria",
    "Find a subscription": "Znajdź subskrypcję",
    "Loading...": "Ładowanie...",
    "Create a category": "Utwórz kategorię",
    "There is no category.": "Nie masz żadnej kategorii",
    "Edit": "Edytuj",
    "Remove": "Usuń",
    "No feed.": "Brak kanałów.",
    "There is no article in this category.": "W tej kategorii nie ma żadnych artykułów",
    "Original": "Oryginalny artykuł",
    "Mark this page as read": "Oznacz jako przeczytane",
    "not yet": "jeszcze nie",
    "just now": "przed chwilą",
    "1 minute ago": "minutę temu",
    "%d minutes ago": "%d minut temu",
    "1 hour ago": "godzinę temu",
    "%d hours ago": "%d godzin temu",
    "yesterday": "wczoraj",
    "%d days ago": "%d dni temu",
    "%d weeks ago": "%d tygodni temu",
    "%d months ago": "%d miesięcy temu",
    "%d years ago": "%d lat temu",
    "Date": "Data",
    "IP Address": "Adres IP",
    "User Agent": "User Agent",
    "Actions": "Działania",
    "Current session": "Bieżąca sesja",
    "Sessions": "Sesje",
    "Users": "Użytkownicy",
    "Add user": "Dodaj użytkownika",
    "Choose a Subscription": "Wybierz subskrypcję",
    "Subscribe": "Subskrypcja",
    "New Category": "Nowa kategoria",
    "Title": "Tytuł",
    "Save": "Zapisz",
    "or": "lub",
    "cancel": "anuluj",
    "New User": "Nowy użytkownik",
    "Confirmation": "Potwierdź",
    "Administrator": "Administrator",
    "Edit Category: %s": "Edycja Kategorii: %s",
    "Update": "Zaktualizuj",
    "Edit Feed: %s": "Edytuj kanał: %s",
    "There is no category!": "Nie ma żadnej kategorii!",
    "Edit user: %s": "Edytuj użytkownika: %s",
    "There is no article for this feed.": "Nie ma artykułu dla tego kanału.",
    "Add subscription": "Dodaj subskrypcję",
    "You don't have any subscription.": "Nie masz żadnej subskrypcji",
    "Last check:": "Ostatnia aktualizacja:",
    "Refresh": "Odśwież",
    "There is no history at the moment.": "Obecnie nie ma żadnej historii.",
    "OPML file": "Plik OPML",
    "Sign In": "Zaloguj się",
    "Sign in": "Zaloguj się",
    "Theme": "Wygląd",
    "Timezone": "Strefa czasowa",
    "Language": "Język",
    "There is no unread article.": "Nie ma żadnych nieprzeczytanych artykułów.",
    "You are the only user.": "Jesteś jedynym użytkownikiem.",
    "Last Login": "Ostatnie logowanie",
    "Yes": "Tak",
    "No": "Nie",
    "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 find any subscription.": "Nie znaleziono żadnych subskrypcji.",
    "The URL and the category are mandatory.": "URL i kategoria są obowiązkowe.",
    "All fields are mandatory.": "Wszystkie pola są obowiązkowe.",
    "Passwords are not the same.": "Hasła nie są identyczne.",
    "You must use at least 6 characters.": "Musisz użyć co najmniej 6 znaków.",
    "The username is mandatory.": "Nazwa użytkownika jest obowiązkowa.",
    "The username, theme, language and timezone fields are mandatory.": "Pola nazwy użytkownika, tematu, języka i strefy czasowej są obowiązkowe.",
    "The title is mandatory.": "Tytuł jest obowiązkowy.",
    "About": "O stronie",
    "Version": "Wersja",
    "Version:": "Wersja :",
    "Build Date:": "Data opracowania:",
    "Author:": "Autor:",
    "Authors": "Autorzy",
    "License:": "Licencja:",
    "Attachments": "Załączniki",
    "Download": "Pobierz",
    "Invalid username or password.": "Nieprawidłowa nazwa użytkownika lub hasło.",
    "Never": "Nigdy",
    "Unable to execute request: %v": "To polecenie nie mogło zostać wykonane: %v",
    "Last Parsing Error": "Ostatni błąd analizy",
    "There is a problem with this feed": "Z tym kanałem jest problem",
    "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",
    "Unable to create this category.": "Ta kategoria nie mogła zostać utworzona.",
    "yes": "tak",
    "no": "nie",
    "Are you sure?": "Czy jesteś pewny?",
    "Work in progress...": "W toku...",
    "This user already exists.": "Ten użytkownik już istnieje.",
    "This category already exists.": "Ta kategoria już istnieje.",
    "Unable to update this category.": "Ta kategoria nie mogła zostać zaktualizowana.",
    "Integrations": "Usługi",
    "Bookmarklet": "Bookmarklet",
    "Drag and drop this link to your bookmarks.": "Przeciągnij i upuść to łącze do zakładek.",
    "This special link allows you to subscribe to a website directly by using a bookmark in your web browser.": "Ten link umożliwia subskrypcję strony internetowej bezpośrednio za pomocą zakładki w przeglądarce internetowej",
    "Add to Miniflux": "Dodaj do Miniflux",
    "Refresh all feeds in background": "Odśwież wszystkie subskrypcje w tle",
    "Sign in with Google": "Zaloguj przez Google",
    "Unlink my Google account": "Odłącz moje konto Google",
    "Link my Google account": "Połącz z moim kontem Google",
    "Category not found for this user": "Kategoria nie znaleziona dla tego użytkownika",
    "Invalid theme.": "Ten temat jest nieprawidłowy.",
    "Entry Sorting": "Sortowanie artykułów",
    "Older entries first": "Najstarsze wpisy jako pierwsze",
    "Recent entries first": "Najnowsze wpisy jako pierwsze",
    "Saving...": "Zapisywanie...",
    "Done!": "Gotowe!",
    "Save this article": "Zapisz ten artykuł",
    "Mark bookmark as unread": "Zaznacz zakładkę jako nieprzeczytaną",
    "Pinboard Tags": "Pinboard Tags",
    "Pinboard API Token": "Token Pinboard API",
    "Save articles to Pinboard": "Zapisz artykuł w Pinboard",
    "Save articles to Instapaper": "Zapisz artykuł w Instapaper",
    "Instapaper Username": "Login do Instapaper",
    "Instapaper Password": "Hasło do Instapaper",
    "Activate Fever API": "Aktywuj Fever API",
    "Fever Username": "Login do Fever",
    "Fever Password": "Hasło do Fever",
    "Fetch original content": "Pobierz oryginalną treść",
    "Scraper Rules": "Zasady ekstrakcji",
    "Rewrite Rules": "Reguły zapisu",
    "Preferences saved!": "Ustawienia zapisane!",
    "Your external account is now linked!": "Twoje zewnętrzne konto jest teraz połączone!",
    "Save articles to Wallabag": "Zapisz artykuły do Wallabag",
    "Wallabag API Endpoint": "Wallabag URL",
    "Wallabag Client ID": "Wallabag Client-ID",
    "Wallabag Client Secret": "Wallabag Client Secret",
    "Wallabag Username": "Login do Wallabag",
    "Wallabag Password": "Hasło do Wallabag",
    "Save articles to Nunux Keeper": "Zapisz artykuly do Nunux Keeper",
    "Nunux Keeper API Endpoint": "Nunux Keeper URL",
    "Nunux Keeper API key": "Nunux Keeper API key",
    "Keyboard Shortcut: %s": "Skróty klawiszowe: %s",
    "Favorites": "Ulubione",
    "Star": "Oznacz gwiazdką",
    "Unstar": "Usuń gwiazdkę",
    "Starred": "Oznaczone gwiazdką",
    "There is no bookmark at the moment.": "Obecnie nie ma żadnych zakładek.",
    "Last checked:": "Ostatnio sprawdzone:",
    "ETag header:": "Nagłówek ETag:",
    "LastModified header:": "Ostatnio zmienione:",
    "None": "Brak",
    "Keyboard Shortcuts": "Skróty klawiszowe",
    "Sections Navigation": "Nawigacja między punktami menu",
    "Go to unread": "Przejdź do nieprzeczytanych artykułów",
    "Go to bookmarks": "Przejdź do zakładek",
    "Go to history": "Przejdź do historii",
    "Go to feeds": "Przejdź do kanałów",
    "Go to categories": "Przejdź do kategorii",
    "Go to settings": "Przejdź do ustawień",
    "Show keyboard shortcuts": "Pokaż listę skrótów klawiszowych",
    "Items Navigation": "Nawigacja między artykułami",
    "Go to previous item": "Przejdź do poprzedniego artykułu",
    "Go to next item": "Przejdź do następnego punktu artykułu",
    "Pages Navigation": "Nawigacja między stronami",
    "Go to previous page": "Przejdź do poprzedniej strony",
    "Go to next page": "Przejdź do następnej strony",
    "Open selected item": "Otwórz zaznaczony artykuł",
    "Open original link": "Otwórz oryginalny artykuł",
    "Toggle read/unread": "Oznacz jako przeczytane/nieprzeczytane",
    "Mark current page as read": "Zaznacz aktualną stronę jako przeczytaną",
    "Download original content": "Pobierz oryginalną zawartość",
    "Toggle bookmark": "Dodaj/usuń zakładki",
    "Close modal dialog": "Zamknij listę skrótów klawiszowych",
    "Save article": "Zapisz artykuł",
    "There is already someone associated with this provider!": "Już ktoś jest powiązany z tym dostawcą!",
    "There is already someone else with the same Fever username!": "Już ktoś inny używa tej nazwy użytkownika Fever!",
    "Mark all as read": "Oznacz wszystko jako przeczytane",
    "This feed is empty": "Ten kanał jest pusty",
    "Flush history": "Usuń historię",
    "Site URL": "URL strony",
    "Feed URL": "URL kanału",
    "Logged as %s": "Zalogowany jako %s",
    "Unread Items": "Nieprzeczytane",
    "Change entry status": "Zmień status artykułu",
    "Read": "Przeczytane",
    "Fever API endpoint:": "Fever API endpoint:",
    "Miniflux API": "Miniflux API",
    "API Endpoint": "API endpoint",
    "Your account password": "Hasło konta",
    "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"
}
`,
	"zh_CN": `{
    "plural.feed.error_count": [
        "%d 错误",
        "%d 错误"
    ],
    "plural.categories.feed_count": [
        "有 %d 个源.",
        "有 %d 个源."
    ],
    "Username": "用户名",
    "Password": "密码",
    "Unread": "未读",
    "History": "历史",
    "Feeds": "源",
    "Categories": "分类",
    "Settings": "设置",
    "Logout": "登出",
    "Next": "下一页",
    "Previous": "上一页",
    "New Subscription": "新订阅",
    "Import": "导入",
    "Export": "导出",
    "There is no category. You must have at least one category.": "目前没有分类.需要有一个已有的分类存在.",
    "URL": "URL",
    "Category": "分类",
    "Find a subscription": "寻找订阅",
    "Loading...": "载入中...",
    "Create a category": "新建分类",
    "There is no category.": "目前没有分类.",
    "Edit": "编辑",
    "Remove": "删除",
    "No feed.": "没有源.",
    "There is no article in this category.": "该分类下没有文章.",
    "Original": "原始链接",
    "Mark this page as read": "标记为已读",
    "not yet": "尚未",
    "just now": "刚刚",
    "1 minute ago": "1 分钟前",
    "%d minutes ago": "%d 分钟前",
    "1 hour ago": "1 小时前",
    "%d hours ago": "%d 小时前",
    "yesterday": "昨天",
    "%d days ago": "%d 天前",
    "%d weeks ago": "%d 周前",
    "%d months ago": "%d 月前",
    "%d years ago": "%d 年前",
    "Date": "日期",
    "IP Address": "IP地址",
    "User Agent": "User Agent",
    "Actions": "操作",
    "Current session": "当前会话",
    "Sessions": "会话",
    "Users": "用户",
    "Add user": "新建用户",
    "Choose a Subscription": "选择一个订阅",
    "Subscribe": "订阅",
    "New Category": "新分类",
    "Title": "标题",
    "Save": "保存",
    "or": "或",
    "cancel": "取消",
    "New User": "新用户",
    "Confirmation": "确认",
    "Administrator": "管理员",
    "Edit Category: %s": "编辑分类 : %s",
    "Update": "更新",
    "Edit Feed: %s": "编辑源 : %s",
    "There is no category!": "没有分类!",
    "Edit user: %s": "编辑用户: %s",
    "There is no article for this feed.": "这个源中没有文章.",
    "Add subscription": "新增订阅",
    "You don't have any subscription.": "当前没有订阅",
    "Last check:": "最后检查时间:",
    "Refresh": "更新",
    "There is no history at the moment.": "当前没有历史.",
    "OPML file": "OPML 文件",
    "Sign In": "登陆",
    "Sign in": "登陆",
    "Theme": "主题",
    "Timezone": "时区",
    "Language": "语言",
    "There is no unread article.": "目前没有未读文章.",
    "You are the only user.": "你是目前仅有的用户.",
    "Last Login": "最后登录时间",
    "Yes": "是",
    "No": "否",
    "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 find any subscription.": "找不到任何订阅.",
    "The URL and the category are mandatory.": "必须填写URL和分类.",
    "All fields are mandatory.": "必须填写全部信息.",
    "Passwords are not the same.": "两次输入的密码不同.",
    "You must use at least 6 characters.": "请至少使用6个字符.",
    "The username is mandatory.": "必须填写用户名.",
    "The username, theme, language and timezone fields are mandatory.": "必须填写用户名,主题,语言和时区.",
    "The title is mandatory.": "必须填写标题.",
    "About": "关于",
    "Version": "版本",
    "Version:": "版本:",
    "Build Date:": "构建日期:",
    "Author:": "作者:",
    "Authors": "作者",
    "License:": "协议:",
    "Attachments": "附件",
    "Download": "下载",
    "Invalid username or password.": "用户名或密码无效.",
    "Never": "永不",
    "Unable to execute request: %v": "无法执行这一请求: %v",
    "Last Parsing Error": "最后一次解析错误",
    "There is a problem with this feed": "这一源存在问题",
    "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",
    "Unable to create this category.": "无法建立这个分类.",
    "yes": "是",
    "no": "否",
    "Are you sure?": "您确认吗?",
    "Work in progress...": "执行中...",
    "This user already exists.": "用户已存在.",
    "This category already exists.": "分类已存在.",
    "Unable to update this category.": "无法更新该分类.",
    "Integrations": "集成",
    "Bookmarklet": "书签小应用",
    "Drag and drop this link to your bookmarks.": "拖动这个链接到书签.",
    "This special link allows you to subscribe to a website directly by using a bookmark in your web browser.": "你可以打开这个特殊的书签来直接订阅网站.",
    "Add to Miniflux": "新增到Miniflux",
    "Refresh all feeds in background": "在后台更新全部源",
    "Sign in with Google": "使用Google登陆",
    "Unlink my Google account": "去除Google账号关联",
    "Link my Google account": "关联我的Google账户",
    "Category not found for this user": "未找到该用户的这一分类",
    "Invalid theme.": "无效的主题.",
    "Entry Sorting": "内容排序",
    "Older entries first": "旧->新",
    "Recent entries first": "新->旧",
    "Saving...": "保存中",
    "Done!": "完成!",
    "Save this article": "保存这篇文章",
    "Mark bookmark as unread": "标记为未读",
    "Pinboard Tags": "Pinboard 标签",
    "Pinboard API Token": "Pinboard API Token",
    "Save articles to Pinboard": "保存文章到Pinboard",
    "Save articles to Instapaper": "保存文章到Instapaper",
    "Instapaper Username": "Instapaper 用户名",
    "Instapaper Password": "Instapaper 密码",
    "Activate Fever API": "启用 Fever API",
    "Fever Username": "Fever 用户名",
    "Fever Password": "Fever 密码",
    "Fetch original content": "抓取原内容",
    "Scraper Rules": "Scraper规则",
    "Rewrite Rules": "重写规则",
    "Preferences saved!": "偏好已存储!",
    "Your external account is now linked!": "您的外部账号已关联!",
    "Save articles to Wallabag": "保存文章到Wallabag",
    "Wallabag API Endpoint": "Wallabag URL",
    "Wallabag Client ID": "Wallabag 客户端ID",
    "Wallabag Client Secret": "Wallabag 客户端Secret",
    "Wallabag Username": "Wallabag 用户名",
    "Wallabag Password": "Wallabag 密码",
    "Save articles to Nunux Keeper": "保存文章到Nunux Keeper",
    "Nunux Keeper API Endpoint": "Nunux Keeper API Endpoint",
    "Nunux Keeper API key": "Nunux Keeper API key",
    "Keyboard Shortcut: %s": "快捷键: %s",
    "Favorites": "收藏",
    "Star": "标记星标",
    "Unstar": "去掉星标",
    "Starred": "星标",
    "There is no bookmark at the moment.": "当前没有书签.",
    "Last checked:": "上次检查:",
    "ETag header:": "ETag header:",
    "LastModified header:": "最后修改的Header:",
    "None": "无",
    "Keyboard Shortcuts": "快捷键",
    "Sections Navigation": "分区导航",
    "Go to unread": "去往未读",
    "Go to bookmarks": "去往书签",
    "Go to history": "去往历史",
    "Go to feeds": "去往源",
    "Go to categories": "去往分类",
    "Go to settings": "去往设定",
    "Show keyboard shortcuts": "显示快捷键",
    "Items Navigation": "条目导航",
    "Go to previous item": "上一条目",
    "Go to next item": "下一条目",
    "Pages Navigation": "页面导航",
    "Go to previous page": "上一页",
    "Go to next page": "下一页",
    "Open selected item": "打开选定的条目",
    "Open original link": "打开原始链接",
    "Toggle read/unread": "切换已读/未读状态",
    "Mark current page as read": "标记当前",
    "Download original content": "下载原始内容",
    "Toggle bookmark": "切换收藏状态",
    "Close modal dialog": "关闭模态对话窗口",
    "Save article": "保存文章",
    "There is already someone associated with this provider!": "该Provider已被关联!",
    "There is already someone else with the same Fever username!": "Fever用户名已被占用!",
    "Mark all as read": "全标记为已读",
    "This feed is empty": "该源是空的",
    "Flush history": "清理历史",
    "Site URL": "站点URL",
    "Feed URL": "源URL",
    "Logged as %s": "当前登录 %s",
    "Unread Items": "未读条目",
    "Change entry status": "更改状态",
    "Read": "标为已读",
    "Fever API endpoint:": "Fever API Endpoint:",
    "Miniflux API": "Miniflux API",
    "API Endpoint": "API Endpoint",
    "Your account password": "您账户的密码",
    "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": "5cf27c415ed2e0012f8d8e7a4ac7844436af9ac27a767fb0246e2ab8c588b240",
	"en_US": "6fe95384260941e8a5a3c695a655a932e0a8a6a572c1e45cb2b1ae8baa01b897",
	"fr_FR": "c61316e5862fc9d7118bb555679714200b3a5c560241e755ade8f85fcdcb3fdb",
	"nl_NL": "05cca4936bd3b0fa44057c4dab64acdef3aed32fbb682393f254cfe2f686ef1f",
	"pl_PL": "2295f35a98c8f60cfc6bab241d26b224c06979cc9ca3740bb89c63c7596a0431",
	"zh_CN": "f5fb0a9b7336c51e74d727a2fb294bab3514e3002376da7fd904e0d7caed1a1c",
}