sub.php 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. <?php
  2. /******************************************************************************/
  3. /* Each entry of that file can be associated with a comment to indicate its */
  4. /* state. When there is no comment, it means the entry is fully translated. */
  5. /* The recognized comments are (comment matching is case-insensitive): */
  6. /* + TODO: the entry has never been translated. */
  7. /* + DIRTY: the entry has been translated but needs to be updated. */
  8. /* + IGNORE: the entry does not need to be translated. */
  9. /* When a comment is not recognized, it is discarded. */
  10. /******************************************************************************/
  11. return array(
  12. 'api' => array(
  13. 'documentation' => 'Kopieren Sie die folgende URL, um sie in einem externen Tool zu verwenden.',
  14. 'title' => 'API', // IGNORE
  15. ),
  16. 'bookmarklet' => array(
  17. 'documentation' => 'Ziehen Sie diese Schaltfläche auf Ihre Lesezeichen-Symbolleiste oder klicken Sie mit der rechten Maustaste darauf und wählen Sie "Als Lesezeichen hinzufügen". Klicken Sie dann auf einer beliebigen Seite, die Sie abonnieren möchten, auf die Schaltfläche "Abonnieren".',
  18. 'label' => 'Abonnieren',
  19. 'title' => 'Bookmarklet', // IGNORE
  20. ),
  21. 'category' => array(
  22. '_' => 'Kategorie',
  23. 'add' => 'Kategorie hinzufügen',
  24. 'archiving' => 'Archivierung',
  25. 'dynamic_opml' => array(
  26. '_' => 'Dynamic OPML', // TODO
  27. 'help' => 'Provide the URL to an <a href=http://opml.org/ target=_blank>OPML file</a> to dynamically populate this category with feeds', // TODO
  28. ),
  29. 'empty' => 'Leere Kategorie',
  30. 'information' => 'Information', // IGNORE
  31. 'opml_url' => 'OPML URL', // TODO
  32. 'position' => 'Reihenfolge',
  33. 'position_help' => 'Steuert die Kategoriesortierung',
  34. 'title' => 'Titel',
  35. ),
  36. 'feed' => array(
  37. 'add' => 'Einen RSS-Feed hinzufügen',
  38. 'advanced' => 'Erweitert',
  39. 'archiving' => 'Archivierung',
  40. 'auth' => array(
  41. 'configuration' => 'Anmelden',
  42. 'help' => 'Die Verbindung erlaubt Zugriff auf HTTP-geschützte RSS-Feeds',
  43. 'http' => 'HTTP-Authentifizierung',
  44. 'password' => 'HTTP-Passwort',
  45. 'username' => 'HTTP-Nutzername',
  46. ),
  47. 'clear_cache' => 'Nicht cachen (für defekte Feeds)',
  48. 'content_action' => array(
  49. '_' => 'Behandlung von Feed-Inhalt beim Herunterladen von Artikelinhalt',
  50. 'append' => 'Artikelinhalt nach Feed-Inhalt hinzufügen',
  51. 'prepend' => 'Artikelinhalt vor Feed-Inhalt hinzufügen',
  52. 'replace' => 'Artikelinhalt ersetzt Feed-Inhalt (Standard)',
  53. ),
  54. 'css_cookie' => 'Verwende Cookies beim Herunterladen des Feed-Inhalts mit CSS-Filtern',
  55. 'css_cookie_help' => 'Beispiel: <kbd>foo=bar; gdpr_consent=true; cookie=value</kbd>',
  56. 'css_help' => 'Ruft bei gekürzten RSS-Feeds den vollständigen Artikelinhalt ab (Achtung, benötigt mehr Zeit!)',
  57. 'css_path' => 'CSS-Selektor des Artikelinhaltes auf der Original-Webseite',
  58. 'description' => 'Beschreibung',
  59. 'empty' => 'Dieser Feed ist leer. Bitte stellen Sie sicher, dass er noch gepflegt wird.',
  60. 'error' => 'Dieser Feed ist auf ein Problem gestoßen. Bitte stellen Sie sicher, dass er immer lesbar ist und aktualisieren Sie ihn dann.',
  61. 'filteractions' => array(
  62. '_' => 'Filteraktionen',
  63. 'help' => 'Ein Suchfilter pro Zeile',
  64. ),
  65. 'information' => 'Information', // IGNORE
  66. 'keep_min' => 'Minimale Anzahl an Artikeln, die behalten wird',
  67. 'kind' => array(
  68. '_' => 'Type of feed source', // TODO
  69. 'html_xpath' => array(
  70. '_' => 'HTML + XPath (Web scraping)', // TODO
  71. 'feed_title' => array(
  72. '_' => 'feed title', // TODO
  73. 'help' => 'Example: <code>//title</code> or a static string: <code>"My custom feed"</code>', // TODO
  74. ),
  75. 'help' => '<dfn><a href="https://www.w3.org/TR/xpath-10/" target="_blank">XPath 1.0</a></dfn> is a standard query language for advanced users, and which FreshRSS supports to enable Web scraping.', // TODO
  76. 'item' => array(
  77. '_' => 'finding news <strong>items</strong><br /><small>(most important)</small>', // TODO
  78. 'help' => 'Example: <code>//div[@class="news-item"]</code>', // TODO
  79. ),
  80. 'item_author' => array(
  81. '_' => 'item author', // TODO
  82. 'help' => 'Can also be a static string. Example: <code>"Anonymous"</code>', // TODO
  83. ),
  84. 'item_categories' => 'items tags', // TODO
  85. 'item_content' => array(
  86. '_' => 'item content', // TODO
  87. 'help' => 'Example to take the full item: <code>.</code>', // TODO
  88. ),
  89. 'item_thumbnail' => array(
  90. '_' => 'item thumbnail', // TODO
  91. 'help' => 'Example: <code>descendant::img/@src</code>', // TODO
  92. ),
  93. 'item_timestamp' => array(
  94. '_' => 'item date', // TODO
  95. 'help' => 'The result will be parsed by <a href="https://php.net/strtotime" target="_blank"><code>strtotime()</code></a>', // TODO
  96. ),
  97. 'item_title' => array(
  98. '_' => 'item title', // TODO
  99. 'help' => 'Use in particular the <a href="https://developer.mozilla.org/docs/Web/XPath/Axes" target="_blank">XPath axis</a> <code>descendant::</code> like <code>descendant::h2</code>', // TODO
  100. ),
  101. 'item_uri' => array(
  102. '_' => 'item link (URL)', // TODO
  103. 'help' => 'Example: <code>descendant::a/@href</code>', // TODO
  104. ),
  105. 'relative' => 'XPath (relative to item) for:', // TODO
  106. 'xpath' => 'XPath for:', // TODO
  107. ),
  108. 'rss' => 'RSS / Atom (default)', // TODO
  109. ),
  110. 'maintenance' => array(
  111. 'clear_cache' => 'Zwischenspeicher leeren',
  112. 'clear_cache_help' => 'Zwischenspeicher für diesen Feed leeren.',
  113. 'reload_articles' => 'Artikel neuladen',
  114. 'reload_articles_help' => 'Artikel neuladen und komplette Inhalte holen, wenn ein Selektor festgelegt wurde.', // DIRTY
  115. 'title' => 'Wartung',
  116. ),
  117. 'moved_category_deleted' => 'Wenn Sie eine Kategorie entfernen, werden deren Feeds automatisch in die Kategorie <em>%s</em> eingefügt.',
  118. 'mute' => 'Stumm schalten',
  119. 'no_selected' => 'Kein Feed ausgewählt.',
  120. 'number_entries' => '%d Artikel',
  121. 'priority' => array(
  122. '_' => 'Sichtbarkeit',
  123. 'archived' => 'Nicht anzeigen (archiviert)',
  124. 'main_stream' => 'In Haupt-Feeds zeigen',
  125. 'normal' => 'Zeige in eigener Kategorie',
  126. ),
  127. 'proxy' => 'Verwende einen Proxy, um den Feed abzuholen',
  128. 'proxy_help' => 'Wähle ein Protokoll (z.B. SOCKS5) und einen Proxy mit Port (z.B. <kbd>127.0.0.1:1080</kbd>)',
  129. 'selector_preview' => array(
  130. 'show_raw' => 'Quellcode anzeigen',
  131. 'show_rendered' => 'Inhalt anzeigen',
  132. ),
  133. 'show' => array(
  134. 'all' => 'Alle Feeds zeigen',
  135. 'error' => 'Nur Feeds mit Fehlern zeigen',
  136. ),
  137. 'showing' => array(
  138. 'error' => 'Nur Feeds mit Fehlern zeigen',
  139. ),
  140. 'ssl_verify' => 'Überprüfe SSL Sicherheit',
  141. 'stats' => 'Statistiken',
  142. 'think_to_add' => 'Sie können Feeds hinzufügen.',
  143. 'timeout' => 'Zeitlimit in Sekunden',
  144. 'title' => 'Titel',
  145. 'title_add' => 'Einen RSS-Feed hinzufügen',
  146. 'ttl' => 'Aktualisiere automatisch nicht öfter als',
  147. 'url' => 'Feed-URL',
  148. 'useragent' => 'Browser User Agent für den Abruf des Feeds verwenden',
  149. 'useragent_help' => 'Beispiel: <kbd>Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:86.0)</kbd>',
  150. 'validator' => 'Überprüfen Sie die Gültigkeit des Feeds',
  151. 'website' => 'Webseiten-URL',
  152. 'websub' => 'Sofortbenachrichtigung mit WebSub',
  153. ),
  154. 'import_export' => array(
  155. 'export' => 'Exportieren',
  156. 'export_labelled' => 'Artikel mit Labeln exportieren',
  157. 'export_opml' => 'Liste der Feeds exportieren (OPML)',
  158. 'export_starred' => 'Ihre Favoriten exportieren',
  159. 'feed_list' => 'Liste von %s Artikeln',
  160. 'file_to_import' => 'Zu importierende Datei<br />(OPML, JSON oder ZIP)',
  161. 'file_to_import_no_zip' => 'Zu importierende Datei<br />(OPML oder JSON)',
  162. 'import' => 'Importieren',
  163. 'starred_list' => 'Liste der Lieblingsartikel',
  164. 'title' => 'Importieren / Exportieren',
  165. ),
  166. 'menu' => array(
  167. 'add' => 'Feed oder Kategorie hinzufügen',
  168. 'import_export' => 'Importieren / Exportieren',
  169. 'label_management' => 'Labelverwaltung',
  170. 'stats' => array(
  171. 'idle' => 'Inaktive Feeds',
  172. 'main' => 'Haupt-Statistiken',
  173. 'repartition' => 'Artikel-Verteilung',
  174. ),
  175. 'subscription_management' => 'Abonnementverwaltung',
  176. 'subscription_tools' => 'Abonnement-Tools',
  177. ),
  178. 'tag' => array(
  179. 'name' => 'Name', // IGNORE
  180. 'new_name' => 'Neuer Name',
  181. 'old_name' => 'Alter Name',
  182. ),
  183. 'title' => array(
  184. '_' => 'Abonnementverwaltung',
  185. 'add' => 'Feed oder Kategorie hinzufügen',
  186. 'add_category' => 'Kategorie hinzufügen',
  187. 'add_dynamic_opml' => 'Add dynamic OPML', // TODO
  188. 'add_feed' => 'Feed hinzufügen',
  189. 'add_label' => 'Label hinzufügen',
  190. 'delete_label' => 'Label löschen',
  191. 'feed_management' => 'Verwaltung der RSS-Feeds',
  192. 'rename_label' => 'Label umbenennen',
  193. 'subscription_tools' => 'Abonnement-Tools',
  194. ),
  195. );