sub.php 8.7 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' => '외부 도구에서 API를 사용하기 위해서 아래 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. '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' => '빈 카테고리',
  30. 'information' => '정보',
  31. 'opml_url' => 'OPML URL', // TODO
  32. 'position' => '표시 위치',
  33. 'position_help' => '정렬 순서 제어',
  34. 'title' => '제목',
  35. ),
  36. 'feed' => array(
  37. 'add' => 'RSS 피드 추가',
  38. 'advanced' => '고급 설정',
  39. 'archiving' => '보관',
  40. 'auth' => array(
  41. 'configuration' => '로그인',
  42. 'help' => 'HTTP 접속이 제한되는 RSS 피드에 접근합니다',
  43. 'http' => 'HTTP 인증',
  44. 'password' => 'HTTP 암호',
  45. 'username' => 'HTTP 사용자 이름',
  46. ),
  47. 'clear_cache' => '항상 캐시 지우기',
  48. 'content_action' => array(
  49. '_' => '글 콘텐츠를 가져올 때의 동작',
  50. 'append' => '이미 존재하는 콘텐츠 다음에 추가',
  51. 'prepend' => '이미 존재하는 콘텐츠 이전에 추가',
  52. 'replace' => '이미 존재하는 콘텐츠 대체',
  53. ),
  54. 'css_cookie' => '글 콘텐츠를 가져올 때 쿠키를 사용',
  55. 'css_cookie_help' => '예시: <kbd>foo=bar; gdpr_consent=true; cookie=value</kbd>',
  56. 'css_help' => '글의 일부가 포함된 RSS 피드를 가져옵니다 (주의, 시간이 좀 더 걸립니다!)',
  57. 'css_path' => '웹사이트 상의 글 본문에 해당하는 CSS 경로',
  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' => '설명',
  63. 'empty' => '이 피드는 비어있습니다. 피드가 계속 운영되고 있는지 확인하세요.',
  64. 'error' => '이 피드에 문제가 발생했습니다. 이 피드에 접근 권한이 있는지 확인하세요.',
  65. 'filteractions' => array(
  66. '_' => '필터 동작',
  67. 'help' => '한 줄에 한 검색 필터를 작성해 주세요.',
  68. ),
  69. 'information' => '정보',
  70. 'keep_min' => '최소 유지 글 개수',
  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' => '캐쉬 지우기',
  116. 'clear_cache_help' => '이 피드의 캐쉬 지우기.',
  117. 'reload_articles' => '글 다시 로드',
  118. 'reload_articles_help' => '글 다시 로드하고 셀렉터가 정의 되었을 경우에 모든 컨텐츠 가져오기.', // DIRTY
  119. 'title' => '유지 보수',
  120. ),
  121. 'moved_category_deleted' => '카테고리를 삭제하면, 해당 카테고리 아래에 있던 피드들은 자동적으로 <em>%s</em> 아래로 분류됩니다.',
  122. 'mute' => '무기한 새로고침 금지',
  123. 'no_selected' => '선택된 피드가 없습니다.',
  124. 'number_entries' => '%d 개의 글',
  125. 'priority' => array(
  126. '_' => '표시',
  127. 'archived' => '표시하지 않음 (보관됨)',
  128. 'main_stream' => '메인 스트림에 표시하기',
  129. 'normal' => '피드가 속한 카테고리에만 표시하기',
  130. ),
  131. 'proxy' => '이 피드를 가져올 때 사용할 프록시 설정',
  132. 'proxy_help' => '프로토콜 선택 (예: SOCKS5) 그리고 프록시 주소 입력 (예: <kbd>127.0.0.1:1080</kbd>)',
  133. 'selector_preview' => array(
  134. 'show_raw' => '소스코드 표시',
  135. 'show_rendered' => '콘텐츠 표시',
  136. ),
  137. 'show' => array(
  138. 'all' => '모든 피드 보기',
  139. 'error' => '오류가 발생한 피드만 보기',
  140. ),
  141. 'showing' => array(
  142. 'error' => '오류가 발생한 피드만 보여주고 있습니다',
  143. ),
  144. 'ssl_verify' => 'SSL 유효성 검사',
  145. 'stats' => '통계',
  146. 'think_to_add' => '피드를 추가할 수 있습니다.',
  147. 'timeout' => '타임아웃 (초)',
  148. 'title' => '제목',
  149. 'title_add' => 'RSS 피드 추가',
  150. 'ttl' => '다음 시간이 지나기 전에 새로고침 금지',
  151. 'url' => '피드 URL',
  152. 'useragent' => '이 피드를 가져올 때 사용할 유저 에이전트 설정',
  153. 'useragent_help' => '예시: <kbd>Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:86.0)</kbd>',
  154. 'validator' => '피드 유효성 검사',
  155. 'website' => '웹사이트 URL',
  156. 'websub' => 'WebSub을 사용한 즉시 알림',
  157. ),
  158. 'import_export' => array(
  159. 'export' => '내보내기',
  160. 'export_labelled' => '라벨이 표시된 글들 내보내기',
  161. 'export_opml' => '피드 목록 내보내기 (OPML)',
  162. 'export_starred' => '즐겨찾기 내보내기',
  163. 'feed_list' => '%s 개의 글 목록',
  164. 'file_to_import' => '불러올 파일<br />(OPML, JSON 또는 ZIP)',
  165. 'file_to_import_no_zip' => '불러올 파일<br />(OPML 또는 JSON)',
  166. 'import' => '불러오기',
  167. 'starred_list' => '즐겨찾기에 등록된 글 목록',
  168. 'title' => '불러오기 / 내보내기',
  169. ),
  170. 'menu' => array(
  171. 'add' => '피드 혹은 카테고리 추가',
  172. 'import_export' => '불러오기 / 내보내기',
  173. 'label_management' => '라벨 관리',
  174. 'stats' => array(
  175. 'idle' => '유휴 피드',
  176. 'main' => '주요 통계',
  177. 'repartition' => '글 분류',
  178. ),
  179. 'subscription_management' => '구독 관리',
  180. 'subscription_tools' => '구독 도구',
  181. ),
  182. 'tag' => array(
  183. 'name' => '이름',
  184. 'new_name' => '새 이름',
  185. 'old_name' => '이전 이름',
  186. ),
  187. 'title' => array(
  188. '_' => '구독 관리',
  189. 'add' => '피드 혹은 카테고리 추가',
  190. 'add_category' => '카테고리 추가',
  191. 'add_dynamic_opml' => 'Add dynamic OPML', // TODO
  192. 'add_feed' => '피드 추가',
  193. 'add_label' => '라벨 추가',
  194. 'delete_label' => '라벨 삭제',
  195. 'feed_management' => 'RSS 피드 관리',
  196. 'rename_label' => '라벨 이름 바꾸기',
  197. 'subscription_tools' => '구독 도구',
  198. ),
  199. );