sub.php 9.0 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をコピーします。',
  14. 'title' => 'API', // IGNORE
  15. ),
  16. 'bookmarklet' => array(
  17. 'documentation' => 'このボタンをブックマークツールバーへドラッグするか、右クリックして、「このリンクをブックマークする」を選択します。そうすることでどのページでも購読できるようになります。',
  18. 'label' => '購読',
  19. 'title' => 'ブックマーク',
  20. ),
  21. 'category' => array(
  22. '_' => 'カテゴリ',
  23. 'add' => 'カテゴリを追加する',
  24. 'archiving' => 'アーカイブ',
  25. 'empty' => 'からのカテゴリ',
  26. 'information' => 'インフォメーション',
  27. 'position' => '表示位置',
  28. 'position_help' => 'カテゴリの表示順を操作する',
  29. 'title' => 'タイトル',
  30. ),
  31. 'feed' => array(
  32. 'add' => 'RSSフィードに追加する',
  33. 'advanced' => '応用的な設定',
  34. 'archiving' => 'アーカイブ',
  35. 'auth' => array(
  36. 'configuration' => 'ログイン',
  37. 'help' => 'RSSフィードへのHTTPアクセスを許可する',
  38. 'http' => 'HTTP認証',
  39. 'password' => 'HTTP パスワード',
  40. 'username' => 'HTTP ユーザー名',
  41. ),
  42. 'clear_cache' => 'いつでもキャッシュをクリアする',
  43. 'content_action' => array(
  44. '_' => '記事のコンテンツを読み出したとき、コンテンツアクションを実行する',
  45. 'append' => '既に存在するコンテンツの後に追加する',
  46. 'prepend' => '既に存在するコンテンツの前に追加する',
  47. 'replace' => '既に存在するコンテンツを置換する',
  48. ),
  49. 'css_cookie' => '記事のコンテンツを読み出したとき、クッキーを使用する',
  50. 'css_cookie_help' => '例: <kbd>foo=bar; gdpr_consent=true; cookie=value</kbd>',
  51. 'css_help' => 'あきらめられたRSSフィードを取得します (注意してください、より多くの時間が必要になるでしょう!)',
  52. 'css_path' => '元のwebサイトの記事のCSS',
  53. 'description' => '説明',
  54. 'empty' => 'このフィードは空です。運営されているかどうかを確認してみてください。',
  55. 'error' => 'このフィードに問題が発生しました。ここにいつでもアクセスできるかどうかを確認して更新してみてください。',
  56. 'filteractions' => array(
  57. '_' => 'フィルターアクション',
  58. 'help' => '1行に1つの検索フィルターを設定してください',
  59. ),
  60. 'information' => 'インフォメーション',
  61. 'keep_min' => '最小数の記事は保持されます',
  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' => 'キャッシュのクリア',
  107. 'clear_cache_help' => 'このフィードのキャッシュをクリアします。',
  108. 'reload_articles' => '記事を再読み込みする',
  109. 'reload_articles_help' => '記事を再読み込みして、セレクターが定義したコンテンツを完全に取得します。',
  110. 'title' => 'メンテナンス',
  111. ),
  112. 'moved_category_deleted' => 'カテゴリを削除したとき、フィードは自動的に<em>%s</em>下に分類されます。',
  113. 'mute' => 'ミュート',
  114. 'no_selected' => 'どのフィードも選択されていません',
  115. 'number_entries' => '%d 記事数',
  116. 'priority' => array(
  117. '_' => '表示する場所',
  118. 'archived' => '非表示にする(アーカイブ)',
  119. 'main_stream' => 'メインストリームで表示する',
  120. 'normal' => 'カテゴリで表示する',
  121. ),
  122. 'proxy' => 'フィードを読み込み時にproxyを設定してください',
  123. 'proxy_help' => 'プロトコルを選択し (例: SOCKS5) proxyアドレスを入力してください (例: <kbd>127.0.0.1:1080</kbd>)',
  124. 'selector_preview' => array(
  125. 'show_raw' => 'ソースコードを表示する',
  126. 'show_rendered' => 'コンテンツを表示する',
  127. ),
  128. 'show' => array(
  129. 'all' => 'すべてのフィードを表示する',
  130. 'error' => 'エラーがあるフィードを表示する',
  131. ),
  132. 'showing' => array(
  133. 'error' => 'エラーがあるフィードを表示する',
  134. ),
  135. 'ssl_verify' => 'SSL セキュリティを管理する',
  136. 'stats' => '統計',
  137. 'think_to_add' => 'あなたはフィードを追加できるでしょう。',
  138. 'timeout' => 'タイムアウトする時間(秒)',
  139. 'title' => 'タイトル',
  140. 'title_add' => 'RSS フィードを追加する',
  141. 'ttl' => '自動更新の頻度',
  142. 'url' => 'フィードのURL',
  143. 'useragent' => 'フィードを読み込む際のユーザーエージェントを設定してください',
  144. 'useragent_help' => '例: <kbd>Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:86.0)</kbd>',
  145. 'validator' => 'フィードが有効であるかどうかを確認してください',
  146. 'website' => 'WebサイトのURL',
  147. 'websub' => 'WebSubとの即時通知',
  148. ),
  149. 'import_export' => array(
  150. 'export' => 'エクスポート',
  151. 'export_labelled' => 'ラベル付けされた記事をエクスポートする',
  152. 'export_opml' => 'フィードリストをエクスポートする (OPML)',
  153. 'export_starred' => 'お気に入りをエクスポートする',
  154. 'feed_list' => '%s 記事のリスト',
  155. 'file_to_import' => 'インポートするファイル<br />(OPML, JSON あるいは ZIP)',
  156. 'file_to_import_no_zip' => 'インポートするファイル<br />(OPML あるいは JSON)',
  157. 'import' => 'インポート',
  158. 'starred_list' => 'お気に入りの記事',
  159. 'title' => 'インポート / エクスポート',
  160. ),
  161. 'menu' => array(
  162. 'add' => 'フィード化カテゴリを追加します',
  163. 'import_export' => 'インポート / エクスポート',
  164. 'label_management' => 'ラベル管理',
  165. 'stats' => array(
  166. 'idle' => '未使用のフィード',
  167. 'main' => '主な統計',
  168. 'repartition' => '記事の仕切り',
  169. ),
  170. 'subscription_management' => '購読されたものの管理',
  171. 'subscription_tools' => '購読ツール',
  172. ),
  173. 'tag' => array(
  174. 'name' => '名前',
  175. 'new_name' => '新しい名前',
  176. 'old_name' => '古い名前',
  177. ),
  178. 'title' => array(
  179. '_' => '購読されたものの管理',
  180. 'add' => 'フィードあるいはカテゴリを追加します',
  181. 'add_category' => 'カテゴリの追加',
  182. 'add_feed' => 'フィードの追加',
  183. 'add_label' => 'ラベルの追加',
  184. 'delete_label' => 'ラベルの削除',
  185. 'feed_management' => 'RSSフィードの管理',
  186. 'rename_label' => 'ラベルの名前変更',
  187. 'subscription_tools' => '購読ツール',
  188. ),
  189. );