sub.php 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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' => 'URL’yi harici bir araçla kullanmak için kopyala.',
  14. 'title' => 'API', // IGNORE
  15. ),
  16. 'bookmarklet' => array(
  17. 'documentation' => 'Bu butonu yer imleri araç çubuğunuza sürükleyerek veya sağ tıklayıp "Bağlantıyı yer imlerine ekle" seçeneğini seçerek yer imlerine ekleyin. Eklemek istediğiniz sitedeyken oluşturulan bu "Abone Ol" butonu ile akış ekleyebilirsiniz.',
  18. 'label' => 'Abone ol',
  19. 'title' => 'Bookmarklet', // IGNORE
  20. ),
  21. 'category' => array(
  22. '_' => 'Kategori',
  23. 'add' => 'Kategori ekle',
  24. 'archiving' => 'Arşiv',
  25. 'empty' => 'Boş kategori',
  26. 'information' => 'Bilgi',
  27. 'position' => 'Konumu göster',
  28. 'position_help' => 'Kategori sıralama düzenini kontrol etmek için',
  29. 'title' => 'Başlık',
  30. ),
  31. 'feed' => array(
  32. 'add' => 'RSS akışı ekle',
  33. 'advanced' => 'Gelişmiş',
  34. 'archiving' => 'Arşiv',
  35. 'auth' => array(
  36. 'configuration' => 'Giriş',
  37. 'help' => 'HTTP korumalı RSS akışlarına bağlantı izni sağlar',
  38. 'http' => 'HTTP Kimlik Doğrulama',
  39. 'password' => 'HTTP şifre',
  40. 'username' => 'HTTP kullanıcı adı',
  41. ),
  42. 'clear_cache' => 'Önbelleği her zaman temizle',
  43. 'content_action' => array(
  44. '_' => 'Content action when fetching the article content', // TODO
  45. 'append' => 'Mevcut içeriğin sonrasına ekle',
  46. 'prepend' => 'Mevcut içeriğin öncesine ekle',
  47. 'replace' => 'Mevcut içerikle değiştir',
  48. ),
  49. 'css_cookie' => 'Makale içeriğini yüklerken çerez kullan',
  50. 'css_cookie_help' => 'Örnek: <kbd>foo=bar; gdpr_consent=true; cookie=value</kbd>',
  51. 'css_help' => 'Dikkat, daha çok zaman gerekir!',
  52. 'css_path' => 'Makaleleri kendi CSS görünümü ile göster',
  53. 'description' => 'Tanım',
  54. 'empty' => 'Bu akış boş. Lütfen akışın aktif olduğuna emin olun.',
  55. 'error' => 'Bu akışda bir hatayla karşılaşıldı. Lütfen akışın sürekli ulaşılabilir olduğuna emin olun.',
  56. 'filteractions' => array(
  57. '_' => 'Eylemi filtrele',
  58. 'help' => 'Her satıra tek arama filtresi yaz.',
  59. ),
  60. 'information' => 'Bilgi',
  61. 'keep_min' => 'En az tutulacak makale sayısı',
  62. 'kind' => array(
  63. '_' => 'Type of feed source', // TODO
  64. 'html_xpath' => array(
  65. '_' => 'HTML + XPath (Web scraping)', // TODO
  66. 'feed_title' => array(
  67. '_' => 'feed title', // TODO
  68. 'help' => 'Example: <code>//title</code> or a static string: <code>"My custom feed"</code>', // TODO
  69. ),
  70. '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
  71. 'item' => array(
  72. '_' => 'finding news <strong>items</strong><br /><small>(most important)</small>', // TODO
  73. 'help' => 'Example: <code>//div[@class="news-item"]</code>', // TODO
  74. ),
  75. 'item_author' => array(
  76. '_' => 'item author', // TODO
  77. 'help' => 'Can also be a static string. Example: <code>"Anonymous"</code>', // TODO
  78. ),
  79. 'item_categories' => 'items tags', // TODO
  80. 'item_content' => array(
  81. '_' => 'item content', // TODO
  82. 'help' => 'Example to take the full item: <code>.</code>', // TODO
  83. ),
  84. 'item_thumbnail' => array(
  85. '_' => 'item thumbnail', // TODO
  86. 'help' => 'Example: <code>descendant::img/@src</code>', // TODO
  87. ),
  88. 'item_timestamp' => array(
  89. '_' => 'item date', // TODO
  90. 'help' => 'The result will be parsed by <a href="https://php.net/strtotime" target="_blank"><code>strtotime()</code></a>', // TODO
  91. ),
  92. 'item_title' => array(
  93. '_' => 'item title', // TODO
  94. '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
  95. ),
  96. 'item_uri' => array(
  97. '_' => 'item link (URL)', // TODO
  98. 'help' => 'Example: <code>descendant::a/@href</code>', // TODO
  99. ),
  100. 'relative' => 'XPath (relative to item) for:', // TODO
  101. 'xpath' => 'XPath for:', // TODO
  102. ),
  103. 'rss' => 'RSS / Atom (default)', // TODO
  104. ),
  105. 'maintenance' => array(
  106. 'clear_cache' => 'Önbelleği temizle',
  107. 'clear_cache_help' => 'Bu akışın önbelleğini temizler.',
  108. 'reload_articles' => 'Makaleleri yeniden yükle',
  109. 'reload_articles_help' => 'Reload articles and fetch complete content if a selector is defined.', // TODO
  110. 'title' => 'Bakım',
  111. ),
  112. 'moved_category_deleted' => 'Bir kategoriyi silerseniz, içerisindeki akışlar <em>%s</em> içerisine yerleşir.',
  113. 'mute' => 'sessize al',
  114. 'no_selected' => 'Hiçbir akış seçilmedi.',
  115. 'number_entries' => '%d makale',
  116. 'priority' => array(
  117. '_' => 'Görünürlük',
  118. 'archived' => 'Gösterme (arşivlenmiş)',
  119. 'main_stream' => 'Ana akışda göster',
  120. 'normal' => 'Kendi kategorisinde göster',
  121. ),
  122. 'proxy' => 'Bu akışı güncellemek için vekil sunucu kullan',
  123. 'proxy_help' => 'Bir protokol seçin (ör: SOCKS5) vekil sunucu adresini girin (e.g: <kbd>127.0.0.1:1080</kbd>)',
  124. 'selector_preview' => array(
  125. 'show_raw' => 'Kaynak kodu göster',
  126. 'show_rendered' => 'İçeriği göster',
  127. ),
  128. 'show' => array(
  129. 'all' => 'Tüm akışı göster',
  130. 'error' => 'Sadece hatalı akışları göster',
  131. ),
  132. 'showing' => array(
  133. 'error' => 'Sadece hatalı akışları gösteriliyor',
  134. ),
  135. 'ssl_verify' => 'SSL güvenliğini doğrula',
  136. 'stats' => 'İstatistikler',
  137. 'think_to_add' => 'Akış ekleyebilirsiniz.',
  138. 'timeout' => 'Zaman aşımı (saniye)',
  139. 'title' => 'Başlık',
  140. 'title_add' => 'RSS akışı ekle',
  141. 'ttl' => 'Şu kadar süreden fazla otomatik yenileme yapma',
  142. 'url' => 'Akış URL',
  143. 'useragent' => 'Bu akışı yüklemek için user agent kullan',
  144. 'useragent_help' => 'Örnek: <kbd>Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:86.0)</kbd>',
  145. 'validator' => 'Akış geçerliliğini kontrol edin',
  146. 'website' => 'Site URL',
  147. 'websub' => 'WebSub ile anlık bildirim',
  148. ),
  149. 'import_export' => array(
  150. 'export' => 'Dışa aktar',
  151. 'export_labelled' => 'Etiketli makaleleri dışarı aktar',
  152. 'export_opml' => 'Akış listesini dışarı aktar (OPML)',
  153. 'export_starred' => 'Favorileri dışarı aktar',
  154. 'feed_list' => '%s makalenin listesi',
  155. 'file_to_import' => 'Dosyadan içe aktar<br />(OPML, JSON or ZIP)',
  156. 'file_to_import_no_zip' => 'Dosyadan içe aktar<br />(OPML or JSON)',
  157. 'import' => 'İçe aktar',
  158. 'starred_list' => 'Favori makaleleirn listesi',
  159. 'title' => 'İçe / dışa aktar',
  160. ),
  161. 'menu' => array(
  162. 'add' => 'Kategori veya akış ekle',
  163. 'import_export' => 'İçe / dışa aktar',
  164. 'label_management' => 'Etiket yönetimi',
  165. 'stats' => array(
  166. 'idle' => 'Boştaki akışlar',
  167. 'main' => 'Ana istatistikler',
  168. 'repartition' => 'Makale dağılımı',
  169. ),
  170. 'subscription_management' => 'Abonelik yönetimi',
  171. 'subscription_tools' => 'Abonelik araçları',
  172. ),
  173. 'tag' => array(
  174. 'name' => 'İsim',
  175. 'new_name' => 'Eski isim',
  176. 'old_name' => 'Yeni isim',
  177. ),
  178. 'title' => array(
  179. '_' => 'Abonelik yönetimi',
  180. 'add' => 'Kategori veya akış ekle',
  181. 'add_category' => 'Kategori ekle',
  182. 'add_feed' => 'Akış ekle',
  183. 'add_label' => 'Etiket ekle',
  184. 'delete_label' => 'Etiket sil',
  185. 'feed_management' => 'RSS akış yönetimi',
  186. 'rename_label' => 'Etiketi yeniden adlandır',
  187. 'subscription_tools' => 'Abonelik araçları',
  188. ),
  189. );