sub.php 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  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. 'css_path_filter' => array(
  59. '_' => 'CSS selector of the elements to remove', // TODO
  60. 'help' => 'A CSS selector may be a list such as: <kbd>.footer, .aside</kbd>', // TODO
  61. ),
  62. 'description' => 'Beschreibung',
  63. 'empty' => 'Dieser Feed ist leer. Bitte stellen Sie sicher, dass er noch gepflegt wird.',
  64. 'error' => 'Dieser Feed ist auf ein Problem gestoßen. Bitte stellen Sie sicher, dass er immer lesbar ist und aktualisieren Sie ihn dann.',
  65. 'filteractions' => array(
  66. '_' => 'Filteraktionen',
  67. 'help' => 'Ein Suchfilter pro Zeile',
  68. ),
  69. 'information' => 'Information', // IGNORE
  70. 'keep_min' => 'Minimale Anzahl an Artikeln, die behalten wird',
  71. 'kind' => array(
  72. '_' => 'Type of feed source', // TODO
  73. 'html_xpath' => array(
  74. '_' => 'HTML + XPath (Web scraping)', // TODO
  75. 'feed_title' => array(
  76. '_' => 'feed title', // TODO
  77. 'help' => 'Example: <code>//title</code> or a static string: <code>"My custom feed"</code>', // TODO
  78. ),
  79. '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
  80. 'item' => array(
  81. '_' => 'finding news <strong>items</strong><br /><small>(most important)</small>', // TODO
  82. 'help' => 'Example: <code>//div[@class="news-item"]</code>', // TODO
  83. ),
  84. 'item_author' => array(
  85. '_' => 'item author', // TODO
  86. 'help' => 'Can also be a static string. Example: <code>"Anonymous"</code>', // TODO
  87. ),
  88. 'item_categories' => 'items tags', // TODO
  89. 'item_content' => array(
  90. '_' => 'item content', // TODO
  91. 'help' => 'Example to take the full item: <code>.</code>', // TODO
  92. ),
  93. 'item_thumbnail' => array(
  94. '_' => 'item thumbnail', // TODO
  95. 'help' => 'Example: <code>descendant::img/@src</code>', // TODO
  96. ),
  97. 'item_timestamp' => array(
  98. '_' => 'item date', // TODO
  99. 'help' => 'The result will be parsed by <a href="https://php.net/strtotime" target="_blank"><code>strtotime()</code></a>', // TODO
  100. ),
  101. 'item_title' => array(
  102. '_' => 'item title', // TODO
  103. '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
  104. ),
  105. 'item_uri' => array(
  106. '_' => 'item link (URL)', // TODO
  107. 'help' => 'Example: <code>descendant::a/@href</code>', // TODO
  108. ),
  109. 'relative' => 'XPath (relative to item) for:', // TODO
  110. 'xpath' => 'XPath for:', // TODO
  111. ),
  112. 'rss' => 'RSS / Atom (default)', // TODO
  113. ),
  114. 'maintenance' => array(
  115. 'clear_cache' => 'Zwischenspeicher leeren',
  116. 'clear_cache_help' => 'Zwischenspeicher für diesen Feed leeren.',
  117. 'reload_articles' => 'Artikel neuladen',
  118. 'reload_articles_help' => 'Artikel neuladen und komplette Inhalte holen, wenn ein Selektor festgelegt wurde.', // DIRTY
  119. 'title' => 'Wartung',
  120. ),
  121. 'moved_category_deleted' => 'Wenn Sie eine Kategorie entfernen, werden deren Feeds automatisch in die Kategorie <em>%s</em> eingefügt.',
  122. 'mute' => 'Stumm schalten',
  123. 'no_selected' => 'Kein Feed ausgewählt.',
  124. 'number_entries' => '%d Artikel',
  125. 'priority' => array(
  126. '_' => 'Sichtbarkeit',
  127. 'archived' => 'Nicht anzeigen (archiviert)',
  128. 'main_stream' => 'In Haupt-Feeds zeigen',
  129. 'normal' => 'Zeige in eigener Kategorie',
  130. ),
  131. 'proxy' => 'Verwende einen Proxy, um den Feed abzuholen',
  132. 'proxy_help' => 'Wähle ein Protokoll (z.B. SOCKS5) und einen Proxy mit Port (z.B. <kbd>127.0.0.1:1080</kbd>)',
  133. 'selector_preview' => array(
  134. 'show_raw' => 'Quellcode anzeigen',
  135. 'show_rendered' => 'Inhalt anzeigen',
  136. ),
  137. 'show' => array(
  138. 'all' => 'Alle Feeds zeigen',
  139. 'error' => 'Nur Feeds mit Fehlern zeigen',
  140. ),
  141. 'showing' => array(
  142. 'error' => 'Nur Feeds mit Fehlern zeigen',
  143. ),
  144. 'ssl_verify' => 'Überprüfe SSL Sicherheit',
  145. 'stats' => 'Statistiken',
  146. 'think_to_add' => 'Sie können Feeds hinzufügen.',
  147. 'timeout' => 'Zeitlimit in Sekunden',
  148. 'title' => 'Titel',
  149. 'title_add' => 'Einen RSS-Feed hinzufügen',
  150. 'ttl' => 'Aktualisiere automatisch nicht öfter als',
  151. 'url' => 'Feed-URL',
  152. 'useragent' => 'Browser User Agent für den Abruf des Feeds verwenden',
  153. 'useragent_help' => 'Beispiel: <kbd>Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:86.0)</kbd>',
  154. 'validator' => 'Überprüfen Sie die Gültigkeit des Feeds',
  155. 'website' => 'Webseiten-URL',
  156. 'websub' => 'Sofortbenachrichtigung mit WebSub',
  157. ),
  158. 'import_export' => array(
  159. 'export' => 'Exportieren',
  160. 'export_labelled' => 'Artikel mit Labeln exportieren',
  161. 'export_opml' => 'Liste der Feeds exportieren (OPML)',
  162. 'export_starred' => 'Ihre Favoriten exportieren',
  163. 'feed_list' => 'Liste von %s Artikeln',
  164. 'file_to_import' => 'Zu importierende Datei<br />(OPML, JSON oder ZIP)',
  165. 'file_to_import_no_zip' => 'Zu importierende Datei<br />(OPML oder JSON)',
  166. 'import' => 'Importieren',
  167. 'starred_list' => 'Liste der Lieblingsartikel',
  168. 'title' => 'Importieren / Exportieren',
  169. ),
  170. 'menu' => array(
  171. 'add' => 'Feed oder Kategorie hinzufügen',
  172. 'import_export' => 'Importieren / Exportieren',
  173. 'label_management' => 'Labelverwaltung',
  174. 'stats' => array(
  175. 'idle' => 'Inaktive Feeds',
  176. 'main' => 'Haupt-Statistiken',
  177. 'repartition' => 'Artikel-Verteilung',
  178. ),
  179. 'subscription_management' => 'Abonnementverwaltung',
  180. 'subscription_tools' => 'Abonnement-Tools',
  181. ),
  182. 'tag' => array(
  183. 'name' => 'Name', // IGNORE
  184. 'new_name' => 'Neuer Name',
  185. 'old_name' => 'Alter Name',
  186. ),
  187. 'title' => array(
  188. '_' => 'Abonnementverwaltung',
  189. 'add' => 'Feed oder Kategorie hinzufügen',
  190. 'add_category' => 'Kategorie hinzufügen',
  191. 'add_dynamic_opml' => 'Add dynamic OPML', // TODO
  192. 'add_feed' => 'Feed hinzufügen',
  193. 'add_label' => 'Label hinzufügen',
  194. 'delete_label' => 'Label löschen',
  195. 'feed_management' => 'Verwaltung der RSS-Feeds',
  196. 'rename_label' => 'Label umbenennen',
  197. 'subscription_tools' => 'Abonnement-Tools',
  198. ),
  199. );