messages.po 51 KB

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