ko.po 83 KB

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