messages.po 49 KB

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