messages.po 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827
  1. # Korean translations for PROJECT.
  2. # Copyright (C) 2022 ORGANIZATION
  3. # This file is distributed under the same license as the PROJECT project.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
  5. # Markus Heiser <markus.heiser@darmarit.de>, 2022.
  6. # Sangha Lee <totoriato@gmail.com>, 2022.
  7. # Soochaehwa <Soochaehwa@shwa.space>, 2022.
  8. # mystery-z <07juwonc@kakao.com>, 2023.
  9. # return42 <markus.heiser@darmarit.de>, 2023.
  10. # return42 <return42@users.noreply.translate.codeberg.org>, 2024.
  11. # eaglclaws <eaglclaws@users.noreply.translate.codeberg.org>, 2024.
  12. # seonghobae <seonghobae@users.noreply.translate.codeberg.org>, 2024.
  13. msgid ""
  14. msgstr ""
  15. "Project-Id-Version: PROJECT VERSION\n"
  16. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  17. "POT-Creation-Date: 2025-01-06 13:57+0000\n"
  18. "PO-Revision-Date: 2024-11-25 12:40+0000\n"
  19. "Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
  20. "\n"
  21. "Language: ko\n"
  22. "Language-Team: Korean "
  23. "<https://translate.codeberg.org/projects/searxng/searxng/ko/>\n"
  24. "Plural-Forms: nplurals=1; plural=0;\n"
  25. "MIME-Version: 1.0\n"
  26. "Content-Type: text/plain; charset=utf-8\n"
  27. "Content-Transfer-Encoding: 8bit\n"
  28. "Generated-By: Babel 2.16.0\n"
  29. #. CONSTANT_NAMES['NO_SUBGROUPING']
  30. #: searx/searxng.msg
  31. msgid "without further subgrouping"
  32. msgstr "미분류"
  33. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  34. #: searx/searxng.msg
  35. msgid "other"
  36. msgstr "기타"
  37. #. CATEGORY_NAMES['FILES']
  38. #: searx/searxng.msg
  39. msgid "files"
  40. msgstr "파일"
  41. #. CATEGORY_NAMES['GENERAL']
  42. #: searx/searxng.msg
  43. msgid "general"
  44. msgstr "일반"
  45. #. CATEGORY_NAMES['MUSIC']
  46. #: searx/searxng.msg
  47. msgid "music"
  48. msgstr "음악"
  49. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  50. #: searx/searxng.msg
  51. msgid "social media"
  52. msgstr "소셜 미디어"
  53. #. CATEGORY_NAMES['IMAGES']
  54. #: searx/searxng.msg
  55. msgid "images"
  56. msgstr "이미지"
  57. #. CATEGORY_NAMES['VIDEOS']
  58. #: searx/searxng.msg
  59. msgid "videos"
  60. msgstr "비디오"
  61. #. CATEGORY_NAMES['RADIO']
  62. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  63. msgid "radio"
  64. msgstr "라디오"
  65. #. CATEGORY_NAMES['TV']
  66. #: searx/searxng.msg
  67. msgid "tv"
  68. msgstr "tv"
  69. #. CATEGORY_NAMES['IT']
  70. #: searx/searxng.msg
  71. msgid "it"
  72. msgstr "IT"
  73. #. CATEGORY_NAMES['NEWS']
  74. #: searx/searxng.msg
  75. msgid "news"
  76. msgstr "뉴스"
  77. #. CATEGORY_NAMES['MAP']
  78. #: searx/searxng.msg
  79. msgid "map"
  80. msgstr "지도"
  81. #. CATEGORY_NAMES['ONIONS']
  82. #: searx/searxng.msg
  83. msgid "onions"
  84. msgstr "어니언"
  85. #. CATEGORY_NAMES['SCIENCE']
  86. #: searx/searxng.msg
  87. msgid "science"
  88. msgstr "과학"
  89. #. CATEGORY_NAMES['DUMMY']
  90. #: searx/searxng.msg
  91. msgid "dummy"
  92. msgstr ""
  93. #. CATEGORY_GROUPS['APPS']
  94. #: searx/searxng.msg
  95. msgid "apps"
  96. msgstr "앱"
  97. #. CATEGORY_GROUPS['DICTIONARIES']
  98. #: searx/searxng.msg
  99. msgid "dictionaries"
  100. msgstr "사전"
  101. #. CATEGORY_GROUPS['LYRICS']
  102. #: searx/searxng.msg
  103. msgid "lyrics"
  104. msgstr "가사"
  105. #. CATEGORY_GROUPS['PACKAGES']
  106. #: searx/searxng.msg
  107. msgid "packages"
  108. msgstr "패키지"
  109. #. CATEGORY_GROUPS['Q_A']
  110. #: searx/searxng.msg
  111. msgid "q&a"
  112. msgstr "Q&A"
  113. #. CATEGORY_GROUPS['REPOS']
  114. #: searx/searxng.msg
  115. msgid "repos"
  116. msgstr "리포지토리"
  117. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  118. #: searx/searxng.msg
  119. msgid "software wikis"
  120. msgstr "소프트웨어 위키"
  121. #. CATEGORY_GROUPS['WEB']
  122. #: searx/searxng.msg
  123. msgid "web"
  124. msgstr "웹"
  125. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  126. #: searx/searxng.msg
  127. msgid "scientific publications"
  128. msgstr "과학 출판물"
  129. #. STYLE_NAMES['AUTO']
  130. #: searx/searxng.msg
  131. msgid "auto"
  132. msgstr "자동"
  133. #. STYLE_NAMES['LIGHT']
  134. #: searx/searxng.msg
  135. msgid "light"
  136. msgstr "라이트"
  137. #. STYLE_NAMES['DARK']
  138. #: searx/searxng.msg
  139. msgid "dark"
  140. msgstr "다크"
  141. #. STYLE_NAMES['BLACK']
  142. #: searx/searxng.msg
  143. msgid "black"
  144. msgstr ""
  145. #. BRAND_CUSTOM_LINKS['UPTIME']
  146. #: searx/searxng.msg
  147. msgid "Uptime"
  148. msgstr "가동 시간"
  149. #. BRAND_CUSTOM_LINKS['ABOUT']
  150. #: searx/searxng.msg searx/templates/simple/base.html:50
  151. msgid "About"
  152. msgstr "정보"
  153. #. WEATHER_TERMS['AVERAGE TEMP.']
  154. #: searx/engines/wttr.py:32 searx/searxng.msg
  155. msgid "Average temp."
  156. msgstr "평균 온도."
  157. #. WEATHER_TERMS['CLOUD COVER']
  158. #: searx/engines/open_meteo.py:91 searx/searxng.msg
  159. msgid "Cloud cover"
  160. msgstr "운량"
  161. #. WEATHER_TERMS['CONDITION']
  162. #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
  163. #: searx/searxng.msg
  164. msgid "Condition"
  165. msgstr "상태"
  166. #. WEATHER_TERMS['CURRENT CONDITION']
  167. #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
  168. #: searx/searxng.msg
  169. msgid "Current condition"
  170. msgstr "현재 상태"
  171. #. WEATHER_TERMS['EVENING']
  172. #: searx/engines/wttr.py:100 searx/searxng.msg
  173. msgid "Evening"
  174. msgstr "저녁"
  175. #. WEATHER_TERMS['FEELS LIKE']
  176. #: searx/engines/duckduckgo_weather.py:53 searx/engines/open_meteo.py:81
  177. #: searx/engines/wttr.py:59 searx/searxng.msg
  178. msgid "Feels like"
  179. msgstr "체감"
  180. #. WEATHER_TERMS['HUMIDITY']
  181. #: searx/engines/duckduckgo_weather.py:64 searx/engines/open_meteo.py:93
  182. #: searx/engines/wttr.py:68 searx/searxng.msg
  183. msgid "Humidity"
  184. msgstr "습도"
  185. #. WEATHER_TERMS['MAX TEMP.']
  186. #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
  187. #: searx/searxng.msg
  188. msgid "Max temp."
  189. msgstr "최대 기온"
  190. #. WEATHER_TERMS['MIN TEMP.']
  191. #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
  192. #: searx/searxng.msg
  193. msgid "Min temp."
  194. msgstr "최저 기온"
  195. #. WEATHER_TERMS['MORNING']
  196. #: searx/engines/wttr.py:100 searx/searxng.msg
  197. msgid "Morning"
  198. msgstr "아침"
  199. #. WEATHER_TERMS['NIGHT']
  200. #: searx/engines/wttr.py:100 searx/searxng.msg
  201. msgid "Night"
  202. msgstr "밤"
  203. #. WEATHER_TERMS['NOON']
  204. #: searx/engines/wttr.py:100 searx/searxng.msg
  205. msgid "Noon"
  206. msgstr "정오"
  207. #. WEATHER_TERMS['PRESSURE']
  208. #: searx/engines/open_meteo.py:95 searx/searxng.msg
  209. msgid "Pressure"
  210. msgstr "기압"
  211. #. WEATHER_TERMS['SUNRISE']
  212. #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
  213. #: searx/searxng.msg
  214. msgid "Sunrise"
  215. msgstr "일출"
  216. #. WEATHER_TERMS['SUNSET']
  217. #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
  218. #: searx/searxng.msg
  219. msgid "Sunset"
  220. msgstr "일몰"
  221. #. WEATHER_TERMS['TEMPERATURE']
  222. #: searx/engines/duckduckgo_weather.py:48 searx/engines/open_meteo.py:76
  223. #: searx/engines/wttr.py:55 searx/searxng.msg
  224. msgid "Temperature"
  225. msgstr "기온"
  226. #. WEATHER_TERMS['UV INDEX']
  227. #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
  228. #: searx/searxng.msg
  229. msgid "UV index"
  230. msgstr "자외선 지수"
  231. #. WEATHER_TERMS['VISIBILITY']
  232. #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
  233. #: searx/searxng.msg
  234. msgid "Visibility"
  235. msgstr "가시도"
  236. #. WEATHER_TERMS['WIND']
  237. #: searx/engines/duckduckgo_weather.py:58 searx/engines/open_meteo.py:86
  238. #: searx/engines/wttr.py:62 searx/searxng.msg
  239. msgid "Wind"
  240. msgstr "풍속"
  241. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  242. #: searx/engines/lemmy.py:85 searx/searxng.msg
  243. msgid "subscribers"
  244. msgstr "구독자"
  245. #. SOCIAL_MEDIA_TERMS['POSTS']
  246. #: searx/engines/lemmy.py:86 searx/searxng.msg
  247. msgid "posts"
  248. msgstr "글"
  249. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  250. #: searx/engines/lemmy.py:87 searx/searxng.msg
  251. msgid "active users"
  252. msgstr "활동 사용자"
  253. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  254. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  255. #: searx/engines/lemmy.py:130 searx/searxng.msg
  256. msgid "comments"
  257. msgstr "댓글"
  258. #. SOCIAL_MEDIA_TERMS['USER']
  259. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  260. msgid "user"
  261. msgstr "사용자"
  262. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  263. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  264. msgid "community"
  265. msgstr "커뮤니티"
  266. #. SOCIAL_MEDIA_TERMS['POINTS']
  267. #: searx/engines/hackernews.py:82 searx/searxng.msg
  268. msgid "points"
  269. msgstr "점수"
  270. #. SOCIAL_MEDIA_TERMS['TITLE']
  271. #: searx/searxng.msg
  272. msgid "title"
  273. msgstr "제목"
  274. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  275. #: searx/engines/hackernews.py:85 searx/searxng.msg
  276. msgid "author"
  277. msgstr "작성자"
  278. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  279. #: searx/engines/discourse.py:149 searx/searxng.msg
  280. msgid "open"
  281. msgstr "열기"
  282. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  283. #: searx/engines/discourse.py:149 searx/searxng.msg
  284. msgid "closed"
  285. msgstr "닫힘"
  286. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  287. #: searx/engines/discourse.py:160 searx/searxng.msg
  288. msgid "answered"
  289. msgstr "응답"
  290. #: searx/webapp.py:323
  291. msgid "No item found"
  292. msgstr "검색 결과가 없습니다"
  293. #: searx/engines/qwant.py:288
  294. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:325
  295. msgid "Source"
  296. msgstr "소스"
  297. #: searx/webapp.py:327
  298. msgid "Error loading the next page"
  299. msgstr "다음 페이지를 로드하는 동안 오류가 발생했습니다"
  300. #: searx/webapp.py:492 searx/webapp.py:900
  301. msgid "Invalid settings, please edit your preferences"
  302. msgstr "잘못된 설정입니다, 설정을 수정하세요"
  303. #: searx/webapp.py:508
  304. msgid "Invalid settings"
  305. msgstr "잘못된 설정"
  306. #: searx/webapp.py:585 searx/webapp.py:675
  307. msgid "search error"
  308. msgstr "검색 오류"
  309. #: searx/webutils.py:36
  310. msgid "timeout"
  311. msgstr "대기 시간"
  312. #: searx/webutils.py:37
  313. msgid "parsing error"
  314. msgstr "구문 분석 오류"
  315. #: searx/webutils.py:38
  316. msgid "HTTP protocol error"
  317. msgstr "HTTP 프로토콜 오류"
  318. #: searx/webutils.py:39
  319. msgid "network error"
  320. msgstr "네트워크 오류"
  321. #: searx/webutils.py:40
  322. msgid "SSL error: certificate validation has failed"
  323. msgstr "SSL 에러: 인증서 무효"
  324. #: searx/webutils.py:42
  325. msgid "unexpected crash"
  326. msgstr "예상치 못한 충돌"
  327. #: searx/webutils.py:49
  328. msgid "HTTP error"
  329. msgstr "HTTP 오류"
  330. #: searx/webutils.py:50
  331. msgid "HTTP connection error"
  332. msgstr "HTTP 연결 오류"
  333. #: searx/webutils.py:56
  334. msgid "proxy error"
  335. msgstr "프록시 오류"
  336. #: searx/webutils.py:57
  337. msgid "CAPTCHA"
  338. msgstr "CAPTCHA"
  339. #: searx/webutils.py:58
  340. msgid "too many requests"
  341. msgstr "너무 많은 요청"
  342. #: searx/webutils.py:59
  343. msgid "access denied"
  344. msgstr "액세스 거부"
  345. #: searx/webutils.py:60
  346. msgid "server API error"
  347. msgstr "서버 API 오류"
  348. #: searx/webutils.py:79
  349. msgid "Suspended"
  350. msgstr "중단됨"
  351. #: searx/webutils.py:314
  352. msgid "{minutes} minute(s) ago"
  353. msgstr "{minutes}분 전"
  354. #: searx/webutils.py:315
  355. msgid "{hours} hour(s), {minutes} minute(s) ago"
  356. msgstr "{hours}시간 {minutes}분 전"
  357. #: searx/answerers/random/answerer.py:76
  358. msgid "Random value generator"
  359. msgstr "난수 생성기"
  360. #: searx/answerers/random/answerer.py:77
  361. msgid "Generate different random values"
  362. msgstr "다른 난수 생성"
  363. #: searx/answerers/statistics/answerer.py:50
  364. msgid "Statistics functions"
  365. msgstr "통계 기능"
  366. #: searx/answerers/statistics/answerer.py:51
  367. msgid "Compute {functions} of the arguments"
  368. msgstr "{functions} 매개변수 계산"
  369. #: searx/engines/mozhi.py:57
  370. msgid "Synonyms"
  371. msgstr ""
  372. #: searx/engines/openstreetmap.py:159
  373. msgid "Get directions"
  374. msgstr "길찾기"
  375. #: searx/engines/pdbe.py:96
  376. msgid "{title} (OBSOLETE)"
  377. msgstr "{title} (사용되지 않음)"
  378. #: searx/engines/pdbe.py:103
  379. msgid "This entry has been superseded by"
  380. msgstr "이 항목은 다음으로 대체되었습니다"
  381. #: searx/engines/qwant.py:290
  382. msgid "Channel"
  383. msgstr "채널"
  384. #: searx/engines/radio_browser.py:105
  385. msgid "bitrate"
  386. msgstr "비트 레이트"
  387. #: searx/engines/radio_browser.py:106
  388. msgid "votes"
  389. msgstr "표"
  390. #: searx/engines/radio_browser.py:107
  391. msgid "clicks"
  392. msgstr "클릭"
  393. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  394. #: searx/engines/zlibrary.py:137
  395. msgid "Language"
  396. msgstr "언어"
  397. #: searx/engines/semantic_scholar.py:78
  398. msgid ""
  399. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  400. "{lastCitationVelocityYear}"
  401. msgstr ""
  402. "{firstCitationVelocityYear}년부터 {lastCitationVelocityYear}년까지의 "
  403. "{numCitations}회 인용"
  404. #: searx/engines/tineye.py:45
  405. msgid ""
  406. "Could not read that image url. This may be due to an unsupported file "
  407. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  408. " WebP."
  409. msgstr ""
  410. "이미지 주소를 읽을 수 없습니다. 파일 포맷을 지원하지 않아 발생하는 문제일 수도 있습니다. TinEye는 JPEG, PNG, "
  411. "GIF, BMP, TIFF 그리고 WebP 이미지만 지원합니다."
  412. #: searx/engines/tineye.py:51
  413. msgid ""
  414. "The image is too simple to find matches. TinEye requires a basic level of"
  415. " visual detail to successfully identify matches."
  416. msgstr ""
  417. "이미지가 너무 단순해 일치하는 항목을 찾을 수 없습니다. TinEye가 일치하는 이미지를 성공적으로 식별하기 위해선 최소 수준의 "
  418. "시각적 정보가 필요합니다;."
  419. #: searx/engines/tineye.py:57
  420. msgid "The image could not be downloaded."
  421. msgstr "다운로드할 수 없는 이미지입니다."
  422. #: searx/engines/zlibrary.py:138
  423. msgid "Book rating"
  424. msgstr "책 평점"
  425. #: searx/engines/zlibrary.py:139
  426. msgid "File quality"
  427. msgstr "파일 품질"
  428. #: searx/plugins/calculator.py:18
  429. msgid "Calculate mathematical expressions via the search bar"
  430. msgstr "검색바를 통해 수학연산 계산하기"
  431. #: searx/plugins/hash_plugin.py:10
  432. msgid "Converts strings to different hash digests."
  433. msgstr "문자열을 다른 해시 다이제스트 값으로 변환합니다."
  434. #: searx/plugins/hash_plugin.py:38
  435. msgid "hash digest"
  436. msgstr "해시 다이제스트"
  437. #: searx/plugins/hostnames.py:103
  438. msgid "Hostnames plugin"
  439. msgstr "호스트 이름 플러그인"
  440. #: searx/plugins/hostnames.py:104
  441. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  442. msgstr "검색 결과에서 이 호스트 이름을 기준으로 삭제 또는 우선순위에 따라 재작성하기"
  443. #: searx/plugins/oa_doi_rewrite.py:12
  444. msgid "Open Access DOI rewrite"
  445. msgstr "오픈 액세스 DOI 재작성"
  446. #: searx/plugins/oa_doi_rewrite.py:13
  447. msgid ""
  448. "Avoid paywalls by redirecting to open-access versions of publications "
  449. "when available"
  450. msgstr "가능한 경우 공개 액세스 버전의 출판물로 리디렉션하여 페이월 방지"
  451. #: searx/plugins/self_info.py:9
  452. msgid "Self Information"
  453. msgstr "본인 정보"
  454. #: searx/plugins/self_info.py:10
  455. msgid ""
  456. "Displays your IP if the query is \"ip\" and your user agent if the query "
  457. "contains \"user agent\"."
  458. msgstr "쿼리가 \"ip\"인 경우 사용자의 IP를 표시하고 쿼리에 \"user agent\"가 포함된 경우 사용자 에이전트를 표시합니다."
  459. #: searx/plugins/self_info.py:28
  460. msgid "Your IP is: "
  461. msgstr "당신의 IP는: "
  462. #: searx/plugins/self_info.py:31
  463. msgid "Your user-agent is: "
  464. msgstr "당신의 사용자 에이전트는: "
  465. #: searx/plugins/tor_check.py:24
  466. msgid "Tor check plugin"
  467. msgstr "Tor 검사 플러그인"
  468. #: searx/plugins/tor_check.py:27
  469. msgid ""
  470. "This plugin checks if the address of the request is a Tor exit-node, and "
  471. "informs the user if it is; like check.torproject.org, but from SearXNG."
  472. msgstr ""
  473. "이 플러그인은 요청의 주소가 토르 출구 노드 인지 확인하고 사용자에게 check.torproject.org와 같이 "
  474. "SearchXNG의 주소인지 알려줍니다."
  475. #: searx/plugins/tor_check.py:61
  476. msgid ""
  477. "Could not download the list of Tor exit-nodes from: "
  478. "https://check.torproject.org/exit-addresses"
  479. msgstr "https://check.torproject.org/exit-addresses 에서 토르 출구 노드를 다운로드 받는데 실패하였습니다"
  480. #: searx/plugins/tor_check.py:77
  481. msgid ""
  482. "You are using Tor and it looks like you have this external IP address: "
  483. "{ip_address}"
  484. msgstr "Tor를 사용하고 있고 외부 IP 주소는 {ip_address} 입니다"
  485. #: searx/plugins/tor_check.py:85
  486. msgid "You are not using Tor and you have this external IP address: {ip_address}"
  487. msgstr "Tor를 사용하고 있지 않고 외부 IP 주소가 {ip_address}인 것 같습니다"
  488. #: searx/plugins/tracker_url_remover.py:16
  489. msgid "Tracker URL remover"
  490. msgstr "추적기 URL 제거기"
  491. #: searx/plugins/tracker_url_remover.py:17
  492. msgid "Remove trackers arguments from the returned URL"
  493. msgstr "반환된 URL에서 추적기 매개변수 제거"
  494. #: searx/plugins/unit_converter.py:29
  495. msgid "Convert between units"
  496. msgstr "단위 환산"
  497. #: searx/templates/simple/404.html:4
  498. msgid "Page not found"
  499. msgstr "페이지를 찾을 수 없음"
  500. #: searx/templates/simple/404.html:6
  501. #, python-format
  502. msgid "Go to %(search_page)s."
  503. msgstr "%(search_page)s로 이동합니다."
  504. #: searx/templates/simple/404.html:6
  505. msgid "search page"
  506. msgstr "검색 페이지"
  507. #: searx/templates/simple/base.html:54
  508. msgid "Donate"
  509. msgstr "기부"
  510. #: searx/templates/simple/base.html:58
  511. #: searx/templates/simple/preferences.html:156
  512. msgid "Preferences"
  513. msgstr "설정"
  514. #: searx/templates/simple/base.html:68
  515. msgid "Powered by"
  516. msgstr "Powered by"
  517. #: searx/templates/simple/base.html:68
  518. msgid "a privacy-respecting, open metasearch engine"
  519. msgstr "개인정보를 존중하는 개방형 메타 검색 엔진"
  520. #: searx/templates/simple/base.html:69
  521. #: searx/templates/simple/result_templates/packages.html:59
  522. msgid "Source code"
  523. msgstr "소스 코드"
  524. #: searx/templates/simple/base.html:70
  525. msgid "Issue tracker"
  526. msgstr "이슈 트래커"
  527. #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
  528. msgid "Engine stats"
  529. msgstr "검색 엔진 상태"
  530. #: searx/templates/simple/base.html:73
  531. msgid "Public instances"
  532. msgstr "공개 인스턴스"
  533. #: searx/templates/simple/base.html:76
  534. msgid "Privacy policy"
  535. msgstr "개인 정보 정책"
  536. #: searx/templates/simple/base.html:79
  537. msgid "Contact instance maintainer"
  538. msgstr "인스턴스 관리자에게 문의"
  539. #: searx/templates/simple/categories.html:26
  540. msgid "Click on the magnifier to perform search"
  541. msgstr "돋보기를 클릭하여 검색을 시작하세요"
  542. #: searx/templates/simple/macros.html:40
  543. msgid "Length"
  544. msgstr "길이"
  545. #: searx/templates/simple/macros.html:41
  546. msgid "Views"
  547. msgstr ""
  548. #: searx/templates/simple/macros.html:42
  549. #: searx/templates/simple/result_templates/files.html:34
  550. #: searx/templates/simple/result_templates/images.html:19
  551. #: searx/templates/simple/result_templates/paper.html:6
  552. msgid "Author"
  553. msgstr "저자"
  554. #: searx/templates/simple/macros.html:50
  555. msgid "cached"
  556. msgstr "캐시"
  557. #: searx/templates/simple/macros.html:50
  558. msgid "proxied"
  559. msgstr "프록시됨"
  560. #: searx/templates/simple/new_issue.html:64
  561. msgid "Start submitting a new issue on GitHub"
  562. msgstr "GitHub 에서 새 이슈 시작하기"
  563. #: searx/templates/simple/new_issue.html:66
  564. msgid "Please check for existing bugs about this engine on GitHub"
  565. msgstr "GitHub 에서 이 엔진에 대한 기존 버그를 확인하세요"
  566. #: searx/templates/simple/new_issue.html:69
  567. msgid "I confirm there is no existing bug about the issue I encounter"
  568. msgstr "제가 격은 버그에 대한 이슈가 존재하지 않은 것을 확인했습니다"
  569. #: searx/templates/simple/new_issue.html:71
  570. msgid "If this is a public instance, please specify the URL in the bug report"
  571. msgstr "공개 인스턴스라면 버그 보고서에 URL을 적어주세요"
  572. #: searx/templates/simple/new_issue.html:72
  573. msgid "Submit a new issue on Github including the above information"
  574. msgstr "Github에 위 정보를 포함한 새 이슈 작성하기"
  575. #: searx/templates/simple/preferences.html:65
  576. msgid "No HTTPS"
  577. msgstr "HTTPS 없음"
  578. #: searx/templates/simple/elements/engines_msg.html:14
  579. #: searx/templates/simple/preferences.html:69
  580. #: searx/templates/simple/preferences.html:70
  581. msgid "View error logs and submit a bug report"
  582. msgstr "오류 로그 보기 및 버그 보고서 제출"
  583. #: searx/templates/simple/preferences.html:74
  584. msgid "!bang for this engine"
  585. msgstr "이 검색 엔진을 사용하기 위해 !bang"
  586. #: searx/templates/simple/preferences.html:80
  587. msgid "!bang for its categories"
  588. msgstr "카테고리 사용을 위해 !bang"
  589. #: searx/templates/simple/preferences.html:102
  590. #: searx/templates/simple/stats.html:64
  591. msgid "Median"
  592. msgstr "중앙값"
  593. #: searx/templates/simple/preferences.html:103
  594. #: searx/templates/simple/stats.html:70
  595. msgid "P80"
  596. msgstr "P80"
  597. #: searx/templates/simple/preferences.html:104
  598. #: searx/templates/simple/stats.html:76
  599. msgid "P95"
  600. msgstr "P95"
  601. #: searx/templates/simple/preferences.html:136
  602. msgid "Failed checker test(s): "
  603. msgstr "실패한 검사기 테스트: "
  604. #: searx/templates/simple/preferences.html:138
  605. msgid "Errors:"
  606. msgstr "오류:"
  607. #: searx/templates/simple/preferences.html:162
  608. msgid "General"
  609. msgstr "일반"
  610. #: searx/templates/simple/preferences.html:165
  611. msgid "Default categories"
  612. msgstr "기본 카테고리"
  613. #: searx/templates/simple/preferences.html:190
  614. msgid "User interface"
  615. msgstr "사용자 인터페이스"
  616. #: searx/templates/simple/preferences.html:212
  617. msgid "Privacy"
  618. msgstr "개인정보 보호"
  619. #: searx/templates/simple/preferences.html:225
  620. msgid "Engines"
  621. msgstr "검색엔진"
  622. #: searx/templates/simple/preferences.html:227
  623. msgid "Currently used search engines"
  624. msgstr "현재 사용중인 검색 엔진"
  625. #: searx/templates/simple/preferences.html:235
  626. msgid "Special Queries"
  627. msgstr "특수 쿼리"
  628. #: searx/templates/simple/preferences.html:241
  629. msgid "Cookies"
  630. msgstr "쿠키"
  631. #: searx/templates/simple/results.html:23
  632. msgid "Answers"
  633. msgstr "답변"
  634. #: searx/templates/simple/results.html:42
  635. msgid "Number of results"
  636. msgstr "결과 수"
  637. #: searx/templates/simple/results.html:48
  638. msgid "Info"
  639. msgstr "정보"
  640. #: searx/templates/simple/results.html:75
  641. msgid "Try searching for:"
  642. msgstr "다음을 검색 해보세요:"
  643. #: searx/templates/simple/results.html:107
  644. msgid "Back to top"
  645. msgstr "위로 돌아가기"
  646. #: searx/templates/simple/results.html:125
  647. msgid "Previous page"
  648. msgstr "이전 페이지"
  649. #: searx/templates/simple/results.html:143
  650. msgid "Next page"
  651. msgstr "다음 페이지"
  652. #: searx/templates/simple/search.html:3
  653. msgid "Display the front page"
  654. msgstr "첫 페이지 표시"
  655. #: searx/templates/simple/search.html:9
  656. #: searx/templates/simple/simple_search.html:5
  657. msgid "Search for..."
  658. msgstr "다음을 검색..."
  659. #: searx/templates/simple/search.html:10
  660. #: searx/templates/simple/simple_search.html:6
  661. msgid "clear"
  662. msgstr "지우기"
  663. #: searx/templates/simple/search.html:11
  664. #: searx/templates/simple/simple_search.html:7
  665. msgid "search"
  666. msgstr "검색"
  667. #: searx/templates/simple/stats.html:21
  668. msgid "There is currently no data available. "
  669. msgstr "데이터가 존재하지 않습니다. "
  670. #: searx/templates/simple/preferences/engines.html:24
  671. #: searx/templates/simple/stats.html:25
  672. msgid "Engine name"
  673. msgstr "검색엔진 이름"
  674. #: searx/templates/simple/stats.html:26
  675. msgid "Scores"
  676. msgstr "점수"
  677. #: searx/templates/simple/stats.html:27
  678. msgid "Result count"
  679. msgstr "결과 개수"
  680. #: searx/templates/simple/elements/engines_msg.html:7
  681. #: searx/templates/simple/preferences/engines.html:31
  682. #: searx/templates/simple/stats.html:28
  683. msgid "Response time"
  684. msgstr "응답시간"
  685. #: searx/templates/simple/preferences/engines.html:35
  686. #: searx/templates/simple/stats.html:29
  687. msgid "Reliability"
  688. msgstr "신뢰성"
  689. #: searx/templates/simple/stats.html:59
  690. msgid "Total"
  691. msgstr "합계"
  692. #: searx/templates/simple/stats.html:60
  693. msgid "HTTP"
  694. msgstr "HTTP"
  695. #: searx/templates/simple/stats.html:61
  696. msgid "Processing"
  697. msgstr "처리"
  698. #: searx/templates/simple/stats.html:99
  699. msgid "Warnings"
  700. msgstr "경고"
  701. #: searx/templates/simple/stats.html:99
  702. msgid "Errors and exceptions"
  703. msgstr "에러와 예외"
  704. #: searx/templates/simple/stats.html:105
  705. msgid "Exception"
  706. msgstr "예외"
  707. #: searx/templates/simple/stats.html:107
  708. msgid "Message"
  709. msgstr "메시지"
  710. #: searx/templates/simple/stats.html:109
  711. msgid "Percentage"
  712. msgstr "백분율"
  713. #: searx/templates/simple/stats.html:111
  714. msgid "Parameter"
  715. msgstr "매개변수"
  716. #: searx/templates/simple/result_templates/files.html:36
  717. #: searx/templates/simple/stats.html:119
  718. msgid "Filename"
  719. msgstr "파일명"
  720. #: searx/templates/simple/stats.html:120
  721. msgid "Function"
  722. msgstr "함수"
  723. #: searx/templates/simple/stats.html:121
  724. msgid "Code"
  725. msgstr "코드"
  726. #: searx/templates/simple/stats.html:128
  727. msgid "Checker"
  728. msgstr "검사 프로그램"
  729. #: searx/templates/simple/stats.html:131
  730. msgid "Failed test"
  731. msgstr "테스트 실패"
  732. #: searx/templates/simple/stats.html:132
  733. msgid "Comment(s)"
  734. msgstr "댓글"
  735. #: searx/templates/simple/elements/apis.html:3
  736. msgid "Download results"
  737. msgstr "검색결과 다운로드"
  738. #: searx/templates/simple/elements/engines_msg.html:4
  739. msgid "Messages from the search engines"
  740. msgstr "검색 엔진에서 발생한 메시지"
  741. #: searx/templates/simple/elements/engines_msg.html:7
  742. msgid "seconds"
  743. msgstr ""
  744. #: searx/templates/simple/elements/search_url.html:3
  745. msgid "Search URL"
  746. msgstr "검색 URL"
  747. #: searx/templates/simple/elements/search_url.html:4
  748. #: searx/templates/simple/preferences/cookies.html:54
  749. msgid "Copied"
  750. msgstr "복사됨"
  751. #: searx/templates/simple/elements/search_url.html:4
  752. #: searx/templates/simple/preferences/cookies.html:54
  753. msgid "Copy"
  754. msgstr "복사하기"
  755. #: searx/templates/simple/elements/suggestions.html:3
  756. msgid "Suggestions"
  757. msgstr "제안"
  758. #: searx/templates/simple/filters/languages.html:1
  759. #: searx/templates/simple/preferences/language.html:2
  760. msgid "Search language"
  761. msgstr "검색 언어"
  762. #: searx/templates/simple/filters/languages.html:4
  763. #: searx/templates/simple/preferences/language.html:7
  764. msgid "Default language"
  765. msgstr "기본 언어"
  766. #: searx/templates/simple/filters/languages.html:8
  767. #: searx/templates/simple/preferences/language.html:11
  768. msgid "Auto-detect"
  769. msgstr "자동 감지"
  770. #: searx/templates/simple/filters/safesearch.html:1
  771. #: searx/templates/simple/filters/safesearch.html:2
  772. #: searx/templates/simple/filters/safesearch.html:3
  773. #: searx/templates/simple/filters/safesearch.html:4
  774. #: searx/templates/simple/preferences/engines.html:27
  775. #: searx/templates/simple/preferences/safesearch.html:2
  776. msgid "SafeSearch"
  777. msgstr "세이프서치"
  778. #: searx/templates/simple/filters/safesearch.html:2
  779. #: searx/templates/simple/preferences/safesearch.html:7
  780. msgid "Strict"
  781. msgstr "엄격"
  782. #: searx/templates/simple/filters/safesearch.html:3
  783. #: searx/templates/simple/preferences/safesearch.html:11
  784. msgid "Moderate"
  785. msgstr "보통"
  786. #: searx/templates/simple/filters/safesearch.html:4
  787. #: searx/templates/simple/preferences/safesearch.html:15
  788. msgid "None"
  789. msgstr "없음"
  790. #: searx/templates/simple/filters/time_range.html:1
  791. #: searx/templates/simple/preferences/engines.html:28
  792. msgid "Time range"
  793. msgstr "기간"
  794. #: searx/templates/simple/filters/time_range.html:3
  795. msgid "Anytime"
  796. msgstr "모든 날짜"
  797. #: searx/templates/simple/filters/time_range.html:6
  798. msgid "Last day"
  799. msgstr "지난 1일"
  800. #: searx/templates/simple/filters/time_range.html:9
  801. msgid "Last week"
  802. msgstr "지난 1주"
  803. #: searx/templates/simple/filters/time_range.html:12
  804. msgid "Last month"
  805. msgstr "지난 1개월"
  806. #: searx/templates/simple/filters/time_range.html:15
  807. msgid "Last year"
  808. msgstr "지난 1년"
  809. #: searx/templates/simple/messages/no_cookies.html:3
  810. msgid "Information!"
  811. msgstr "알림!"
  812. #: searx/templates/simple/messages/no_cookies.html:4
  813. msgid "currently, there are no cookies defined."
  814. msgstr "현재 정의된 쿠기가 없습니다."
  815. #: searx/templates/simple/messages/no_results.html:6
  816. msgid "Sorry!"
  817. msgstr "죄송합니다!"
  818. #: searx/templates/simple/messages/no_results.html:12
  819. msgid "No results were found. You can try to:"
  820. msgstr "검색 결과 없음. 다음을 시도해 보세요:"
  821. #: searx/templates/simple/messages/no_results.html:14
  822. msgid "There are no more results. You can try to:"
  823. msgstr "더 이상 결과가 없습니다. 다음을 시도하십시오:"
  824. #: searx/templates/simple/messages/no_results.html:19
  825. msgid "Refresh the page."
  826. msgstr "페이지를 새로고침 하세요."
  827. #: searx/templates/simple/messages/no_results.html:20
  828. msgid "Search for another query or select another category (above)."
  829. msgstr "다른 검색어를 사용하거나 위에서 다른 카테고리를 선택해 주세요."
  830. #: searx/templates/simple/messages/no_results.html:21
  831. msgid "Change the search engine used in the preferences:"
  832. msgstr "설정에서 사용할 검색엔진 바꾸기:"
  833. #: searx/templates/simple/messages/no_results.html:22
  834. msgid "Switch to another instance:"
  835. msgstr "다른 인스터스를 사용해 주세요:"
  836. #: searx/templates/simple/messages/no_results.html:24
  837. msgid "Search for another query or select another category."
  838. msgstr "새 검색어를 찾아보거나 다른 분류를 선택하십시오."
  839. #: searx/templates/simple/messages/no_results.html:25
  840. msgid "Go back to the previous page using the previous page button."
  841. msgstr "이전 페이지 버튼으로 이전 페이지로 돌아가십시오."
  842. #: searx/templates/simple/preferences/answerers.html:4
  843. #: searx/templates/simple/preferences/engines.html:23
  844. msgid "Allow"
  845. msgstr "허용"
  846. #: searx/templates/simple/preferences/answerers.html:5
  847. msgid "Keywords"
  848. msgstr "키워드"
  849. #: searx/templates/simple/preferences/answerers.html:6
  850. #: searx/templates/simple/result_templates/packages.html:7
  851. msgid "Name"
  852. msgstr "이름"
  853. #: searx/templates/simple/preferences/answerers.html:7
  854. msgid "Description"
  855. msgstr "설명"
  856. #: searx/templates/simple/preferences/answerers.html:8
  857. msgid "Examples"
  858. msgstr "예시"
  859. #: searx/templates/simple/preferences/answerers.html:13
  860. msgid "This is the list of SearXNG's instant answering modules."
  861. msgstr "SearXNG의 즉각응답 모듈 목록입니다."
  862. #: searx/templates/simple/preferences/answerers.html:29
  863. msgid "This is the list of plugins."
  864. msgstr "플러그인 목록입니다."
  865. #: searx/templates/simple/preferences/autocomplete.html:2
  866. msgid "Autocomplete"
  867. msgstr "자동 완성"
  868. #: searx/templates/simple/preferences/autocomplete.html:15
  869. msgid "Find stuff as you type"
  870. msgstr "입력하는 대로 찾으세요"
  871. #: searx/templates/simple/preferences/center_alignment.html:2
  872. msgid "Center Alignment"
  873. msgstr "중앙 정렬"
  874. #: searx/templates/simple/preferences/center_alignment.html:14
  875. msgid "Displays results in the center of the page (Oscar layout)."
  876. msgstr "페이지 중앙에 결과 표시하기 (Oscar 레이아웃)."
  877. #: searx/templates/simple/preferences/cookies.html:2
  878. msgid ""
  879. "This is the list of cookies and their values SearXNG is storing on your "
  880. "computer."
  881. msgstr "SearXNG이 컴퓨터에 저장하는 쿠키 목록입니다."
  882. #: searx/templates/simple/preferences/cookies.html:3
  883. msgid "With that list, you can assess SearXNG transparency."
  884. msgstr "이 목록으로 SearXNG의 투명성을 판단할 수 있습니다."
  885. #: searx/templates/simple/preferences/cookies.html:9
  886. msgid "Cookie name"
  887. msgstr "쿠키 이름"
  888. #: searx/templates/simple/preferences/cookies.html:10
  889. msgid "Value"
  890. msgstr "값"
  891. #: searx/templates/simple/preferences/cookies.html:23
  892. msgid "Search URL of the currently saved preferences"
  893. msgstr "현재 설정이 적용된 검색 URL"
  894. #: searx/templates/simple/preferences/cookies.html:32
  895. msgid ""
  896. "Note: specifying custom settings in the search URL can reduce privacy by "
  897. "leaking data to the clicked result sites."
  898. msgstr "검색 URL에 사용자 설정을 명시하면 결과 사이트에 데이터가 유출되어 사생활 보호가 약해질 수 있습니다."
  899. #: searx/templates/simple/preferences/cookies.html:35
  900. msgid "URL to restore your preferences in another browser"
  901. msgstr "다른 브라우저에서 설정을 복구하기 위한 URL"
  902. #: searx/templates/simple/preferences/cookies.html:43
  903. msgid ""
  904. "Specifying custom settings in the preferences URL can be used to sync "
  905. "preferences across devices."
  906. msgstr "특정 설정이 들어간 URL은 장치 간에 설정을 동기화 하는데 사용할 수 있습니다."
  907. #: searx/templates/simple/preferences/cookies.html:46
  908. msgid "Copy preferences hash"
  909. msgstr "설정 해시 복사"
  910. #: searx/templates/simple/preferences/cookies.html:57
  911. msgid "Insert copied preferences hash (without URL) to restore"
  912. msgstr "(URL 제외하여) 설정 해시를 복사해 복원"
  913. #: searx/templates/simple/preferences/cookies.html:59
  914. msgid "Preferences hash"
  915. msgstr "설정 해시"
  916. #: searx/templates/simple/preferences/doi_resolver.html:2
  917. msgid "Open Access DOI resolver"
  918. msgstr "오픈 엑세스 DOI 리졸버"
  919. #: searx/templates/simple/preferences/doi_resolver.html:14
  920. msgid "Select service used by DOI rewrite"
  921. msgstr "DOI 재작성에 사용된 서비스 선택"
  922. #: searx/templates/simple/preferences/engines.html:9
  923. msgid ""
  924. "This tab does not exists in the user interface, but you can search in "
  925. "these engines by its !bangs."
  926. msgstr "이 탭은 유저 인터페이스에 나타나지 않지만, !bang을 사용하여 이 검색엔진으로 검색할 수 있습니다."
  927. #: searx/templates/simple/preferences/engines.html:15
  928. msgid "Enable all"
  929. msgstr "모두 적용"
  930. #: searx/templates/simple/preferences/engines.html:16
  931. msgid "Disable all"
  932. msgstr "모두 해제"
  933. #: searx/templates/simple/preferences/engines.html:25
  934. msgid "!bang"
  935. msgstr "!bang"
  936. #: searx/templates/simple/preferences/engines.html:26
  937. msgid "Supports selected language"
  938. msgstr "선택 언어 지원함"
  939. #: searx/templates/simple/preferences/engines.html:29
  940. msgid "Weight"
  941. msgstr "무게"
  942. #: searx/templates/simple/preferences/engines.html:33
  943. msgid "Max time"
  944. msgstr "최대시간"
  945. #: searx/templates/simple/preferences/favicon.html:2
  946. msgid "Favicon Resolver"
  947. msgstr ""
  948. #: searx/templates/simple/preferences/favicon.html:15
  949. msgid "Display favicons near search results"
  950. msgstr ""
  951. #: searx/templates/simple/preferences/footer.html:2
  952. msgid ""
  953. "These settings are stored in your cookies, this allows us not to store "
  954. "this data about you."
  955. msgstr "설정은 쿠키에 저장 되기 때문에 서버측에서 설정 관련 사용자 정보를 저장하는 것은 불가능합니다."
  956. #: searx/templates/simple/preferences/footer.html:3
  957. msgid ""
  958. "These cookies serve your sole convenience, we don't use these cookies to "
  959. "track you."
  960. msgstr "이 쿠키는 오직 편의를 위해 쓰이며, 추적에 이용하지 않습니다."
  961. #: searx/templates/simple/preferences/footer.html:6
  962. msgid "Save"
  963. msgstr "저장"
  964. #: searx/templates/simple/preferences/footer.html:9
  965. msgid "Reset defaults"
  966. msgstr "기본값 복원"
  967. #: searx/templates/simple/preferences/footer.html:13
  968. msgid "Back"
  969. msgstr "뒤로"
  970. #: searx/templates/simple/preferences/hotkeys.html:2
  971. msgid "Hotkeys"
  972. msgstr "단축키"
  973. #: searx/templates/simple/preferences/hotkeys.html:13
  974. msgid "Vim-like"
  975. msgstr "vim 형식"
  976. #: searx/templates/simple/preferences/hotkeys.html:18
  977. msgid ""
  978. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  979. "key on main or result page to get help."
  980. msgstr ""
  981. "단축키를 이용해 검색결과를 탐색합니다 (Javascript 필요). 검색결과 페이지나 홈페이지에서 'h'를 눌러 도움말을 볼수 "
  982. "있습니다."
  983. #: searx/templates/simple/preferences/image_proxy.html:2
  984. msgid "Image proxy"
  985. msgstr "이미지 우회"
  986. #: searx/templates/simple/preferences/image_proxy.html:14
  987. msgid "Proxying image results through SearXNG"
  988. msgstr "SearXNG를 통해 이미지 결과 우회"
  989. #: searx/templates/simple/preferences/infinite_scroll.html:2
  990. msgid "Infinite scroll"
  991. msgstr "무한 스크롤"
  992. #: searx/templates/simple/preferences/infinite_scroll.html:14
  993. msgid "Automatically load next page when scrolling to bottom of current page"
  994. msgstr "현재 페이지 하단까지 스크롤 했을 때 자동으로 다음 페이지 불러오기"
  995. #: searx/templates/simple/preferences/language.html:24
  996. msgid "What language do you prefer for search?"
  997. msgstr "어떤 언어로 검색하시겠습니까?"
  998. #: searx/templates/simple/preferences/language.html:25
  999. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1000. msgstr "SearXNG가 검색 언어를 자동감지 할 수 있도록 자동감지를 선택해 주세요."
  1001. #: searx/templates/simple/preferences/method.html:2
  1002. msgid "HTTP Method"
  1003. msgstr "HTTP 메소드"
  1004. #: searx/templates/simple/preferences/method.html:14
  1005. msgid "Change how forms are submitted"
  1006. msgstr "요청이 전송되는 방법을 변경합니다"
  1007. #: searx/templates/simple/preferences/query_in_title.html:2
  1008. msgid "Query in the page's title"
  1009. msgstr "페이지 제목에 검색어 표시"
  1010. #: searx/templates/simple/preferences/query_in_title.html:14
  1011. msgid ""
  1012. "When enabled, the result page's title contains your query. Your browser "
  1013. "can record this title"
  1014. msgstr "활성화 할 경우, 결과 페이지 제목에 검색어가 표시 됩니다. 페이지 제목은 브라우저가 기록할 수 있습니다"
  1015. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1016. msgid "Results on new tabs"
  1017. msgstr "새 탭에서 결과 열기"
  1018. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1019. msgid "Open result links on new browser tabs"
  1020. msgstr "새 탭에서 결과 링크를 엽니다"
  1021. #: searx/templates/simple/preferences/safesearch.html:20
  1022. msgid "Filter content"
  1023. msgstr "콘텐츠 필터링"
  1024. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1025. msgid "Search on category select"
  1026. msgstr "특정 카테고리 검색"
  1027. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1028. msgid ""
  1029. "Perform search immediately if a category selected. Disable to select "
  1030. "multiple categories"
  1031. msgstr "카테고리 선택후 즉시 검색을 합니다. 한개 이상의 카테고리를 선택하면 비활성화됩니다"
  1032. #: searx/templates/simple/preferences/theme.html:2
  1033. msgid "Theme"
  1034. msgstr "테마"
  1035. #: searx/templates/simple/preferences/theme.html:14
  1036. msgid "Change SearXNG layout"
  1037. msgstr "SearXNG 레이아웃 변경"
  1038. #: searx/templates/simple/preferences/theme.html:19
  1039. msgid "Theme style"
  1040. msgstr "테마 스타일"
  1041. #: searx/templates/simple/preferences/theme.html:31
  1042. msgid "Choose auto to follow your browser settings"
  1043. msgstr "'자동'을 선택하면 브라우저 기본설정에 맞춥니다"
  1044. #: searx/templates/simple/preferences/tokens.html:2
  1045. msgid "Engine tokens"
  1046. msgstr "엔진토큰"
  1047. #: searx/templates/simple/preferences/tokens.html:9
  1048. msgid "Access tokens for private engines"
  1049. msgstr "사유 검색 엔진 엑세스 토큰"
  1050. #: searx/templates/simple/preferences/ui_locale.html:2
  1051. msgid "Interface language"
  1052. msgstr "인터페이스 언어"
  1053. #: searx/templates/simple/preferences/ui_locale.html:14
  1054. msgid "Change the language of the layout"
  1055. msgstr "레이아웃 언어 변경"
  1056. #: searx/templates/simple/preferences/urlformatting.html:2
  1057. msgid "URL formatting"
  1058. msgstr ""
  1059. #: searx/templates/simple/preferences/urlformatting.html:8
  1060. msgid "Pretty"
  1061. msgstr ""
  1062. #: searx/templates/simple/preferences/urlformatting.html:13
  1063. msgid "Full"
  1064. msgstr ""
  1065. #: searx/templates/simple/preferences/urlformatting.html:18
  1066. msgid "Host"
  1067. msgstr ""
  1068. #: searx/templates/simple/preferences/urlformatting.html:23
  1069. msgid "Change result URL formatting"
  1070. msgstr ""
  1071. #: searx/templates/simple/result_templates/code.html:13
  1072. msgid "repo"
  1073. msgstr "리포지토리"
  1074. #: searx/templates/simple/result_templates/default.html:6
  1075. #: searx/templates/simple/result_templates/files.html:8
  1076. #: searx/templates/simple/result_templates/files.html:11
  1077. msgid "show media"
  1078. msgstr "미디어 표시"
  1079. #: searx/templates/simple/result_templates/default.html:6
  1080. #: searx/templates/simple/result_templates/files.html:8
  1081. msgid "hide media"
  1082. msgstr "미디어 숨기기"
  1083. #: searx/templates/simple/result_templates/default.html:14
  1084. #: searx/templates/simple/result_templates/videos.html:14
  1085. msgid "This site did not provide any description."
  1086. msgstr "사이트에서 소개를 제공하지 않았습니다."
  1087. #: searx/templates/simple/result_templates/files.html:38
  1088. #: searx/templates/simple/result_templates/images.html:22
  1089. #: searx/templates/simple/result_templates/torrent.html:11
  1090. msgid "Filesize"
  1091. msgstr "파일 크기"
  1092. #: searx/templates/simple/result_templates/files.html:40
  1093. msgid "Date"
  1094. msgstr "날짜"
  1095. #: searx/templates/simple/result_templates/files.html:42
  1096. #: searx/templates/simple/result_templates/paper.html:24
  1097. msgid "Type"
  1098. msgstr "분류"
  1099. #: searx/templates/simple/result_templates/images.html:20
  1100. msgid "Resolution"
  1101. msgstr "해상도"
  1102. #: searx/templates/simple/result_templates/images.html:21
  1103. msgid "Format"
  1104. msgstr "포멧"
  1105. #: searx/templates/simple/result_templates/images.html:24
  1106. msgid "Engine"
  1107. msgstr "검색엔진"
  1108. #: searx/templates/simple/result_templates/images.html:25
  1109. msgid "View source"
  1110. msgstr "소스 보기"
  1111. #: searx/templates/simple/result_templates/map.html:12
  1112. msgid "address"
  1113. msgstr "주소"
  1114. #: searx/templates/simple/result_templates/map.html:43
  1115. msgid "show map"
  1116. msgstr "지도 표시"
  1117. #: searx/templates/simple/result_templates/map.html:43
  1118. msgid "hide map"
  1119. msgstr "지도 숨기기"
  1120. #: searx/templates/simple/result_templates/packages.html:12
  1121. msgid "Version"
  1122. msgstr "버전"
  1123. #: searx/templates/simple/result_templates/packages.html:18
  1124. msgid "Maintainer"
  1125. msgstr "관리자"
  1126. #: searx/templates/simple/result_templates/packages.html:24
  1127. msgid "Updated at"
  1128. msgstr "갱신 시각"
  1129. #: searx/templates/simple/result_templates/packages.html:30
  1130. #: searx/templates/simple/result_templates/paper.html:25
  1131. msgid "Tags"
  1132. msgstr "태그"
  1133. #: searx/templates/simple/result_templates/packages.html:36
  1134. msgid "Popularity"
  1135. msgstr "인기"
  1136. #: searx/templates/simple/result_templates/packages.html:42
  1137. msgid "License"
  1138. msgstr "라이선스"
  1139. #: searx/templates/simple/result_templates/packages.html:52
  1140. msgid "Project"
  1141. msgstr "프로젝트"
  1142. #: searx/templates/simple/result_templates/packages.html:55
  1143. msgid "Project homepage"
  1144. msgstr "프로젝트 홈페이지"
  1145. #: searx/templates/simple/result_templates/paper.html:5
  1146. msgid "Published date"
  1147. msgstr "발행일"
  1148. #: searx/templates/simple/result_templates/paper.html:9
  1149. msgid "Journal"
  1150. msgstr "발행처"
  1151. #: searx/templates/simple/result_templates/paper.html:22
  1152. msgid "Editor"
  1153. msgstr "편집자"
  1154. #: searx/templates/simple/result_templates/paper.html:23
  1155. msgid "Publisher"
  1156. msgstr "발행자"
  1157. #: searx/templates/simple/result_templates/paper.html:26
  1158. msgid "DOI"
  1159. msgstr "DOI"
  1160. #: searx/templates/simple/result_templates/paper.html:27
  1161. msgid "ISSN"
  1162. msgstr "ISSN"
  1163. #: searx/templates/simple/result_templates/paper.html:28
  1164. msgid "ISBN"
  1165. msgstr "ISBN"
  1166. #: searx/templates/simple/result_templates/paper.html:33
  1167. msgid "PDF"
  1168. msgstr "PDF"
  1169. #: searx/templates/simple/result_templates/paper.html:34
  1170. msgid "HTML"
  1171. msgstr "HTML"
  1172. #: searx/templates/simple/result_templates/torrent.html:6
  1173. msgid "magnet link"
  1174. msgstr "마그넷 링크"
  1175. #: searx/templates/simple/result_templates/torrent.html:7
  1176. msgid "torrent file"
  1177. msgstr "토렌트 파일"
  1178. #: searx/templates/simple/result_templates/torrent.html:9
  1179. msgid "Seeder"
  1180. msgstr "시드"
  1181. #: searx/templates/simple/result_templates/torrent.html:9
  1182. msgid "Leecher"
  1183. msgstr "리치"
  1184. #: searx/templates/simple/result_templates/torrent.html:13
  1185. msgid "Number of Files"
  1186. msgstr "파일 개수"
  1187. #: searx/templates/simple/result_templates/videos.html:6
  1188. msgid "show video"
  1189. msgstr "비디오 표시"
  1190. #: searx/templates/simple/result_templates/videos.html:6
  1191. msgid "hide video"
  1192. msgstr "비디오 숨기기"
  1193. #~ msgid "Advanced settings"
  1194. #~ msgstr "고급 설정"
  1195. #~ msgid "Close"
  1196. #~ msgstr "닫기"
  1197. #~ msgid "Language"
  1198. #~ msgstr "언어/Language"
  1199. #~ msgid "broken"
  1200. #~ msgstr "끊김"
  1201. #~ msgid "supported"
  1202. #~ msgstr "지원됨"
  1203. #~ msgid "not supported"
  1204. #~ msgstr "지원되지 않음"
  1205. #~ msgid "about"
  1206. #~ msgstr "자세히"
  1207. #~ msgid "Avg."
  1208. #~ msgstr "평균"
  1209. #~ msgid "User Interface"
  1210. #~ msgstr "사용자 인터페이스"
  1211. #~ msgid "Choose style for this theme"
  1212. #~ msgstr "이 테마에 대한 스타일 선택"
  1213. #~ msgid "Style"
  1214. #~ msgstr "스타일"
  1215. #~ msgid "Show advanced settings"
  1216. #~ msgstr "고급 설정 열기"
  1217. #~ msgid "Show advanced settings panel in the home page by default"
  1218. #~ msgstr "항상 시작 페이지에서 고급설정 패널 보기"
  1219. #~ msgid "Allow all"
  1220. #~ msgstr "모두 허용"
  1221. #~ msgid "Disable all"
  1222. #~ msgstr "모두 거부"
  1223. #~ msgid "Selected language"
  1224. #~ msgstr "선택언어 지원"
  1225. #~ msgid "Query"
  1226. #~ msgstr "검색어"
  1227. #~ msgid "save"
  1228. #~ msgstr "저장"
  1229. #~ msgid "back"
  1230. #~ msgstr "뒤로"
  1231. #~ msgid "Links"
  1232. #~ msgstr "링크"
  1233. #~ msgid "RSS subscription"
  1234. #~ msgstr "RSS 구독"
  1235. #~ msgid "Search results"
  1236. #~ msgstr "검색 결과"
  1237. #~ msgid "next page"
  1238. #~ msgstr "다음 페이지"
  1239. #~ msgid "previous page"
  1240. #~ msgstr "이전 페이지"
  1241. #~ msgid "Start search"
  1242. #~ msgstr "검색 시작"
  1243. #~ msgid "Clear search"
  1244. #~ msgstr "검색 지우기"
  1245. #~ msgid "Clear"
  1246. #~ msgstr "지우기"
  1247. #~ msgid "stats"
  1248. #~ msgstr "통계"
  1249. #~ msgid "Heads up!"
  1250. #~ msgstr "조심하세요!"
  1251. #~ msgid "It look like you are using SearXNG first time."
  1252. #~ msgstr "SearXNG를 처음 쓰시는 것 같군요."
  1253. #~ msgid "Well done!"
  1254. #~ msgstr "잘 하셨습니다!"
  1255. #~ msgid "Settings saved successfully."
  1256. #~ msgstr "설정을 성공적으로 저장했습니다."
  1257. #~ msgid "Oh snap!"
  1258. #~ msgstr "이런!"
  1259. #~ msgid "Something went wrong."
  1260. #~ msgstr "문제가 발생했습니다."
  1261. #~ msgid "Date"
  1262. #~ msgstr "날짜"
  1263. #~ msgid "Type"
  1264. #~ msgstr "형식"
  1265. #~ msgid "Get image"
  1266. #~ msgstr "이미지 가져오기"
  1267. #~ msgid "Center Alignment"
  1268. #~ msgstr ""
  1269. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1270. #~ msgstr ""
  1271. #~ msgid "preferences"
  1272. #~ msgstr "설정"
  1273. #~ msgid "Scores per result"
  1274. #~ msgstr "검색결과당 점수"
  1275. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1276. #~ msgstr "개인 정보를 존중하는 맞춤형 메타 검색 엔진"
  1277. #~ msgid "No abstract is available for this publication."
  1278. #~ msgstr "이 출판물에 대한 초록이 없습니다."
  1279. #~ msgid "Self Informations"
  1280. #~ msgstr "본인 정보"
  1281. #~ msgid ""
  1282. #~ "Change how forms are submited, <a "
  1283. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1284. #~ " rel=\"external\">learn more about request "
  1285. #~ "methods</a>"
  1286. #~ msgstr ""
  1287. #~ "폼 제출 방법 변경,<a "
  1288. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1289. #~ " rel=\"external\">요청 메소드에 대해 더 알아보기</a>"
  1290. #~ msgid ""
  1291. #~ "This plugin checks if the address "
  1292. #~ "of the request is a TOR exit "
  1293. #~ "node, and informs the user if it"
  1294. #~ " is, like check.torproject.org but from "
  1295. #~ "searxng."
  1296. #~ msgstr ""
  1297. #~ "이 플러그인은 요청한 주소가 TOR 출구 노드인지 "
  1298. #~ "확인하고 사용자에게 알려줍니다, check.torproject.org 와 "
  1299. #~ "비슷하지만 searxng 에서 제공됩니다."
  1300. #~ msgid ""
  1301. #~ "The TOR exit node list "
  1302. #~ "(https://check.torproject.org/exit-addresses) is "
  1303. #~ "unreachable."
  1304. #~ msgstr "TOR 출구 노드 목록(https://check.torproject.org/exit-addresses)에 연결할 수 없습니다."
  1305. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1306. #~ msgstr "TOR 를 사용하고 있습니다. 당신의 아이피 주소는 다음과 같습니다: {ip_address}."
  1307. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1308. #~ msgstr "TOR 를 사용하고 있지 않습니다. 당신의 아이피 주소는 다음과 같습니다: {ip_address}."
  1309. #~ msgid ""
  1310. #~ "The could not download the list of"
  1311. #~ " Tor exit-nodes from "
  1312. #~ "https://check.torproject.org/exit-addresses."
  1313. #~ msgstr ""
  1314. #~ msgid ""
  1315. #~ "You are using Tor. It looks like"
  1316. #~ " you have this external IP address:"
  1317. #~ " {ip_address}."
  1318. #~ msgstr ""
  1319. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1320. #~ msgstr ""
  1321. #~ msgid "Autodetect search language"
  1322. #~ msgstr ""
  1323. #~ msgid "Automatically detect the query search language and switch to it."
  1324. #~ msgstr ""
  1325. #~ msgid "others"
  1326. #~ msgstr "기타"
  1327. #~ msgid ""
  1328. #~ "This tab does not show up for "
  1329. #~ "search results, but you can search "
  1330. #~ "the engines listed here via bangs."
  1331. #~ msgstr "이 탭은 검색 결과에서 표시 되지 않으나, 느낌표을 입력하여 아래의 엔진으로 검색할 수 있습니다."
  1332. #~ msgid "Shortcut"
  1333. #~ msgstr "단축 키 워드"
  1334. #~ msgid "!bang"
  1335. #~ msgstr ""
  1336. #~ msgid ""
  1337. #~ "This tab dues not exists in the"
  1338. #~ " user interface, but you can search"
  1339. #~ " in these engines by its !bangs."
  1340. #~ msgstr ""
  1341. #~ msgid "Engines cannot retrieve results."
  1342. #~ msgstr "검색결과를 가져올 수 없습니다."
  1343. #~ msgid "Please, try again later or find another SearXNG instance."
  1344. #~ msgstr "다음에 시도하거나 다른 SearXNG 객체를 이용해주세요."
  1345. #~ msgid ""
  1346. #~ "Redirect to open-access versions of "
  1347. #~ "publications when available (plugin required)"
  1348. #~ msgstr "가능 하면 오픈 엑세스 출판물로 넘겨주기 (플러그인 필요함)"
  1349. #~ msgid "Bang"
  1350. #~ msgstr ""
  1351. #~ msgid ""
  1352. #~ "Change how forms are submitted, <a "
  1353. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1354. #~ " rel=\"external\">learn more about request "
  1355. #~ "methods</a>"
  1356. #~ msgstr ""
  1357. #~ "폼 제출 방법 변경,<a "
  1358. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1359. #~ " rel=\"external\">요청 메소드에 대해 더 알아보기</a>"
  1360. #~ msgid "On"
  1361. #~ msgstr "사용"
  1362. #~ msgid "Off"
  1363. #~ msgstr "사용안함"
  1364. #~ msgid "Enabled"
  1365. #~ msgstr "활성화됨"
  1366. #~ msgid "Disabled"
  1367. #~ msgstr "비활성화됨"
  1368. #~ msgid ""
  1369. #~ "Perform search immediately if a category"
  1370. #~ " selected. Disable to select multiple "
  1371. #~ "categories. (JavaScript required)"
  1372. #~ msgstr "카테고리가 선택되면 즉시 검색을 수행합니다. 여러 카테고리를 선택하려면 비활성화합니다. (JavaScript 필요)"
  1373. #~ msgid "Vim-like hotkeys"
  1374. #~ msgstr "Vim 스타일 단축키"
  1375. #~ msgid ""
  1376. #~ "Navigate search results with Vim-like"
  1377. #~ " hotkeys (JavaScript required). Press \"h\""
  1378. #~ " key on main or result page to"
  1379. #~ " get help."
  1380. #~ msgstr ""
  1381. #~ "Vim 스타일 단축키로 검색 결과를 찾아보세요(JavaScript "
  1382. #~ "필요). 도움말을 보려면 메인 페이지 또는 결과 "
  1383. #~ "페이지에서 \"h\" 키를 누르십시오."
  1384. #~ msgid ""
  1385. #~ "we didn't find any results. Please "
  1386. #~ "use another query or search in "
  1387. #~ "more categories."
  1388. #~ msgstr "검색결과를 찾을 수 없습니다. 다른 검색어로 검색하거나 검색 범주를 추가해주세요."
  1389. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1390. #~ msgstr "결과의 호스트 이름을 재작성하거나 호스트 이름에 따라 결과를 삭제합니다"
  1391. #~ msgid "Bytes"
  1392. #~ msgstr "바이트"
  1393. #~ msgid "kiB"
  1394. #~ msgstr "kiB"
  1395. #~ msgid "MiB"
  1396. #~ msgstr "MiB"
  1397. #~ msgid "GiB"
  1398. #~ msgstr "GiB"
  1399. #~ msgid "TiB"
  1400. #~ msgstr "TiB"
  1401. #~ msgid "Hostname replace"
  1402. #~ msgstr "호스트 이름 변경"
  1403. #~ msgid "Error!"
  1404. #~ msgstr "오류!"
  1405. #~ msgid "Engines cannot retrieve results"
  1406. #~ msgstr "결과를 가져올 수 없습니다"
  1407. #~ msgid "Start submiting a new issue on GitHub"
  1408. #~ msgstr "GitHub 에서 새 이슈 시작하기"
  1409. #~ msgid "dummy"
  1410. #~ msgstr ""