translations.go 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182
  1. // Code generated by go generate; DO NOT EDIT.
  2. package locale // import "miniflux.app/locale"
  3. var translations = map[string]string{
  4. "de_DE": `{
  5. "plural.feed.error_count": [
  6. "%d Fehler",
  7. "%d Fehler"
  8. ],
  9. "plural.categories.feed_count": [
  10. "Es gibt %d Abonnement.",
  11. "Es gibt %d Abonnements."
  12. ],
  13. "Username": "Benutzername",
  14. "Password": "Passwort",
  15. "Unread": "Ungelesen",
  16. "History": "Verlauf",
  17. "Feeds": "Abonnements",
  18. "Categories": "Kategorien",
  19. "Settings": "Einstellungen",
  20. "Logout": "Abmelden",
  21. "Next": "Nächste",
  22. "Previous": "Vorherige",
  23. "New Subscription": "Neues Abonnement",
  24. "Import": "Importieren",
  25. "Export": "Exportieren",
  26. "There is no category. You must have at least one category.": "Es ist keine Kategorie vorhanden. Wenigstens eine Kategorie muss angelegt sein.",
  27. "URL": "URL",
  28. "Category": "Kategorie",
  29. "Find a subscription": "Abonnement suchen",
  30. "Loading...": "Lade...",
  31. "Create a category": "Kategorie anlegen",
  32. "There is no category.": "Es ist keine Kategorie vorhanden.",
  33. "Edit": "Bearbeiten",
  34. "Remove": "Entfernen",
  35. "No feed.": "Kein Abonnement.",
  36. "There is no article in this category.": "Es befindet sich kein Artikel in dieser Kategorie.",
  37. "Original": "Original-Artikel",
  38. "Mark this page as read": "Diese Seite als gelesen markieren",
  39. "not yet": "noch nicht",
  40. "just now": "gerade",
  41. "1 minute ago": "vor einer Minute",
  42. "%d minutes ago": "vor %d Minuten",
  43. "1 hour ago": "vor einer Stunde",
  44. "%d hours ago": "vor %d Stunden",
  45. "yesterday": "gestern",
  46. "%d days ago": "vor %d Tagen",
  47. "%d weeks ago": "vor %d Wochen",
  48. "%d months ago": "vor %d Monaten",
  49. "%d years ago": "vor %d Jahren",
  50. "Date": "Datum",
  51. "IP Address": "IP Adresse",
  52. "User Agent": "Benutzeragent",
  53. "Actions": "Aktionen",
  54. "Current session": "Aktuelle Sitzung",
  55. "Sessions": "Sitzungen",
  56. "Users": "Benutzer",
  57. "Add user": "Benutzer anlegen",
  58. "Choose a Subscription": "Abonnement auswählen",
  59. "Subscribe": "Abonnieren",
  60. "New Category": "Neue Kategorie",
  61. "Title": "Titel",
  62. "Save": "Speichern",
  63. "or": "oder",
  64. "cancel": "abbrechen",
  65. "New User": "Neuer Benutzer",
  66. "Confirmation": "Bestätigung",
  67. "Administrator": "Administrator",
  68. "Edit Category: %s": "Kategorie bearbeiten: %s",
  69. "Update": "Aktualisieren",
  70. "Edit Feed: %s": "Abonnement bearbeiten: %s",
  71. "There is no category!": "Es ist keine Kategorie vorhanden!",
  72. "Edit user: %s": "Benutzer bearbeiten: %s",
  73. "There is no article for this feed.": "Es existiert kein Artikel für dieses Abonnement.",
  74. "Add subscription": "Abonnement hinzufügen",
  75. "You don't have any subscription.": "Es sind keine Abonnements vorhanden",
  76. "Last check:": "Letzte Aktualisierung:",
  77. "Refresh": "Aktualisieren",
  78. "There is no history at the moment.": "Es exisitiert zur Zeit kein Verlauf.",
  79. "OPML file": "OPML Datei",
  80. "Sign In": "Anmeldung",
  81. "Sign in": "Anmelden",
  82. "Theme": "Thema",
  83. "Timezone": "Zeitzone",
  84. "Language": "Sprache",
  85. "There is no unread article.": "Es existiert kein ungelesener Artikel.",
  86. "You are the only user.": "Sie sind der einzige Benutzer.",
  87. "Last Login": "Letzte Anmeldung",
  88. "Yes": "Ja",
  89. "No": "Nein",
  90. "This feed already exists (%s)": "Diese Abonnement existiert bereits (%s)",
  91. "Unable to fetch feed (Status Code = %d)": "Abonnement konnte nicht abgerufen werden (code=%d)",
  92. "Unable to open this link: %v": "Dieser Link konnte nicht geöffnet werden: %v",
  93. "Unable to analyze this page: %v": "Diese Seite konnte nicht analysiert werden: %v",
  94. "Unable to find any subscription.": "Es wurden keine Abonnements gefunden.",
  95. "The URL and the category are mandatory.": "Die URL und die Kategorie sind obligatorisch.",
  96. "All fields are mandatory.": "Alle Felder sind obligatorisch.",
  97. "Passwords are not the same.": "Passwörter stimmen nicht überein.",
  98. "You must use at least 6 characters.": "Wenigstens 6 Zeichen müssen genutzt werden.",
  99. "The username is mandatory.": "Der Benutzername ist obligatorisch.",
  100. "The username, theme, language and timezone fields are mandatory.": "Die Felder für Benutzername, Thema, Sprache und Zeitzone sind obligatorisch.",
  101. "The title is mandatory.": "Der Titel ist obligatorisch.",
  102. "About": "Über",
  103. "Version": "Version",
  104. "Version:": "Version:",
  105. "Build Date:": "Datum der Kompilierung:",
  106. "Author:": "Autor:",
  107. "Authors": "Autoren",
  108. "License:": "Lizenz:",
  109. "Attachments": "Anhänge",
  110. "Download": "Herunterladen",
  111. "Invalid username or password.": "Benutzername oder Passwort ungültig.",
  112. "Never": "Niemals",
  113. "Unable to execute request: %v": "Diese Anfrage konnte nicht ausgeführt werden: %v",
  114. "Last Parsing Error": "Letzter Analysefehler",
  115. "There is a problem with this feed": "Es gibt ein Problem mit diesem Abonnement",
  116. "Unable to parse OPML file: %q": "OPML Datei konnte nicht gelesen werden: %q",
  117. "Unable to parse RSS feed: %q": "RSS Abonnement konnte nicht gelesen werden: %q",
  118. "Unable to parse Atom feed: %q": "Atom Abonnement konnte nicht gelesen werden: %q",
  119. "Unable to parse JSON feed: %q": "JSON Abonnement konnte nicht gelesen werden: %q",
  120. "Unable to parse RDF feed: %q": "RDF Abonnement konnte nicht gelesen werden: %q",
  121. "Unable to normalize encoding: %q": "Zeichenkodierung konnte nicht normalisiert werden: %q",
  122. "Unable to create this category.": "Diese Kategorie konnte nicht angelegt werden.",
  123. "yes": "ja",
  124. "no": "nein",
  125. "Are you sure?": "Sind Sie sicher?",
  126. "Work in progress...": "In Arbeit...",
  127. "This user already exists.": "Dieser Benutzer existiert bereits.",
  128. "This category already exists.": "Diese Kategorie existiert bereits.",
  129. "Unable to update this category.": "Diese Kategorie konnte nicht aktualisiert werden.",
  130. "Integrations": "Dienste",
  131. "Bookmarklet": "Bookmarklet",
  132. "Drag and drop this link to your bookmarks.": "Ziehen Sie diesen Link in Ihre Lesezeichen.",
  133. "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.",
  134. "Add to Miniflux": "Mit Miniflux abonnieren",
  135. "Refresh all feeds in background": "Alle Abonnements im Hintergrund aktualisieren",
  136. "Sign in with Google": "Anmeldung mit Google",
  137. "Unlink my Google account": "Google Konto abmelden",
  138. "Link my Google account": "Google Konto verknüpfen",
  139. "Category not found for this user": "Diese Kategorie existiert nicht für diesen Benutzer",
  140. "Invalid theme.": "Dieses Thema ist fehlerhaft.",
  141. "Entry Sorting": "Sortierung der Artikel",
  142. "Older entries first": "Älteste Artikel zuerst",
  143. "Recent entries first": "Neueste Artikel zuerst",
  144. "Saving...": "Speichern...",
  145. "Done!": "Erledigt!",
  146. "Save this article": "Diesen Artikel speichern",
  147. "Mark bookmark as unread": "Lesezeichen als ungelesen markieren",
  148. "Pinboard Tags": "Pinboard Tags",
  149. "Pinboard API Token": "Pinboard API Token",
  150. "Save articles to Pinboard": "Artikel in Pinboard speichern",
  151. "Save articles to Instapaper": "Artikel in Instapaper speichern",
  152. "Instapaper Username": "Instapaper Benutzername",
  153. "Instapaper Password": "Instapaper Passwort",
  154. "Activate Fever API": "Fever API aktivieren",
  155. "Fever Username": "Fever Benutzername",
  156. "Fever Password": "Fever Passwort",
  157. "Fetch original content": "Inhalt herunterladen",
  158. "Scraper Rules": "Extraktionsregeln",
  159. "Rewrite Rules": "Umschreiberegeln",
  160. "Preferences saved!": "Einstellungen gespeichert!",
  161. "Your external account is now linked!": "Ihr externes Konto wurde verknüpft!",
  162. "Save articles to Wallabag": "Artikel in Wallabag speichern",
  163. "Wallabag API Endpoint": "Wallabag URL",
  164. "Wallabag Client ID": "Wallabag Client-ID",
  165. "Wallabag Client Secret": "Wallabag Client-Secret",
  166. "Wallabag Username": "Wallabag Benutzername",
  167. "Wallabag Password": "Wallabag Passwort",
  168. "Save articles to Nunux Keeper": "Artikel in Nunux Keeper speichern",
  169. "Nunux Keeper API Endpoint": "Nunux Keeper API-Endpunkt",
  170. "Nunux Keeper API key": "Nunux Keeper API-Schlüssel",
  171. "Keyboard Shortcut: %s": "Tastenkürzel: %s",
  172. "Favorites": "Lesezeichen",
  173. "Star": "Lesezeichen hinzufügen",
  174. "Unstar": "Lesezeichen entfernen",
  175. "Starred": "Lesezeichen",
  176. "There is no bookmark at the moment.": "Es existiert derzeit kein Lesezeichen.",
  177. "Last checked:": "Zuletzt geprüft:",
  178. "ETag header:": "ETag-Kopfzeile:",
  179. "LastModified header:": "Zuletzt geändert:",
  180. "None": "Nicht verfügbar",
  181. "Keyboard Shortcuts": "Tastenkürzel",
  182. "Sections Navigation": "Navigation zwischen den Menüpunkten",
  183. "Go to unread": "Zu den ungelesenen Artikeln gehen",
  184. "Go to bookmarks": "Zu den Lesezeichen gehen",
  185. "Go to history": "Zum Verlauf gehen",
  186. "Go to feeds": "Zu den Abonnements gehen",
  187. "Go to categories": "Zu den Kategorien gehen",
  188. "Go to settings": "Zu den Einstellungen gehen",
  189. "Show keyboard shortcuts": "Liste der Tastenkürzel anzeigen",
  190. "Items Navigation": "Navigation zwischen den Artikeln",
  191. "Go to previous item": "Zum vorherigen Artikel gehen",
  192. "Go to next item": "Zum nächsten Artikel gehen",
  193. "Pages Navigation": "Navigation zwischen den Seiten",
  194. "Go to previous page": "Zur vorherigen Seite gehen",
  195. "Go to next page": "Zur nächsten Seite gehen",
  196. "Open selected item": "Gewählten Artikel öffnen",
  197. "Open original link": "Original-Artikel öffnen",
  198. "Toggle read/unread": "Gewählten Artikel als gelesen/ungelesen markieren",
  199. "Mark current page as read": "Aktuelle Seite als gelesen markieren",
  200. "Download original content": "Vollständigen Inhalt herunterladen",
  201. "Toggle bookmark": "Lesezeichen hinzufügen/entfernen",
  202. "Close modal dialog": "Liste der Tastenkürzel schließen",
  203. "Save article": "Artikel speichern",
  204. "There is already someone associated with this provider!": "Es ist bereits jemand mit diesem Anbieter assoziiert!",
  205. "There is already someone else with the same Fever username!": "Es existiert bereits jemand mit diesem Fever Benutzernamen!",
  206. "Mark all as read": "Alle als gelesen markieren",
  207. "This feed is empty": "Dieses Abonnement ist leer",
  208. "Flush history": "Verlauf leeren",
  209. "Site URL": "Webseite-URL",
  210. "Feed URL": "Abonnement-URL",
  211. "Logged as %s": "Angemeldet als %s",
  212. "Unread Items": "Ungelesen",
  213. "Change entry status": "Status des Artikels ändern",
  214. "Read": "Gelesen",
  215. "Fever API endpoint:": "Fever API Endpunkt:",
  216. "Miniflux API": "Miniflux API",
  217. "API Endpoint": "API Endpunkt",
  218. "Your account password": "Ihr Konto Passwort",
  219. "This web page is empty": "Diese Webseite ist leer",
  220. "Invalid SSL certificate (original error: %q)": "Ungültiges SSL-Zertifikat (ursprünglicher Fehler: %q)",
  221. "This website is temporarily unreachable (original error: %q)": "Diese Webseite ist vorübergehend nicht erreichbar (ursprünglicher Fehler: %q)",
  222. "This website is permanently unreachable (original error: %q)": "Diese Webseite ist dauerhaft nicht erreichbar (ursprünglicher Fehler: %q)",
  223. "Website unreachable, the request timed out after %d seconds": "Webseite nicht erreichbar, die Anfrage endete nach %d Sekunden",
  224. "Comments": "Kommentare",
  225. "View Comments": "Kommentare anzeigen",
  226. "This file is empty": "Diese Datei ist leer",
  227. "Your external account is now dissociated!": "Ihr externer Account ist jetzt getrennt!",
  228. "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.",
  229. "Save articles to Pocket": "Artikel in Pocket speichern",
  230. "Connect your Pocket account": "Verbinden Sie Ihr Pocket Konto",
  231. "Pocket Consumer Key": "« Pocket Consumer Key »",
  232. "Pocket Access Token": "« Pocket Access Token »",
  233. "Your Pocket account is now linked!": "Ihr Pocket Konto ist jetzt verknüpft!",
  234. "Unable to fetch access token from Pocket!": "Zugriffstoken konnte nicht von Pocket abgerufen werden!",
  235. "Unable to fetch request token from Pocket!": "Anfrage-Token konnte nicht von Pocket abgerufen werden!",
  236. "Advanced Options": "Erweiterte Optionen",
  237. "Feed Username": "Benutzername des Abonnements",
  238. "Feed Password": "Passwort des Abonnements",
  239. "You are not authorized to access this resource (invalid username/password)": "Sie sind nicht berechtigt, auf diese Ressource zuzugreifen (Benutzername/Passwort ungültig)",
  240. "Unable to fetch this resource (Status Code = %d)": "Ressource konnte nicht abgerufen werden (code=%d)",
  241. "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",
  242. "Search Results": "Suchergebnisse",
  243. "There is no result for this search.": "Es gibt kein Ergebnis für diese Suche.",
  244. "Search...": "Suche...",
  245. "Set focus on search form": "Fokus auf das Suchformular setzen",
  246. "Search": "Suche"
  247. }
  248. `,
  249. "en_US": `{
  250. "plural.feed.error_count": [
  251. "%d error",
  252. "%d errors"
  253. ],
  254. "plural.categories.feed_count": [
  255. "There is %d feed.",
  256. "There are %d feeds."
  257. ]
  258. }`,
  259. "fr_FR": `{
  260. "plural.feed.error_count": [
  261. "%d erreur",
  262. "%d erreurs"
  263. ],
  264. "plural.categories.feed_count": [
  265. "Il y a %d abonnement.",
  266. "Il y a %d abonnements."
  267. ],
  268. "Username": "Nom d'utilisateur",
  269. "Password": "Mot de passe",
  270. "Unread": "Non lus",
  271. "History": "Historique",
  272. "Feeds": "Abonnements",
  273. "Categories": "Catégories",
  274. "Settings": "Réglages",
  275. "Logout": "Se déconnecter",
  276. "Next": "Suivant",
  277. "Previous": "Précédent",
  278. "New Subscription": "Nouvel Abonnment",
  279. "Import": "Importation",
  280. "Export": "Exportation",
  281. "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.",
  282. "URL": "URL",
  283. "Category": "Catégorie",
  284. "Find a subscription": "Trouver un abonnement",
  285. "Loading...": "Chargement...",
  286. "Create a category": "Créer une catégorie",
  287. "There is no category.": "Il n'y a aucune catégorie.",
  288. "Edit": "Modifier",
  289. "Remove": "Supprimer",
  290. "No feed.": "Aucun abonnement.",
  291. "There is no article in this category.": "Il n'y a aucun article dans cette catégorie.",
  292. "Original": "Original",
  293. "Mark this page as read": "Marquer cette page comme lu",
  294. "not yet": "pas encore",
  295. "just now": "à l'instant",
  296. "1 minute ago": "il y a une minute",
  297. "%d minutes ago": "il y a %d minutes",
  298. "1 hour ago": "il y a une heure",
  299. "%d hours ago": "il y a %d heures",
  300. "yesterday": "hier",
  301. "%d days ago": "il y a %d jours",
  302. "%d weeks ago": "il y a %d semaines",
  303. "%d months ago": "il y a %d mois",
  304. "%d years ago": "il y a %d ans",
  305. "Date": "Date",
  306. "IP Address": "Adresse IP",
  307. "User Agent": "Navigateur Web",
  308. "Actions": "Actions",
  309. "Current session": "Session actuelle",
  310. "Sessions": "Sessions",
  311. "Users": "Utilisateurs",
  312. "Add user": "Ajouter un utilisateur",
  313. "Choose a Subscription": "Choisissez un abonnement",
  314. "Subscribe": "S'abonner",
  315. "New Category": "Nouvelle Catégorie",
  316. "Title": "Titre",
  317. "Save": "Sauvegarder",
  318. "or": "ou",
  319. "cancel": "annuler",
  320. "New User": "Nouvel Utilisateur",
  321. "Confirmation": "Confirmation",
  322. "Administrator": "Administrateur",
  323. "Edit Category: %s": "Modification de la catégorie : %s",
  324. "Update": "Mettre à jour",
  325. "Edit Feed: %s": "Modification de l'abonnement : %s",
  326. "There is no category!": "Il n'y a aucune catégorie !",
  327. "Edit user: %s": "Modification de l'utilisateur : %s",
  328. "There is no article for this feed.": "Il n'y a aucun article pour cet abonnement.",
  329. "Add subscription": "Ajouter un abonnement",
  330. "You don't have any subscription.": "Vous n'avez aucun abonnement",
  331. "Last check:": "Dernière vérification :",
  332. "Refresh": "Actualiser",
  333. "There is no history at the moment.": "Il n'y a aucun historique pour le moment.",
  334. "OPML file": "Fichier OPML",
  335. "Sign In": "Connexion",
  336. "Sign in": "Connexion",
  337. "Theme": "Thème",
  338. "Timezone": "Fuseau horaire",
  339. "Language": "Langue",
  340. "There is no unread article.": "Il n'y a rien de nouveau à lire.",
  341. "You are the only user.": "Vous êtes le seul utilisateur.",
  342. "Last Login": "Dernière connexion",
  343. "Yes": "Oui",
  344. "No": "Non",
  345. "This feed already exists (%s)": "Cet abonnement existe déjà (%s)",
  346. "Unable to fetch feed (Status Code = %d)": "Impossible de récupérer cet abonnement (code=%d)",
  347. "Unable to open this link: %v": "Impossible d'ouvrir ce lien : %v",
  348. "Unable to analyze this page: %v": "Impossible d'analyzer cette page : %v",
  349. "Unable to find any subscription.": "Impossible de trouver un abonnement.",
  350. "The URL and the category are mandatory.": "L'URL et la catégorie sont obligatoire.",
  351. "All fields are mandatory.": "Tous les champs sont obligatoire.",
  352. "Passwords are not the same.": "Les mots de passe ne sont pas les mêmes.",
  353. "You must use at least 6 characters.": "Vous devez utiliser au moins 6 caractères.",
  354. "The username is mandatory.": "Le nom d'utilisateur est obligatoire.",
  355. "The username, theme, language and timezone fields are mandatory.": "Le nom d'utilisateur, le thème, la langue et le fuseau horaire sont obligatoire.",
  356. "The title is mandatory.": "Le titre est obligatoire.",
  357. "About": "A propos",
  358. "Version": "Version",
  359. "Version:": "Version :",
  360. "Build Date:": "Date de la compilation :",
  361. "Author:": "Auteur :",
  362. "Authors": "Auteurs",
  363. "License:": "Licence :",
  364. "Attachments": "Pièces jointes",
  365. "Download": "Télécharger",
  366. "Invalid username or password.": "Mauvais identifiant ou mot de passe.",
  367. "Never": "Jamais",
  368. "Unable to execute request: %v": "Impossible d'exécuter cette requête: %v",
  369. "Last Parsing Error": "Dernière erreur d'analyse",
  370. "There is a problem with this feed": "Il y a un problème avec cet abonnement",
  371. "Unable to parse OPML file: %q": "Impossible de lire ce fichier OPML : %q",
  372. "Unable to parse RSS feed: %q": "Impossible de lire ce flux RSS : %q",
  373. "Unable to parse Atom feed: %q": "Impossible de lire ce flux Atom : %q",
  374. "Unable to parse JSON feed: %q": "Impossible de lire ce flux JSON : %q",
  375. "Unable to parse RDF feed: %q": "Impossible de lire ce flux RDF : %q",
  376. "Unable to normalize encoding: %q": "Impossible de normaliser l'encodage : %q",
  377. "Unable to create this category.": "Impossible de créer cette catégorie.",
  378. "yes": "oui",
  379. "no": "non",
  380. "Are you sure?": "Êtes-vous sûr ?",
  381. "Work in progress...": "Travail en cours...",
  382. "This user already exists.": "Cet utilisateur existe déjà.",
  383. "This category already exists.": "Cette catégorie existe déjà.",
  384. "Unable to update this category.": "Impossible de mettre à jour cette catégorie.",
  385. "Integrations": "Intégrations",
  386. "Bookmarklet": "Bookmarklet",
  387. "Drag and drop this link to your bookmarks.": "Glisser-déposer ce lien dans vos favoris.",
  388. "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.",
  389. "Add to Miniflux": "Ajouter à Miniflux",
  390. "Refresh all feeds in background": "Actualiser les abonnements en arrière-plan",
  391. "Sign in with Google": "Se connecter avec Google",
  392. "Unlink my Google account": "Dissocier mon compte Google",
  393. "Link my Google account": "Associer mon compte Google",
  394. "Category not found for this user": "Cette catégorie n'existe pas pour cet utilisateur",
  395. "Invalid theme.": "Le thème est invalide.",
  396. "Entry Sorting": "Ordre des éléments",
  397. "Older entries first": "Ancien éléments en premier",
  398. "Recent entries first": "Éléments récents en premier",
  399. "Saving...": "Enregistrement...",
  400. "Done!": "Terminé !",
  401. "Save this article": "Sauvegarder cet article",
  402. "Mark bookmark as unread": "Marquer le lien comme non lu",
  403. "Pinboard Tags": "Libellés de Pinboard",
  404. "Pinboard API Token": "Jeton de sécurité de l'API de Pinboard",
  405. "Save articles to Pinboard": "Sauvegarder les articles vers Pinboard",
  406. "Save articles to Instapaper": "Sauvegarder les articles vers Instapaper",
  407. "Instapaper Username": "Nom d'utilisateur Instapaper",
  408. "Instapaper Password": "Mot de passe Instapaper",
  409. "Activate Fever API": "Activer l'API de Fever",
  410. "Fever Username": "Nom d'utilisateur pour l'API de Fever",
  411. "Fever Password": "Mot de passe pour l'API de Fever",
  412. "Fetch original content": "Récupérer le contenu original",
  413. "Scraper Rules": "Règles pour récupérer le contenu original",
  414. "Rewrite Rules": "Règles de réécriture",
  415. "Preferences saved!": "Préférences sauvegardées !",
  416. "Your external account is now linked!": "Votre compte externe est maintenant associé !",
  417. "Save articles to Wallabag": "Sauvegarder les articles vers Wallabag",
  418. "Wallabag API Endpoint": "URL de l'API de Wallabag",
  419. "Wallabag Client ID": "Identifiant du client Wallabag",
  420. "Wallabag Client Secret": "Clé secrète du client Wallabag",
  421. "Wallabag Username": "Nom d'utilisateur de Wallabag",
  422. "Wallabag Password": "Mot de passe de Wallabag",
  423. "Save articles to Nunux Keeper": "Sauvegarder les articles vers Nunux Keeper",
  424. "Nunux Keeper API Endpoint": "URL de l'API de Nunux Keeper",
  425. "Nunux Keeper API key": "Clé d'API de Nunux Keeper",
  426. "Keyboard Shortcut: %s": "Raccourci clavier : %s",
  427. "Favorites": "Favoris",
  428. "Star": "Favoris",
  429. "Unstar": "Enlever favoris",
  430. "Starred": "Favoris",
  431. "There is no bookmark at the moment.": "Il n'y a aucun favoris pour le moment.",
  432. "Last checked:": "Dernière vérification :",
  433. "ETag header:": "En-tête ETag :",
  434. "LastModified header:": "En-tête LastModified :",
  435. "None": "Aucun/Aucune",
  436. "Keyboard Shortcuts": "Raccourcis clavier",
  437. "Sections Navigation": "Naviguation entre les sections",
  438. "Go to unread": "Aller aux éléments non lus",
  439. "Go to bookmarks": "Aller aux favoris",
  440. "Go to history": "Voir l'historique",
  441. "Go to feeds": "Voir les abonnements",
  442. "Go to categories": "Voir les catégories",
  443. "Go to settings": "Voir les réglages",
  444. "Show keyboard shortcuts": "Voir les raccourcis clavier",
  445. "Items Navigation": "Naviguation entre les éléments",
  446. "Go to previous item": "Élément précédent",
  447. "Go to next item": "Élément suivant",
  448. "Pages Navigation": "Naviguation entre les pages",
  449. "Go to previous page": "Page précédente",
  450. "Go to next page": "Page suivante",
  451. "Open selected item": "Ouvrir élément sélectionné",
  452. "Open original link": "Ouvrir lien original",
  453. "Toggle read/unread": "Basculer entre lu/non lu",
  454. "Mark current page as read": "Marquer la page actuelle comme lu",
  455. "Download original content": "Télécharger le contenu original",
  456. "Toggle bookmark": "Ajouter/Enlever favoris",
  457. "Close modal dialog": "Fermer la boite de dialogue",
  458. "Save article": "Sauvegarder l'article",
  459. "There is already someone associated with this provider!": "Il y a déjà quelqu'un d'associé avec ce provider !",
  460. "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 !",
  461. "Mark all as read": "Tout marquer comme lu",
  462. "This feed is empty": "Cet abonnement est vide",
  463. "Flush history": "Supprimer l'historique",
  464. "Site URL": "URL du site web",
  465. "Feed URL": "URL du flux",
  466. "Logged as %s": "Connecté en tant que %s",
  467. "Unread Items": "Éléments non lus",
  468. "Change entry status": "Changer le statut de l'élément",
  469. "Read": "Lu",
  470. "Fever API endpoint:": "Point de terminaison de l'API Fever :",
  471. "Miniflux API": "API de Miniflux",
  472. "API Endpoint": "Point de terminaison de l'API",
  473. "Your account password": "Le mot de passe de votre compte",
  474. "This web page is empty": "Cette page web est vide",
  475. "Invalid SSL certificate (original error: %q)": "Certificat SSL invalide (erreur originale : %q)",
  476. "This website is temporarily unreachable (original error: %q)": "Ce site web est temporairement injoignable (erreur originale : %q)",
  477. "This website is permanently unreachable (original error: %q)": "Ce site web n'est pas joignable de façon permanente (erreur originale : %q)",
  478. "Website unreachable, the request timed out after %d seconds": "Site web injoignable, la requête à échouée après %d secondes",
  479. "Comments": "Commentaires",
  480. "View Comments": "Voir les commentaires",
  481. "This file is empty": "Ce fichier est vide",
  482. "Your external account is now dissociated!": "Votre compte externe est maintenant dissocié !",
  483. "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.",
  484. "Save articles to Pocket": "Sauvegarder les articles vers Pocket",
  485. "Connect your Pocket account": "Connectez votre compte Pocket",
  486. "Pocket Consumer Key": "« Pocket Consumer Key »",
  487. "Pocket Access Token": "« Pocket Access Token »",
  488. "Your Pocket account is now linked!": "Votre compte Pocket est maintenant connecté !",
  489. "Unable to fetch access token from Pocket!": "Impossible de récupérer le jeton d'accès depuis Pocket !",
  490. "Unable to fetch request token from Pocket!": "Impossible de récupérer le jeton d'accès depuis Pocket !",
  491. "Advanced Options": "Options avancées",
  492. "Feed Username": "Nom d'utilisateur du flux",
  493. "Feed Password": "Mot de passe du flux",
  494. "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)",
  495. "Unable to fetch this resource (Status Code = %d)": "Impossible de récupérer cette ressource (code=%d)",
  496. "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",
  497. "Search Results": "Résultats de la recherche",
  498. "There is no result for this search.": "Il n'y a aucun résultat pour cette recherche.",
  499. "Search...": "Recherche...",
  500. "Set focus on search form": "Mettre le focus sur le champ de recherche",
  501. "Search": "Recherche"
  502. }
  503. `,
  504. "nl_NL": `{
  505. "plural.feed.error_count": [
  506. "%d error",
  507. "%d errors"
  508. ],
  509. "plural.categories.feed_count": [
  510. "Er is %d feed.",
  511. "Er zijn %d feeds."
  512. ],
  513. "Username": "Gebruikersnaam",
  514. "Password": "Wachtwoord",
  515. "Unread": "Ongelezen",
  516. "History": "Geschiedenis",
  517. "Feeds": "Feeds",
  518. "Categories": "Categorieën",
  519. "Settings": "Instellingen",
  520. "Logout": "Uitloggen",
  521. "Next": "Volgende",
  522. "Previous": "Vorige",
  523. "New Subscription": "Nieuwe feed",
  524. "Import": "Importeren",
  525. "Export": "Exporteren",
  526. "There is no category. You must have at least one category.": "Er zijn geen categorieën. Je moet op zijn minst één caterogie hebben.",
  527. "URL": "URL",
  528. "Category": "Categorie",
  529. "Find a subscription": "Feed zoeken",
  530. "Loading...": "Laden...",
  531. "Create a category": "Categorie toevoegen",
  532. "There is no category.": "Er zijn geen categorieën.",
  533. "Edit": "Bewerken",
  534. "Remove": "Verwijderen",
  535. "No feed.": "Geen feeds.",
  536. "There is no article in this category.": "Deze categorie bevat geen feeds.",
  537. "Original": "Origineel",
  538. "Mark this page as read": "Markeer deze pagina als gelezen",
  539. "not yet": "in de toekomst",
  540. "just now": "minder dan een minuut geleden",
  541. "1 minute ago": "een minuut geleden",
  542. "%d minutes ago": "%d minuten geleden",
  543. "1 hour ago": "een uur geleden",
  544. "%d hours ago": "%d uur geleden",
  545. "yesterday": "gisteren",
  546. "%d days ago": "%d dagen geleden",
  547. "%d weeks ago": "%d weken geleden",
  548. "%d months ago": "%d maanden geleden",
  549. "%d years ago": "%d jaar geleden",
  550. "Date": "Datum",
  551. "IP Address": "IP-adres",
  552. "User Agent": "User-agent",
  553. "Actions": "Acties",
  554. "Current session": "Huidige sessie",
  555. "Sessions": "Sessies",
  556. "Users": "Gebruikers",
  557. "Add user": "Gebruiker toevoegen",
  558. "Choose a Subscription": "Feed kiezen",
  559. "Subscribe": "Abboneren",
  560. "New Category": "Nieuwe categorie",
  561. "Title": "Naam",
  562. "Save": "Opslaan",
  563. "or": "of",
  564. "cancel": "annuleren",
  565. "New User": "Nieuwe gebruiker",
  566. "Confirmation": "Bevestig wachtwoord",
  567. "Administrator": "Administrator",
  568. "Edit Category: %s": "Bewerken van categorie: %s",
  569. "Update": "Updaten",
  570. "Edit Feed: %s": "Bewerken van feed: %s",
  571. "There is no category!": "Er zijn geen categorieën!",
  572. "Edit user: %s": "Gebruiker aanpassen: %s",
  573. "There is no article for this feed.": "Er zijn geen artikelen in deze feed.",
  574. "Add subscription": "Feed toevoegen",
  575. "You don't have any subscription.": "Je hebt nog geen feeds geabboneerd staan.",
  576. "Last check:": "Laatste update:",
  577. "Refresh": "Vernieuwen",
  578. "There is no history at the moment.": "Geschiedenis is op dit moment leeg.",
  579. "OPML file": "OPML-bestand",
  580. "Sign In": "Inloggen",
  581. "Theme": "Skin",
  582. "Timezone": "Tijdzone",
  583. "Language": "Taal",
  584. "There is no unread article.": "Er zijn geen ongelezen artikelen.",
  585. "You are the only user.": "Je bent de enige gebruiker.",
  586. "Last Login": "Laatste login",
  587. "Yes": "Ja",
  588. "No": "Nee",
  589. "This feed already exists (%s)": "Deze feed bestaat al (%s)",
  590. "Unable to fetch feed (Status Code = %d)": "Kon feed niet updaten (statuscode = %d)",
  591. "Unable to open this link: %v": "Kon link niet volgen: %v",
  592. "Unable to analyze this page: %v": "Kon pagina niet analyseren: %v",
  593. "Unable to find any subscription.": "Kon geen feeds vinden.",
  594. "The URL and the category are mandatory.": "The URL en de categorie zijn verplicht.",
  595. "All fields are mandatory.": "Alle velden moeten ingevuld zijn.",
  596. "Passwords are not the same.": "Wachtwoorden zijn niet hetzelfde.",
  597. "You must use at least 6 characters.": "Je moet minstens 6 tekens gebruiken.",
  598. "The username is mandatory.": "Gebruikersnaam is verplicht",
  599. "The username, theme, language and timezone fields are mandatory.": "Gebruikersnaam, skin, taal en tijdzone zijn verplicht.",
  600. "The title is mandatory.": "Naam van categorie is verplicht.",
  601. "About": "Over Miniflux",
  602. "Version": "Versie",
  603. "Version:": "Versie:",
  604. "Build Date:": "Datum build:",
  605. "Author:": "Auteur:",
  606. "Authors": "Auteurs",
  607. "License:": "Licentie:",
  608. "Attachments": "Bijlages",
  609. "Download": "Download",
  610. "Invalid username or password.": "Onjuiste gebruikersnaam of wachtwoord.",
  611. "Never": "Nooit",
  612. "Unable to execute request: %v": "Kon request niet uitvoeren: %v",
  613. "Last Parsing Error": "Laatste parse error",
  614. "There is a problem with this feed": "Er is een probleem met deze feed",
  615. "Unable to parse OPML file: %q": "Kon OPML niet parsen: %q",
  616. "Unable to parse RSS feed: %q": "Kon RSS-feed niet parsen: %q",
  617. "Unable to parse Atom feed: %q": "Kon Atom-feed niet parsen: %q",
  618. "Unable to parse JSON feed: %q": "Kon JSON-feed niet parsen: %q",
  619. "Unable to parse RDF feed: %q": "Kon RDF-feed niet parsen: %q",
  620. "Unable to normalize encoding: %q": "Kon encoding niet normaliseren: %q",
  621. "Unable to create this category.": "Kon categorie niet aanmaken.",
  622. "yes": "ja",
  623. "no": "nee",
  624. "Are you sure?": "Weet je het zeker?",
  625. "Work in progress...": "Bezig...",
  626. "This user already exists.": "Deze gebruiker bestaat al.",
  627. "This category already exists.": "Deze categorie bestaat al.",
  628. "Unable to update this category.": "Kon categorie niet updaten.",
  629. "Integrations": "Integraties",
  630. "Bookmarklet": "Bookmarklet",
  631. "Drag and drop this link to your bookmarks.": "Sleep deze link naar je bookmarks.",
  632. "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.",
  633. "Add to Miniflux": "Toevoegen aan Miniflux",
  634. "Refresh all feeds in background": "Vernieuw alle feeds in de achtergrond",
  635. "Sign in with Google": "Inloggen via Google",
  636. "Unlink my Google account": "Ontkoppel mijn Google-account",
  637. "Link my Google account": "Koppel mijn Google-account",
  638. "Category not found for this user": "Categorie niet gevonden voor deze gebruiker",
  639. "Invalid theme.": "Ongeldige skin.",
  640. "Entry Sorting": "Volgorde van items",
  641. "Older entries first": "Oudere items eerst",
  642. "Recent entries first": "Recente items eerst",
  643. "Saving...": "Opslaag...",
  644. "Done!": "Klaar!",
  645. "Save this article": "Artikel opslaan",
  646. "Mark bookmark as unread": "Markeer bookmark als gelezen",
  647. "Pinboard Tags": "Pinboard tags",
  648. "Pinboard API Token": "Pinboard API token",
  649. "Save articles to Pinboard": "Artikelen opslaan naar Pinboard",
  650. "Save articles to Instapaper": "Artikelen opstaan naar Instapaper",
  651. "Instapaper Username": "Instapaper gebruikersnaam",
  652. "Instapaper Password": "Instapaper wachtwoord",
  653. "Activate Fever API": "Activeer Fever API",
  654. "Fever Username": "Fever gebruikersnaam",
  655. "Fever Password": "Fever wachtwoord",
  656. "Fetch original content": "Download originele content",
  657. "Scraper Rules": "Scraper regels",
  658. "Rewrite Rules": "Rewrite regels",
  659. "Preferences saved!": "Instellingen opgeslagen!",
  660. "Your external account is now linked!": "Je externe account is nu gekoppeld!",
  661. "Save articles to Wallabag": "Sauvegarder les articles vers Wallabag",
  662. "Wallabag API Endpoint": "Wallabag URL",
  663. "Wallabag Client ID": "Wallabag Client-ID",
  664. "Wallabag Client Secret": "Wallabag Client-Secret",
  665. "Wallabag Username": "Wallabag gebruikersnaam",
  666. "Wallabag Password": "Wallabag wachtwoord",
  667. "Save articles to Nunux Keeper": "Opslaan naar Nunux Keeper",
  668. "Nunux Keeper API Endpoint": "Nunux Keeper URL",
  669. "Nunux Keeper API key": "Nunux Keeper API-sleutel",
  670. "Keyboard Shortcut: %s": "Sneltoets: %s",
  671. "Favorites": "Favorieten",
  672. "Star": "Ster toevoegen",
  673. "Unstar": "Ster weghalen",
  674. "Starred": "Favorieten",
  675. "There is no bookmark at the moment.": "Er zijn op dit moment geen favorieten.",
  676. "Last checked:": "Laatste update:",
  677. "ETag header:": "ETAG-header:",
  678. "LastModified header:": "LastModified-header:",
  679. "None": "Geen",
  680. "Keyboard Shortcuts": "Sneltoetsen",
  681. "Sections Navigation": "Naviguatie tussen menu's",
  682. "Go to unread": "Ga naar ongelezen",
  683. "Go to bookmarks": "Ga naar favorieten",
  684. "Go to history": "Ga naar geschiedenis",
  685. "Go to feeds": "Ga naar feeds",
  686. "Go to categories": "Ga naar categorieën",
  687. "Go to settings": "Ga naar instellingen",
  688. "Show keyboard shortcuts": "Laat sneltoetsen zien",
  689. "Items Navigation": "Navigatie tussen items",
  690. "Go to previous item": "Vorige item",
  691. "Go to next item": "Volgende item",
  692. "Pages Navigation": "Naviguatie tussen pagina's",
  693. "Go to previous page": "Vorige pagina",
  694. "Go to next page": "Volgende pagina",
  695. "Open selected item": "Open geselecteerde link",
  696. "Open original link": "Open originele link",
  697. "Toggle read/unread": "Markeer gelezen/ongelezen",
  698. "Mark current page as read": "Markeer deze pagina als gelezen",
  699. "Download original content": "Download originele content",
  700. "Toggle bookmark": "Ster toevoegen/weghalen",
  701. "Close modal dialog": "Sluit dialoogscherm",
  702. "Save article": "Artikel opslaan",
  703. "There is already someone associated with this provider!": "Er is al iemand geregistreerd met deze provider!",
  704. "There is already someone else with the same Fever username!": "Er is al iemand met dezelfde Fever gebruikersnaam!",
  705. "Mark all as read": "Markeer alle items als gelezen",
  706. "This feed is empty": "Deze feed is leeg",
  707. "Flush history": "Verwijder geschiedenis",
  708. "Site URL": "Website URL",
  709. "Feed URL": "Feed URL",
  710. "Logged as %s": "Ingelogd als %s",
  711. "Unread Items": "Ongelezen items",
  712. "Change entry status": "Verander status van item",
  713. "Read": "Gelezen",
  714. "Fever API endpoint:": "Fever URL:",
  715. "Miniflux API": "Miniflux API",
  716. "API Endpoint": "API-URL",
  717. "Your account password": "Wachtwoord van jouw account",
  718. "This web page is empty": "Deze webpagina is leeg",
  719. "Invalid SSL certificate (original error: %q)": "Ongeldig SSL-certificaat (originele error: %q)",
  720. "This website is temporarily unreachable (original error: %q)": "Deze website is tijdelijk onbereikbaar (originele error: %q)",
  721. "This website is permanently unreachable (original error: %q)": "Deze website is permanent onbereikbaar (originele error: %q)",
  722. "Website unreachable, the request timed out after %d seconds": "Website onbereikbaar, de request gaf een timeout na %d seconden"
  723. }
  724. `,
  725. "pl_PL": `{
  726. "plural.feed.error_count": [
  727. "%d błąd",
  728. "%d błąd",
  729. "%d błędów"
  730. ],
  731. "plural.categories.feed_count": [
  732. "Jest %d kanał.",
  733. "Są %d kanały.",
  734. "Jest %d kanałów."
  735. ],
  736. "Username": "Nazwa użytkownika",
  737. "Password": "Hasło",
  738. "Unread": "Nieprzeczytane",
  739. "History": "Historia",
  740. "Feeds": "Kanały",
  741. "Categories": "Kategorie",
  742. "Settings": "Ustawienia",
  743. "Logout": "Wyloguj się",
  744. "Next": "Następny",
  745. "Previous": "Poprzedni",
  746. "New Subscription": "Nowa subskrypcja",
  747. "Import": "Importuj",
  748. "Export": "Eksportuj",
  749. "There is no category. You must have at least one category.": "Nie ma żadnej kategorii. Musisz mieć co najmniej jedną kategorię",
  750. "URL": "URL",
  751. "Category": "Kategoria",
  752. "Find a subscription": "Znajdź subskrypcję",
  753. "Loading...": "Ładowanie...",
  754. "Create a category": "Utwórz kategorię",
  755. "There is no category.": "Nie masz żadnej kategorii",
  756. "Edit": "Edytuj",
  757. "Remove": "Usuń",
  758. "No feed.": "Brak kanałów.",
  759. "There is no article in this category.": "W tej kategorii nie ma żadnych artykułów",
  760. "Original": "Oryginalny artykuł",
  761. "Mark this page as read": "Oznacz jako przeczytane",
  762. "not yet": "jeszcze nie",
  763. "just now": "przed chwilą",
  764. "1 minute ago": "minutę temu",
  765. "%d minutes ago": "%d minut temu",
  766. "1 hour ago": "godzinę temu",
  767. "%d hours ago": "%d godzin temu",
  768. "yesterday": "wczoraj",
  769. "%d days ago": "%d dni temu",
  770. "%d weeks ago": "%d tygodni temu",
  771. "%d months ago": "%d miesięcy temu",
  772. "%d years ago": "%d lat temu",
  773. "Date": "Data",
  774. "IP Address": "Adres IP",
  775. "User Agent": "User Agent",
  776. "Actions": "Działania",
  777. "Current session": "Bieżąca sesja",
  778. "Sessions": "Sesje",
  779. "Users": "Użytkownicy",
  780. "Add user": "Dodaj użytkownika",
  781. "Choose a Subscription": "Wybierz subskrypcję",
  782. "Subscribe": "Subskrypcja",
  783. "New Category": "Nowa kategoria",
  784. "Title": "Tytuł",
  785. "Save": "Zapisz",
  786. "or": "lub",
  787. "cancel": "anuluj",
  788. "New User": "Nowy użytkownik",
  789. "Confirmation": "Potwierdź",
  790. "Administrator": "Administrator",
  791. "Edit Category: %s": "Edycja Kategorii: %s",
  792. "Update": "Zaktualizuj",
  793. "Edit Feed: %s": "Edytuj kanał: %s",
  794. "There is no category!": "Nie ma żadnej kategorii!",
  795. "Edit user: %s": "Edytuj użytkownika: %s",
  796. "There is no article for this feed.": "Nie ma artykułu dla tego kanału.",
  797. "Add subscription": "Dodaj subskrypcję",
  798. "You don't have any subscription.": "Nie masz żadnej subskrypcji",
  799. "Last check:": "Ostatnia aktualizacja:",
  800. "Refresh": "Odśwież",
  801. "There is no history at the moment.": "Obecnie nie ma żadnej historii.",
  802. "OPML file": "Plik OPML",
  803. "Sign In": "Zaloguj się",
  804. "Sign in": "Zaloguj się",
  805. "Theme": "Wygląd",
  806. "Timezone": "Strefa czasowa",
  807. "Language": "Język",
  808. "There is no unread article.": "Nie ma żadnych nieprzeczytanych artykułów.",
  809. "You are the only user.": "Jesteś jedynym użytkownikiem.",
  810. "Last Login": "Ostatnie logowanie",
  811. "Yes": "Tak",
  812. "No": "Nie",
  813. "This feed already exists (%s)": "Ten kanał już istnieje (%s)",
  814. "Unable to fetch feed (Status Code = %d)": "Kanał nie mógł zostać pobrany (kod=%d)",
  815. "Unable to open this link: %v": "Nie można było otworzyć tego linku: %v",
  816. "Unable to analyze this page: %v": "Nie można przeanalizować tej strony: %v",
  817. "Unable to find any subscription.": "Nie znaleziono żadnych subskrypcji.",
  818. "The URL and the category are mandatory.": "URL i kategoria są obowiązkowe.",
  819. "All fields are mandatory.": "Wszystkie pola są obowiązkowe.",
  820. "Passwords are not the same.": "Hasła nie są identyczne.",
  821. "You must use at least 6 characters.": "Musisz użyć co najmniej 6 znaków.",
  822. "The username is mandatory.": "Nazwa użytkownika jest obowiązkowa.",
  823. "The username, theme, language and timezone fields are mandatory.": "Pola nazwy użytkownika, tematu, języka i strefy czasowej są obowiązkowe.",
  824. "The title is mandatory.": "Tytuł jest obowiązkowy.",
  825. "About": "O stronie",
  826. "Version": "Wersja",
  827. "Version:": "Wersja :",
  828. "Build Date:": "Data opracowania:",
  829. "Author:": "Autor:",
  830. "Authors": "Autorzy",
  831. "License:": "Licencja:",
  832. "Attachments": "Załączniki",
  833. "Download": "Pobierz",
  834. "Invalid username or password.": "Nieprawidłowa nazwa użytkownika lub hasło.",
  835. "Never": "Nigdy",
  836. "Unable to execute request: %v": "To polecenie nie mogło zostać wykonane: %v",
  837. "Last Parsing Error": "Ostatni błąd analizy",
  838. "There is a problem with this feed": "Z tym kanałem jest problem",
  839. "Unable to parse OPML file: %q": "Plik OPML nie mógł zostać odczytany: %q",
  840. "Unable to parse RSS feed: %q": "Nie można było odczytać kanału RSS: %q",
  841. "Unable to parse Atom feed: %q": "Nie można było odczytać kanału Atom: %q",
  842. "Unable to parse JSON feed: %q": "Nie można było odczytać kanału JSON: %q",
  843. "Unable to parse RDF feed: %q": "Nie można było odczytać kanału RDF: %q",
  844. "Unable to normalize encoding: %q": "Kodowanie znaków nie mogło zostać znormalizowane: %q",
  845. "Unable to create this category.": "Ta kategoria nie mogła zostać utworzona.",
  846. "yes": "tak",
  847. "no": "nie",
  848. "Are you sure?": "Czy jesteś pewny?",
  849. "Work in progress...": "W toku...",
  850. "This user already exists.": "Ten użytkownik już istnieje.",
  851. "This category already exists.": "Ta kategoria już istnieje.",
  852. "Unable to update this category.": "Ta kategoria nie mogła zostać zaktualizowana.",
  853. "Integrations": "Usługi",
  854. "Bookmarklet": "Bookmarklet",
  855. "Drag and drop this link to your bookmarks.": "Przeciągnij i upuść to łącze do zakładek.",
  856. "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",
  857. "Add to Miniflux": "Dodaj do Miniflux",
  858. "Refresh all feeds in background": "Odśwież wszystkie subskrypcje w tle",
  859. "Sign in with Google": "Zaloguj przez Google",
  860. "Unlink my Google account": "Odłącz moje konto Google",
  861. "Link my Google account": "Połącz z moim kontem Google",
  862. "Category not found for this user": "Kategoria nie znaleziona dla tego użytkownika",
  863. "Invalid theme.": "Ten temat jest nieprawidłowy.",
  864. "Entry Sorting": "Sortowanie artykułów",
  865. "Older entries first": "Najstarsze wpisy jako pierwsze",
  866. "Recent entries first": "Najnowsze wpisy jako pierwsze",
  867. "Saving...": "Zapisywanie...",
  868. "Done!": "Gotowe!",
  869. "Save this article": "Zapisz ten artykuł",
  870. "Mark bookmark as unread": "Zaznacz zakładkę jako nieprzeczytaną",
  871. "Pinboard Tags": "Pinboard Tags",
  872. "Pinboard API Token": "Token Pinboard API",
  873. "Save articles to Pinboard": "Zapisz artykuł w Pinboard",
  874. "Save articles to Instapaper": "Zapisz artykuł w Instapaper",
  875. "Instapaper Username": "Login do Instapaper",
  876. "Instapaper Password": "Hasło do Instapaper",
  877. "Activate Fever API": "Aktywuj Fever API",
  878. "Fever Username": "Login do Fever",
  879. "Fever Password": "Hasło do Fever",
  880. "Fetch original content": "Pobierz oryginalną treść",
  881. "Scraper Rules": "Zasady ekstrakcji",
  882. "Rewrite Rules": "Reguły zapisu",
  883. "Preferences saved!": "Ustawienia zapisane!",
  884. "Your external account is now linked!": "Twoje zewnętrzne konto jest teraz połączone!",
  885. "Save articles to Wallabag": "Zapisz artykuły do Wallabag",
  886. "Wallabag API Endpoint": "Wallabag URL",
  887. "Wallabag Client ID": "Wallabag Client-ID",
  888. "Wallabag Client Secret": "Wallabag Client Secret",
  889. "Wallabag Username": "Login do Wallabag",
  890. "Wallabag Password": "Hasło do Wallabag",
  891. "Save articles to Nunux Keeper": "Zapisz artykuly do Nunux Keeper",
  892. "Nunux Keeper API Endpoint": "Nunux Keeper URL",
  893. "Nunux Keeper API key": "Nunux Keeper API key",
  894. "Keyboard Shortcut: %s": "Skróty klawiszowe: %s",
  895. "Favorites": "Ulubione",
  896. "Star": "Oznacz gwiazdką",
  897. "Unstar": "Usuń gwiazdkę",
  898. "Starred": "Oznaczone gwiazdką",
  899. "There is no bookmark at the moment.": "Obecnie nie ma żadnych zakładek.",
  900. "Last checked:": "Ostatnio sprawdzone:",
  901. "ETag header:": "Nagłówek ETag:",
  902. "LastModified header:": "Ostatnio zmienione:",
  903. "None": "Brak",
  904. "Keyboard Shortcuts": "Skróty klawiszowe",
  905. "Sections Navigation": "Nawigacja między punktami menu",
  906. "Go to unread": "Przejdź do nieprzeczytanych artykułów",
  907. "Go to bookmarks": "Przejdź do zakładek",
  908. "Go to history": "Przejdź do historii",
  909. "Go to feeds": "Przejdź do kanałów",
  910. "Go to categories": "Przejdź do kategorii",
  911. "Go to settings": "Przejdź do ustawień",
  912. "Show keyboard shortcuts": "Pokaż listę skrótów klawiszowych",
  913. "Items Navigation": "Nawigacja między artykułami",
  914. "Go to previous item": "Przejdź do poprzedniego artykułu",
  915. "Go to next item": "Przejdź do następnego punktu artykułu",
  916. "Pages Navigation": "Nawigacja między stronami",
  917. "Go to previous page": "Przejdź do poprzedniej strony",
  918. "Go to next page": "Przejdź do następnej strony",
  919. "Open selected item": "Otwórz zaznaczony artykuł",
  920. "Open original link": "Otwórz oryginalny artykuł",
  921. "Toggle read/unread": "Oznacz jako przeczytane/nieprzeczytane",
  922. "Mark current page as read": "Zaznacz aktualną stronę jako przeczytaną",
  923. "Download original content": "Pobierz oryginalną zawartość",
  924. "Toggle bookmark": "Dodaj/usuń zakładki",
  925. "Close modal dialog": "Zamknij listę skrótów klawiszowych",
  926. "Save article": "Zapisz artykuł",
  927. "There is already someone associated with this provider!": "Już ktoś jest powiązany z tym dostawcą!",
  928. "There is already someone else with the same Fever username!": "Już ktoś inny używa tej nazwy użytkownika Fever!",
  929. "Mark all as read": "Oznacz wszystko jako przeczytane",
  930. "This feed is empty": "Ten kanał jest pusty",
  931. "Flush history": "Usuń historię",
  932. "Site URL": "URL strony",
  933. "Feed URL": "URL kanału",
  934. "Logged as %s": "Zalogowany jako %s",
  935. "Unread Items": "Nieprzeczytane",
  936. "Change entry status": "Zmień status artykułu",
  937. "Read": "Przeczytane",
  938. "Fever API endpoint:": "Fever API endpoint:",
  939. "Miniflux API": "Miniflux API",
  940. "API Endpoint": "API endpoint",
  941. "Your account password": "Hasło konta",
  942. "This web page is empty": "Ta strona jest pusta",
  943. "Invalid SSL certificate (original error: %q)": "Certyfikat SSL jest nieprawidłowy (błąd: %q)",
  944. "This website is temporarily unreachable (original error: %q)": "Ta strona jest tymczasowo niedostępna (błąd: %q)",
  945. "This website is permanently unreachable (original error: %q)": "Ta strona jest niedostępna (błąd: %q)",
  946. "Website unreachable, the request timed out after %d seconds": "Strona internetowa nieosiągalna, żądanie wygasło po %d sekundach"
  947. }
  948. `,
  949. "zh_CN": `{
  950. "plural.feed.error_count": [
  951. "%d 错误",
  952. "%d 错误"
  953. ],
  954. "plural.categories.feed_count": [
  955. "有 %d 个源.",
  956. "有 %d 个源."
  957. ],
  958. "Username": "用户名",
  959. "Password": "密码",
  960. "Unread": "未读",
  961. "History": "历史",
  962. "Feeds": "源",
  963. "Categories": "分类",
  964. "Settings": "设置",
  965. "Logout": "登出",
  966. "Next": "下一页",
  967. "Previous": "上一页",
  968. "New Subscription": "新订阅",
  969. "Import": "导入",
  970. "Export": "导出",
  971. "There is no category. You must have at least one category.": "目前没有分类.需要有一个已有的分类存在.",
  972. "URL": "URL",
  973. "Category": "分类",
  974. "Find a subscription": "寻找订阅",
  975. "Loading...": "载入中...",
  976. "Create a category": "新建分类",
  977. "There is no category.": "目前没有分类.",
  978. "Edit": "编辑",
  979. "Remove": "删除",
  980. "No feed.": "没有源.",
  981. "There is no article in this category.": "该分类下没有文章.",
  982. "Original": "原始链接",
  983. "Mark this page as read": "标记为已读",
  984. "not yet": "尚未",
  985. "just now": "刚刚",
  986. "1 minute ago": "1 分钟前",
  987. "%d minutes ago": "%d 分钟前",
  988. "1 hour ago": "1 小时前",
  989. "%d hours ago": "%d 小时前",
  990. "yesterday": "昨天",
  991. "%d days ago": "%d 天前",
  992. "%d weeks ago": "%d 周前",
  993. "%d months ago": "%d 月前",
  994. "%d years ago": "%d 年前",
  995. "Date": "日期",
  996. "IP Address": "IP地址",
  997. "User Agent": "User Agent",
  998. "Actions": "操作",
  999. "Current session": "当前会话",
  1000. "Sessions": "会话",
  1001. "Users": "用户",
  1002. "Add user": "新建用户",
  1003. "Choose a Subscription": "选择一个订阅",
  1004. "Subscribe": "订阅",
  1005. "New Category": "新分类",
  1006. "Title": "标题",
  1007. "Save": "保存",
  1008. "or": "或",
  1009. "cancel": "取消",
  1010. "New User": "新用户",
  1011. "Confirmation": "确认",
  1012. "Administrator": "管理员",
  1013. "Edit Category: %s": "编辑分类 : %s",
  1014. "Update": "更新",
  1015. "Edit Feed: %s": "编辑源 : %s",
  1016. "There is no category!": "没有分类!",
  1017. "Edit user: %s": "编辑用户: %s",
  1018. "There is no article for this feed.": "这个源中没有文章.",
  1019. "Add subscription": "新增订阅",
  1020. "You don't have any subscription.": "当前没有订阅",
  1021. "Last check:": "最后检查时间:",
  1022. "Refresh": "更新",
  1023. "There is no history at the moment.": "当前没有历史.",
  1024. "OPML file": "OPML 文件",
  1025. "Sign In": "登陆",
  1026. "Sign in": "登陆",
  1027. "Theme": "主题",
  1028. "Timezone": "时区",
  1029. "Language": "语言",
  1030. "There is no unread article.": "目前没有未读文章.",
  1031. "You are the only user.": "你是目前仅有的用户.",
  1032. "Last Login": "最后登录时间",
  1033. "Yes": "是",
  1034. "No": "否",
  1035. "This feed already exists (%s)": "源已存在 (%s)",
  1036. "Unable to fetch feed (Status Code = %d)": "无法获取源 (错误代码=%d)",
  1037. "Unable to open this link: %v": "无法打开这一链接: %v",
  1038. "Unable to analyze this page: %v": "无法分析这一页面: %v",
  1039. "Unable to find any subscription.": "找不到任何订阅.",
  1040. "The URL and the category are mandatory.": "必须填写URL和分类.",
  1041. "All fields are mandatory.": "必须填写全部信息.",
  1042. "Passwords are not the same.": "两次输入的密码不同.",
  1043. "You must use at least 6 characters.": "请至少使用6个字符.",
  1044. "The username is mandatory.": "必须填写用户名.",
  1045. "The username, theme, language and timezone fields are mandatory.": "必须填写用户名,主题,语言和时区.",
  1046. "The title is mandatory.": "必须填写标题.",
  1047. "About": "关于",
  1048. "Version": "版本",
  1049. "Version:": "版本:",
  1050. "Build Date:": "构建日期:",
  1051. "Author:": "作者:",
  1052. "Authors": "作者",
  1053. "License:": "协议:",
  1054. "Attachments": "附件",
  1055. "Download": "下载",
  1056. "Invalid username or password.": "用户名或密码无效.",
  1057. "Never": "永不",
  1058. "Unable to execute request: %v": "无法执行这一请求: %v",
  1059. "Last Parsing Error": "最后一次解析错误",
  1060. "There is a problem with this feed": "这一源存在问题",
  1061. "Unable to parse OPML file: %q": "无法解析OPML文件: %q",
  1062. "Unable to parse RSS feed: %q": "无法解析RSS源: %q",
  1063. "Unable to parse Atom feed: %q": "无法解析Atom源: %q",
  1064. "Unable to parse JSON feed: %q": "无法解析JSON源: %q",
  1065. "Unable to parse RDF feed: %q": "无法解析RDF源: %q",
  1066. "Unable to normalize encoding: %q": "无法正则化编码: %q",
  1067. "Unable to create this category.": "无法建立这个分类.",
  1068. "yes": "是",
  1069. "no": "否",
  1070. "Are you sure?": "您确认吗?",
  1071. "Work in progress...": "执行中...",
  1072. "This user already exists.": "用户已存在.",
  1073. "This category already exists.": "分类已存在.",
  1074. "Unable to update this category.": "无法更新该分类.",
  1075. "Integrations": "集成",
  1076. "Bookmarklet": "书签小应用",
  1077. "Drag and drop this link to your bookmarks.": "拖动这个链接到书签.",
  1078. "This special link allows you to subscribe to a website directly by using a bookmark in your web browser.": "你可以打开这个特殊的书签来直接订阅网站.",
  1079. "Add to Miniflux": "新增到Miniflux",
  1080. "Refresh all feeds in background": "在后台更新全部源",
  1081. "Sign in with Google": "使用Google登陆",
  1082. "Unlink my Google account": "去除Google账号关联",
  1083. "Link my Google account": "关联我的Google账户",
  1084. "Category not found for this user": "未找到该用户的这一分类",
  1085. "Invalid theme.": "无效的主题.",
  1086. "Entry Sorting": "内容排序",
  1087. "Older entries first": "旧->新",
  1088. "Recent entries first": "新->旧",
  1089. "Saving...": "保存中",
  1090. "Done!": "完成!",
  1091. "Save this article": "保存这篇文章",
  1092. "Mark bookmark as unread": "标记为未读",
  1093. "Pinboard Tags": "Pinboard 标签",
  1094. "Pinboard API Token": "Pinboard API Token",
  1095. "Save articles to Pinboard": "保存文章到Pinboard",
  1096. "Save articles to Instapaper": "保存文章到Instapaper",
  1097. "Instapaper Username": "Instapaper 用户名",
  1098. "Instapaper Password": "Instapaper 密码",
  1099. "Activate Fever API": "启用 Fever API",
  1100. "Fever Username": "Fever 用户名",
  1101. "Fever Password": "Fever 密码",
  1102. "Fetch original content": "抓取原内容",
  1103. "Scraper Rules": "Scraper规则",
  1104. "Rewrite Rules": "重写规则",
  1105. "Preferences saved!": "偏好已存储!",
  1106. "Your external account is now linked!": "您的外部账号已关联!",
  1107. "Save articles to Wallabag": "保存文章到Wallabag",
  1108. "Wallabag API Endpoint": "Wallabag URL",
  1109. "Wallabag Client ID": "Wallabag 客户端ID",
  1110. "Wallabag Client Secret": "Wallabag 客户端Secret",
  1111. "Wallabag Username": "Wallabag 用户名",
  1112. "Wallabag Password": "Wallabag 密码",
  1113. "Save articles to Nunux Keeper": "保存文章到Nunux Keeper",
  1114. "Nunux Keeper API Endpoint": "Nunux Keeper API Endpoint",
  1115. "Nunux Keeper API key": "Nunux Keeper API key",
  1116. "Keyboard Shortcut: %s": "快捷键: %s",
  1117. "Favorites": "收藏",
  1118. "Star": "标记星标",
  1119. "Unstar": "去掉星标",
  1120. "Starred": "星标",
  1121. "There is no bookmark at the moment.": "当前没有书签.",
  1122. "Last checked:": "上次检查:",
  1123. "ETag header:": "ETag header:",
  1124. "LastModified header:": "最后修改的Header:",
  1125. "None": "无",
  1126. "Keyboard Shortcuts": "快捷键",
  1127. "Sections Navigation": "分区导航",
  1128. "Go to unread": "去往未读",
  1129. "Go to bookmarks": "去往书签",
  1130. "Go to history": "去往历史",
  1131. "Go to feeds": "去往源",
  1132. "Go to categories": "去往分类",
  1133. "Go to settings": "去往设定",
  1134. "Show keyboard shortcuts": "显示快捷键",
  1135. "Items Navigation": "条目导航",
  1136. "Go to previous item": "上一条目",
  1137. "Go to next item": "下一条目",
  1138. "Pages Navigation": "页面导航",
  1139. "Go to previous page": "上一页",
  1140. "Go to next page": "下一页",
  1141. "Open selected item": "打开选定的条目",
  1142. "Open original link": "打开原始链接",
  1143. "Toggle read/unread": "切换已读/未读状态",
  1144. "Mark current page as read": "标记当前",
  1145. "Download original content": "下载原始内容",
  1146. "Toggle bookmark": "切换收藏状态",
  1147. "Close modal dialog": "关闭模态对话窗口",
  1148. "Save article": "保存文章",
  1149. "There is already someone associated with this provider!": "该Provider已被关联!",
  1150. "There is already someone else with the same Fever username!": "Fever用户名已被占用!",
  1151. "Mark all as read": "全标记为已读",
  1152. "This feed is empty": "该源是空的",
  1153. "Flush history": "清理历史",
  1154. "Site URL": "站点URL",
  1155. "Feed URL": "源URL",
  1156. "Logged as %s": "当前登录 %s",
  1157. "Unread Items": "未读条目",
  1158. "Change entry status": "更改状态",
  1159. "Read": "标为已读",
  1160. "Fever API endpoint:": "Fever API Endpoint:",
  1161. "Miniflux API": "Miniflux API",
  1162. "API Endpoint": "API Endpoint",
  1163. "Your account password": "您账户的密码",
  1164. "This web page is empty": "该网页是空的",
  1165. "Invalid SSL certificate (original error: %q)": "无效的SSL证书 (原始错误: %q)",
  1166. "This website is temporarily unreachable (original error: %q)": "该网站暂时不可达 (原始错误: %q)",
  1167. "This website is permanently unreachable (original error: %q)": "该网站永久不可达 (原始错误: %q)",
  1168. "Website unreachable, the request timed out after %d seconds": "网站不可达, 请求已在 %d 秒后超时"
  1169. }
  1170. `,
  1171. }
  1172. var translationsChecksums = map[string]string{
  1173. "de_DE": "c87a08365c81ec478d705d8e1110cd1b864476d35b5b281f1e76e7a21afc1ae7",
  1174. "en_US": "6fe95384260941e8a5a3c695a655a932e0a8a6a572c1e45cb2b1ae8baa01b897",
  1175. "fr_FR": "343a148eed375a593023c30597ef7280d18222756c5062e6a85e1006c7b12d14",
  1176. "nl_NL": "05cca4936bd3b0fa44057c4dab64acdef3aed32fbb682393f254cfe2f686ef1f",
  1177. "pl_PL": "2295f35a98c8f60cfc6bab241d26b224c06979cc9ca3740bb89c63c7596a0431",
  1178. "zh_CN": "f5fb0a9b7336c51e74d727a2fb294bab3514e3002376da7fd904e0d7caed1a1c",
  1179. }