messages.po 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830
  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. msgid ""
  15. msgstr ""
  16. "Project-Id-Version: PROJECT VERSION\n"
  17. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  18. "POT-Creation-Date: 2025-01-06 15:28+0000\n"
  19. "PO-Revision-Date: 2025-01-06 15:53+0000\n"
  20. "Last-Translator: eaglclaws <eaglclaws@users.noreply.translate.codeberg.org>\n"
  21. "Language-Team: Korean <https://translate.codeberg.org/projects/searxng/"
  22. "searxng/ko/>\n"
  23. "Language: ko\n"
  24. "MIME-Version: 1.0\n"
  25. "Content-Type: text/plain; charset=utf-8\n"
  26. "Content-Transfer-Encoding: 8bit\n"
  27. "Plural-Forms: nplurals=1; plural=0;\n"
  28. "X-Generator: Weblate 5.9.2\n"
  29. "Generated-By: Babel 2.16.0\n"
  30. #. CONSTANT_NAMES['NO_SUBGROUPING']
  31. #: searx/searxng.msg
  32. msgid "without further subgrouping"
  33. msgstr "미분류"
  34. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  35. #: searx/searxng.msg
  36. msgid "other"
  37. msgstr "기타"
  38. #. CATEGORY_NAMES['FILES']
  39. #: searx/searxng.msg
  40. msgid "files"
  41. msgstr "파일"
  42. #. CATEGORY_NAMES['GENERAL']
  43. #: searx/searxng.msg
  44. msgid "general"
  45. msgstr "일반"
  46. #. CATEGORY_NAMES['MUSIC']
  47. #: searx/searxng.msg
  48. msgid "music"
  49. msgstr "음악"
  50. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  51. #: searx/searxng.msg
  52. msgid "social media"
  53. msgstr "소셜 미디어"
  54. #. CATEGORY_NAMES['IMAGES']
  55. #: searx/searxng.msg
  56. msgid "images"
  57. msgstr "이미지"
  58. #. CATEGORY_NAMES['VIDEOS']
  59. #: searx/searxng.msg
  60. msgid "videos"
  61. msgstr "비디오"
  62. #. CATEGORY_NAMES['RADIO']
  63. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  64. msgid "radio"
  65. msgstr "라디오"
  66. #. CATEGORY_NAMES['TV']
  67. #: searx/searxng.msg
  68. msgid "tv"
  69. msgstr "tv"
  70. #. CATEGORY_NAMES['IT']
  71. #: searx/searxng.msg
  72. msgid "it"
  73. msgstr "IT"
  74. #. CATEGORY_NAMES['NEWS']
  75. #: searx/searxng.msg
  76. msgid "news"
  77. msgstr "뉴스"
  78. #. CATEGORY_NAMES['MAP']
  79. #: searx/searxng.msg
  80. msgid "map"
  81. msgstr "지도"
  82. #. CATEGORY_NAMES['ONIONS']
  83. #: searx/searxng.msg
  84. msgid "onions"
  85. msgstr "어니언"
  86. #. CATEGORY_NAMES['SCIENCE']
  87. #: searx/searxng.msg
  88. msgid "science"
  89. msgstr "과학"
  90. #. CATEGORY_GROUPS['APPS']
  91. #: searx/searxng.msg
  92. msgid "apps"
  93. msgstr "앱"
  94. #. CATEGORY_GROUPS['DICTIONARIES']
  95. #: searx/searxng.msg
  96. msgid "dictionaries"
  97. msgstr "사전"
  98. #. CATEGORY_GROUPS['LYRICS']
  99. #: searx/searxng.msg
  100. msgid "lyrics"
  101. msgstr "가사"
  102. #. CATEGORY_GROUPS['PACKAGES']
  103. #: searx/searxng.msg
  104. msgid "packages"
  105. msgstr "패키지"
  106. #. CATEGORY_GROUPS['Q_A']
  107. #: searx/searxng.msg
  108. msgid "q&a"
  109. msgstr "Q&A"
  110. #. CATEGORY_GROUPS['REPOS']
  111. #: searx/searxng.msg
  112. msgid "repos"
  113. msgstr "리포지토리"
  114. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  115. #: searx/searxng.msg
  116. msgid "software wikis"
  117. msgstr "소프트웨어 위키"
  118. #. CATEGORY_GROUPS['WEB']
  119. #: searx/searxng.msg
  120. msgid "web"
  121. msgstr "웹"
  122. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  123. #: searx/searxng.msg
  124. msgid "scientific publications"
  125. msgstr "과학 출판물"
  126. #. STYLE_NAMES['AUTO']
  127. #: searx/searxng.msg
  128. msgid "auto"
  129. msgstr "자동"
  130. #. STYLE_NAMES['LIGHT']
  131. #: searx/searxng.msg
  132. msgid "light"
  133. msgstr "라이트"
  134. #. STYLE_NAMES['DARK']
  135. #: searx/searxng.msg
  136. msgid "dark"
  137. msgstr "다크"
  138. #. STYLE_NAMES['BLACK']
  139. #: searx/searxng.msg
  140. msgid "black"
  141. msgstr ""
  142. #. BRAND_CUSTOM_LINKS['UPTIME']
  143. #: searx/searxng.msg
  144. msgid "Uptime"
  145. msgstr "가동 시간"
  146. #. BRAND_CUSTOM_LINKS['ABOUT']
  147. #: searx/searxng.msg searx/templates/simple/base.html:50
  148. msgid "About"
  149. msgstr "정보"
  150. #. WEATHER_TERMS['AVERAGE TEMP.']
  151. #: searx/engines/wttr.py:32 searx/searxng.msg
  152. msgid "Average temp."
  153. msgstr "평균 온도."
  154. #. WEATHER_TERMS['CLOUD COVER']
  155. #: searx/engines/open_meteo.py:91 searx/searxng.msg
  156. msgid "Cloud cover"
  157. msgstr "운량"
  158. #. WEATHER_TERMS['CONDITION']
  159. #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
  160. #: searx/searxng.msg
  161. msgid "Condition"
  162. msgstr "상태"
  163. #. WEATHER_TERMS['CURRENT CONDITION']
  164. #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
  165. #: searx/searxng.msg
  166. msgid "Current condition"
  167. msgstr "현재 상태"
  168. #. WEATHER_TERMS['EVENING']
  169. #: searx/engines/wttr.py:100 searx/searxng.msg
  170. msgid "Evening"
  171. msgstr "저녁"
  172. #. WEATHER_TERMS['FEELS LIKE']
  173. #: searx/engines/duckduckgo_weather.py:53 searx/engines/open_meteo.py:81
  174. #: searx/engines/wttr.py:59 searx/searxng.msg
  175. msgid "Feels like"
  176. msgstr "체감"
  177. #. WEATHER_TERMS['HUMIDITY']
  178. #: searx/engines/duckduckgo_weather.py:64 searx/engines/open_meteo.py:93
  179. #: searx/engines/wttr.py:68 searx/searxng.msg
  180. msgid "Humidity"
  181. msgstr "습도"
  182. #. WEATHER_TERMS['MAX TEMP.']
  183. #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
  184. #: searx/searxng.msg
  185. msgid "Max temp."
  186. msgstr "최대 기온"
  187. #. WEATHER_TERMS['MIN TEMP.']
  188. #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
  189. #: searx/searxng.msg
  190. msgid "Min temp."
  191. msgstr "최저 기온"
  192. #. WEATHER_TERMS['MORNING']
  193. #: searx/engines/wttr.py:100 searx/searxng.msg
  194. msgid "Morning"
  195. msgstr "아침"
  196. #. WEATHER_TERMS['NIGHT']
  197. #: searx/engines/wttr.py:100 searx/searxng.msg
  198. msgid "Night"
  199. msgstr "밤"
  200. #. WEATHER_TERMS['NOON']
  201. #: searx/engines/wttr.py:100 searx/searxng.msg
  202. msgid "Noon"
  203. msgstr "정오"
  204. #. WEATHER_TERMS['PRESSURE']
  205. #: searx/engines/open_meteo.py:95 searx/searxng.msg
  206. msgid "Pressure"
  207. msgstr "기압"
  208. #. WEATHER_TERMS['SUNRISE']
  209. #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
  210. #: searx/searxng.msg
  211. msgid "Sunrise"
  212. msgstr "일출"
  213. #. WEATHER_TERMS['SUNSET']
  214. #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
  215. #: searx/searxng.msg
  216. msgid "Sunset"
  217. msgstr "일몰"
  218. #. WEATHER_TERMS['TEMPERATURE']
  219. #: searx/engines/duckduckgo_weather.py:48 searx/engines/open_meteo.py:76
  220. #: searx/engines/wttr.py:55 searx/searxng.msg
  221. msgid "Temperature"
  222. msgstr "기온"
  223. #. WEATHER_TERMS['UV INDEX']
  224. #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
  225. #: searx/searxng.msg
  226. msgid "UV index"
  227. msgstr "자외선 지수"
  228. #. WEATHER_TERMS['VISIBILITY']
  229. #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
  230. #: searx/searxng.msg
  231. msgid "Visibility"
  232. msgstr "가시도"
  233. #. WEATHER_TERMS['WIND']
  234. #: searx/engines/duckduckgo_weather.py:58 searx/engines/open_meteo.py:86
  235. #: searx/engines/wttr.py:62 searx/searxng.msg
  236. msgid "Wind"
  237. msgstr "풍속"
  238. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  239. #: searx/engines/lemmy.py:85 searx/searxng.msg
  240. msgid "subscribers"
  241. msgstr "구독자"
  242. #. SOCIAL_MEDIA_TERMS['POSTS']
  243. #: searx/engines/lemmy.py:86 searx/searxng.msg
  244. msgid "posts"
  245. msgstr "글"
  246. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  247. #: searx/engines/lemmy.py:87 searx/searxng.msg
  248. msgid "active users"
  249. msgstr "활동 사용자"
  250. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  251. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  252. #: searx/engines/lemmy.py:130 searx/searxng.msg
  253. msgid "comments"
  254. msgstr "댓글"
  255. #. SOCIAL_MEDIA_TERMS['USER']
  256. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  257. msgid "user"
  258. msgstr "사용자"
  259. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  260. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  261. msgid "community"
  262. msgstr "커뮤니티"
  263. #. SOCIAL_MEDIA_TERMS['POINTS']
  264. #: searx/engines/hackernews.py:82 searx/searxng.msg
  265. msgid "points"
  266. msgstr "점수"
  267. #. SOCIAL_MEDIA_TERMS['TITLE']
  268. #: searx/searxng.msg
  269. msgid "title"
  270. msgstr "제목"
  271. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  272. #: searx/engines/hackernews.py:85 searx/searxng.msg
  273. msgid "author"
  274. msgstr "작성자"
  275. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  276. #: searx/engines/discourse.py:149 searx/searxng.msg
  277. msgid "open"
  278. msgstr "열기"
  279. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  280. #: searx/engines/discourse.py:149 searx/searxng.msg
  281. msgid "closed"
  282. msgstr "닫힘"
  283. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  284. #: searx/engines/discourse.py:160 searx/searxng.msg
  285. msgid "answered"
  286. msgstr "응답"
  287. #: searx/webapp.py:323
  288. msgid "No item found"
  289. msgstr "검색 결과가 없습니다"
  290. #: searx/engines/qwant.py:288
  291. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:325
  292. msgid "Source"
  293. msgstr "소스"
  294. #: searx/webapp.py:327
  295. msgid "Error loading the next page"
  296. msgstr "다음 페이지를 로드하는 동안 오류가 발생했습니다"
  297. #: searx/webapp.py:492 searx/webapp.py:900
  298. msgid "Invalid settings, please edit your preferences"
  299. msgstr "잘못된 설정입니다, 설정을 수정하세요"
  300. #: searx/webapp.py:508
  301. msgid "Invalid settings"
  302. msgstr "잘못된 설정"
  303. #: searx/webapp.py:585 searx/webapp.py:675
  304. msgid "search error"
  305. msgstr "검색 오류"
  306. #: searx/webutils.py:36
  307. msgid "timeout"
  308. msgstr "대기 시간"
  309. #: searx/webutils.py:37
  310. msgid "parsing error"
  311. msgstr "구문 분석 오류"
  312. #: searx/webutils.py:38
  313. msgid "HTTP protocol error"
  314. msgstr "HTTP 프로토콜 오류"
  315. #: searx/webutils.py:39
  316. msgid "network error"
  317. msgstr "네트워크 오류"
  318. #: searx/webutils.py:40
  319. msgid "SSL error: certificate validation has failed"
  320. msgstr "SSL 에러: 인증서 무효"
  321. #: searx/webutils.py:42
  322. msgid "unexpected crash"
  323. msgstr "예상치 못한 충돌"
  324. #: searx/webutils.py:49
  325. msgid "HTTP error"
  326. msgstr "HTTP 오류"
  327. #: searx/webutils.py:50
  328. msgid "HTTP connection error"
  329. msgstr "HTTP 연결 오류"
  330. #: searx/webutils.py:56
  331. msgid "proxy error"
  332. msgstr "프록시 오류"
  333. #: searx/webutils.py:57
  334. msgid "CAPTCHA"
  335. msgstr "CAPTCHA"
  336. #: searx/webutils.py:58
  337. msgid "too many requests"
  338. msgstr "너무 많은 요청"
  339. #: searx/webutils.py:59
  340. msgid "access denied"
  341. msgstr "액세스 거부"
  342. #: searx/webutils.py:60
  343. msgid "server API error"
  344. msgstr "서버 API 오류"
  345. #: searx/webutils.py:79
  346. msgid "Suspended"
  347. msgstr "중단됨"
  348. #: searx/webutils.py:314
  349. msgid "{minutes} minute(s) ago"
  350. msgstr "{minutes}분 전"
  351. #: searx/webutils.py:315
  352. msgid "{hours} hour(s), {minutes} minute(s) ago"
  353. msgstr "{hours}시간 {minutes}분 전"
  354. #: searx/answerers/random/answerer.py:76
  355. msgid "Random value generator"
  356. msgstr "난수 생성기"
  357. #: searx/answerers/random/answerer.py:77
  358. msgid "Generate different random values"
  359. msgstr "다른 난수 생성"
  360. #: searx/answerers/statistics/answerer.py:50
  361. msgid "Statistics functions"
  362. msgstr "통계 기능"
  363. #: searx/answerers/statistics/answerer.py:51
  364. msgid "Compute {functions} of the arguments"
  365. msgstr "{functions} 매개변수 계산"
  366. #: searx/engines/mozhi.py:57
  367. msgid "Synonyms"
  368. msgstr ""
  369. #: searx/engines/openstreetmap.py:159
  370. msgid "Get directions"
  371. msgstr "길찾기"
  372. #: searx/engines/pdbe.py:96
  373. msgid "{title} (OBSOLETE)"
  374. msgstr "{title} (사용되지 않음)"
  375. #: searx/engines/pdbe.py:103
  376. msgid "This entry has been superseded by"
  377. msgstr "이 항목은 다음으로 대체되었습니다"
  378. #: searx/engines/qwant.py:290
  379. msgid "Channel"
  380. msgstr "채널"
  381. #: searx/engines/radio_browser.py:105
  382. msgid "bitrate"
  383. msgstr "비트 레이트"
  384. #: searx/engines/radio_browser.py:106
  385. msgid "votes"
  386. msgstr "표"
  387. #: searx/engines/radio_browser.py:107
  388. msgid "clicks"
  389. msgstr "클릭"
  390. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  391. #: searx/engines/zlibrary.py:137
  392. msgid "Language"
  393. msgstr "언어"
  394. #: searx/engines/semantic_scholar.py:78
  395. msgid ""
  396. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  397. "{lastCitationVelocityYear}"
  398. msgstr ""
  399. "{firstCitationVelocityYear}년부터 {lastCitationVelocityYear}년까지의 "
  400. "{numCitations}회 인용"
  401. #: searx/engines/tineye.py:45
  402. msgid ""
  403. "Could not read that image url. This may be due to an unsupported file "
  404. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  405. " WebP."
  406. msgstr ""
  407. "이미지 주소를 읽을 수 없습니다. 파일 포맷을 지원하지 않아 발생하는 문제일 "
  408. "수도 있습니다. TinEye는 JPEG, PNG, GIF, BMP, TIFF 그리고 WebP 이미지만 "
  409. "지원합니다."
  410. #: searx/engines/tineye.py:51
  411. msgid ""
  412. "The image is too simple to find matches. TinEye requires a basic level of"
  413. " visual detail to successfully identify matches."
  414. msgstr ""
  415. "이미지가 너무 단순해 일치하는 항목을 찾을 수 없습니다. TinEye가 일치하는 "
  416. "이미지를 성공적으로 식별하기 위해선 최소 수준의 시각적 정보가 필요합니다;."
  417. #: searx/engines/tineye.py:57
  418. msgid "The image could not be downloaded."
  419. msgstr "다운로드할 수 없는 이미지입니다."
  420. #: searx/engines/zlibrary.py:138
  421. msgid "Book rating"
  422. msgstr "책 평점"
  423. #: searx/engines/zlibrary.py:139
  424. msgid "File quality"
  425. msgstr "파일 품질"
  426. #: searx/plugins/calculator.py:18
  427. msgid "Calculate mathematical expressions via the search bar"
  428. msgstr "검색바를 통해 수학연산 계산하기"
  429. #: searx/plugins/hash_plugin.py:10
  430. msgid "Converts strings to different hash digests."
  431. msgstr "문자열을 다른 해시 다이제스트 값으로 변환합니다."
  432. #: searx/plugins/hash_plugin.py:38
  433. msgid "hash digest"
  434. msgstr "해시 다이제스트"
  435. #: searx/plugins/hostnames.py:103
  436. msgid "Hostnames plugin"
  437. msgstr "호스트 이름 플러그인"
  438. #: searx/plugins/hostnames.py:104
  439. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  440. msgstr "검색 결과에서 이 호스트 이름을 기준으로 삭제 또는 우선순위에 따라 재작성하기"
  441. #: searx/plugins/oa_doi_rewrite.py:12
  442. msgid "Open Access DOI rewrite"
  443. msgstr "오픈 액세스 DOI 재작성"
  444. #: searx/plugins/oa_doi_rewrite.py:13
  445. msgid ""
  446. "Avoid paywalls by redirecting to open-access versions of publications "
  447. "when available"
  448. msgstr "가능한 경우 공개 액세스 버전의 출판물로 리디렉션하여 페이월 방지"
  449. #: searx/plugins/self_info.py:9
  450. msgid "Self Information"
  451. msgstr "본인 정보"
  452. #: searx/plugins/self_info.py:10
  453. msgid ""
  454. "Displays your IP if the query is \"ip\" and your user agent if the query "
  455. "contains \"user agent\"."
  456. msgstr ""
  457. "쿼리가 \"ip\"인 경우 사용자의 IP를 표시하고 쿼리에 \"user agent\"가 포함된 "
  458. "경우 사용자 에이전트를 표시합니다."
  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. "보호가 약해질 수 있습니다."
  900. #: searx/templates/simple/preferences/cookies.html:35
  901. msgid "URL to restore your preferences in another browser"
  902. msgstr "다른 브라우저에서 설정을 복구하기 위한 URL"
  903. #: searx/templates/simple/preferences/cookies.html:43
  904. msgid ""
  905. "Specifying custom settings in the preferences URL can be used to sync "
  906. "preferences across devices."
  907. msgstr "특정 설정이 들어간 URL은 장치 간에 설정을 동기화 하는데 사용할 수 있습니다."
  908. #: searx/templates/simple/preferences/cookies.html:46
  909. msgid "Copy preferences hash"
  910. msgstr "설정 해시 복사"
  911. #: searx/templates/simple/preferences/cookies.html:57
  912. msgid "Insert copied preferences hash (without URL) to restore"
  913. msgstr "(URL 제외하여) 설정 해시를 복사해 복원"
  914. #: searx/templates/simple/preferences/cookies.html:59
  915. msgid "Preferences hash"
  916. msgstr "설정 해시"
  917. #: searx/templates/simple/preferences/doi_resolver.html:2
  918. msgid "Open Access DOI resolver"
  919. msgstr "오픈 엑세스 DOI 리졸버"
  920. #: searx/templates/simple/preferences/doi_resolver.html:14
  921. msgid "Select service used by DOI rewrite"
  922. msgstr "DOI 재작성에 사용된 서비스 선택"
  923. #: searx/templates/simple/preferences/engines.html:9
  924. msgid ""
  925. "This tab does not exists in the user interface, but you can search in "
  926. "these engines by its !bangs."
  927. msgstr "이 탭은 유저 인터페이스에 나타나지 않지만, !bang을 사용하여 이 검색엔진으로 "
  928. "검색할 수 있습니다."
  929. #: searx/templates/simple/preferences/engines.html:15
  930. msgid "Enable all"
  931. msgstr "모두 적용"
  932. #: searx/templates/simple/preferences/engines.html:16
  933. msgid "Disable all"
  934. msgstr "모두 해제"
  935. #: searx/templates/simple/preferences/engines.html:25
  936. msgid "!bang"
  937. msgstr "!bang"
  938. #: searx/templates/simple/preferences/engines.html:26
  939. msgid "Supports selected language"
  940. msgstr "선택 언어 지원함"
  941. #: searx/templates/simple/preferences/engines.html:29
  942. msgid "Weight"
  943. msgstr "무게"
  944. #: searx/templates/simple/preferences/engines.html:33
  945. msgid "Max time"
  946. msgstr "최대시간"
  947. #: searx/templates/simple/preferences/favicon.html:2
  948. msgid "Favicon Resolver"
  949. msgstr ""
  950. #: searx/templates/simple/preferences/favicon.html:15
  951. msgid "Display favicons near search results"
  952. msgstr ""
  953. #: searx/templates/simple/preferences/footer.html:2
  954. msgid ""
  955. "These settings are stored in your cookies, this allows us not to store "
  956. "this data about you."
  957. msgstr "설정은 쿠키에 저장 되기 때문에 서버측에서 설정 관련 사용자 정보를 저장하는 "
  958. "것은 불가능합니다."
  959. #: searx/templates/simple/preferences/footer.html:3
  960. msgid ""
  961. "These cookies serve your sole convenience, we don't use these cookies to "
  962. "track you."
  963. msgstr "이 쿠키는 오직 편의를 위해 쓰이며, 추적에 이용하지 않습니다."
  964. #: searx/templates/simple/preferences/footer.html:6
  965. msgid "Save"
  966. msgstr "저장"
  967. #: searx/templates/simple/preferences/footer.html:9
  968. msgid "Reset defaults"
  969. msgstr "기본값 복원"
  970. #: searx/templates/simple/preferences/footer.html:13
  971. msgid "Back"
  972. msgstr "뒤로"
  973. #: searx/templates/simple/preferences/hotkeys.html:2
  974. msgid "Hotkeys"
  975. msgstr "단축키"
  976. #: searx/templates/simple/preferences/hotkeys.html:13
  977. msgid "Vim-like"
  978. msgstr "vim 형식"
  979. #: searx/templates/simple/preferences/hotkeys.html:18
  980. msgid ""
  981. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  982. "key on main or result page to get help."
  983. msgstr ""
  984. "단축키를 이용해 검색결과를 탐색합니다 (Javascript 필요). 검색결과 페이지나 "
  985. "홈페이지에서 'h'를 눌러 도움말을 볼수 있습니다."
  986. #: searx/templates/simple/preferences/image_proxy.html:2
  987. msgid "Image proxy"
  988. msgstr "이미지 우회"
  989. #: searx/templates/simple/preferences/image_proxy.html:14
  990. msgid "Proxying image results through SearXNG"
  991. msgstr "SearXNG를 통해 이미지 결과 우회"
  992. #: searx/templates/simple/preferences/infinite_scroll.html:2
  993. msgid "Infinite scroll"
  994. msgstr "무한 스크롤"
  995. #: searx/templates/simple/preferences/infinite_scroll.html:14
  996. msgid "Automatically load next page when scrolling to bottom of current page"
  997. msgstr "현재 페이지 하단까지 스크롤 했을 때 자동으로 다음 페이지 불러오기"
  998. #: searx/templates/simple/preferences/language.html:24
  999. msgid "What language do you prefer for search?"
  1000. msgstr "어떤 언어로 검색하시겠습니까?"
  1001. #: searx/templates/simple/preferences/language.html:25
  1002. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1003. msgstr "SearXNG가 검색 언어를 자동감지 할 수 있도록 자동감지를 선택해 주세요."
  1004. #: searx/templates/simple/preferences/method.html:2
  1005. msgid "HTTP Method"
  1006. msgstr "HTTP 메소드"
  1007. #: searx/templates/simple/preferences/method.html:14
  1008. msgid "Change how forms are submitted"
  1009. msgstr "요청이 전송되는 방법을 변경합니다"
  1010. #: searx/templates/simple/preferences/query_in_title.html:2
  1011. msgid "Query in the page's title"
  1012. msgstr "페이지 제목에 검색어 표시"
  1013. #: searx/templates/simple/preferences/query_in_title.html:14
  1014. msgid ""
  1015. "When enabled, the result page's title contains your query. Your browser "
  1016. "can record this title"
  1017. msgstr "활성화 할 경우, 결과 페이지 제목에 검색어가 표시 됩니다. 페이지 제목은 "
  1018. "브라우저가 기록할 수 있습니다"
  1019. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1020. msgid "Results on new tabs"
  1021. msgstr "새 탭에서 결과 열기"
  1022. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1023. msgid "Open result links on new browser tabs"
  1024. msgstr "새 탭에서 결과 링크를 엽니다"
  1025. #: searx/templates/simple/preferences/safesearch.html:20
  1026. msgid "Filter content"
  1027. msgstr "콘텐츠 필터링"
  1028. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1029. msgid "Search on category select"
  1030. msgstr "특정 카테고리 검색"
  1031. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1032. msgid ""
  1033. "Perform search immediately if a category selected. Disable to select "
  1034. "multiple categories"
  1035. msgstr "카테고리 선택후 즉시 검색을 합니다. 한개 이상의 카테고리를 선택하면 "
  1036. "비활성화됩니다"
  1037. #: searx/templates/simple/preferences/theme.html:2
  1038. msgid "Theme"
  1039. msgstr "테마"
  1040. #: searx/templates/simple/preferences/theme.html:14
  1041. msgid "Change SearXNG layout"
  1042. msgstr "SearXNG 레이아웃 변경"
  1043. #: searx/templates/simple/preferences/theme.html:19
  1044. msgid "Theme style"
  1045. msgstr "테마 스타일"
  1046. #: searx/templates/simple/preferences/theme.html:31
  1047. msgid "Choose auto to follow your browser settings"
  1048. msgstr "'자동'을 선택하면 브라우저 기본설정에 맞춥니다"
  1049. #: searx/templates/simple/preferences/tokens.html:2
  1050. msgid "Engine tokens"
  1051. msgstr "엔진토큰"
  1052. #: searx/templates/simple/preferences/tokens.html:9
  1053. msgid "Access tokens for private engines"
  1054. msgstr "사유 검색 엔진 엑세스 토큰"
  1055. #: searx/templates/simple/preferences/ui_locale.html:2
  1056. msgid "Interface language"
  1057. msgstr "인터페이스 언어"
  1058. #: searx/templates/simple/preferences/ui_locale.html:14
  1059. msgid "Change the language of the layout"
  1060. msgstr "레이아웃 언어 변경"
  1061. #: searx/templates/simple/preferences/urlformatting.html:2
  1062. msgid "URL formatting"
  1063. msgstr ""
  1064. #: searx/templates/simple/preferences/urlformatting.html:8
  1065. msgid "Pretty"
  1066. msgstr ""
  1067. #: searx/templates/simple/preferences/urlformatting.html:13
  1068. msgid "Full"
  1069. msgstr ""
  1070. #: searx/templates/simple/preferences/urlformatting.html:18
  1071. msgid "Host"
  1072. msgstr ""
  1073. #: searx/templates/simple/preferences/urlformatting.html:23
  1074. msgid "Change result URL formatting"
  1075. msgstr ""
  1076. #: searx/templates/simple/result_templates/code.html:13
  1077. msgid "repo"
  1078. msgstr "리포지토리"
  1079. #: searx/templates/simple/result_templates/default.html:6
  1080. #: searx/templates/simple/result_templates/files.html:8
  1081. #: searx/templates/simple/result_templates/files.html:11
  1082. msgid "show media"
  1083. msgstr "미디어 표시"
  1084. #: searx/templates/simple/result_templates/default.html:6
  1085. #: searx/templates/simple/result_templates/files.html:8
  1086. msgid "hide media"
  1087. msgstr "미디어 숨기기"
  1088. #: searx/templates/simple/result_templates/default.html:14
  1089. #: searx/templates/simple/result_templates/videos.html:14
  1090. msgid "This site did not provide any description."
  1091. msgstr "사이트에서 소개를 제공하지 않았습니다."
  1092. #: searx/templates/simple/result_templates/files.html:38
  1093. #: searx/templates/simple/result_templates/images.html:22
  1094. #: searx/templates/simple/result_templates/torrent.html:11
  1095. msgid "Filesize"
  1096. msgstr "파일 크기"
  1097. #: searx/templates/simple/result_templates/files.html:40
  1098. msgid "Date"
  1099. msgstr "날짜"
  1100. #: searx/templates/simple/result_templates/files.html:42
  1101. #: searx/templates/simple/result_templates/paper.html:24
  1102. msgid "Type"
  1103. msgstr "분류"
  1104. #: searx/templates/simple/result_templates/images.html:20
  1105. msgid "Resolution"
  1106. msgstr "해상도"
  1107. #: searx/templates/simple/result_templates/images.html:21
  1108. msgid "Format"
  1109. msgstr "포멧"
  1110. #: searx/templates/simple/result_templates/images.html:24
  1111. msgid "Engine"
  1112. msgstr "검색엔진"
  1113. #: searx/templates/simple/result_templates/images.html:25
  1114. msgid "View source"
  1115. msgstr "소스 보기"
  1116. #: searx/templates/simple/result_templates/map.html:12
  1117. msgid "address"
  1118. msgstr "주소"
  1119. #: searx/templates/simple/result_templates/map.html:43
  1120. msgid "show map"
  1121. msgstr "지도 표시"
  1122. #: searx/templates/simple/result_templates/map.html:43
  1123. msgid "hide map"
  1124. msgstr "지도 숨기기"
  1125. #: searx/templates/simple/result_templates/packages.html:12
  1126. msgid "Version"
  1127. msgstr "버전"
  1128. #: searx/templates/simple/result_templates/packages.html:18
  1129. msgid "Maintainer"
  1130. msgstr "관리자"
  1131. #: searx/templates/simple/result_templates/packages.html:24
  1132. msgid "Updated at"
  1133. msgstr "갱신 시각"
  1134. #: searx/templates/simple/result_templates/packages.html:30
  1135. #: searx/templates/simple/result_templates/paper.html:25
  1136. msgid "Tags"
  1137. msgstr "태그"
  1138. #: searx/templates/simple/result_templates/packages.html:36
  1139. msgid "Popularity"
  1140. msgstr "인기"
  1141. #: searx/templates/simple/result_templates/packages.html:42
  1142. msgid "License"
  1143. msgstr "라이선스"
  1144. #: searx/templates/simple/result_templates/packages.html:52
  1145. msgid "Project"
  1146. msgstr "프로젝트"
  1147. #: searx/templates/simple/result_templates/packages.html:55
  1148. msgid "Project homepage"
  1149. msgstr "프로젝트 홈페이지"
  1150. #: searx/templates/simple/result_templates/paper.html:5
  1151. msgid "Published date"
  1152. msgstr "발행일"
  1153. #: searx/templates/simple/result_templates/paper.html:9
  1154. msgid "Journal"
  1155. msgstr "발행처"
  1156. #: searx/templates/simple/result_templates/paper.html:22
  1157. msgid "Editor"
  1158. msgstr "편집자"
  1159. #: searx/templates/simple/result_templates/paper.html:23
  1160. msgid "Publisher"
  1161. msgstr "발행자"
  1162. #: searx/templates/simple/result_templates/paper.html:26
  1163. msgid "DOI"
  1164. msgstr "DOI"
  1165. #: searx/templates/simple/result_templates/paper.html:27
  1166. msgid "ISSN"
  1167. msgstr "ISSN"
  1168. #: searx/templates/simple/result_templates/paper.html:28
  1169. msgid "ISBN"
  1170. msgstr "ISBN"
  1171. #: searx/templates/simple/result_templates/paper.html:33
  1172. msgid "PDF"
  1173. msgstr "PDF"
  1174. #: searx/templates/simple/result_templates/paper.html:34
  1175. msgid "HTML"
  1176. msgstr "HTML"
  1177. #: searx/templates/simple/result_templates/torrent.html:6
  1178. msgid "magnet link"
  1179. msgstr "마그넷 링크"
  1180. #: searx/templates/simple/result_templates/torrent.html:7
  1181. msgid "torrent file"
  1182. msgstr "토렌트 파일"
  1183. #: searx/templates/simple/result_templates/torrent.html:9
  1184. msgid "Seeder"
  1185. msgstr "시드"
  1186. #: searx/templates/simple/result_templates/torrent.html:9
  1187. msgid "Leecher"
  1188. msgstr "리치"
  1189. #: searx/templates/simple/result_templates/torrent.html:13
  1190. msgid "Number of Files"
  1191. msgstr "파일 개수"
  1192. #: searx/templates/simple/result_templates/videos.html:6
  1193. msgid "show video"
  1194. msgstr "비디오 표시"
  1195. #: searx/templates/simple/result_templates/videos.html:6
  1196. msgid "hide video"
  1197. msgstr "비디오 숨기기"
  1198. #~ msgid "Advanced settings"
  1199. #~ msgstr "고급 설정"
  1200. #~ msgid "Close"
  1201. #~ msgstr "닫기"
  1202. #~ msgid "Language"
  1203. #~ msgstr "언어/Language"
  1204. #~ msgid "broken"
  1205. #~ msgstr "끊김"
  1206. #~ msgid "supported"
  1207. #~ msgstr "지원됨"
  1208. #~ msgid "not supported"
  1209. #~ msgstr "지원되지 않음"
  1210. #~ msgid "about"
  1211. #~ msgstr "자세히"
  1212. #~ msgid "Avg."
  1213. #~ msgstr "평균"
  1214. #~ msgid "User Interface"
  1215. #~ msgstr "사용자 인터페이스"
  1216. #~ msgid "Choose style for this theme"
  1217. #~ msgstr "이 테마에 대한 스타일 선택"
  1218. #~ msgid "Style"
  1219. #~ msgstr "스타일"
  1220. #~ msgid "Show advanced settings"
  1221. #~ msgstr "고급 설정 열기"
  1222. #~ msgid "Show advanced settings panel in the home page by default"
  1223. #~ msgstr "항상 시작 페이지에서 고급설정 패널 보기"
  1224. #~ msgid "Allow all"
  1225. #~ msgstr "모두 허용"
  1226. #~ msgid "Disable all"
  1227. #~ msgstr "모두 거부"
  1228. #~ msgid "Selected language"
  1229. #~ msgstr "선택언어 지원"
  1230. #~ msgid "Query"
  1231. #~ msgstr "검색어"
  1232. #~ msgid "save"
  1233. #~ msgstr "저장"
  1234. #~ msgid "back"
  1235. #~ msgstr "뒤로"
  1236. #~ msgid "Links"
  1237. #~ msgstr "링크"
  1238. #~ msgid "RSS subscription"
  1239. #~ msgstr "RSS 구독"
  1240. #~ msgid "Search results"
  1241. #~ msgstr "검색 결과"
  1242. #~ msgid "next page"
  1243. #~ msgstr "다음 페이지"
  1244. #~ msgid "previous page"
  1245. #~ msgstr "이전 페이지"
  1246. #~ msgid "Start search"
  1247. #~ msgstr "검색 시작"
  1248. #~ msgid "Clear search"
  1249. #~ msgstr "검색 지우기"
  1250. #~ msgid "Clear"
  1251. #~ msgstr "지우기"
  1252. #~ msgid "stats"
  1253. #~ msgstr "통계"
  1254. #~ msgid "Heads up!"
  1255. #~ msgstr "조심하세요!"
  1256. #~ msgid "It look like you are using SearXNG first time."
  1257. #~ msgstr "SearXNG를 처음 쓰시는 것 같군요."
  1258. #~ msgid "Well done!"
  1259. #~ msgstr "잘 하셨습니다!"
  1260. #~ msgid "Settings saved successfully."
  1261. #~ msgstr "설정을 성공적으로 저장했습니다."
  1262. #~ msgid "Oh snap!"
  1263. #~ msgstr "이런!"
  1264. #~ msgid "Something went wrong."
  1265. #~ msgstr "문제가 발생했습니다."
  1266. #~ msgid "Date"
  1267. #~ msgstr "날짜"
  1268. #~ msgid "Type"
  1269. #~ msgstr "형식"
  1270. #~ msgid "Get image"
  1271. #~ msgstr "이미지 가져오기"
  1272. #~ msgid "Center Alignment"
  1273. #~ msgstr ""
  1274. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1275. #~ msgstr ""
  1276. #~ msgid "preferences"
  1277. #~ msgstr "설정"
  1278. #~ msgid "Scores per result"
  1279. #~ msgstr "검색결과당 점수"
  1280. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1281. #~ msgstr "개인 정보를 존중하는 맞춤형 메타 검색 엔진"
  1282. #~ msgid "No abstract is available for this publication."
  1283. #~ msgstr "이 출판물에 대한 초록이 없습니다."
  1284. #~ msgid "Self Informations"
  1285. #~ msgstr "본인 정보"
  1286. #~ msgid ""
  1287. #~ "Change how forms are submited, <a "
  1288. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1289. #~ " rel=\"external\">learn more about request "
  1290. #~ "methods</a>"
  1291. #~ msgstr ""
  1292. #~ "폼 제출 방법 변경,<a "
  1293. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1294. #~ " rel=\"external\">요청 메소드에 대해 더 알아보기</a>"
  1295. #~ msgid ""
  1296. #~ "This plugin checks if the address "
  1297. #~ "of the request is a TOR exit "
  1298. #~ "node, and informs the user if it"
  1299. #~ " is, like check.torproject.org but from "
  1300. #~ "searxng."
  1301. #~ msgstr ""
  1302. #~ "이 플러그인은 요청한 주소가 TOR 출구 노드인지 "
  1303. #~ "확인하고 사용자에게 알려줍니다, check.torproject.org 와 "
  1304. #~ "비슷하지만 searxng 에서 제공됩니다."
  1305. #~ msgid ""
  1306. #~ "The TOR exit node list "
  1307. #~ "(https://check.torproject.org/exit-addresses) is "
  1308. #~ "unreachable."
  1309. #~ msgstr "TOR 출구 노드 목록(https://check.torproject.org/exit-addresses)에 연결할 수 없습니다."
  1310. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1311. #~ msgstr "TOR 를 사용하고 있습니다. 당신의 아이피 주소는 다음과 같습니다: {ip_address}."
  1312. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1313. #~ msgstr "TOR 를 사용하고 있지 않습니다. 당신의 아이피 주소는 다음과 같습니다: {ip_address}."
  1314. #~ msgid ""
  1315. #~ "The could not download the list of"
  1316. #~ " Tor exit-nodes from "
  1317. #~ "https://check.torproject.org/exit-addresses."
  1318. #~ msgstr ""
  1319. #~ msgid ""
  1320. #~ "You are using Tor. It looks like"
  1321. #~ " you have this external IP address:"
  1322. #~ " {ip_address}."
  1323. #~ msgstr ""
  1324. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1325. #~ msgstr ""
  1326. #~ msgid "Autodetect search language"
  1327. #~ msgstr ""
  1328. #~ msgid "Automatically detect the query search language and switch to it."
  1329. #~ msgstr ""
  1330. #~ msgid "others"
  1331. #~ msgstr "기타"
  1332. #~ msgid ""
  1333. #~ "This tab does not show up for "
  1334. #~ "search results, but you can search "
  1335. #~ "the engines listed here via bangs."
  1336. #~ msgstr "이 탭은 검색 결과에서 표시 되지 않으나, 느낌표을 입력하여 아래의 엔진으로 검색할 수 있습니다."
  1337. #~ msgid "Shortcut"
  1338. #~ msgstr "단축 키 워드"
  1339. #~ msgid "!bang"
  1340. #~ msgstr ""
  1341. #~ msgid ""
  1342. #~ "This tab dues not exists in the"
  1343. #~ " user interface, but you can search"
  1344. #~ " in these engines by its !bangs."
  1345. #~ msgstr ""
  1346. #~ msgid "Engines cannot retrieve results."
  1347. #~ msgstr "검색결과를 가져올 수 없습니다."
  1348. #~ msgid "Please, try again later or find another SearXNG instance."
  1349. #~ msgstr "다음에 시도하거나 다른 SearXNG 객체를 이용해주세요."
  1350. #~ msgid ""
  1351. #~ "Redirect to open-access versions of "
  1352. #~ "publications when available (plugin required)"
  1353. #~ msgstr "가능 하면 오픈 엑세스 출판물로 넘겨주기 (플러그인 필요함)"
  1354. #~ msgid "Bang"
  1355. #~ msgstr ""
  1356. #~ msgid ""
  1357. #~ "Change how forms are submitted, <a "
  1358. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1359. #~ " rel=\"external\">learn more about request "
  1360. #~ "methods</a>"
  1361. #~ msgstr ""
  1362. #~ "폼 제출 방법 변경,<a "
  1363. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1364. #~ " rel=\"external\">요청 메소드에 대해 더 알아보기</a>"
  1365. #~ msgid "On"
  1366. #~ msgstr "사용"
  1367. #~ msgid "Off"
  1368. #~ msgstr "사용안함"
  1369. #~ msgid "Enabled"
  1370. #~ msgstr "활성화됨"
  1371. #~ msgid "Disabled"
  1372. #~ msgstr "비활성화됨"
  1373. #~ msgid ""
  1374. #~ "Perform search immediately if a category"
  1375. #~ " selected. Disable to select multiple "
  1376. #~ "categories. (JavaScript required)"
  1377. #~ msgstr "카테고리가 선택되면 즉시 검색을 수행합니다. 여러 카테고리를 선택하려면 비활성화합니다. (JavaScript 필요)"
  1378. #~ msgid "Vim-like hotkeys"
  1379. #~ msgstr "Vim 스타일 단축키"
  1380. #~ msgid ""
  1381. #~ "Navigate search results with Vim-like"
  1382. #~ " hotkeys (JavaScript required). Press \"h\""
  1383. #~ " key on main or result page to"
  1384. #~ " get help."
  1385. #~ msgstr ""
  1386. #~ "Vim 스타일 단축키로 검색 결과를 찾아보세요(JavaScript "
  1387. #~ "필요). 도움말을 보려면 메인 페이지 또는 결과 "
  1388. #~ "페이지에서 \"h\" 키를 누르십시오."
  1389. #~ msgid ""
  1390. #~ "we didn't find any results. Please "
  1391. #~ "use another query or search in "
  1392. #~ "more categories."
  1393. #~ msgstr "검색결과를 찾을 수 없습니다. 다른 검색어로 검색하거나 검색 범주를 추가해주세요."
  1394. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1395. #~ msgstr "결과의 호스트 이름을 재작성하거나 호스트 이름에 따라 결과를 삭제합니다"
  1396. #~ msgid "Bytes"
  1397. #~ msgstr "바이트"
  1398. #~ msgid "kiB"
  1399. #~ msgstr "kiB"
  1400. #~ msgid "MiB"
  1401. #~ msgstr "MiB"
  1402. #~ msgid "GiB"
  1403. #~ msgstr "GiB"
  1404. #~ msgid "TiB"
  1405. #~ msgstr "TiB"
  1406. #~ msgid "Hostname replace"
  1407. #~ msgstr "호스트 이름 변경"
  1408. #~ msgid "Error!"
  1409. #~ msgstr "오류!"
  1410. #~ msgid "Engines cannot retrieve results"
  1411. #~ msgstr "결과를 가져올 수 없습니다"
  1412. #~ msgid "Start submiting a new issue on GitHub"
  1413. #~ msgstr "GitHub 에서 새 이슈 시작하기"
  1414. #~ msgid "dummy"
  1415. #~ msgstr ""