ko.po 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442
  1. # Changwoo Ryu <cwryu@debian.org>, 2004.
  2. #
  3. msgid ""
  4. msgstr ""
  5. "Project-Id-Version: apt\n"
  6. "Report-Msgid-Bugs-To: \n"
  7. "POT-Creation-Date: 2004-05-31 19:57-0700\n"
  8. "PO-Revision-Date: 2004-07-01 22:25+0900\n"
  9. "Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
  10. "Language-Team: Korean <cwryu@debian.org>\n"
  11. "MIME-Version: 1.0\n"
  12. "Content-Type: text/plain; charset=UTF-8\n"
  13. "Content-Transfer-Encoding: 8bit\n"
  14. #: cmdline/apt-cache.cc:135
  15. #, c-format
  16. msgid "Package %s version %s has an unmet dep:\n"
  17. msgstr "%s 꾸러미의 %s 버전의 의존성이 맞지 않습니다:\n"
  18. #: cmdline/apt-cache.cc:175 cmdline/apt-cache.cc:527 cmdline/apt-cache.cc:615
  19. #: cmdline/apt-cache.cc:771 cmdline/apt-cache.cc:989 cmdline/apt-cache.cc:1357
  20. #: cmdline/apt-cache.cc:1508
  21. #, c-format
  22. msgid "Unable to locate package %s"
  23. msgstr "%s 꾸러미를 찾을 수 없습니다"
  24. #: cmdline/apt-cache.cc:232
  25. msgid "Total Package Names : "
  26. msgstr "전체 꾸러미 이름 : "
  27. #: cmdline/apt-cache.cc:272
  28. msgid " Normal Packages: "
  29. msgstr " 일반 꾸러미: "
  30. #: cmdline/apt-cache.cc:273
  31. msgid " Pure Virtual Packages: "
  32. msgstr " 순수 가상 꾸러미: "
  33. #: cmdline/apt-cache.cc:274
  34. msgid " Single Virtual Packages: "
  35. msgstr " 단일 가상 꾸러미: "
  36. #: cmdline/apt-cache.cc:275
  37. msgid " Mixed Virtual Packages: "
  38. msgstr " 혼합 가상 꾸러미: "
  39. #: cmdline/apt-cache.cc:276
  40. msgid " Missing: "
  41. msgstr " 빠짐: "
  42. #: cmdline/apt-cache.cc:278
  43. msgid "Total Distinct Versions: "
  44. msgstr "전체 구역별 버전: "
  45. #: cmdline/apt-cache.cc:280
  46. msgid "Total Dependencies: "
  47. msgstr "전체 의존성: "
  48. #: cmdline/apt-cache.cc:283
  49. msgid "Total Ver/File relations: "
  50. msgstr "전체 버전/파일 관계: "
  51. #: cmdline/apt-cache.cc:285
  52. msgid "Total Provides Mappings: "
  53. msgstr "전체 제공 매핑: "
  54. #: cmdline/apt-cache.cc:297
  55. msgid "Total Globbed Strings: "
  56. msgstr "전체 패턴 문자열: "
  57. #: cmdline/apt-cache.cc:311
  58. msgid "Total Dependency Version space: "
  59. msgstr "전체 의존성 버전 용량: "
  60. #: cmdline/apt-cache.cc:316
  61. msgid "Total Slack space: "
  62. msgstr "전체 빈 용량: "
  63. #: cmdline/apt-cache.cc:324
  64. msgid "Total Space Accounted for: "
  65. msgstr "차지하는 전체 용량: "
  66. #: cmdline/apt-cache.cc:446 cmdline/apt-cache.cc:1189
  67. #, c-format
  68. msgid "Package file %s is out of sync."
  69. msgstr "꾸러미 파일 %s 파일이 동기화되지 않았습니다."
  70. #: cmdline/apt-cache.cc:1231
  71. msgid "You must give exactly one pattern"
  72. msgstr "정확히 한 개의 패턴을 넘겨야 합니다"
  73. #: cmdline/apt-cache.cc:1385
  74. msgid "No packages found"
  75. msgstr "꾸러미가 없습니다"
  76. #: cmdline/apt-cache.cc:1462
  77. msgid "Package Files:"
  78. msgstr "꾸러미 파일:"
  79. #: cmdline/apt-cache.cc:1469 cmdline/apt-cache.cc:1555
  80. msgid "Cache is out of sync, can't x-ref a package file"
  81. msgstr "캐시가 동기화되지 않았습니다. 꾸러미 파일을 상호 참조할 수 없습니다"
  82. #: cmdline/apt-cache.cc:1470
  83. #, c-format
  84. msgid "%4i %s\n"
  85. msgstr "%4i %s\n"
  86. #. Show any packages have explicit pins
  87. #: cmdline/apt-cache.cc:1482
  88. msgid "Pinned Packages:"
  89. msgstr "핀 꾸러미:"
  90. #: cmdline/apt-cache.cc:1494 cmdline/apt-cache.cc:1535
  91. msgid "(not found)"
  92. msgstr "(없음)"
  93. #. Installed version
  94. #: cmdline/apt-cache.cc:1515
  95. msgid " Installed: "
  96. msgstr " 설치: "
  97. #: cmdline/apt-cache.cc:1517 cmdline/apt-cache.cc:1525
  98. msgid "(none)"
  99. msgstr "(없음)"
  100. #. Candidate Version
  101. #: cmdline/apt-cache.cc:1522
  102. msgid " Candidate: "
  103. msgstr " 후보: "
  104. #: cmdline/apt-cache.cc:1532
  105. msgid " Package Pin: "
  106. msgstr " 꾸러미 핀: "
  107. #. Show the priority tables
  108. #: cmdline/apt-cache.cc:1541
  109. msgid " Version Table:"
  110. msgstr " 버전 테이블:"
  111. #: cmdline/apt-cache.cc:1556
  112. #, c-format
  113. msgid " %4i %s\n"
  114. msgstr " %4i %s\n"
  115. #: cmdline/apt-cache.cc:1646 cmdline/apt-cdrom.cc:731 cmdline/apt-config.cc:70
  116. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:545
  117. #: cmdline/apt-get.cc:2260 cmdline/apt-sortpkgs.cc:144
  118. #, c-format
  119. msgid "%s %s for %s %s compiled on %s %s\n"
  120. msgstr "%s %s (%s %s), 컴파일 시각 %s %s\n"
  121. #: cmdline/apt-cache.cc:1653
  122. msgid ""
  123. "Usage: apt-cache [options] command\n"
  124. " apt-cache [options] add file1 [file2 ...]\n"
  125. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  126. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  127. "\n"
  128. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  129. "cache files, and query information from them\n"
  130. "\n"
  131. "Commands:\n"
  132. " add - Add a package file to the source cache\n"
  133. " gencaches - Build both the package and source cache\n"
  134. " showpkg - Show some general information for a single package\n"
  135. " showsrc - Show source records\n"
  136. " stats - Show some basic statistics\n"
  137. " dump - Show the entire file in a terse form\n"
  138. " dumpavail - Print an available file to stdout\n"
  139. " unmet - Show unmet dependencies\n"
  140. " search - Search the package list for a regex pattern\n"
  141. " show - Show a readable record for the package\n"
  142. " depends - Show raw dependency information for a package\n"
  143. " rdepends - Show reverse dependency information for a package\n"
  144. " pkgnames - List the names of all packages\n"
  145. " dotty - Generate package graphs for GraphVis\n"
  146. " xvcg - Generate package graphs for xvcg\n"
  147. " policy - Show policy settings\n"
  148. "\n"
  149. "Options:\n"
  150. " -h This help text.\n"
  151. " -p=? The package cache.\n"
  152. " -s=? The source cache.\n"
  153. " -q Disable progress indicator.\n"
  154. " -i Show only important deps for the unmet command.\n"
  155. " -c=? Read this configuration file\n"
  156. " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  157. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  158. msgstr ""
  159. "사용법: apt-cache [옵션] 명령\n"
  160. " apt-cache [옵션] add 파일1 [파일2 ...]\n"
  161. " apt-cache [옵션] showpkg 꾸러미1 [꾸러미2 ...]\n"
  162. " apt-cache [옵션] showsrc 꾸러미1 [꾸러미2 ...]\n"
  163. "\n"
  164. "apt-cache는 APT의 바이너리 캐시 파일을 처리하고, 캐시 파일에\n"
  165. "정보를 질의하는 저수준 도구입니다.\n"
  166. "\n"
  167. "명령:\n"
  168. " add - 소스 캐시에 꾸러미 파일을 더합니다\n"
  169. " gencaches - 꾸러미 캐시 및 소스 캐시를 만듭니다\n"
  170. " showpkg - 한 개의 꾸러미에 대한 일반적인 정보를 보여줍니다\n"
  171. " showsrc - 소스 기록을 봅니다\n"
  172. " stats - 기본적인 통계를 봅니다\n"
  173. " dump - 전체 파일을 간략한 형태로 봅니다\n"
  174. " dumpavail - 사용 가능한 파일을 표준출력에 표시합니다\n"
  175. " unmet - 맞지 않는 의존성을 봅니다\n"
  176. " search - 정규식 패턴에 맞는 꾸러미 목록을 찾습니다\n"
  177. " show - 꾸러미에 대해 읽을 수 있는 기록을 봅니다\n"
  178. " depends - 꾸러미에 대해 의존성 정보를 그대로 봅니다\n"
  179. " rdepends - 꾸러미의 역 의존성 정보를 봅니다\n"
  180. " pkgnames - 모든 꾸러미의 이름을 봅니다\n"
  181. " dotty - GraphVis용 꾸러미 그래프를 만듭니다\n"
  182. " xvcg - xvcg용 꾸러미 그래프를 만듭니다\n"
  183. " policy - 정책 설정을 봅니다\n"
  184. "\n"
  185. "옵션:\n"
  186. " -h 이 도움말.\n"
  187. " -p=? 꾸러미 캐시.\n"
  188. " -s=? 소스 캐시.\n"
  189. " -q 상태 표시를 하지 않습니다.\n"
  190. " -i unmet 명령에서 중요한 의존성만 표시합니다.\n"
  191. " -c=? 지정한 설정 파일을 읽습니다.\n"
  192. " -o=? 임의의 옵션을 설정합니다, 예를 들어 -o dir::cache=/tmp\n"
  193. "좀 더 자세한 정보는 apt-cache(8) 및 apt.conf(5) 매뉴얼 페이지를 보십시오.\n"
  194. #: cmdline/apt-config.cc:41
  195. msgid "Arguments not in pairs"
  196. msgstr "인수가 두 개가 아닙니다"
  197. #: cmdline/apt-config.cc:76
  198. msgid ""
  199. "Usage: apt-config [options] command\n"
  200. "\n"
  201. "apt-config is a simple tool to read the APT config file\n"
  202. "\n"
  203. "Commands:\n"
  204. " shell - Shell mode\n"
  205. " dump - Show the configuration\n"
  206. "\n"
  207. "Options:\n"
  208. " -h This help text.\n"
  209. " -c=? Read this configuration file\n"
  210. " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  211. msgstr ""
  212. "사용법: apt-config [옵션] 명령\n"
  213. "\n"
  214. "apt-config는 APT 설정 파일을 읽는 간단한 프로그램입니다\n"
  215. "\n"
  216. "명령:\n"
  217. " shell - 쉘 모드\n"
  218. " dump - 설정을 보여 줍니다\n"
  219. "\n"
  220. "옵션:\n"
  221. " -h 이 도움말.\n"
  222. " -c=? 해당 설정 파일을 읽습니다\n"
  223. " -o=? 임의의 옵션을 설정합니다, 예를 들어 -o dir::cache=/tmp\n"
  224. #: cmdline/apt-extracttemplates.cc:98
  225. #, c-format
  226. msgid "%s not a valid DEB package."
  227. msgstr "%s은(는) 올바른 DEB 꾸러미가 아닙니다."
  228. #: cmdline/apt-extracttemplates.cc:232
  229. msgid ""
  230. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  231. "\n"
  232. "apt-extracttemplates is a tool to extract config and template info\n"
  233. "from debian packages\n"
  234. "\n"
  235. "Options:\n"
  236. " -h This help text\n"
  237. " -t Set the temp dir\n"
  238. " -c=? Read this configuration file\n"
  239. " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  240. msgstr ""
  241. "사용법: apt-extracttemplates 파일1 [파일2 ...]\n"
  242. "\n"
  243. "apt-extracttemplates는 데비안 꾸러미에서 설정 및 템플릿 정보를 뽑아내는\n"
  244. "도구입니다\n"
  245. "\n"
  246. "옵션:\n"
  247. " -h 이 도움말\n"
  248. " -t 임시 디렉토리 설정\n"
  249. " -c=? 설정 파일을 읽습니다\n"
  250. " -o=? 임의의 옵션을 설정합니다, 예를 들어 -o dir::cache=/tmp\n"
  251. #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:699
  252. #, c-format
  253. msgid "Unable to write to %s"
  254. msgstr "%s에 쓸 수 없습니다"
  255. #: cmdline/apt-extracttemplates.cc:310
  256. msgid "Cannot get debconf version. Is debconf installed?"
  257. msgstr "debconf 버전을 알 수 없습니다. debconf가 설치되었습니까?"
  258. #: ftparchive/apt-ftparchive.cc:163 ftparchive/apt-ftparchive.cc:337
  259. msgid "Package extension list is too long"
  260. msgstr "꾸러미 확장 목록이 너무 깁니다"
  261. #: ftparchive/apt-ftparchive.cc:165 ftparchive/apt-ftparchive.cc:179
  262. #: ftparchive/apt-ftparchive.cc:202 ftparchive/apt-ftparchive.cc:252
  263. #: ftparchive/apt-ftparchive.cc:266 ftparchive/apt-ftparchive.cc:288
  264. #, c-format
  265. msgid "Error Processing directory %s"
  266. msgstr "%s 디렉토리를 처리하는 데 오류가 발생했습니다"
  267. #: ftparchive/apt-ftparchive.cc:250
  268. msgid "Source extension list is too long"
  269. msgstr "소스 확장 목록이 너무 깁니다"
  270. #: ftparchive/apt-ftparchive.cc:367
  271. msgid "Error writing header to contents file"
  272. msgstr "컨텐츠 파일에 헤더를 쓰는 데 오류가 발생했습니다"
  273. #: ftparchive/apt-ftparchive.cc:397
  274. #, c-format
  275. msgid "Error Processing Contents %s"
  276. msgstr "%s 컨텐츠를 처리하는 데 오류가 발생했습니다"
  277. #: ftparchive/apt-ftparchive.cc:551
  278. msgid ""
  279. "Usage: apt-ftparchive [options] command\n"
  280. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  281. " sources srcpath [overridefile [pathprefix]]\n"
  282. " contents path\n"
  283. " release path\n"
  284. " generate config [groups]\n"
  285. " clean config\n"
  286. "\n"
  287. "apt-ftparchive generates index files for Debian archives. It supports\n"
  288. "many styles of generation from fully automated to functional replacements\n"
  289. "for dpkg-scanpackages and dpkg-scansources\n"
  290. "\n"
  291. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  292. "Package file contains the contents of all the control fields from\n"
  293. "each package as well as the MD5 hash and filesize. An override file\n"
  294. "is supported to force the value of Priority and Section.\n"
  295. "\n"
  296. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  297. "The --source-override option can be used to specify a src override file\n"
  298. "\n"
  299. "The 'packages' and 'sources' command should be run in the root of the\n"
  300. "tree. BinaryPath should point to the base of the recursive search and \n"
  301. "override file should contain the override flags. Pathprefix is\n"
  302. "appended to the filename fields if present. Example usage from the \n"
  303. "Debian archive:\n"
  304. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  305. " dists/potato/main/binary-i386/Packages\n"
  306. "\n"
  307. "Options:\n"
  308. " -h This help text\n"
  309. " --md5 Control MD5 generation\n"
  310. " -s=? Source override file\n"
  311. " -q Quiet\n"
  312. " -d=? Select the optional caching database\n"
  313. " --no-delink Enable delinking debug mode\n"
  314. " --contents Control contents file generation\n"
  315. " -c=? Read this configuration file\n"
  316. " -o=? Set an arbitary configuration option"
  317. msgstr ""
  318. "사용법: apt-ftparchive [옵션] 명령\n"
  319. "명령: packages 바이너리경로 [override파일 [경로앞부분]]\n"
  320. " sources 소스경로 [override파일 [경로앞부분]]\n"
  321. " contents 경로\n"
  322. " release 경로\n"
  323. " generate 설정 [그룹]\n"
  324. " clean 설정\n"
  325. "\n"
  326. "apt-ftparchive는 데비안 아카이브용 인덱스 파일을 만듭니다. 이 프로그램은\n"
  327. "여러가지 종류의 인덱스 파일 만들기를 지원합니다 -- 완전 자동에서부터\n"
  328. "dpkg-scanpackages와 dpkg-scansources의 기능을 대체하기도 합니다.\n"
  329. "\n"
  330. "apt-ftparchive는 .deb 파일의 트리에서부터 Package 파일을 만듭니다.\n"
  331. "Package 파일에는 각 꾸러미의 모든 컨트롤 필드는 물론 MD5 해시와 파일\n"
  332. "크기도 들어 있습니다. override 파일을 이용해 우선 순위와 섹션 값을 \n"
  333. "강제로 설정할 수 있습니다\n"
  334. "\n"
  335. "비슷하게 apt-ftparchive는 .dsc 파일의 트리에서부터 Sources 파일을\n"
  336. "만듭니다. --source-override 옵션을 이용해 소스 override 파일을\n"
  337. "지정할 수 있습니다.\n"
  338. "\n"
  339. "'packages'와 'sources' 명령은 해당 트리의 맨 위에서 실행해야 합니다.\n"
  340. "\"바이너리경로\"는 서치할 때 기준 위치를 가리켜야 하고 \"override파일\"은\n"
  341. "override 플래그들이 들어 있어야 합니다. \"경로앞부분\"은 각각의 파일 이름\n"
  342. "필드에 더해 집니다. 예를 들어 데비안 아카이브는 다음과 같이 사용합니다:\n"
  343. "\n"
  344. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  345. " dists/potato/main/binary-i386/Packages\n"
  346. "\n"
  347. "옵션:\n"
  348. " -h 이 도움말\n"
  349. " --md5 MD5 만들기를 컨트롤합니다\n"
  350. " -s=? 소스 override 파일\n"
  351. " -q 조용히\n"
  352. " -d=? 캐시 데이터베이스를 직접 설정합니다\n"
  353. " --no-delink 디버깅 모드 지우기를 사용합니다\n"
  354. " --contents 컨텐츠 파일을 만들기를 컨트롤합니다\n"
  355. " -c=? 이 설정 파일을 읽습니다\n"
  356. " -o=? 임의의 옵션을 설정합니다"
  357. #: ftparchive/apt-ftparchive.cc:757
  358. msgid "No selections matched"
  359. msgstr "맞는 꾸러미가 없습니다"
  360. #: ftparchive/apt-ftparchive.cc:830
  361. #, c-format
  362. msgid "Some files are missing in the package file group `%s'"
  363. msgstr "`%s' 꾸러미 파일 그룹에 몇몇 파일이 빠졌습니다"
  364. #: ftparchive/cachedb.cc:45
  365. #, c-format
  366. msgid "DB was corrupted, file renamed to %s.old"
  367. msgstr "DB가 망가졌습니다. 파일 이름을 %s.old로 바꿉니다"
  368. #: ftparchive/cachedb.cc:63
  369. #, c-format
  370. msgid "DB is old, attempting to upgrade %s"
  371. msgstr "DB가 오래되었습니다. %s의 업그레이드를 시도합니다"
  372. #: ftparchive/cachedb.cc:73
  373. #, c-format
  374. msgid "Unable to open DB file %s: %s"
  375. msgstr "DB 파일, %s 파일을 열 수 없습니다: %s"
  376. #: ftparchive/cachedb.cc:114
  377. #, c-format
  378. msgid "File date has changed %s"
  379. msgstr "%s 파일의 마지막 수정 시각이 바뀌엇습니다"
  380. #: ftparchive/cachedb.cc:155
  381. msgid "Archive has no control record"
  382. msgstr "아카이브에 컨트롤 기록이 없습니다"
  383. # FIXME: 왠 커서??
  384. #: ftparchive/cachedb.cc:267
  385. msgid "Unable to get a cursor"
  386. msgstr "커서를 가져올 수 없습니다"
  387. #: ftparchive/writer.cc:79
  388. #, c-format
  389. msgid "W: Unable to read directory %s\n"
  390. msgstr "경고: %s 디렉토리를 읽을 수 없습니다\n"
  391. #: ftparchive/writer.cc:84
  392. #, c-format
  393. msgid "W: Unable to stat %s\n"
  394. msgstr "경고: %s의 정보를 읽을 수 없습니다\n"
  395. #: ftparchive/writer.cc:126
  396. msgid "E: "
  397. msgstr "오류: "
  398. #: ftparchive/writer.cc:128
  399. msgid "W: "
  400. msgstr "경고: "
  401. #: ftparchive/writer.cc:135
  402. msgid "E: Errors apply to file "
  403. msgstr "오류: 다음 파일에 적용하는 데 오류가 발생했습니다: "
  404. #: ftparchive/writer.cc:152 ftparchive/writer.cc:182
  405. #, c-format
  406. msgid "Failed to resolve %s"
  407. msgstr "%s의 경로를 알아내는 데 실패했습니다"
  408. #: ftparchive/writer.cc:164
  409. msgid "Tree walking failed"
  410. msgstr "트리에서 이동이 실패했습니다"
  411. #: ftparchive/writer.cc:189
  412. #, c-format
  413. msgid "Failed to open %s"
  414. msgstr "%s 파일을 여는 데 실패했습니다"
  415. # FIXME: ??
  416. #: ftparchive/writer.cc:246
  417. #, c-format
  418. msgid " DeLink %s [%s]\n"
  419. msgstr " 링크 %s [%s] 없애기\n"
  420. #: ftparchive/writer.cc:254
  421. #, c-format
  422. msgid "Failed to readlink %s"
  423. msgstr "%s 파일에 readlink하는 데 실패했습니다"
  424. #: ftparchive/writer.cc:258
  425. #, c-format
  426. msgid "Failed to unlink %s"
  427. msgstr "%s 파일을 지우는 데 실패했습니다"
  428. #: ftparchive/writer.cc:265
  429. #, c-format
  430. msgid "*** Failed to link %s to %s"
  431. msgstr "*** %s 파일을 %s(으)로 링크하는 데 실패했습니다"
  432. #: ftparchive/writer.cc:275
  433. #, c-format
  434. msgid " DeLink limit of %sB hit.\n"
  435. msgstr " DeLink 한계값 %s바이트에 도달했습니다.\n"
  436. #: ftparchive/writer.cc:358 apt-inst/extract.cc:181 apt-inst/extract.cc:193
  437. #: apt-inst/extract.cc:210 apt-inst/deb/dpkgdb.cc:121
  438. #, c-format
  439. msgid "Failed to stat %s"
  440. msgstr "%s의 정보를 읽는 데 실패했습니다"
  441. #: ftparchive/writer.cc:378
  442. msgid "Archive had no package field"
  443. msgstr "아카이브에 꾸러미 필드가 없습니다"
  444. #: ftparchive/writer.cc:386 ftparchive/writer.cc:595
  445. #, c-format
  446. msgid " %s has no override entry\n"
  447. msgstr " %s에는 override 항목이 없습니다\n"
  448. #: ftparchive/writer.cc:429 ftparchive/writer.cc:677
  449. #, c-format
  450. msgid " %s maintainer is %s not %s\n"
  451. msgstr " %s 관리자가 %s입니다 (%s 아님)\n"
  452. #: ftparchive/contents.cc:346 ftparchive/contents.cc:377
  453. msgid "realloc - Failed to allocate memory"
  454. msgstr "realloc - 메모리를 할당하는 데 실패했습니다"
  455. #: ftparchive/override.cc:38 ftparchive/override.cc:146
  456. #, c-format
  457. msgid "Unable to open %s"
  458. msgstr "%s을(를) 열 수 없습니다"
  459. #: ftparchive/override.cc:64 ftparchive/override.cc:170
  460. #, c-format
  461. msgid "Malformed override %s line %lu #1"
  462. msgstr "override %s의 %lu번 줄 #1이 잘못되었습니다"
  463. #: ftparchive/override.cc:78 ftparchive/override.cc:182
  464. #, c-format
  465. msgid "Malformed override %s line %lu #2"
  466. msgstr "override %s의 %lu번 줄 #2가 잘못되었습니다"
  467. #: ftparchive/override.cc:92 ftparchive/override.cc:195
  468. #, c-format
  469. msgid "Malformed override %s line %lu #3"
  470. msgstr "override %s의 %lu번 줄 #3이 잘못되었습니다"
  471. #: ftparchive/override.cc:131 ftparchive/override.cc:205
  472. #, c-format
  473. msgid "Failed to read the override file %s"
  474. msgstr "override 파일 %s을(를) 읽는 데 실패했습니다"
  475. #: ftparchive/multicompress.cc:75
  476. #, c-format
  477. msgid "Unknown Compresison Algorithm '%s'"
  478. msgstr "'%s' 압축 알고리즘을 알 수 없습니다"
  479. #: ftparchive/multicompress.cc:105
  480. #, c-format
  481. msgid "Compressed output %s needs a compression set"
  482. msgstr "압축된 출력물 %s에는 압축 세트가 필요합니다"
  483. #: ftparchive/multicompress.cc:172 methods/rsh.cc:91
  484. msgid "Failed to create IPC pipe to subprocess"
  485. msgstr "하위 프로세스에 대한 IPC 파이프를 만드는 데 실패했습니다"
  486. #: ftparchive/multicompress.cc:198
  487. msgid "Failed to create FILE*"
  488. msgstr "FILE*를 만드는 데 실패했습니다"
  489. #: ftparchive/multicompress.cc:201
  490. msgid "Failed to fork"
  491. msgstr "fork하는 데 실패했습니다"
  492. #: ftparchive/multicompress.cc:215
  493. msgid "Compress Child"
  494. msgstr "압축 하위 프로세스"
  495. #: ftparchive/multicompress.cc:238
  496. #, c-format
  497. msgid "Internal Error, Failed to create %s"
  498. msgstr "내부 오류, %s을(를) 만드는 데 실패했습니다"
  499. #: ftparchive/multicompress.cc:289
  500. msgid "Failed to create subprocess IPC"
  501. msgstr "하위 프로세스 IPC를 만드는 데 실패했습니다"
  502. #: ftparchive/multicompress.cc:324
  503. msgid "Failed to exec compressor "
  504. msgstr "다음 압축 프로그램을 실행하는 데 실패했습니다: "
  505. #: ftparchive/multicompress.cc:363
  506. msgid "decompressor"
  507. msgstr "압축 해제 프로그램"
  508. #: ftparchive/multicompress.cc:406
  509. msgid "IO to subprocess/file failed"
  510. msgstr "하위 프로세스/파일에 입출력하는 데 실패했습니다"
  511. #: ftparchive/multicompress.cc:458
  512. msgid "Failed to read while computing MD5"
  513. msgstr "MD5를 계산하는 동안 읽는 데 실패했습니다"
  514. #: ftparchive/multicompress.cc:475
  515. #, c-format
  516. msgid "Problem unlinking %s"
  517. msgstr "%s의 링크를 해제하는 데 문제가 있습니다"
  518. #: ftparchive/multicompress.cc:490 apt-inst/extract.cc:188
  519. #, c-format
  520. msgid "Failed to rename %s to %s"
  521. msgstr "%s 파일의 이름을 %s(으)로 바꾸는 데 실패했습니다"
  522. #: cmdline/apt-get.cc:118
  523. msgid "Y"
  524. msgstr "Y"
  525. #: cmdline/apt-get.cc:140 cmdline/apt-get.cc:1422
  526. #, c-format
  527. msgid "Regex compilation error - %s"
  528. msgstr "정규식 컴파일 오류 - %s"
  529. #: cmdline/apt-get.cc:235
  530. msgid "The following packages have unmet dependencies:"
  531. msgstr "다음 꾸러미의 의존성이 맞지 않습니다:"
  532. #: cmdline/apt-get.cc:325
  533. #, c-format
  534. msgid "but %s is installed"
  535. msgstr "하지만 %s 꾸러미를 설치했습니다"
  536. #: cmdline/apt-get.cc:327
  537. #, c-format
  538. msgid "but %s is to be installed"
  539. msgstr "하지만 %s 꾸러미를 설치할 것입니다"
  540. #: cmdline/apt-get.cc:334
  541. msgid "but it is not installable"
  542. msgstr "하지만 설치할 수 없습니다"
  543. #: cmdline/apt-get.cc:336
  544. msgid "but it is a virtual package"
  545. msgstr "하지만 가상 꾸러미입니다"
  546. #: cmdline/apt-get.cc:339
  547. msgid "but it is not installed"
  548. msgstr "하지만 설치하지 않았습니다"
  549. #: cmdline/apt-get.cc:339
  550. msgid "but it is not going to be installed"
  551. msgstr "하지만 %s 꾸러미를 설치하지 않을 것입니다"
  552. #: cmdline/apt-get.cc:344
  553. msgid " or"
  554. msgstr " 혹은"
  555. #: cmdline/apt-get.cc:373
  556. msgid "The following NEW packages will be installed:"
  557. msgstr "다음 새 꾸러미를 설치할 것입니다:"
  558. #: cmdline/apt-get.cc:399
  559. msgid "The following packages will be REMOVED:"
  560. msgstr "다음 꾸러미를 지울 것입니다:"
  561. #: cmdline/apt-get.cc:421
  562. msgid "The following packages have been kept back:"
  563. msgstr "다음 꾸러미를 과거 버전으로 유지합니다:"
  564. #: cmdline/apt-get.cc:442
  565. msgid "The following packages will be upgraded:"
  566. msgstr "다음 꾸러미를 업그레이드할 것입니다:"
  567. #: cmdline/apt-get.cc:463
  568. msgid "The following packages will be DOWNGRADED:"
  569. msgstr "다음 꾸러미를 다운그레이드할 것입니다:"
  570. #: cmdline/apt-get.cc:483
  571. msgid "The following held packages will be changed:"
  572. msgstr "고정되었던 다음 꾸러미를 바꿀 것입니다:"
  573. #: cmdline/apt-get.cc:536
  574. #, c-format
  575. msgid "%s (due to %s) "
  576. msgstr "%s (%s때문에) "
  577. #: cmdline/apt-get.cc:544
  578. msgid ""
  579. "WARNING: The following essential packages will be removed\n"
  580. "This should NOT be done unless you know exactly what you are doing!"
  581. msgstr ""
  582. "경고: 꼭 필요한 다음 꾸러미를 지우게 됩니다.\n"
  583. "무슨 일을 하고 있는 지 정확히 알지 못한다면 지우지 마십시오!"
  584. #: cmdline/apt-get.cc:574
  585. #, c-format
  586. msgid "%lu upgraded, %lu newly installed, "
  587. msgstr "%lu개 업그레이드, %lu개 새로 설치, "
  588. #: cmdline/apt-get.cc:578
  589. #, c-format
  590. msgid "%lu reinstalled, "
  591. msgstr "%lu개 다시 설치, "
  592. #: cmdline/apt-get.cc:580
  593. #, c-format
  594. msgid "%lu downgraded, "
  595. msgstr "%lu개 업그레이드, "
  596. #: cmdline/apt-get.cc:582
  597. #, c-format
  598. msgid "%lu to remove and %lu not upgraded.\n"
  599. msgstr "%lu개 지우기 및 %lu개 업그레이드 안 함.\n"
  600. #: cmdline/apt-get.cc:586
  601. #, c-format
  602. msgid "%lu not fully installed or removed.\n"
  603. msgstr "%lu개를 완전히 설치하지 못했거나 지움.\n"
  604. #: cmdline/apt-get.cc:646
  605. msgid "Correcting dependencies..."
  606. msgstr "의존성을 바로잡는 중입니다..."
  607. #: cmdline/apt-get.cc:649
  608. msgid " failed."
  609. msgstr " 실패."
  610. #: cmdline/apt-get.cc:652
  611. msgid "Unable to correct dependencies"
  612. msgstr "의존성을 바로잡을 수 없습니다"
  613. #: cmdline/apt-get.cc:655
  614. msgid "Unable to minimize the upgrade set"
  615. msgstr "업그레이드 집합을 최소화할 수 없습니다"
  616. #: cmdline/apt-get.cc:657
  617. msgid " Done"
  618. msgstr " 완료"
  619. #: cmdline/apt-get.cc:661
  620. msgid "You might want to run `apt-get -f install' to correct these."
  621. msgstr "이 상황을 바로잡으려면 `apt-get -f install'을 실행해야 할 수도 있습니다."
  622. #: cmdline/apt-get.cc:664
  623. msgid "Unmet dependencies. Try using -f."
  624. msgstr "의존성이 맞지 않습니다. -f 옵션을 사용해 보십시오."
  625. #: cmdline/apt-get.cc:718
  626. msgid "Packages need to be removed but Remove is disabled."
  627. msgstr "꾸러미를 지워야 하지만 지우기가 금지되어 있습니다."
  628. #: cmdline/apt-get.cc:744 cmdline/apt-get.cc:1716 cmdline/apt-get.cc:1749
  629. msgid "Unable to lock the download directory"
  630. msgstr "내려받기 디렉토리를 잠글 수 없습니다"
  631. #: cmdline/apt-get.cc:754 cmdline/apt-get.cc:1797 cmdline/apt-get.cc:2008
  632. #: apt-pkg/cachefile.cc:67
  633. msgid "The list of sources could not be read."
  634. msgstr "소스 목록을 읽을 수 없습니다."
  635. #: cmdline/apt-get.cc:774
  636. #, c-format
  637. msgid "Need to get %sB/%sB of archives.\n"
  638. msgstr "%s바이트/%s바이트 아카이브를 받아야 합니다.\n"
  639. #: cmdline/apt-get.cc:777
  640. #, c-format
  641. msgid "Need to get %sB of archives.\n"
  642. msgstr "%s바이트 아카이브를 받아야 합니다.\n"
  643. #: cmdline/apt-get.cc:782
  644. #, c-format
  645. msgid "After unpacking %sB of additional disk space will be used.\n"
  646. msgstr "압축을 풀면 %s바이트의 디스크 공간을 더 사용하게 됩니다.\n"
  647. #: cmdline/apt-get.cc:785
  648. #, c-format
  649. msgid "After unpacking %sB disk space will be freed.\n"
  650. msgstr "압축을 풀면 %s바이트의 디스크 공간이 비워집니다.\n"
  651. #: cmdline/apt-get.cc:802
  652. #, c-format
  653. msgid "You don't have enough free space in %s."
  654. msgstr "%s 안에 충분한 여유 공간이 없습니다."
  655. #: cmdline/apt-get.cc:811
  656. msgid "There are problems and -y was used without --force-yes"
  657. msgstr "문제가 발생했고 -y 옵션이 --force-yes 옵션 없이 사용되었습니다"
  658. #: cmdline/apt-get.cc:817 cmdline/apt-get.cc:837
  659. msgid "Trivial Only specified but this is not a trivial operation."
  660. msgstr "사소한 작업만 가능하도록(Trivial Only) 지정되었지만 이 작업은 사소한 작업이 아닙니다."
  661. # 입력을 받아야 한다. 한글 입력을 못 할 수 있으므로 원문 그대로 사용.
  662. #: cmdline/apt-get.cc:819
  663. msgid "Yes, do as I say!"
  664. msgstr "Yes, do as I say!"
  665. #: cmdline/apt-get.cc:821
  666. #, c-format
  667. msgid ""
  668. "You are about to do something potentially harmful\n"
  669. "To continue type in the phrase '%s'\n"
  670. " ?] "
  671. msgstr ""
  672. "무언가 시스템에 해가 되는 작업을 하려고 합니다.\n"
  673. "계속하시려면 다음 문구를 입력하십시오: '%s'\n"
  674. " ?] "
  675. #: cmdline/apt-get.cc:827 cmdline/apt-get.cc:846
  676. msgid "Abort."
  677. msgstr "중단."
  678. #: cmdline/apt-get.cc:842
  679. msgid "Do you want to continue? [Y/n] "
  680. msgstr "계속 하시겠습니까? [Y/n]"
  681. #: cmdline/apt-get.cc:911 cmdline/apt-get.cc:1281 cmdline/apt-get.cc:1906
  682. #, c-format
  683. msgid "Failed to fetch %s %s\n"
  684. msgstr "%s 파일을 받는 데 실패했습니다 %s\n"
  685. #: cmdline/apt-get.cc:929
  686. msgid "Some files failed to download"
  687. msgstr "일부 파일을 받는 데 실패했습니다"
  688. #: cmdline/apt-get.cc:930 cmdline/apt-get.cc:1915
  689. msgid "Download complete and in download only mode"
  690. msgstr "내려받기를 마쳤고 내려받기 전용 모드입니다"
  691. #: cmdline/apt-get.cc:936
  692. msgid ""
  693. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  694. "missing?"
  695. msgstr "아카이브를 받을 수 없습니다. 아마도 apt-get update를 실행해야 하거나 --fix-missing 옵션을 줘서 실행해야 할 것입니다."
  696. #: cmdline/apt-get.cc:940
  697. msgid "--fix-missing and media swapping is not currently supported"
  698. msgstr "--fix-missing 옵션과 동시에 미디어 바꾸기는 현재 지원하지 않습니다"
  699. #: cmdline/apt-get.cc:945
  700. msgid "Unable to correct missing packages."
  701. msgstr "빠진 꾸러미를 바로잡을 수 없습니다."
  702. #: cmdline/apt-get.cc:946
  703. msgid "Aborting Install."
  704. msgstr "설치를 중단합니다."
  705. #: cmdline/apt-get.cc:979
  706. #, c-format
  707. msgid "Note, selecting %s instead of %s\n"
  708. msgstr "주의, %2$s 대신에 %1$s 꾸러미를 선택합니다\n"
  709. #: cmdline/apt-get.cc:989
  710. #, c-format
  711. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  712. msgstr "%s 꾸러미를 건너 뜁니다. 이미 설치되어 있고 업그레이드를 하지 않습니다.\n"
  713. #: cmdline/apt-get.cc:1007
  714. #, c-format
  715. msgid "Package %s is not installed, so not removed\n"
  716. msgstr "%s 꾸러미를 설치하지 않았으므로, 지우지 않습니다\n"
  717. #: cmdline/apt-get.cc:1018
  718. #, c-format
  719. msgid "Package %s is a virtual package provided by:\n"
  720. msgstr "%s 꾸러미는 다음 꾸러미가 제공하는 가상 꾸러미입니다:\n"
  721. #: cmdline/apt-get.cc:1030
  722. msgid " [Installed]"
  723. msgstr " [설치함]"
  724. #: cmdline/apt-get.cc:1035
  725. msgid "You should explicitly select one to install."
  726. msgstr "설치하려면 분명하게 하나를 선택해야 합니다."
  727. #: cmdline/apt-get.cc:1040
  728. #, c-format
  729. msgid ""
  730. "Package %s is not available, but is referred to by another package.\n"
  731. "This may mean that the package is missing, has been obsoleted, or\n"
  732. "is only available from another source\n"
  733. msgstr ""
  734. "%s 꾸러미를 사용할 수 없습니다. 하지만 다른 꾸러미가 참조하고 있습니다.\n"
  735. "해당 꾸러미가 누락되었거나 지워졌다는 뜻입니다. 아니면 또 다른 곳에서\n"
  736. "꾸러미를 받아와야 하는 경우일 수도 있습니다.\n"
  737. #: cmdline/apt-get.cc:1059
  738. msgid "However the following packages replace it:"
  739. msgstr "하지만 다음 꾸러미가 대체합니다:"
  740. #: cmdline/apt-get.cc:1062
  741. #, c-format
  742. msgid "Package %s has no installation candidate"
  743. msgstr "%s 꾸러미는 설치할 수 있는 후보가 없습니다"
  744. #: cmdline/apt-get.cc:1082
  745. #, c-format
  746. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  747. msgstr "%s 꾸러미를 다시 설치하는 건 불가능합니다. 내려 받을 수 없습니다.\n"
  748. #: cmdline/apt-get.cc:1090
  749. #, c-format
  750. msgid "%s is already the newest version.\n"
  751. msgstr "%s 꾸러미는 이미 최신 버전입니다.\n"
  752. #: cmdline/apt-get.cc:1117
  753. #, c-format
  754. msgid "Release '%s' for '%s' was not found"
  755. msgstr "%2$s 꾸러미의 '%1$s' 릴리즈를 찾을 수 없습니다"
  756. #: cmdline/apt-get.cc:1119
  757. #, c-format
  758. msgid "Version '%s' for '%s' was not found"
  759. msgstr "%2$s 꾸러미의 '%1$s' 버전을 찾을 수 없습니다"
  760. #: cmdline/apt-get.cc:1125
  761. #, c-format
  762. msgid "Selected version %s (%s) for %s\n"
  763. msgstr "%3$s 꾸러미의 %1$s (%2$s) 버전을 선택합니다\n"
  764. #: cmdline/apt-get.cc:1235
  765. msgid "The update command takes no arguments"
  766. msgstr "update 명령은 인수를 받지 않습니다"
  767. #: cmdline/apt-get.cc:1248
  768. msgid "Unable to lock the list directory"
  769. msgstr "목록 디렉토리를 잠글 수 없습니다"
  770. #: cmdline/apt-get.cc:1300
  771. msgid ""
  772. "Some index files failed to download, they have been ignored, or old ones "
  773. "used instead."
  774. msgstr "일부 인덱스 파일을 내려받는 데 실패했습니다. 해당 파일을 무시하거나 과거의 버전을 대신 사용합니다."
  775. #: cmdline/apt-get.cc:1319
  776. msgid "Internal Error, AllUpgrade broke stuff"
  777. msgstr "내부 오류, AllUpgrade때문에 망가졌습니다"
  778. #: cmdline/apt-get.cc:1409 cmdline/apt-get.cc:1445
  779. #, c-format
  780. msgid "Couldn't find package %s"
  781. msgstr "%s 꾸러미를 찾을 수 없습니다"
  782. #: cmdline/apt-get.cc:1432
  783. #, c-format
  784. msgid "Note, selecting %s for regex '%s'\n"
  785. msgstr "주의, 정규식 '%2$s'에 대하여 %1$s을(를) 선택합니다\n"
  786. #: cmdline/apt-get.cc:1462
  787. msgid "You might want to run `apt-get -f install' to correct these:"
  788. msgstr "다음을 바로잡으려면 `apt-get -f install'을 실행해 보십시오:"
  789. # FIXME: specify a solution? 무슨 솔루션?
  790. #: cmdline/apt-get.cc:1465
  791. msgid ""
  792. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  793. "solution)."
  794. msgstr "의존성이 맞지 않습니다. 꾸러미 없이 'apt-get -f install'을 시도해 보십시오 (아니면 해결 방법을 지정하십시오)."
  795. #: cmdline/apt-get.cc:1477
  796. msgid ""
  797. "Some packages could not be installed. This may mean that you have\n"
  798. "requested an impossible situation or if you are using the unstable\n"
  799. "distribution that some required packages have not yet been created\n"
  800. "or been moved out of Incoming."
  801. msgstr ""
  802. "몇몇 꾸러미를 설치할 수 없습니다. 요청한 상황이 불가능할 수도 있고,\n"
  803. "불안정 배포판을 사용해서 일부 필요한 꾸러미를 아직 만들지 않았거나,\n"
  804. "아직 Incoming에서 나오지 않은 경우일 수도 있습니다."
  805. #: cmdline/apt-get.cc:1485
  806. msgid ""
  807. "Since you only requested a single operation it is extremely likely that\n"
  808. "the package is simply not installable and a bug report against\n"
  809. "that package should be filed."
  810. msgstr ""
  811. "한 가지 작업만을 요청하셨으므로, 아마도 이 꾸러미를 설치할 수\n"
  812. "없는 경우일 것이고 이 꾸러미에 버그 보고서를 제출해야 합니다."
  813. #: cmdline/apt-get.cc:1490
  814. msgid "The following information may help to resolve the situation:"
  815. msgstr "이 상황을 해결하는 데 다음 정보가 도움이 될 수도 있습니다:"
  816. #: cmdline/apt-get.cc:1493
  817. msgid "Broken packages"
  818. msgstr "망가진 꾸러미"
  819. #: cmdline/apt-get.cc:1519
  820. msgid "The following extra packages will be installed:"
  821. msgstr "다음 꾸러미를 더 설치할 것입니다:"
  822. #: cmdline/apt-get.cc:1590
  823. msgid "Suggested packages:"
  824. msgstr "제안하는 꾸러미:"
  825. #: cmdline/apt-get.cc:1591
  826. msgid "Recommended packages:"
  827. msgstr "추천하는 꾸러미:"
  828. #: cmdline/apt-get.cc:1611
  829. msgid "Calculating Upgrade... "
  830. msgstr "업그레이드를 계산하는 중입니다... "
  831. #: cmdline/apt-get.cc:1614 methods/ftp.cc:702 methods/connect.cc:99
  832. msgid "Failed"
  833. msgstr "실패"
  834. #: cmdline/apt-get.cc:1619
  835. msgid "Done"
  836. msgstr "완료"
  837. #: cmdline/apt-get.cc:1792
  838. msgid "Must specify at least one package to fetch source for"
  839. msgstr "해당되는 소스 꾸러미를 가져올 꾸러미를 최소한 하나 지정해야 합니다"
  840. #: cmdline/apt-get.cc:1819 cmdline/apt-get.cc:2026
  841. #, c-format
  842. msgid "Unable to find a source package for %s"
  843. msgstr "%s의 소스 꾸러미를 찾을 수 없습니다"
  844. #: cmdline/apt-get.cc:1866
  845. #, c-format
  846. msgid "You don't have enough free space in %s"
  847. msgstr "%s에 충분한 공간이 없습니다"
  848. #: cmdline/apt-get.cc:1871
  849. #, c-format
  850. msgid "Need to get %sB/%sB of source archives.\n"
  851. msgstr "소스 아카이브를 %s바이트/%s바이트 받아야 합니다.\n"
  852. #: cmdline/apt-get.cc:1874
  853. #, c-format
  854. msgid "Need to get %sB of source archives.\n"
  855. msgstr "소스 아카이브를 %s바이트 받아야 합니다.\n"
  856. #: cmdline/apt-get.cc:1880
  857. #, c-format
  858. msgid "Fetch Source %s\n"
  859. msgstr "%s 소스를 가져옵니다\n"
  860. #: cmdline/apt-get.cc:1911
  861. msgid "Failed to fetch some archives."
  862. msgstr "일부 아카이브를 가져오는 데 실패했습니다."
  863. #: cmdline/apt-get.cc:1939
  864. #, c-format
  865. msgid "Skipping unpack of already unpacked source in %s\n"
  866. msgstr "%s에 이미 풀려 있는 소스의 압축을 풀지 않고 건너 뜁니다.\n"
  867. #: cmdline/apt-get.cc:1951
  868. #, c-format
  869. msgid "Unpack command '%s' failed.\n"
  870. msgstr "압축 풀기 명령 '%s' 실패.\n"
  871. #: cmdline/apt-get.cc:1968
  872. #, c-format
  873. msgid "Build command '%s' failed.\n"
  874. msgstr "빌드 명령 '%s' 실패.\n"
  875. #: cmdline/apt-get.cc:1987
  876. msgid "Child process failed"
  877. msgstr "하위 프로세스가 실패했습니다"
  878. #: cmdline/apt-get.cc:2003
  879. msgid "Must specify at least one package to check builddeps for"
  880. msgstr "해당되는 빌드 의존성을 검사할 꾸러미를 최소한 하나 지정해야 합니다"
  881. #: cmdline/apt-get.cc:2031
  882. #, c-format
  883. msgid "Unable to get build-dependency information for %s"
  884. msgstr "%s의 빌드 의존성 정보를 가져올 수 없습니다"
  885. #: cmdline/apt-get.cc:2051
  886. #, c-format
  887. msgid "%s has no build depends.\n"
  888. msgstr "%s 꾸러미에 빌드 의존성이 없습니다.\n"
  889. #: cmdline/apt-get.cc:2103
  890. #, c-format
  891. msgid ""
  892. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  893. "found"
  894. msgstr "%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 꾸러미를 찾을 수 없습니다"
  895. #: cmdline/apt-get.cc:2155
  896. #, c-format
  897. msgid ""
  898. "%s dependency for %s cannot be satisfied because no available versions of "
  899. "package %s can satisfy version requirements"
  900. msgstr "%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 꾸러미의 사용 가능한 버전 중에서는 이 버전 요구사항을 만족시킬 수 없습니다"
  901. #: cmdline/apt-get.cc:2190
  902. #, c-format
  903. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  904. msgstr "%2$s에 대한 %1$s 의존성을 만족시키는 데 실패했습니다: 설치한 %3$s 꾸러미가 너무 최근 버전입니다"
  905. #: cmdline/apt-get.cc:2215
  906. #, c-format
  907. msgid "Failed to satisfy %s dependency for %s: %s"
  908. msgstr "%2$s에 대한 %1$s 의존성을 만족시키는 데 실패했습니다: %3$s"
  909. #: cmdline/apt-get.cc:2229
  910. #, c-format
  911. msgid "Build-dependencies for %s could not be satisfied."
  912. msgstr "%s의 빌드 의존성을 만족시키지 못했습니다."
  913. #: cmdline/apt-get.cc:2233
  914. msgid "Failed to process build dependencies"
  915. msgstr "빌드 의존성을 처리하는 데 실패했습니다"
  916. #: cmdline/apt-get.cc:2265
  917. msgid "Supported Modules:"
  918. msgstr "지원하는 모듈:"
  919. #: cmdline/apt-get.cc:2306
  920. msgid ""
  921. "Usage: apt-get [options] command\n"
  922. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  923. " apt-get [options] source pkg1 [pkg2 ...]\n"
  924. "\n"
  925. "apt-get is a simple command line interface for downloading and\n"
  926. "installing packages. The most frequently used commands are update\n"
  927. "and install.\n"
  928. "\n"
  929. "Commands:\n"
  930. " update - Retrieve new lists of packages\n"
  931. " upgrade - Perform an upgrade\n"
  932. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  933. " remove - Remove packages\n"
  934. " source - Download source archives\n"
  935. " build-dep - Configure build-dependencies for source packages\n"
  936. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  937. " dselect-upgrade - Follow dselect selections\n"
  938. " clean - Erase downloaded archive files\n"
  939. " autoclean - Erase old downloaded archive files\n"
  940. " check - Verify that there are no broken dependencies\n"
  941. "\n"
  942. "Options:\n"
  943. " -h This help text.\n"
  944. " -q Loggable output - no progress indicator\n"
  945. " -qq No output except for errors\n"
  946. " -d Download only - do NOT install or unpack archives\n"
  947. " -s No-act. Perform ordering simulation\n"
  948. " -y Assume Yes to all queries and do not prompt\n"
  949. " -f Attempt to continue if the integrity check fails\n"
  950. " -m Attempt to continue if archives are unlocatable\n"
  951. " -u Show a list of upgraded packages as well\n"
  952. " -b Build the source package after fetching it\n"
  953. " -V Show verbose version numbers\n"
  954. " -c=? Read this configuration file\n"
  955. " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  956. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  957. "pages for more information and options.\n"
  958. " This APT has Super Cow Powers.\n"
  959. msgstr ""
  960. "사용법: apt-get [옵션] 명령어\n"
  961. " apt-get [옵션] install|remove 꾸러미1 [꾸러미2 ...]\n"
  962. " apt-get [옵션] source 꾸러미1 [꾸러미2 ...]\n"
  963. "\n"
  964. "apt-get은 꾸러미를 내려받고 설치하는 간단한 명령행 인터페이스입니다.\n"
  965. "가장 자주 사용하는 명령은 update와 install입니다.\n"
  966. "\n"
  967. "명령어:\n"
  968. " update - 꾸러미 목록을 새로 가져옵니다\n"
  969. " upgrade - 업그레이드를 합니다\n"
  970. " install - 새 꾸러미를 설치합니다 (꾸러미는 libc6 식으로. libc6.deb 아님)\n"
  971. " remove - 꾸러미를 지웁니다\n"
  972. " source - 소스 아카이브를 내려 받습니다\n"
  973. " build-dep - 소스 꾸러미의 빌드 의존성을 설정합니다\n"
  974. " dist-upgrade - 배포판 업그레이드, apt-get(8) 참고\n"
  975. " dselect-upgrade - dselect에서 선택한 걸 따릅니다\n"
  976. " clean - 내려받은 아카이브 파일들을 지웁니다\n"
  977. " autoclean - 과거에 내려받은 아카이브 파일들을 지웁니다\n"
  978. " check - 의존성이 망가지지 않았는 지 확인합니다\n"
  979. "\n"
  980. "옵션:\n"
  981. " -h 이 도움말.\n"
  982. " -q 기록 가능한 출력 - 진행 상황 표시를 하지 않습니다\n"
  983. " -qq 오류가 아니면 출력을 하지 않습니다\n"
  984. " -d 내려받기만 합니다 - 아카이브를 설치하거나 풀거나 하지 않습니다\n"
  985. " -s 실제 작업을 하지 않고, 순서대로 시뮬레이션만 합니다\n"
  986. " -y 모든 질문에 대해 \"예\"라고 가정하고 물어보지 않습니다\n"
  987. " -f 꾸러미 내용 검사가 실패해도 계속 시도합니다\n"
  988. " -m 아카이브를 찾을 수 없어도 계속 시도합니다\n"
  989. " -u 업그레이드하는 꾸러미의 목록도 보여줍니다\n"
  990. " -b 소스 꾸러미를 받은 다음에 빌드합니다\n"
  991. " -V 버전 번호를 자세히 보여줍니다\n"
  992. " -c=? 해당 설정 파일을 읽습니다\n"
  993. " -o=? 임의의 옵션을 설정합니다, 예를 들어 -o dir::cache=/tmp\n"
  994. "더 자세한 정보와 옵션을 보려면 apt-get(8), sources.list(5) 및\n"
  995. "apt.conf(5) 매뉴얼 페이지를 보십시오.\n"
  996. " 이 APT는 Super Cow Powers로 무장했습니다.\n"
  997. #: cmdline/acqprogress.cc:55
  998. msgid "Hit "
  999. msgstr "기존 "
  1000. #: cmdline/acqprogress.cc:79
  1001. msgid "Get:"
  1002. msgstr "받기:"
  1003. #: cmdline/acqprogress.cc:110
  1004. msgid "Ign "
  1005. msgstr "무시"
  1006. #: cmdline/acqprogress.cc:114
  1007. msgid "Err "
  1008. msgstr "오류 "
  1009. #: cmdline/acqprogress.cc:135
  1010. #, c-format
  1011. msgid "Fetched %sB in %s (%sB/s)\n"
  1012. msgstr "내려받기 %s바이트, 소요시간 %s (%s바이트/초)\n"
  1013. #: cmdline/acqprogress.cc:225
  1014. #, c-format
  1015. msgid " [Working]"
  1016. msgstr " [작업중]"
  1017. #: cmdline/acqprogress.cc:271
  1018. #, c-format
  1019. msgid ""
  1020. "Media Change: Please insert the disc labeled\n"
  1021. " '%s'\n"
  1022. "in the drive '%s' and press enter\n"
  1023. msgstr ""
  1024. "미디어 바꾸기: '%2$s' 드라이브에 다음 레이블이 달린\n"
  1025. "디스크를 넣고 enter를 누르십시오\n"
  1026. " '%1$s'\n"
  1027. #: cmdline/apt-sortpkgs.cc:86
  1028. msgid "Unknown package record!"
  1029. msgstr "알 수 없는 꾸러미 기록!"
  1030. #: cmdline/apt-sortpkgs.cc:150
  1031. msgid ""
  1032. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1033. "\n"
  1034. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1035. "to indicate what kind of file it is.\n"
  1036. "\n"
  1037. "Options:\n"
  1038. " -h This help text\n"
  1039. " -s Use source file sorting\n"
  1040. " -c=? Read this configuration file\n"
  1041. " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  1042. msgstr ""
  1043. "사용법: apt-sortpkgs [옵션] 파일1 [파일2 ...]\n"
  1044. "\n"
  1045. "apt-sortpkgs는 꾸러미 파일을 정렬하는 간단한 도구입니다. -s 옵션은 무슨 파일인지\n"
  1046. "알아 내는 데 쓰입니다.\n"
  1047. "\n"
  1048. "옵션:\n"
  1049. " -h 이 도움말\n"
  1050. " -s 소스 파일 정렬을 사용합니다\n"
  1051. " -c=? 이 설정 파일을 읽습니다\n"
  1052. " -o=? 임의의 옵션을 설정합니다, 예를 들어 -o dir::cache=/tmp\n"
  1053. #: dselect/install:32
  1054. msgid "Bad default setting!"
  1055. msgstr "기본 설정이 잘못되었습니다!"
  1056. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
  1057. #: dselect/install:104 dselect/update:45
  1058. msgid "Press enter to continue."
  1059. msgstr "계속 하시려면 enter를 누르십시오."
  1060. #: dselect/install:100
  1061. msgid "Some errors occurred while unpacking. I'm going to configure the"
  1062. msgstr "압축을 푸는 데 몇몇 오류가 발생했습니다. 이미 설치된 꾸러미를"
  1063. #: dselect/install:101
  1064. msgid "packages that were installed. This may result in duplicate errors"
  1065. msgstr "설정할 것입니다. 오류때문에 의존성을 만족하지 못해 설정하는 과정에서"
  1066. #: dselect/install:102
  1067. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1068. msgstr "오류가 중복되어 나타날 수 있습니다. 하지만 상관없고, 이 메세지 위에 나온"
  1069. #: dselect/install:103
  1070. msgid ""
  1071. "above this message are important. Please fix them and run [I]nstall again"
  1072. msgstr "오류만 중요합니다. 이 오류를 고친 다음에 설치(I)를 다시 시도하십시오"
  1073. #: dselect/update:30
  1074. msgid "Merging Available information"
  1075. msgstr "이용 가능 꾸러미 정보를 합칩니다"
  1076. #: apt-inst/contrib/extracttar.cc:116
  1077. msgid "Failed to create pipes"
  1078. msgstr "파이프 만들기가 실패했습니다"
  1079. #: apt-inst/contrib/extracttar.cc:141
  1080. msgid "Failed to exec gzip "
  1081. msgstr "gzip 실행이 실패했습니다"
  1082. #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
  1083. msgid "Corrupted archive"
  1084. msgstr "아카이브가 손상되었습니다"
  1085. #: apt-inst/contrib/extracttar.cc:193
  1086. msgid "Tar Checksum failed, archive corrupted"
  1087. msgstr "tar 체크섬 실패, 아카이브가 손상되었습니다"
  1088. #: apt-inst/contrib/extracttar.cc:296
  1089. #, c-format
  1090. msgid "Unknown TAR header type %u, member %s"
  1091. msgstr "알 수 없는 TAR 헤더 타입 %u, 멤버 %s"
  1092. #: apt-inst/contrib/arfile.cc:73
  1093. msgid "Invalid archive signature"
  1094. msgstr "아카이브 시그너쳐가 틀렸습니다"
  1095. #: apt-inst/contrib/arfile.cc:81
  1096. msgid "Error reading archive member header"
  1097. msgstr "아카이브 멤버 헤더를 읽는 데 오류가 발생했습니다"
  1098. #: apt-inst/contrib/arfile.cc:93 apt-inst/contrib/arfile.cc:105
  1099. msgid "Invalid archive member header"
  1100. msgstr "아카이브 멤버 헤더가 잘못되었습니다"
  1101. #: apt-inst/contrib/arfile.cc:131
  1102. msgid "Archive is too short"
  1103. msgstr "아카이브 길이가 너무 짧습니다"
  1104. #: apt-inst/contrib/arfile.cc:135
  1105. msgid "Failed to read the archive headers"
  1106. msgstr "아카이브 헤더를 읽는 데 실패했습니다"
  1107. #: apt-inst/filelist.cc:384
  1108. msgid "DropNode called on still linked node"
  1109. msgstr "DropNode가 아직 연결되어 있는 노드에 대해 호출되었습니다"
  1110. #: apt-inst/filelist.cc:416
  1111. msgid "Failed to locate the hash element!"
  1112. msgstr "해시 항목을 찾는 데 실패했습니다"
  1113. #: apt-inst/filelist.cc:463
  1114. msgid "Failed to allocate diversion"
  1115. msgstr "diversion을 할당하는 데 실패했습니다"
  1116. #: apt-inst/filelist.cc:468
  1117. msgid "Internal Error in AddDiversion"
  1118. msgstr "AddDiversion에서 내부 오류"
  1119. #: apt-inst/filelist.cc:481
  1120. #, c-format
  1121. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1122. msgstr "전환된 파일을 덮어 쓰려고 합니다 (%s -> %s 및 %s/%s)"
  1123. #: apt-inst/filelist.cc:510
  1124. #, c-format
  1125. msgid "Double add of diversion %s -> %s"
  1126. msgstr "전환된 파일을 두 번 추가합니다 (%s -> %s)"
  1127. #: apt-inst/filelist.cc:553
  1128. #, c-format
  1129. msgid "Duplicate conf file %s/%s"
  1130. msgstr "%s/%s 설정 파일이 중복되었습니다"
  1131. #: apt-inst/dirstream.cc:45 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:53
  1132. #, c-format
  1133. msgid "Failed write file %s"
  1134. msgstr "%s 파일을 쓰는 데 실패했습니다"
  1135. #: apt-inst/dirstream.cc:80 apt-inst/dirstream.cc:88
  1136. #, c-format
  1137. msgid "Failed to close file %s"
  1138. msgstr "%s 파일을 닫는 데 실패했습니다"
  1139. #: apt-inst/extract.cc:96 apt-inst/extract.cc:167
  1140. #, c-format
  1141. msgid "The path %s is too long"
  1142. msgstr "경로 %s이(가) 너무 깁니다"
  1143. #: apt-inst/extract.cc:127
  1144. #, c-format
  1145. msgid "Unpacking %s more than once"
  1146. msgstr "%s을(를) 두 번 이상 풀었습니다"
  1147. #: apt-inst/extract.cc:137
  1148. #, c-format
  1149. msgid "The directory %s is diverted"
  1150. msgstr "%s 디렉토리가 전환되었습니다"
  1151. #: apt-inst/extract.cc:147
  1152. #, c-format
  1153. msgid "The package is trying to write to the diversion target %s/%s"
  1154. msgstr "이 꾸러미에서 전환된 대상에 쓰려고 합니다 (%s/%s)"
  1155. #: apt-inst/extract.cc:157 apt-inst/extract.cc:300
  1156. msgid "The diversion path is too long"
  1157. msgstr "전환하는 경로가 너무 깁니다"
  1158. #: apt-inst/extract.cc:243
  1159. #, c-format
  1160. msgid "The directory %s is being replaced by a non-directory"
  1161. msgstr "%s 디렉토리를 디렉토리가 아닌 파일로 덮어쓰려고 합니다"
  1162. #: apt-inst/extract.cc:283
  1163. msgid "Failed to locate node in its hash bucket"
  1164. msgstr "해시 버킷에서 노드를 찾는 데 실패했습니다"
  1165. #: apt-inst/extract.cc:287
  1166. msgid "The path is too long"
  1167. msgstr "경로가 너무 깁니다"
  1168. #: apt-inst/extract.cc:417
  1169. #, c-format
  1170. msgid "Overwrite package match with no version for %s"
  1171. msgstr "덮어 쓰는 꾸러미가 %s 꾸러미의 어떤 버전과도 맞지 않습니다"
  1172. #: apt-inst/extract.cc:434
  1173. #, c-format
  1174. msgid "File %s/%s overwrites the one in the package %s"
  1175. msgstr "%s/%s 파일은 %s 꾸러미에 있는 파일을 덮어 씁니다"
  1176. #: apt-inst/extract.cc:467 apt-pkg/contrib/configuration.cc:709
  1177. #: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/acquire.cc:416 apt-pkg/clean.cc:38
  1178. #, c-format
  1179. msgid "Unable to read %s"
  1180. msgstr "%s을(를) 읽을 수 없습니다"
  1181. #: apt-inst/extract.cc:494
  1182. #, c-format
  1183. msgid "Unable to stat %s"
  1184. msgstr "%s의 정보를 읽을 수 없습니다"
  1185. #: apt-inst/deb/dpkgdb.cc:55 apt-inst/deb/dpkgdb.cc:61
  1186. #, c-format
  1187. msgid "Failed to remove %s"
  1188. msgstr "%s을(를) 지우는 데 실패했습니다"
  1189. #: apt-inst/deb/dpkgdb.cc:110 apt-inst/deb/dpkgdb.cc:112
  1190. #, c-format
  1191. msgid "Unable to create %s"
  1192. msgstr "%s을(를) 만들 수 없습니다"
  1193. #: apt-inst/deb/dpkgdb.cc:118
  1194. #, c-format
  1195. msgid "Failed to stat %sinfo"
  1196. msgstr "%sinfo의 정보를 읽는 데 실패했습니다"
  1197. #: apt-inst/deb/dpkgdb.cc:123
  1198. msgid "The info and temp directories need to be on the same filesystem"
  1199. msgstr "정보 디렉토리와 임시 디렉토리는 같은 파일 시스템에 있어야 합니다"
  1200. #. Build the status cache
  1201. #: apt-inst/deb/dpkgdb.cc:139 apt-pkg/pkgcachegen.cc:643
  1202. #: apt-pkg/pkgcachegen.cc:701 apt-pkg/pkgcachegen.cc:706
  1203. #: apt-pkg/pkgcachegen.cc:829
  1204. msgid "Reading Package Lists"
  1205. msgstr "꾸러미 목록을 읽는 중입니다"
  1206. #: apt-inst/deb/dpkgdb.cc:180
  1207. #, c-format
  1208. msgid "Failed to change to the admin dir %sinfo"
  1209. msgstr "관리 디렉토리를 %sinfo로 바꾸는 데 실패했습니다"
  1210. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:355
  1211. #: apt-inst/deb/dpkgdb.cc:448
  1212. msgid "Internal Error getting a Package Name"
  1213. msgstr "꾸러미 이름을 가져오는 데 내부 오류"
  1214. #: apt-inst/deb/dpkgdb.cc:205
  1215. msgid "Reading File Listing"
  1216. msgstr "파일 목록을 읽는 중입니다"
  1217. #: apt-inst/deb/dpkgdb.cc:216
  1218. #, c-format
  1219. msgid ""
  1220. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1221. "then make it empty and immediately re-install the same version of the "
  1222. "package!"
  1223. msgstr "목록 파일 '%sinfo/%s' 파일을 여는 데 실패했습니다. 이 파일을 복구할 수 없다면 비워 놓고 같은 버전의 꾸러미를 다시 설치하십시오!"
  1224. #: apt-inst/deb/dpkgdb.cc:229 apt-inst/deb/dpkgdb.cc:242
  1225. #, c-format
  1226. msgid "Failed reading the list file %sinfo/%s"
  1227. msgstr "목록 파일 %sinfo/%s 파일을 읽는 데 실패했습니다"
  1228. #: apt-inst/deb/dpkgdb.cc:266
  1229. msgid "Internal Error getting a Node"
  1230. msgstr "노드를 얻어 오는 데 내부 오류"
  1231. #: apt-inst/deb/dpkgdb.cc:309
  1232. #, c-format
  1233. msgid "Failed to open the diversions file %sdiversions"
  1234. msgstr "전환 파일 %sdiversions를 여는 데 실패했습니다"
  1235. #: apt-inst/deb/dpkgdb.cc:324
  1236. msgid "The diversion file is corrupted"
  1237. msgstr "전환 파일이 손상되었습니다"
  1238. #: apt-inst/deb/dpkgdb.cc:331 apt-inst/deb/dpkgdb.cc:336
  1239. #: apt-inst/deb/dpkgdb.cc:341
  1240. #, c-format
  1241. msgid "Invalid line in the diversion file: %s"
  1242. msgstr "전환 파일에 잘못된 줄이 있습니다: %s"
  1243. #: apt-inst/deb/dpkgdb.cc:362
  1244. msgid "Internal Error adding a diversion"
  1245. msgstr "diversion을 추가하는 데 내부 오류"
  1246. #: apt-inst/deb/dpkgdb.cc:383
  1247. msgid "The pkg cache must be initialize first"
  1248. msgstr "꾸러미 캐시를 먼저 초기화해야 합니다"
  1249. #: apt-inst/deb/dpkgdb.cc:386
  1250. msgid "Reading File List"
  1251. msgstr "파일 목록을 읽는 중"
  1252. #: apt-inst/deb/dpkgdb.cc:443
  1253. #, c-format
  1254. msgid "Failed to find a Package: Header, offset %lu"
  1255. msgstr "꾸러미를 찾는 데 실패했습니다: 헤더, 오프셋 %lu"
  1256. #: apt-inst/deb/dpkgdb.cc:465
  1257. #, c-format
  1258. msgid "Bad ConfFile section in the status file. Offset %lu"
  1259. msgstr "status 파일에서 ConfFile 섹션이 잘못되었습니다. 오프셋 %lu"
  1260. #: apt-inst/deb/dpkgdb.cc:470
  1261. #, c-format
  1262. msgid "Error parsing MD5. Offset %lu"
  1263. msgstr "MD5 분석에 오류가 있습니다. 오프셋 %lu"
  1264. #: apt-inst/deb/debfile.cc:55
  1265. #, c-format
  1266. msgid "This is not a valid DEB archive, missing '%s' member"
  1267. msgstr "올바른 DEB 아카이브가 아닙니다. '%s' 멤버가 없습니다"
  1268. #: apt-inst/deb/debfile.cc:72
  1269. #, c-format
  1270. msgid "Internal Error, could not locate member %s"
  1271. msgstr "내부 오류, %s 멤버를 찾을 수 없습니다"
  1272. #: apt-inst/deb/debfile.cc:104
  1273. #, c-format
  1274. msgid "Couldn't change to %s"
  1275. msgstr "%s 디렉토리로 이동할 수 없습니다"
  1276. #: apt-inst/deb/debfile.cc:125
  1277. msgid "Internal Error, could not locate member"
  1278. msgstr "내부 오류, 멤버를 찾을 수 없습니다"
  1279. #: apt-inst/deb/debfile.cc:158
  1280. msgid "Failed to locate a valid control file"
  1281. msgstr "올바른 control 파일을 찾는 데 실패했습니다"
  1282. #: apt-inst/deb/debfile.cc:243
  1283. msgid "Unparsible control file"
  1284. msgstr "control 파일을 파싱할 수 없습니다"
  1285. #: methods/cdrom.cc:113
  1286. #, c-format
  1287. msgid "Unable to read the cdrom database %s"
  1288. msgstr "CD-ROM 데이터베이스 %s을(를) 읽을 수 없습니다"
  1289. #: methods/cdrom.cc:122
  1290. msgid ""
  1291. "Please use apt-cdrom to make this CD recognized by APT. apt-get update "
  1292. "cannot be used to add new CDs"
  1293. msgstr "이 CD를 APT에서 인식하려면 apt-cdrom을 사용하십시오. apt-get update로는 새 CD를 추가할 수 없습니다."
  1294. #: methods/cdrom.cc:130 methods/cdrom.cc:168
  1295. msgid "Wrong CD"
  1296. msgstr "잘못된 CD"
  1297. #: methods/cdrom.cc:163
  1298. #, c-format
  1299. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1300. msgstr "%s 안의 CD-ROM을 마운트 해제할 수 없습니다. 사용 중일 것입니다."
  1301. #: methods/cdrom.cc:177 methods/file.cc:77
  1302. msgid "File not found"
  1303. msgstr "파일이 없습니다"
  1304. #: methods/copy.cc:42 methods/gzip.cc:133 methods/gzip.cc:142
  1305. msgid "Failed to stat"
  1306. msgstr "파일 정보를 읽는 데 실패했습니다"
  1307. #: methods/copy.cc:79 methods/gzip.cc:139
  1308. msgid "Failed to set modification time"
  1309. msgstr "파일 변경 시각을 설정하는 데 실패했습니다"
  1310. #: methods/file.cc:42
  1311. msgid "Invalid URI, local URIS must not start with //"
  1312. msgstr "URI가 틀렸습니다. 로컬 URI는 //로 시작해야 합니다."
  1313. #. Login must be before getpeername otherwise dante won't work.
  1314. #: methods/ftp.cc:162
  1315. msgid "Logging in"
  1316. msgstr "로그인하는 중"
  1317. #: methods/ftp.cc:168
  1318. msgid "Unable to determine the peer name"
  1319. msgstr "상대방의 이름을 알 수 없습니다"
  1320. #: methods/ftp.cc:173
  1321. msgid "Unable to determine the local name"
  1322. msgstr "로컬 이름을 알 수 없습니다"
  1323. #: methods/ftp.cc:204 methods/ftp.cc:232
  1324. #, c-format
  1325. msgid "Server refused our connection and said: %s"
  1326. msgstr "서버에서 다음과 같이 연결을 거부했습니다: %s"
  1327. #: methods/ftp.cc:210
  1328. #, c-format
  1329. msgid "USER failed, server said: %s"
  1330. msgstr "USER 실패, 서버에서는: %s"
  1331. #: methods/ftp.cc:217
  1332. #, c-format
  1333. msgid "PASS failed, server said: %s"
  1334. msgstr "PASS 실패, 서버에서는: %s"
  1335. #: methods/ftp.cc:237
  1336. msgid ""
  1337. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1338. "is empty."
  1339. msgstr "프록시 서버를 지정했지만 로그인 스크립트가 없습니다. Acquire::ftp::ProxyLogin 값이 비어 있습니다."
  1340. #: methods/ftp.cc:265
  1341. #, c-format
  1342. msgid "Login script command '%s' failed, server said: %s"
  1343. msgstr "로그인 스크립트 명령 '%s' 실패, 서버에서는: %s"
  1344. #: methods/ftp.cc:291
  1345. #, c-format
  1346. msgid "TYPE failed, server said: %s"
  1347. msgstr "TYPE 실패, 서버에서는: %s"
  1348. #: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
  1349. msgid "Connection timeout"
  1350. msgstr "연결 시간 초과"
  1351. #: methods/ftp.cc:335
  1352. msgid "Server closed the connection"
  1353. msgstr "서버에서 연결을 닫았습니다"
  1354. #: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:452 methods/rsh.cc:190
  1355. msgid "Read error"
  1356. msgstr "읽기 오류"
  1357. #: methods/ftp.cc:345 methods/rsh.cc:197
  1358. msgid "A response overflowed the buffer."
  1359. msgstr "응답이 버퍼 크기를 넘어갔습니다."
  1360. #: methods/ftp.cc:362 methods/ftp.cc:374
  1361. msgid "Protocol corruption"
  1362. msgstr "프로토콜이 틀렸습니다"
  1363. #: methods/ftp.cc:446 methods/rsh.cc:232
  1364. msgid "Write Error"
  1365. msgstr "쓰기 오류"
  1366. #: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
  1367. msgid "Could not create a socket"
  1368. msgstr "소켓을 만들 수 없습니다"
  1369. #: methods/ftp.cc:698
  1370. msgid "Could not connect data socket, connection timed out"
  1371. msgstr "데이터 소켓을 연결할 수 없습니다. 연결 시간이 초과되었습니다"
  1372. #: methods/ftp.cc:704
  1373. msgid "Could not connect passive socket."
  1374. msgstr "수동(passive) 소켓을 연결할 수 없습니다."
  1375. #: methods/ftp.cc:722
  1376. msgid "getaddrinfo was unable to get a listening socket"
  1377. msgstr "getaddrinfo에서 소켓에 listen할 수 없습니다"
  1378. #: methods/ftp.cc:736
  1379. msgid "Could not bind a socket"
  1380. msgstr "소켓을 bind할 수 없습니다"
  1381. #: methods/ftp.cc:740
  1382. msgid "Could not listen on the socket"
  1383. msgstr "소켓에 listen할 수 없습니다"
  1384. #: methods/ftp.cc:747
  1385. msgid "Could not determine the socket's name"
  1386. msgstr "소켓의 이름을 알아낼 수 없습니다"
  1387. #: methods/ftp.cc:779
  1388. msgid "Unable to send PORT command"
  1389. msgstr "PORT 명령을 보낼 수 없습니다"
  1390. #: methods/ftp.cc:789
  1391. #, c-format
  1392. msgid "Unknown address family %u (AF_*)"
  1393. msgstr "주소 %u의 종류(AF_*)를 알 수 없습니다"
  1394. #: methods/ftp.cc:798
  1395. #, c-format
  1396. msgid "EPRT failed, server said: %s"
  1397. msgstr "EPRT 실패, 서버에서는: %s"
  1398. #: methods/ftp.cc:818
  1399. msgid "Data socket connect timed out"
  1400. msgstr "데이터 소켓 연결 시간 초과"
  1401. #: methods/ftp.cc:825
  1402. msgid "Unable to accept connection"
  1403. msgstr "연결을 받을 수 없습니다"
  1404. #: methods/ftp.cc:864 methods/http.cc:916 methods/rsh.cc:303
  1405. msgid "Problem hashing file"
  1406. msgstr "파일 해싱에 문제가 있습니다"
  1407. #: methods/ftp.cc:877
  1408. #, c-format
  1409. msgid "Unable to fetch file, server said '%s'"
  1410. msgstr "파일을 가져올 수 없습니다. 서버 왈, '%s'"
  1411. #: methods/ftp.cc:892 methods/rsh.cc:322
  1412. msgid "Data socket timed out"
  1413. msgstr "데이터 소켓에 제한 시간이 초과했습니다"
  1414. #: methods/ftp.cc:922
  1415. #, c-format
  1416. msgid "Data transfer failed, server said '%s'"
  1417. msgstr "데이터 전송 실패, 서버에서는: %s"
  1418. #. Get the files information
  1419. #: methods/ftp.cc:997
  1420. msgid "Query"
  1421. msgstr "질의"
  1422. #: methods/ftp.cc:1104
  1423. msgid "Unable to invoke "
  1424. msgstr "다음을 실행할 수 없습니다: "
  1425. #: methods/connect.cc:64
  1426. #, c-format
  1427. msgid "Connecting to %s (%s)"
  1428. msgstr "%s(%s)에 연결하는 중입니다"
  1429. #: methods/connect.cc:71
  1430. #, c-format
  1431. msgid "[IP: %s %s]"
  1432. msgstr "[IP: %s %s]"
  1433. #: methods/connect.cc:80
  1434. #, c-format
  1435. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1436. msgstr "%s에 대한 소켓을 만들 수 없습니다 (f=%u t=%u p=%u)"
  1437. #: methods/connect.cc:86
  1438. #, c-format
  1439. msgid "Cannot initiate the connection to %s:%s (%s)."
  1440. msgstr "%s:%s에 연결을 초기화할 수 없습니다 (%s)."
  1441. #: methods/connect.cc:92
  1442. #, c-format
  1443. msgid "Could not connect to %s:%s (%s), connection timed out"
  1444. msgstr "%s:%s에 연결할 수 없습니다 (%s). 연결 제한 시간이 초과했습니다"
  1445. #: methods/connect.cc:104
  1446. #, c-format
  1447. msgid "Could not connect to %s:%s (%s)."
  1448. msgstr "%s:%s에 연결할 수 없습니다 (%s)."
  1449. #. We say this mainly because the pause here is for the
  1450. #. ssh connection that is still going
  1451. #: methods/connect.cc:132 methods/rsh.cc:425
  1452. #, c-format
  1453. msgid "Connecting to %s"
  1454. msgstr "%s에 연결하는 중입니다"
  1455. #: methods/connect.cc:163
  1456. #, c-format
  1457. msgid "Could not resolve '%s'"
  1458. msgstr "'%s'의 주소를 알아낼 수 없습니다"
  1459. #: methods/connect.cc:167
  1460. #, c-format
  1461. msgid "Temporary failure resolving '%s'"
  1462. msgstr "'%s'의 주소를 알아내는 데 임시로 실패했습니다"
  1463. #: methods/connect.cc:169
  1464. #, c-format
  1465. msgid "Something wicked happened resolving '%s:%s' (%i)"
  1466. msgstr "'%s:%s'의 주소를 알아내는 데 무언가 이상한 일이 발생했습니다 (%i)"
  1467. #: methods/connect.cc:216
  1468. #, c-format
  1469. msgid "Unable to connect to %s %s:"
  1470. msgstr "%s %s에 연결할 수 없습니다:"
  1471. #: methods/gzip.cc:57
  1472. #, c-format
  1473. msgid "Couldn't open pipe for %s"
  1474. msgstr "%s에 대한 파이프를 열 수 없습니다"
  1475. #: methods/gzip.cc:102
  1476. #, c-format
  1477. msgid "Read error from %s process"
  1478. msgstr "%s 프로세스에서 읽는 데 오류가 발생했습니다"
  1479. #: methods/http.cc:344
  1480. msgid "Waiting for headers"
  1481. msgstr "헤더를 기다리는 중입니다"
  1482. #: methods/http.cc:490
  1483. #, c-format
  1484. msgid "Got a single header line over %u chars"
  1485. msgstr "헤더 한 줄에 %u개가 넘는 문자가 들어 있습니다"
  1486. #: methods/http.cc:498
  1487. msgid "Bad header line"
  1488. msgstr "헤더 줄이 잘못되었습니다"
  1489. #: methods/http.cc:517 methods/http.cc:524
  1490. msgid "The http server sent an invalid reply header"
  1491. msgstr "HTTP 서버에서 잘못된 응답 헤더를 보냈습니다"
  1492. #: methods/http.cc:553
  1493. msgid "The http server sent an invalid Content-Length header"
  1494. msgstr "HTTP 서버에서 잘못된 Content-Length 헤더를 보냈습니다"
  1495. #: methods/http.cc:568
  1496. msgid "The http server sent an invalid Content-Range header"
  1497. msgstr "HTTP 서버에서 잘못된 Content-Range 헤더를 보냈습니다"
  1498. #: methods/http.cc:570
  1499. msgid "This http server has broken range support"
  1500. msgstr "HTTP 서버에 범위 지원 기능이 잘못되어 있습니다"
  1501. #: methods/http.cc:594
  1502. msgid "Unknown date format"
  1503. msgstr "데이터 형식을 알 수 없습니다"
  1504. #: methods/http.cc:737
  1505. msgid "Select failed"
  1506. msgstr "select가 실패했습니다"
  1507. #: methods/http.cc:742
  1508. msgid "Connection timed out"
  1509. msgstr "연결 시간이 초과했습니다"
  1510. #: methods/http.cc:765
  1511. msgid "Error writing to output file"
  1512. msgstr "출력 파일에 쓰는 데 오류가 발생했습니다"
  1513. #: methods/http.cc:793
  1514. msgid "Error writing to file"
  1515. msgstr "파일에 쓰는 데 오류가 발생했습니다"
  1516. #: methods/http.cc:818
  1517. msgid "Error writing to the file"
  1518. msgstr "해당 파일에 쓰는 데 오류가 발생했습니다"
  1519. #: methods/http.cc:832
  1520. msgid "Error reading from server Remote end closed connection"
  1521. msgstr "서버에서 읽고 연결을 닫는 데 오류가 발생했습니다"
  1522. #: methods/http.cc:834
  1523. msgid "Error reading from server"
  1524. msgstr "서버에서 읽는 데 오류가 발생했습니다"
  1525. #: methods/http.cc:1065
  1526. msgid "Bad header Data"
  1527. msgstr "헤더 데이터가 잘못되었습니다"
  1528. #: methods/http.cc:1082
  1529. msgid "Connection failed"
  1530. msgstr "연결이 실패했습니다"
  1531. #: methods/http.cc:1173
  1532. msgid "Internal error"
  1533. msgstr "내부 오류"
  1534. #: apt-pkg/contrib/mmap.cc:82
  1535. msgid "Can't mmap an empty file"
  1536. msgstr "빈 파일에 mmap할 수 없습니다"
  1537. #: apt-pkg/contrib/mmap.cc:87
  1538. #, c-format
  1539. msgid "Couldn't make mmap of %lu bytes"
  1540. msgstr "%lu바이트를 mmap할 수 없습니다"
  1541. #: apt-pkg/contrib/strutl.cc:941
  1542. #, c-format
  1543. msgid "Selection %s not found"
  1544. msgstr "선택한 %s이(가) 없습니다"
  1545. #: apt-pkg/contrib/configuration.cc:395
  1546. #, c-format
  1547. msgid "Unrecognized type abbreviation: '%c'"
  1548. msgstr "이 타입 줄임말을 알 수 없습니다: '%c'"
  1549. #: apt-pkg/contrib/configuration.cc:453
  1550. #, c-format
  1551. msgid "Opening configuration file %s"
  1552. msgstr "설정 파일 %s 파일을 여는 중입니다"
  1553. #: apt-pkg/contrib/configuration.cc:471
  1554. #, c-format
  1555. msgid "Line %d too long (max %d)"
  1556. msgstr "%d번 줄이 너무 깁니다 (최대 %d)"
  1557. #: apt-pkg/contrib/configuration.cc:567
  1558. #, c-format
  1559. msgid "Syntax error %s:%u: Block starts with no name."
  1560. msgstr "문법 오류 %s:%u: 블럭이 이름으로 시작하지 않습니다."
  1561. #: apt-pkg/contrib/configuration.cc:586
  1562. #, c-format
  1563. msgid "Syntax error %s:%u: Malformed Tag"
  1564. msgstr "문법 오류 %s:%u: 태그의 형식이 잘못되었습니다"
  1565. #: apt-pkg/contrib/configuration.cc:603
  1566. #, c-format
  1567. msgid "Syntax error %s:%u: Extra junk after value"
  1568. msgstr "문법 오류 %s:%u: 값 뒤에 쓰레기 데이터가 더 있습니다"
  1569. #: apt-pkg/contrib/configuration.cc:643
  1570. #, c-format
  1571. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1572. msgstr "문법 오류 %s:%u: 지시어는 맨 위 단계에서만 쓸 수 있습니다"
  1573. #: apt-pkg/contrib/configuration.cc:650
  1574. #, c-format
  1575. msgid "Syntax error %s:%u: Too many nested includes"
  1576. msgstr "문법 오류 %s:%u: include가 너무 많이 겹쳐 있습니다"
  1577. #: apt-pkg/contrib/configuration.cc:654 apt-pkg/contrib/configuration.cc:659
  1578. #, c-format
  1579. msgid "Syntax error %s:%u: Included from here"
  1580. msgstr "문법 오류 %s:%u: 여기서 include됩니다"
  1581. #: apt-pkg/contrib/configuration.cc:663
  1582. #, c-format
  1583. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1584. msgstr "문법 오류 %s:%u: 지원하지 않는 지시어 '%s'"
  1585. #: apt-pkg/contrib/configuration.cc:697
  1586. #, c-format
  1587. msgid "Syntax error %s:%u: Extra junk at end of file"
  1588. msgstr "문법 오류 %s:%u: 파일의 끝에 쓰레기 데이터가 더 있습니다"
  1589. #: apt-pkg/contrib/progress.cc:154
  1590. #, c-format
  1591. msgid "%c%s... Error!"
  1592. msgstr "%c%s... 오류!"
  1593. #: apt-pkg/contrib/progress.cc:156
  1594. #, c-format
  1595. msgid "%c%s... Done"
  1596. msgstr "%c%s... 완료"
  1597. #: apt-pkg/contrib/cmndline.cc:80
  1598. #, c-format
  1599. msgid "Command line option '%c' [from %s] is not known."
  1600. msgstr "명령행 옵션 '%c' 옵션을 [%s에서] 알 수 없습니다."
  1601. #: apt-pkg/contrib/cmndline.cc:106 apt-pkg/contrib/cmndline.cc:114
  1602. #: apt-pkg/contrib/cmndline.cc:122
  1603. #, c-format
  1604. msgid "Command line option %s is not understood"
  1605. msgstr "명령행 옵션 '%s' 옵션을 알 수 없습니다"
  1606. #: apt-pkg/contrib/cmndline.cc:127
  1607. #, c-format
  1608. msgid "Command line option %s is not boolean"
  1609. msgstr "명령행 옵션 '%s' 옵션은 불리언이 아닙니다"
  1610. #: apt-pkg/contrib/cmndline.cc:166 apt-pkg/contrib/cmndline.cc:187
  1611. #, c-format
  1612. msgid "Option %s requires an argument."
  1613. msgstr "%s 옵션에는 인수가 필요합니다."
  1614. #: apt-pkg/contrib/cmndline.cc:201 apt-pkg/contrib/cmndline.cc:207
  1615. #, c-format
  1616. msgid "Option %s: Configuration item specification must have an =<val>."
  1617. msgstr "%s 옵션: 설정 항목 지정은 =<값> 형태여야 합니다."
  1618. #: apt-pkg/contrib/cmndline.cc:237
  1619. #, c-format
  1620. msgid "Option %s requires an integer argument, not '%s'"
  1621. msgstr "%s 옵션에는 정수 인수가 필요합니다, '%s'이(가) 아닙니다"
  1622. #: apt-pkg/contrib/cmndline.cc:268
  1623. #, c-format
  1624. msgid "Option '%s' is too long"
  1625. msgstr "'%s' 옵션이 너무 깁니다"
  1626. #: apt-pkg/contrib/cmndline.cc:301
  1627. #, c-format
  1628. msgid "Sense %s is not understood, try true or false."
  1629. msgstr "%s 센스를 이해할 수 없습니다. 참 아니면 거짓으로 해 보십시오."
  1630. #: apt-pkg/contrib/cmndline.cc:351
  1631. #, c-format
  1632. msgid "Invalid operation %s"
  1633. msgstr "잘못된 작업 %s"
  1634. #: apt-pkg/contrib/cdromutl.cc:55
  1635. #, c-format
  1636. msgid "Unable to stat the mount point %s"
  1637. msgstr "마운트 위치 %s의 정보를 읽을 수 없습니다"
  1638. #: apt-pkg/contrib/cdromutl.cc:149 apt-pkg/acquire.cc:422 apt-pkg/clean.cc:44
  1639. #, c-format
  1640. msgid "Unable to change to %s"
  1641. msgstr "%s 디렉토리로 이동할 수 없습니다"
  1642. #: apt-pkg/contrib/cdromutl.cc:190
  1643. msgid "Failed to stat the cdrom"
  1644. msgstr "CD-ROM의 정보를 읽을 수 없습니다"
  1645. #: apt-pkg/contrib/fileutl.cc:80
  1646. #, c-format
  1647. msgid "Not using locking for read only lock file %s"
  1648. msgstr "읽기 전용 잠금 파일 %s에 대해 잠금을 사용하지 않습니다"
  1649. #: apt-pkg/contrib/fileutl.cc:85
  1650. #, c-format
  1651. msgid "Could not open lock file %s"
  1652. msgstr "잠금 파일 %s 파일을 열 수 없습니다"
  1653. #: apt-pkg/contrib/fileutl.cc:103
  1654. #, c-format
  1655. msgid "Not using locking for nfs mounted lock file %s"
  1656. msgstr "NFS로 마운트된 잠금 파일 %s에 대해 잠금을 사용하지 않습니다"
  1657. #: apt-pkg/contrib/fileutl.cc:107
  1658. #, c-format
  1659. msgid "Could not get lock %s"
  1660. msgstr "%s 잠금 파일을 얻을 수 없습니다"
  1661. #: apt-pkg/contrib/fileutl.cc:358
  1662. #, c-format
  1663. msgid "Waited, for %s but it wasn't there"
  1664. msgstr "%s 프로세스를 기다렸지만 해당 프로세스가 없습니다"
  1665. #: apt-pkg/contrib/fileutl.cc:368
  1666. #, c-format
  1667. msgid "Sub-process %s received a segmentation fault."
  1668. msgstr "하위 프로세스 %s 프로세스가 세그멘테이션 오류를 받았습니다."
  1669. #: apt-pkg/contrib/fileutl.cc:371
  1670. #, c-format
  1671. msgid "Sub-process %s returned an error code (%u)"
  1672. msgstr "하위 프로세스 %s 프로세스가 오류 코드(%u)를 리턴했습니다"
  1673. #: apt-pkg/contrib/fileutl.cc:373
  1674. #, c-format
  1675. msgid "Sub-process %s exited unexpectedly"
  1676. msgstr "하위 프로세스 %s 프로세스가 예상치 못하게 끝났습니다"
  1677. #: apt-pkg/contrib/fileutl.cc:417
  1678. #, c-format
  1679. msgid "Could not open file %s"
  1680. msgstr "%s 파일을 열 수 없습니다"
  1681. #: apt-pkg/contrib/fileutl.cc:473
  1682. #, c-format
  1683. msgid "read, still have %lu to read but none left"
  1684. msgstr "%lu만큼 더 읽어야 하지만 더 이상 읽을 데이터가 없습니다"
  1685. #: apt-pkg/contrib/fileutl.cc:491
  1686. msgid "Write error"
  1687. msgstr "쓰기 오류"
  1688. #: apt-pkg/contrib/fileutl.cc:503
  1689. #, c-format
  1690. msgid "write, still have %lu to write but couldn't"
  1691. msgstr "%lu만큼 더 써야 하지만 더 이상 쓸 수 없습니다"
  1692. #: apt-pkg/contrib/fileutl.cc:578
  1693. msgid "Problem closing the file"
  1694. msgstr "파일을 닫는 데 문제가 있습니다"
  1695. #: apt-pkg/contrib/fileutl.cc:584
  1696. msgid "Problem unlinking the file"
  1697. msgstr "파일을 지우는 데 문제가 있습니다"
  1698. #: apt-pkg/contrib/fileutl.cc:595
  1699. msgid "Problem syncing the file"
  1700. msgstr "파일을 동기화하는 데 문제가 있습니다"
  1701. #: apt-pkg/pkgcache.cc:126
  1702. msgid "Empty package cache"
  1703. msgstr "꾸러미 캐시가 비어 있습니다"
  1704. #: apt-pkg/pkgcache.cc:132
  1705. msgid "The package cache file is corrupted"
  1706. msgstr "꾸러미 캐시 파일이 손상되었습니다"
  1707. #: apt-pkg/pkgcache.cc:137
  1708. msgid "The package cache file is an incompatible version"
  1709. msgstr "꾸러미 캐시 파일이 호환되지 않는 버전입니다"
  1710. #: apt-pkg/pkgcache.cc:142
  1711. #, c-format
  1712. msgid "This APT does not support the Versioning System '%s'"
  1713. msgstr "이 APT는 Version System '%s'을(를) 지원하지 않습니다"
  1714. #: apt-pkg/pkgcache.cc:147
  1715. msgid "The package cache was built for a different architecture"
  1716. msgstr "꾸러미 캐시가 다른 아키텍쳐용입니다."
  1717. #: apt-pkg/pkgcache.cc:218
  1718. msgid "Depends"
  1719. msgstr "의존"
  1720. #: apt-pkg/pkgcache.cc:218
  1721. msgid "PreDepends"
  1722. msgstr "선의존"
  1723. #: apt-pkg/pkgcache.cc:218
  1724. msgid "Suggests"
  1725. msgstr "제안"
  1726. #: apt-pkg/pkgcache.cc:219
  1727. msgid "Recommends"
  1728. msgstr "추천"
  1729. #: apt-pkg/pkgcache.cc:219
  1730. msgid "Conflicts"
  1731. msgstr "충돌"
  1732. #: apt-pkg/pkgcache.cc:219
  1733. msgid "Replaces"
  1734. msgstr "대체"
  1735. #: apt-pkg/pkgcache.cc:220
  1736. msgid "Obsoletes"
  1737. msgstr "없앰"
  1738. #: apt-pkg/pkgcache.cc:231
  1739. msgid "important"
  1740. msgstr "중요"
  1741. #: apt-pkg/pkgcache.cc:231
  1742. msgid "required"
  1743. msgstr "필수"
  1744. #: apt-pkg/pkgcache.cc:231
  1745. msgid "standard"
  1746. msgstr "표준"
  1747. #: apt-pkg/pkgcache.cc:232
  1748. msgid "optional"
  1749. msgstr "옵션"
  1750. #: apt-pkg/pkgcache.cc:232
  1751. msgid "extra"
  1752. msgstr "별도"
  1753. #: apt-pkg/depcache.cc:60 apt-pkg/depcache.cc:89
  1754. msgid "Building Dependency Tree"
  1755. msgstr "의존성 트리를 만드는 중입니다"
  1756. #: apt-pkg/depcache.cc:61
  1757. msgid "Candidate Versions"
  1758. msgstr "후보 버전"
  1759. #: apt-pkg/depcache.cc:90
  1760. msgid "Dependency Generation"
  1761. msgstr "의존성 만들기"
  1762. #: apt-pkg/tagfile.cc:71
  1763. #, c-format
  1764. msgid "Unable to parse package file %s (1)"
  1765. msgstr "꾸러미 파일 %s 파일을 파싱할 수 없습니다 (1)"
  1766. #: apt-pkg/tagfile.cc:158
  1767. #, c-format
  1768. msgid "Unable to parse package file %s (2)"
  1769. msgstr "꾸러미 파일 %s 파일을 파싱할 수 없습니다 (2)"
  1770. #: apt-pkg/sourcelist.cc:88
  1771. #, c-format
  1772. msgid "Malformed line %lu in source list %s (URI)"
  1773. msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (URI)"
  1774. #: apt-pkg/sourcelist.cc:90
  1775. #, c-format
  1776. msgid "Malformed line %lu in source list %s (dist)"
  1777. msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (dist)"
  1778. #: apt-pkg/sourcelist.cc:93
  1779. #, c-format
  1780. msgid "Malformed line %lu in source list %s (URI parse)"
  1781. msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (URI 파싱)"
  1782. #: apt-pkg/sourcelist.cc:99
  1783. #, c-format
  1784. msgid "Malformed line %lu in source list %s (Absolute dist)"
  1785. msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (절대 dist)"
  1786. #: apt-pkg/sourcelist.cc:106
  1787. #, c-format
  1788. msgid "Malformed line %lu in source list %s (dist parse)"
  1789. msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (dist 파싱)"
  1790. #: apt-pkg/sourcelist.cc:183 apt-pkg/sourcelist.cc:207
  1791. #, c-format
  1792. msgid "Vendor block %s is invalid"
  1793. msgstr "벤더 블럭 %s이(가) 잘못되었습니다"
  1794. #: apt-pkg/sourcelist.cc:235
  1795. #, c-format
  1796. msgid "Opening %s"
  1797. msgstr "%s 파일을 여는 중입니다"
  1798. #: apt-pkg/sourcelist.cc:249
  1799. #, c-format
  1800. msgid "Line %u too long in source list %s."
  1801. msgstr "소스 리스트 %2$s의 %1$u번 줄이 너무 깁니다."
  1802. #: apt-pkg/sourcelist.cc:266
  1803. #, c-format
  1804. msgid "Malformed line %u in source list %s (type)"
  1805. msgstr "소스 리스트 %2$s의 %1$u번 줄이 잘못되었습니다 (타입)"
  1806. #: apt-pkg/sourcelist.cc:270
  1807. #, c-format
  1808. msgid "Type '%s' is not known in on line %u in source list %s"
  1809. msgstr "소스 리스트 %3$s의 %2$u번 줄의 '%1$s' 타입을 알 수 없습니다"
  1810. #: apt-pkg/sourcelist.cc:279 apt-pkg/sourcelist.cc:282
  1811. #, c-format
  1812. msgid "Malformed line %u in source list %s (vendor id)"
  1813. msgstr "소스 리스트 %2$s의 %1$u번 줄이 잘못되었습니다 (벤더 ID)"
  1814. #: apt-pkg/sourcelist.cc:296
  1815. #, c-format
  1816. msgid "Unknown vendor ID '%s' in line %u of source list %s"
  1817. msgstr "소스 리스트 %3$s의 %2$u번 줄의 벤더 ID '%1$s'을(를) 알 수 없습니다"
  1818. #: apt-pkg/packagemanager.cc:402
  1819. #, c-format
  1820. msgid ""
  1821. "This installation run will require temporarily removing the essential "
  1822. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  1823. "you really want to do it, activate the APT::Force-LoopBreak option."
  1824. msgstr "이번에 설치할 때 충돌/선의존성이 루프가 걸렸기 때문에 꼭 필요한 %s 꾸러미를 잠깐 지워야 합니다. 이 꾸러미를 지우는 건 좋지 않지만, 정말 지우려면 APT::Force-LoopBreak 옵션을 켜십시오."
  1825. #: apt-pkg/pkgrecords.cc:37
  1826. #, c-format
  1827. msgid "Index file type '%s' is not supported"
  1828. msgstr "인덱스 파일 타입 '%s' 타입은 지원하지 않습니다"
  1829. #: apt-pkg/algorithms.cc:238
  1830. #, c-format
  1831. msgid ""
  1832. "The package %s needs to be reinstalled, but I can't find an archive for it."
  1833. msgstr "%s 꾸러미를 다시 설치해야 하지만, 이 꾸러미의 아카이브를 찾을 수 없습니다."
  1834. #: apt-pkg/algorithms.cc:1056
  1835. msgid ""
  1836. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  1837. "held packages."
  1838. msgstr "오류, pkgProblemResolver::Resolve가 망가졌습니다, 고정 꾸러미때문에 발생할 수도 있습니다."
  1839. #: apt-pkg/algorithms.cc:1058
  1840. msgid "Unable to correct problems, you have held broken packages."
  1841. msgstr "문제를 바로잡을 수 없습니다, 망가진 고정 꾸러미가 있습니다."
  1842. #: apt-pkg/acquire.cc:61
  1843. #, c-format
  1844. msgid "Lists directory %spartial is missing."
  1845. msgstr "목록 디렉토리 %spartial이 빠졌습니다."
  1846. #: apt-pkg/acquire.cc:65
  1847. #, c-format
  1848. msgid "Archive directory %spartial is missing."
  1849. msgstr "아카이브 디렉토리 %spartial이 빠졌습니다."
  1850. #: apt-pkg/acquire-worker.cc:112
  1851. #, c-format
  1852. msgid "The method driver %s could not be found."
  1853. msgstr "설치 방법 드라이버 %s을(를) 찾을 수 없습니다."
  1854. #: apt-pkg/acquire-worker.cc:161
  1855. #, c-format
  1856. msgid "Method %s did not start correctly"
  1857. msgstr "설치 방법 %s이(가) 올바르게 시작하지 않았습니다"
  1858. #: apt-pkg/init.cc:119
  1859. #, c-format
  1860. msgid "Packaging system '%s' is not supported"
  1861. msgstr "꾸러미 시스템 '%s'을(를) 지원하지 않습니다"
  1862. #: apt-pkg/init.cc:135
  1863. msgid "Unable to determine a suitable packaging system type"
  1864. msgstr "올바른 꾸러미 시스템 타입을 알아낼 수 없습니다"
  1865. #: apt-pkg/clean.cc:61
  1866. #, c-format
  1867. msgid "Unable to stat %s."
  1868. msgstr "%s의 정보를 읽을 수 없습니다."
  1869. #: apt-pkg/srcrecords.cc:49
  1870. msgid "You must put some 'source' URIs in your sources.list"
  1871. msgstr "sources.list에 '소스' URI를 써 넣어야 합니다"
  1872. #: apt-pkg/cachefile.cc:73
  1873. msgid "The package lists or status file could not be parsed or opened."
  1874. msgstr "꾸러미 목록이나 상태 파일을 파싱할 수 없거나 열 수 없습니다."
  1875. #: apt-pkg/cachefile.cc:77
  1876. msgid "You may want to run apt-get update to correct these problems"
  1877. msgstr "apt-get update를 실행하면 이 문제를 바로잡을 수도 있습니다."
  1878. #: apt-pkg/policy.cc:269
  1879. msgid "Invalid record in the preferences file, no Package header"
  1880. msgstr "기본 설정 파일에 잘못된 데이터가 있습니다. 꾸러미 헤더가 없습니다"
  1881. #: apt-pkg/policy.cc:291
  1882. #, c-format
  1883. msgid "Did not understand pin type %s"
  1884. msgstr "핀 타입 %s이(가0 무엇인지 이해할 수 없습니다"
  1885. #: apt-pkg/policy.cc:299
  1886. msgid "No priority (or zero) specified for pin"
  1887. msgstr "핀에 우선순위(혹은 0)를 지정하지 않았습니다"
  1888. #: apt-pkg/pkgcachegen.cc:74
  1889. msgid "Cache has an incompatible versioning system"
  1890. msgstr "캐시의 버전 시스템이 호환되지 않습니다"
  1891. #: apt-pkg/pkgcachegen.cc:117
  1892. #, c-format
  1893. msgid "Error occured while processing %s (NewPackage)"
  1894. msgstr "%s 처리하는 중에 오류가 발생했습니다 (NewPackage)"
  1895. #: apt-pkg/pkgcachegen.cc:129
  1896. #, c-format
  1897. msgid "Error occured while processing %s (UsePackage1)"
  1898. msgstr "%s 처리하는 중에 오류가 발생했습니다 (UsePackage1)"
  1899. #: apt-pkg/pkgcachegen.cc:150
  1900. #, c-format
  1901. msgid "Error occured while processing %s (UsePackage2)"
  1902. msgstr "%s 처리하는 중에 오류가 발생했습니다 (UsePackage2)"
  1903. #: apt-pkg/pkgcachegen.cc:154
  1904. #, c-format
  1905. msgid "Error occured while processing %s (NewFileVer1)"
  1906. msgstr "%s 처리하는 중에 오류가 발생했습니다 (NewFileVer1)"
  1907. #: apt-pkg/pkgcachegen.cc:184
  1908. #, c-format
  1909. msgid "Error occured while processing %s (NewVersion1)"
  1910. msgstr "%s 처리하는 중에 오류가 발생했습니다 (NewVersion1)"
  1911. #: apt-pkg/pkgcachegen.cc:188
  1912. #, c-format
  1913. msgid "Error occured while processing %s (UsePackage3)"
  1914. msgstr "%s 처리하는 중에 오류가 발생했습니다 (UsePackage3)"
  1915. #: apt-pkg/pkgcachegen.cc:192
  1916. #, c-format
  1917. msgid "Error occured while processing %s (NewVersion2)"
  1918. msgstr "%s 처리하는 중에 오류가 발생했습니다 (NewVersion2)"
  1919. #: apt-pkg/pkgcachegen.cc:207
  1920. msgid "Wow, you exceeded the number of package names this APT is capable of."
  1921. msgstr "와우, 이 APT가 처리할 수 있는 패키지 이름 개수를 넘어갔습니다."
  1922. #: apt-pkg/pkgcachegen.cc:210
  1923. msgid "Wow, you exceeded the number of versions this APT is capable of."
  1924. msgstr "와우, 이 APT가 처리할 수 있는 버전 개수를 넘어갔습니다."
  1925. #: apt-pkg/pkgcachegen.cc:213
  1926. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  1927. msgstr "와우, 이 APT가 처리할 수 있는 의존성 개수를 넘어갔습니다."
  1928. #: apt-pkg/pkgcachegen.cc:241
  1929. #, c-format
  1930. msgid "Error occured while processing %s (FindPkg)"
  1931. msgstr "%s 처리중에 오류가 발생했습니다 (FindPkg)"
  1932. #: apt-pkg/pkgcachegen.cc:254
  1933. #, c-format
  1934. msgid "Error occured while processing %s (CollectFileProvides)"
  1935. msgstr "%s 처리중에 오류가 발생했습니다 (CollectFileProvides)"
  1936. #: apt-pkg/pkgcachegen.cc:260
  1937. #, c-format
  1938. msgid "Package %s %s was not found while processing file dependencies"
  1939. msgstr "파일 의존성을 처리하는 데, %s %s 꾸러미가 없습니다"
  1940. #: apt-pkg/pkgcachegen.cc:574
  1941. #, c-format
  1942. msgid "Couldn't stat source package list %s"
  1943. msgstr "소스 꾸러미 목록 %s의 정보를 읽을 수 없습니다"
  1944. #: apt-pkg/pkgcachegen.cc:658
  1945. msgid "Collecting File Provides"
  1946. msgstr "파일에서 제공하는 것을 모으는 중입니다"
  1947. #: apt-pkg/pkgcachegen.cc:774 apt-pkg/pkgcachegen.cc:781
  1948. msgid "IO Error saving source cache"
  1949. msgstr "소스 캐시를 저장하는 데 입출력 오류가 발생했습니다"
  1950. #: apt-pkg/acquire-item.cc:124
  1951. #, c-format
  1952. msgid "rename failed, %s (%s -> %s)."
  1953. msgstr "이름 바꾸기가 실패했습니다. %s (%s -> %s)."
  1954. #: apt-pkg/acquire-item.cc:353
  1955. #, c-format
  1956. msgid ""
  1957. "I wasn't able to locate a file for the %s package. This might mean you need "
  1958. "to manually fix this package. (due to missing arch)"
  1959. msgstr "%s 꾸러미의 파일을 찾을 수 없습니다. 수동으로 이 꾸러미를 고쳐야 할 수도 있습니다. (아키텍쳐가 빠졌기 때문입니다)"
  1960. #: apt-pkg/acquire-item.cc:388
  1961. #, c-format
  1962. msgid ""
  1963. "I wasn't able to locate file for the %s package. This might mean you need to "
  1964. "manually fix this package."
  1965. msgstr "%s 꾸러미의 파일을 찾을 수 없습니다. 수동으로 이 꾸러미를 고쳐야 할 수도 있습니다."
  1966. #: apt-pkg/acquire-item.cc:419
  1967. #, c-format
  1968. msgid ""
  1969. "The package index files are corrupted. No Filename: field for package %s."
  1970. msgstr "꾸러미 인덱스 파일이 손상되었습니다. %s 꾸러미에 Filename: 필드가 없습니다."
  1971. #: apt-pkg/acquire-item.cc:501
  1972. msgid "Size mismatch"
  1973. msgstr "크기가 맞지 않습니다"
  1974. #: apt-pkg/acquire-item.cc:511
  1975. msgid "MD5Sum mismatch"
  1976. msgstr "MD5Sum이 맞지 않습니다"
  1977. #: methods/rsh.cc:264
  1978. msgid "File Not Found"
  1979. msgstr "파일이 없습니다"
  1980. #: methods/rsh.cc:330
  1981. msgid "Connection closed prematurely"
  1982. msgstr "연결이 너무 빨리 끊어졌습니다"