ko.po 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765
  1. # Sunjae Park <darehanl@gmail.com>, 2006-2007, 2008.
  2. # Changwoo Ryu <cwryu@debian.org>, 2004-2005, 2008, 2010.
  3. #
  4. msgid ""
  5. msgstr ""
  6. "Project-Id-Version: apt\n"
  7. "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
  8. "POT-Creation-Date: 2014-05-05 16:26+0200\n"
  9. "PO-Revision-Date: 2010-08-30 02:31+0900\n"
  10. "Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
  11. "Language-Team: Korean <debian-l10n-korean@lists.debian.org>\n"
  12. "Language: ko\n"
  13. "MIME-Version: 1.0\n"
  14. "Content-Type: text/plain; charset=UTF-8\n"
  15. "Content-Transfer-Encoding: 8bit\n"
  16. "Plural-Forms: nplurals=1; plural=0;\n"
  17. #: cmdline/apt-cache.cc:149
  18. #, c-format
  19. msgid "Package %s version %s has an unmet dep:\n"
  20. msgstr "%s 패키지의 %s 버전의 의존성이 맞지 않습니다:\n"
  21. #: cmdline/apt-cache.cc:277
  22. msgid "Total package names: "
  23. msgstr "전체 패키지 이름 : "
  24. #: cmdline/apt-cache.cc:279
  25. msgid "Total package structures: "
  26. msgstr "전체 패키지 구조: "
  27. #: cmdline/apt-cache.cc:319
  28. msgid " Normal packages: "
  29. msgstr " 일반 패키지: "
  30. #: cmdline/apt-cache.cc:320
  31. msgid " Pure virtual packages: "
  32. msgstr " 순수 가상 패키지: "
  33. #: cmdline/apt-cache.cc:321
  34. msgid " Single virtual packages: "
  35. msgstr " 단일 가상 패키지: "
  36. #: cmdline/apt-cache.cc:322
  37. msgid " Mixed virtual packages: "
  38. msgstr " 혼합 가상 패키지: "
  39. #: cmdline/apt-cache.cc:323
  40. msgid " Missing: "
  41. msgstr " 빠짐: "
  42. #: cmdline/apt-cache.cc:325
  43. msgid "Total distinct versions: "
  44. msgstr "개별 버전 전체: "
  45. #: cmdline/apt-cache.cc:327
  46. msgid "Total distinct descriptions: "
  47. msgstr "개별 설명 전체: "
  48. #: cmdline/apt-cache.cc:329
  49. msgid "Total dependencies: "
  50. msgstr "전체 의존성: "
  51. #: cmdline/apt-cache.cc:332
  52. msgid "Total ver/file relations: "
  53. msgstr "전체 버전/파일 관계: "
  54. #: cmdline/apt-cache.cc:334
  55. msgid "Total Desc/File relations: "
  56. msgstr "전체 설명/파일 관계: "
  57. #: cmdline/apt-cache.cc:336
  58. msgid "Total Provides mappings: "
  59. msgstr "전체 제공 매핑: "
  60. #: cmdline/apt-cache.cc:348
  61. msgid "Total globbed strings: "
  62. msgstr "전체 패턴 문자열: "
  63. #: cmdline/apt-cache.cc:362
  64. msgid "Total dependency version space: "
  65. msgstr "전체 의존성 버전 용량: "
  66. #: cmdline/apt-cache.cc:367
  67. msgid "Total slack space: "
  68. msgstr "전체 빈 용량: "
  69. #: cmdline/apt-cache.cc:375
  70. msgid "Total space accounted for: "
  71. msgstr "차지하는 전체 용량: "
  72. #: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155
  73. #: apt-private/private-show.cc:58
  74. #, c-format
  75. msgid "Package file %s is out of sync."
  76. msgstr "패키지 파일 %s 파일이 동기화되지 않았습니다."
  77. #: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441
  78. #: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59
  79. #: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232
  80. #: apt-private/private-show.cc:171 apt-private/private-show.cc:173
  81. msgid "No packages found"
  82. msgstr "패키지가 없습니다"
  83. #: cmdline/apt-cache.cc:1254
  84. msgid "You must give at least one search pattern"
  85. msgstr "최소 한 개의 검색어를 지정해야 합니다"
  86. #: cmdline/apt-cache.cc:1420
  87. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  88. msgstr ""
  89. #: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596
  90. #, c-format
  91. msgid "Unable to locate package %s"
  92. msgstr "%s 패키지를 찾을 수 없습니다"
  93. #: cmdline/apt-cache.cc:1545
  94. msgid "Package files:"
  95. msgstr "패키지 파일:"
  96. #: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643
  97. msgid "Cache is out of sync, can't x-ref a package file"
  98. msgstr "캐시가 동기화되지 않았습니다. 패키지 파일을 상호 참조할 수 없습니다"
  99. #. Show any packages have explicit pins
  100. #: cmdline/apt-cache.cc:1566
  101. msgid "Pinned packages:"
  102. msgstr "핀 패키지:"
  103. #: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623
  104. msgid "(not found)"
  105. msgstr "(없음)"
  106. #: cmdline/apt-cache.cc:1586
  107. msgid " Installed: "
  108. msgstr " 설치: "
  109. #: cmdline/apt-cache.cc:1587
  110. msgid " Candidate: "
  111. msgstr " 후보: "
  112. #: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613
  113. msgid "(none)"
  114. msgstr "(없음)"
  115. #: cmdline/apt-cache.cc:1620
  116. msgid " Package pin: "
  117. msgstr " 패키지 핀: "
  118. #. Show the priority tables
  119. #: cmdline/apt-cache.cc:1629
  120. msgid " Version table:"
  121. msgstr " 버전 테이블:"
  122. #: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83
  123. #: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388
  124. #: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217
  125. #: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42
  126. #: cmdline/apt-sortpkgs.cc:147
  127. #, c-format
  128. msgid "%s %s for %s compiled on %s %s\n"
  129. msgstr "%s %s(%s), 컴파일 시각 %s %s\n"
  130. #: cmdline/apt-cache.cc:1749
  131. #, fuzzy
  132. msgid ""
  133. "Usage: apt-cache [options] command\n"
  134. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  135. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  136. "\n"
  137. "apt-cache is a low-level tool used to query information\n"
  138. "from APT's binary cache files\n"
  139. "\n"
  140. "Commands:\n"
  141. " gencaches - Build both the package and source cache\n"
  142. " showpkg - Show some general information for a single package\n"
  143. " showsrc - Show source records\n"
  144. " stats - Show some basic statistics\n"
  145. " dump - Show the entire file in a terse form\n"
  146. " dumpavail - Print an available file to stdout\n"
  147. " unmet - Show unmet dependencies\n"
  148. " search - Search the package list for a regex pattern\n"
  149. " show - Show a readable record for the package\n"
  150. " depends - Show raw dependency information for a package\n"
  151. " rdepends - Show reverse dependency information for a package\n"
  152. " pkgnames - List the names of all packages in the system\n"
  153. " dotty - Generate package graphs for GraphViz\n"
  154. " xvcg - Generate package graphs for xvcg\n"
  155. " policy - Show policy settings\n"
  156. "\n"
  157. "Options:\n"
  158. " -h This help text.\n"
  159. " -p=? The package cache.\n"
  160. " -s=? The source cache.\n"
  161. " -q Disable progress indicator.\n"
  162. " -i Show only important deps for the unmet command.\n"
  163. " -c=? Read this configuration file\n"
  164. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  165. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  166. msgstr ""
  167. "사용법: apt-cache [옵션] 명령\n"
  168. " apt-cache [옵션] add 파일1 [파일2 ...]\n"
  169. " apt-cache [옵션] showpkg 패키지1 [패키지2 ...]\n"
  170. " apt-cache [옵션] showsrc 패키지1 [패키지2 ...]\n"
  171. "\n"
  172. "apt-cache는 APT의 바이너리 캐시 파일을 처리하고, 캐시 파일에\n"
  173. "정보를 질의하는 저수준 도구입니다.\n"
  174. "\n"
  175. "명령:\n"
  176. " add - 소스 캐시에 패키지 파일을 추가합니다\n"
  177. " gencaches - 패키지 캐시 및 소스 캐시를 만듭니다\n"
  178. " showpkg - 한 개의 패키지에 대한 일반적인 정보를 봅니다\n"
  179. " showsrc - 소스 기록을 봅니다\n"
  180. " stats - 기본적인 통계를 봅니다\n"
  181. " dump - 전체 파일을 간략한 형태로 봅니다\n"
  182. " dumpavail - 사용 가능한 파일을 표준출력에 표시합니다\n"
  183. " unmet - 맞지 않는 의존성을 봅니다\n"
  184. " search - 정규식 패턴에 맞는 패키지 목록을 찾습니다\n"
  185. " show - 패키지에 대해 읽을 수 있는 기록을 봅니다\n"
  186. " showauto - 자동으로 설치한 패키지 목록을 표시합니다\n"
  187. " depends - 패키지에 대해 의존성 정보를 그대로 봅니다\n"
  188. " rdepends - 패키지의 역 의존성 정보를 봅니다\n"
  189. " pkgnames - 시스템에 들어 있는 패키지의 이름을 모두 봅니다\n"
  190. " dotty - GraphViz용 패키지 그래프를 만듭니다\n"
  191. " xvcg - xvcg용 패키지 그래프를 만듭니다\n"
  192. " policy - 정책 설정을 봅니다\n"
  193. "\n"
  194. "옵션:\n"
  195. " -h 이 도움말.\n"
  196. " -p=? 패키지 캐시.\n"
  197. " -s=? 소스 캐시.\n"
  198. " -q 상태 표시를 하지 않습니다.\n"
  199. " -i unmet 명령에서 중요한 의존성만 봅니다.\n"
  200. " -c=? 지정한 설정 파일을 읽습니다.\n"
  201. " -o=? 임의의 옵션을 설정합니다. 예를 들어 -o dir::cache=/tmp\n"
  202. "좀 더 자세한 정보는 apt-cache(8) 및 apt.conf(5) 매뉴얼 페이지를 보십시오.\n"
  203. #: cmdline/apt-cdrom.cc:76
  204. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  205. msgstr "이 디스크의 이름을 정하십시오 (예: 'Debian 5.0.3 Disk 1')"
  206. #: cmdline/apt-cdrom.cc:91
  207. msgid "Please insert a Disc in the drive and press enter"
  208. msgstr "드라이브에 디스크를 넣고 Enter를 누르십시오"
  209. #: cmdline/apt-cdrom.cc:139
  210. #, c-format
  211. msgid "Failed to mount '%s' to '%s'"
  212. msgstr "%s 파일의 이름을 %s(으)로 바꾸는데 실패했습니다"
  213. #: cmdline/apt-cdrom.cc:178
  214. msgid ""
  215. "No CD-ROM could be auto-detected or found using the default mount point.\n"
  216. "You may try the --cdrom option to set the CD-ROM mount point.\n"
  217. "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and "
  218. "mount point."
  219. msgstr ""
  220. #: cmdline/apt-cdrom.cc:182
  221. msgid "Repeat this process for the rest of the CDs in your set."
  222. msgstr "현재 갖고 있는 다른 CD에도 이 과정을 반복하십시오."
  223. #: cmdline/apt-config.cc:48
  224. msgid "Arguments not in pairs"
  225. msgstr "인수가 두 개가 아닙니다"
  226. #: cmdline/apt-config.cc:89
  227. msgid ""
  228. "Usage: apt-config [options] command\n"
  229. "\n"
  230. "apt-config is a simple tool to read the APT config file\n"
  231. "\n"
  232. "Commands:\n"
  233. " shell - Shell mode\n"
  234. " dump - Show the configuration\n"
  235. "\n"
  236. "Options:\n"
  237. " -h This help text.\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-config [옵션] 명령\n"
  242. "\n"
  243. "apt-config는 APT 설정 파일을 읽는 간단한 프로그램입니다\n"
  244. "\n"
  245. "명령:\n"
  246. " shell - 쉘 모드\n"
  247. " dump - 설정을 봅니다\n"
  248. "\n"
  249. "옵션:\n"
  250. " -h 이 도움말.\n"
  251. " -c=? 해당 설정 파일을 읽습니다\n"
  252. " -o=? 임의의 옵션을 설정합니다. 예를 들어 -o dir::cache=/tmp\n"
  253. #: cmdline/apt-get.cc:245
  254. #, fuzzy, c-format
  255. msgid "Can not find a package for architecture '%s'"
  256. msgstr "'%s' 정규식에 해당하는 패키지가 없습니다"
  257. #: cmdline/apt-get.cc:327
  258. #, fuzzy, c-format
  259. msgid "Can not find a package '%s' with version '%s'"
  260. msgstr "'%s' 정규식에 해당하는 패키지가 없습니다"
  261. #: cmdline/apt-get.cc:330
  262. #, fuzzy, c-format
  263. msgid "Can not find a package '%s' with release '%s'"
  264. msgstr "'%s' 정규식에 해당하는 패키지가 없습니다"
  265. #: cmdline/apt-get.cc:367
  266. #, c-format
  267. msgid "Picking '%s' as source package instead of '%s'\n"
  268. msgstr "소스 패키지로 '%s'을(를) '%s' 대신 선택합니다\n"
  269. #: cmdline/apt-get.cc:423
  270. #, fuzzy, c-format
  271. msgid "Can not find version '%s' of package '%s'"
  272. msgstr "'%2$s' 패키지의 '%1$s' 버전은 없으므로 무시합니다."
  273. #: cmdline/apt-get.cc:454
  274. #, c-format
  275. msgid "Couldn't find package %s"
  276. msgstr "%s 패키지를 찾을 수 없습니다"
  277. #: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81
  278. #, c-format
  279. msgid "%s set to manually installed.\n"
  280. msgstr "%s 패키지 수동설치로 지정합니다.\n"
  281. #: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83
  282. #, c-format
  283. msgid "%s set to automatically installed.\n"
  284. msgstr "%s 패키지는 수동설치로 지정합니다.\n"
  285. #: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127
  286. msgid ""
  287. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  288. "instead."
  289. msgstr ""
  290. #: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546
  291. msgid "Internal error, problem resolver broke stuff"
  292. msgstr "내부 오류, 문제 해결 프로그램이 무언가를 망가뜨렸습니다"
  293. #: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611
  294. msgid "Unable to lock the download directory"
  295. msgstr "다운로드 디렉터리를 잠글 수 없습니다"
  296. #: cmdline/apt-get.cc:726
  297. msgid "Must specify at least one package to fetch source for"
  298. msgstr "해당되는 소스 패키지를 가져올 패키지를 최소한 하나 지정해야 합니다"
  299. #: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058
  300. #, c-format
  301. msgid "Unable to find a source package for %s"
  302. msgstr "%s의 소스 패키지를 찾을 수 없습니다"
  303. #: cmdline/apt-get.cc:782
  304. #, c-format
  305. msgid ""
  306. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  307. "%s\n"
  308. msgstr ""
  309. "알림: '%s' 패키징은 다음 '%s' 버전 컨트롤 시스템에서 관리합니다:\n"
  310. "%s\n"
  311. #: cmdline/apt-get.cc:787
  312. #, fuzzy, c-format
  313. msgid ""
  314. "Please use:\n"
  315. "bzr branch %s\n"
  316. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  317. msgstr ""
  318. "패키지의 최근 (아마도 릴리스되지 않은) 업데이트를 받으려면\n"
  319. "다음과 같이 하십시오:\n"
  320. "bzr get %s\n"
  321. #: cmdline/apt-get.cc:839
  322. #, c-format
  323. msgid "Skipping already downloaded file '%s'\n"
  324. msgstr "이미 다운로드 받은 파일 '%s'은(는) 다시 받지 않고 건너 뜁니다.\n"
  325. #: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864
  326. #: apt-private/private-install.cc:186 apt-private/private-install.cc:189
  327. #, c-format
  328. msgid "Couldn't determine free space in %s"
  329. msgstr "%s의 여유 공간의 크기를 파악할 수 없습니다"
  330. #: cmdline/apt-get.cc:874
  331. #, c-format
  332. msgid "You don't have enough free space in %s"
  333. msgstr "%s에 충분한 공간이 없습니다"
  334. #. TRANSLATOR: The required space between number and unit is already included
  335. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  336. #: cmdline/apt-get.cc:883
  337. #, c-format
  338. msgid "Need to get %sB/%sB of source archives.\n"
  339. msgstr "소스 아카이브를 %s바이트/%s바이트 받아야 합니다.\n"
  340. #. TRANSLATOR: The required space between number and unit is already included
  341. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  342. #: cmdline/apt-get.cc:888
  343. #, c-format
  344. msgid "Need to get %sB of source archives.\n"
  345. msgstr "소스 아카이브를 %s바이트 받아야 합니다.\n"
  346. #: cmdline/apt-get.cc:894
  347. #, c-format
  348. msgid "Fetch source %s\n"
  349. msgstr "%s 소스를 가져옵니다\n"
  350. #: cmdline/apt-get.cc:912
  351. msgid "Failed to fetch some archives."
  352. msgstr "일부 아카이브를 가져오는데 실패했습니다."
  353. #: cmdline/apt-get.cc:917 apt-private/private-install.cc:313
  354. msgid "Download complete and in download only mode"
  355. msgstr "다운로드를 마쳤고 다운로드 전용 모드입니다"
  356. #: cmdline/apt-get.cc:942
  357. #, c-format
  358. msgid "Skipping unpack of already unpacked source in %s\n"
  359. msgstr "%s에 이미 풀려 있는 소스의 압축을 풀지 않고 건너 뜁니다.\n"
  360. #: cmdline/apt-get.cc:954
  361. #, c-format
  362. msgid "Unpack command '%s' failed.\n"
  363. msgstr "압축 풀기 명령 '%s' 실패.\n"
  364. #: cmdline/apt-get.cc:955
  365. #, c-format
  366. msgid "Check if the 'dpkg-dev' package is installed.\n"
  367. msgstr "'dpkg-dev' 패키지가 설치되었는지를 확인하십시오.\n"
  368. #: cmdline/apt-get.cc:983
  369. #, c-format
  370. msgid "Build command '%s' failed.\n"
  371. msgstr "빌드 명령 '%s' 실패.\n"
  372. #: cmdline/apt-get.cc:1002
  373. msgid "Child process failed"
  374. msgstr "하위 프로세스가 실패했습니다"
  375. #: cmdline/apt-get.cc:1021
  376. msgid "Must specify at least one package to check builddeps for"
  377. msgstr "해당되는 빌드 의존성을 검사할 패키지를 최소한 하나 지정해야 합니다"
  378. #: cmdline/apt-get.cc:1046
  379. #, c-format
  380. msgid ""
  381. "No architecture information available for %s. See apt.conf(5) APT::"
  382. "Architectures for setup"
  383. msgstr ""
  384. #: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073
  385. #, c-format
  386. msgid "Unable to get build-dependency information for %s"
  387. msgstr "%s의 빌드 의존성 정보를 가져올 수 없습니다"
  388. #: cmdline/apt-get.cc:1093
  389. #, c-format
  390. msgid "%s has no build depends.\n"
  391. msgstr "%s 패키지에 빌드 의존성이 없습니다.\n"
  392. #: cmdline/apt-get.cc:1263
  393. #, fuzzy, c-format
  394. msgid ""
  395. "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  396. "packages"
  397. msgstr ""
  398. "%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니"
  399. "다"
  400. #: cmdline/apt-get.cc:1281
  401. #, c-format
  402. msgid ""
  403. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  404. "found"
  405. msgstr ""
  406. "%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니"
  407. "다"
  408. #: cmdline/apt-get.cc:1304
  409. #, c-format
  410. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  411. msgstr ""
  412. "%2$s에 대한 %1$s 의존성을 만족시키는데 실패했습니다: 설치한 %3$s 패키지가 너"
  413. "무 최근 버전입니다"
  414. #: cmdline/apt-get.cc:1343
  415. #, fuzzy, c-format
  416. msgid ""
  417. "%s dependency for %s cannot be satisfied because candidate version of "
  418. "package %s can't satisfy version requirements"
  419. msgstr ""
  420. "%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지의 사용 가능한 버"
  421. "전 중에서는 이 버전 요구사항을 만족시킬 수 없습니다"
  422. #: cmdline/apt-get.cc:1349
  423. #, fuzzy, c-format
  424. msgid ""
  425. "%s dependency for %s cannot be satisfied because package %s has no candidate "
  426. "version"
  427. msgstr ""
  428. "%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니"
  429. "다"
  430. #: cmdline/apt-get.cc:1372
  431. #, c-format
  432. msgid "Failed to satisfy %s dependency for %s: %s"
  433. msgstr "%2$s에 대한 %1$s 의존성을 만족시키는데 실패했습니다: %3$s"
  434. #: cmdline/apt-get.cc:1387
  435. #, c-format
  436. msgid "Build-dependencies for %s could not be satisfied."
  437. msgstr "%s의 빌드 의존성을 만족시키지 못했습니다."
  438. #: cmdline/apt-get.cc:1392
  439. msgid "Failed to process build dependencies"
  440. msgstr "빌드 의존성을 처리하는데 실패했습니다"
  441. #: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497
  442. #, fuzzy, c-format
  443. msgid "Changelog for %s (%s)"
  444. msgstr "%s(%s)에 연결하는 중입니다"
  445. #: cmdline/apt-get.cc:1583
  446. msgid "Supported modules:"
  447. msgstr "지원하는 모듈:"
  448. #: cmdline/apt-get.cc:1624
  449. #, fuzzy
  450. msgid ""
  451. "Usage: apt-get [options] command\n"
  452. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  453. " apt-get [options] source pkg1 [pkg2 ...]\n"
  454. "\n"
  455. "apt-get is a simple command line interface for downloading and\n"
  456. "installing packages. The most frequently used commands are update\n"
  457. "and install.\n"
  458. "\n"
  459. "Commands:\n"
  460. " update - Retrieve new lists of packages\n"
  461. " upgrade - Perform an upgrade\n"
  462. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  463. " remove - Remove packages\n"
  464. " autoremove - Remove automatically all unused packages\n"
  465. " purge - Remove packages and config files\n"
  466. " source - Download source archives\n"
  467. " build-dep - Configure build-dependencies for source packages\n"
  468. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  469. " dselect-upgrade - Follow dselect selections\n"
  470. " clean - Erase downloaded archive files\n"
  471. " autoclean - Erase old downloaded archive files\n"
  472. " check - Verify that there are no broken dependencies\n"
  473. " changelog - Download and display the changelog for the given package\n"
  474. " download - Download the binary package into the current directory\n"
  475. "\n"
  476. "Options:\n"
  477. " -h This help text.\n"
  478. " -q Loggable output - no progress indicator\n"
  479. " -qq No output except for errors\n"
  480. " -d Download only - do NOT install or unpack archives\n"
  481. " -s No-act. Perform ordering simulation\n"
  482. " -y Assume Yes to all queries and do not prompt\n"
  483. " -f Attempt to correct a system with broken dependencies in place\n"
  484. " -m Attempt to continue if archives are unlocatable\n"
  485. " -u Show a list of upgraded packages as well\n"
  486. " -b Build the source package after fetching it\n"
  487. " -V Show verbose version numbers\n"
  488. " -c=? Read this configuration file\n"
  489. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  490. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  491. "pages for more information and options.\n"
  492. " This APT has Super Cow Powers.\n"
  493. msgstr ""
  494. "사용법: apt-get [옵션] 명령어\n"
  495. " apt-get [옵션] install|remove 패키지1 [패키지2 ...]\n"
  496. " apt-get [옵션] source 패키지1 [패키지2 ...]\n"
  497. "\n"
  498. "apt-get은 패키지를 내려받고 설치하는 간단한 명령행 인터페이스입니다.\n"
  499. "가장 자주 사용하는 명령은 update와 install입니다.\n"
  500. "\n"
  501. "명령어:\n"
  502. " update - 패키지 목록을 새로 가져옵니다\n"
  503. " upgrade - 업그레이드를 합니다\n"
  504. " install - 새 패키지를 설치합니다 (패키지는 libc6 식으로. libc6.deb 아님)\n"
  505. " remove - 패키지를 지웁니다\n"
  506. " autoremove - 사용하지 않는 패키지를 자동으로 전부 지웁니다\n"
  507. " purge - 패키지를 완전히 지웁니다\n"
  508. " source - 소스 아카이브를 다운로드합니다\n"
  509. " build-dep - 소스 패키지의 빌드 의존성을 설정합니다\n"
  510. " dist-upgrade - 배포판 업그레이드, apt-get(8) 참고\n"
  511. " dselect-upgrade - dselect에서 선택한 걸 따릅니다\n"
  512. " clean - 내려받은 아카이브 파일들을 지웁니다\n"
  513. " autoclean - 과거에 내려받은 아카이브 파일들을 지웁니다\n"
  514. " check - 의존성이 망가지지 않았는지 확인합니다\n"
  515. " markauto - 패키지를 자동 설치로 표시합니다\n"
  516. " unmarkauto - 패키지를 수동 설치로 표시합니다\n"
  517. "\n"
  518. "옵션:\n"
  519. " -h 이 도움말.\n"
  520. " -q 기록 가능한 출력 - 진행 상황 표시를 하지 않습니다\n"
  521. " -qq 오류만 출력 합니다\n"
  522. " -d 내려받기만 합니다 - 아카이브를 설치하거나 풀거나 하지 않습니다\n"
  523. " -s 실제 작업을 하지 않고, 순서대로 시뮬레이션만 합니다\n"
  524. " -y 모든 질문에 대해 \"예\"라고 가정하고 물어보지 않습니다\n"
  525. " -f 패키지 내용 검사가 실패해도 계속 진행해봅니다\n"
  526. " -m 아카이브를 찾을 수 없어도 계속 진행해봅니다\n"
  527. " -u 업그레이드하는 패키지의 목록도 봅니다\n"
  528. " -b 소스 패키지를 받은 다음에 빌드합니다\n"
  529. " -V 버전 번호를 자세히 봅니다\n"
  530. " -c=? 이 설정 파일을 읽습니다\n"
  531. " -o=? 임의의 옵션을 지정합니다. 예를 들어 -o dir::cache=/tmp\n"
  532. "더 자세한 정보와 옵션을 보려면 apt-get(8), sources.list(5)나\n"
  533. "apt.conf(5) 매뉴얼 페이지를 보십시오.\n"
  534. " 이 APT는 Super Cow Powers로 무장했습니다.\n"
  535. #: cmdline/apt-helper.cc:35
  536. #, fuzzy
  537. msgid "Must specify at least one pair url/filename"
  538. msgstr "해당되는 소스 패키지를 가져올 패키지를 최소한 하나 지정해야 합니다"
  539. #: cmdline/apt-helper.cc:52
  540. msgid "Download Failed"
  541. msgstr ""
  542. #: cmdline/apt-helper.cc:65
  543. msgid ""
  544. "Usage: apt-helper [options] command\n"
  545. " apt-helper [options] download-file uri target-path\n"
  546. "\n"
  547. "apt-helper is a internal helper for apt\n"
  548. "\n"
  549. "Commands:\n"
  550. " download-file - download the given uri to the target-path\n"
  551. "\n"
  552. " This APT helper has Super Meep Powers.\n"
  553. msgstr ""
  554. #: cmdline/apt-mark.cc:68
  555. #, fuzzy, c-format
  556. msgid "%s can not be marked as it is not installed.\n"
  557. msgstr "하지만 설치하지 않았습니다"
  558. #: cmdline/apt-mark.cc:74
  559. #, fuzzy, c-format
  560. msgid "%s was already set to manually installed.\n"
  561. msgstr "%s 패키지 수동설치로 지정합니다.\n"
  562. #: cmdline/apt-mark.cc:76
  563. #, fuzzy, c-format
  564. msgid "%s was already set to automatically installed.\n"
  565. msgstr "%s 패키지는 수동설치로 지정합니다.\n"
  566. #: cmdline/apt-mark.cc:241
  567. #, fuzzy, c-format
  568. msgid "%s was already set on hold.\n"
  569. msgstr "%s 패키지는 이미 최신 버전입니다.\n"
  570. #: cmdline/apt-mark.cc:243
  571. #, fuzzy, c-format
  572. msgid "%s was already not hold.\n"
  573. msgstr "%s 패키지는 이미 최신 버전입니다.\n"
  574. #: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202
  575. #: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219
  576. #, c-format
  577. msgid "Waited for %s but it wasn't there"
  578. msgstr "%s 프로세스를 기다렸지만 해당 프로세스가 없습니다"
  579. #: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322
  580. #, fuzzy, c-format
  581. msgid "%s set on hold.\n"
  582. msgstr "%s 패키지 수동설치로 지정합니다.\n"
  583. #: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327
  584. #, fuzzy, c-format
  585. msgid "Canceled hold on %s.\n"
  586. msgstr "%s 파일을 여는데 실패했습니다"
  587. #: cmdline/apt-mark.cc:345
  588. msgid "Executing dpkg failed. Are you root?"
  589. msgstr ""
  590. #: cmdline/apt-mark.cc:392
  591. msgid ""
  592. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  593. "\n"
  594. "apt-mark is a simple command line interface for marking packages\n"
  595. "as manually or automatically installed. It can also list marks.\n"
  596. "\n"
  597. "Commands:\n"
  598. " auto - Mark the given packages as automatically installed\n"
  599. " manual - Mark the given packages as manually installed\n"
  600. " hold - Mark a package as held back\n"
  601. " unhold - Unset a package set as held back\n"
  602. " showauto - Print the list of automatically installed packages\n"
  603. " showmanual - Print the list of manually installed packages\n"
  604. " showhold - Print the list of package on hold\n"
  605. "\n"
  606. "Options:\n"
  607. " -h This help text.\n"
  608. " -q Loggable output - no progress indicator\n"
  609. " -qq No output except for errors\n"
  610. " -s No-act. Just prints what would be done.\n"
  611. " -f read/write auto/manual marking in the given file\n"
  612. " -c=? Read this configuration file\n"
  613. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  614. "See the apt-mark(8) and apt.conf(5) manual pages for more information."
  615. msgstr ""
  616. #: cmdline/apt.cc:47
  617. msgid ""
  618. "Usage: apt [options] command\n"
  619. "\n"
  620. "CLI for apt.\n"
  621. "Basic commands: \n"
  622. " list - list packages based on package names\n"
  623. " search - search in package descriptions\n"
  624. " show - show package details\n"
  625. "\n"
  626. " update - update list of available packages\n"
  627. "\n"
  628. " install - install packages\n"
  629. " remove - remove packages\n"
  630. "\n"
  631. " upgrade - upgrade the system by installing/upgrading packages\n"
  632. " full-upgrade - upgrade the system by removing/installing/upgrading "
  633. "packages\n"
  634. "\n"
  635. " edit-sources - edit the source information file\n"
  636. msgstr ""
  637. #: methods/cdrom.cc:203
  638. #, c-format
  639. msgid "Unable to read the cdrom database %s"
  640. msgstr "CD-ROM 데이터베이스 %s을(를) 읽을 수 없습니다"
  641. #: methods/cdrom.cc:212
  642. msgid ""
  643. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  644. "cannot be used to add new CD-ROMs"
  645. msgstr ""
  646. "이 CD를 APT에서 인식하려면 apt-cdrom을 사용하십시오. apt-get update로는 새 "
  647. "CD를 추가할 수 없습니다."
  648. #: methods/cdrom.cc:222
  649. msgid "Wrong CD-ROM"
  650. msgstr "잘못된 CD"
  651. #: methods/cdrom.cc:249
  652. #, c-format
  653. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  654. msgstr "%s 안의 CD-ROM을 마운트 해제할 수 없습니다. 사용 중일 것입니다."
  655. #: methods/cdrom.cc:254
  656. msgid "Disk not found."
  657. msgstr "디스크가 없습니다."
  658. #: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278
  659. msgid "File not found"
  660. msgstr "파일이 없습니다"
  661. #: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598
  662. #: methods/rred.cc:608
  663. msgid "Failed to stat"
  664. msgstr "파일 정보를 읽는데 실패했습니다"
  665. #: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605
  666. msgid "Failed to set modification time"
  667. msgstr "파일 변경 시각을 설정하는데 실패했습니다"
  668. #: methods/file.cc:48
  669. msgid "Invalid URI, local URIS must not start with //"
  670. msgstr "URI가 틀렸습니다. 로컬 URI는 //로 시작해야 합니다."
  671. #. Login must be before getpeername otherwise dante won't work.
  672. #: methods/ftp.cc:177
  673. msgid "Logging in"
  674. msgstr "로그인하는 중입니다"
  675. #: methods/ftp.cc:183
  676. msgid "Unable to determine the peer name"
  677. msgstr "상대방의 이름을 알 수 없습니다"
  678. #: methods/ftp.cc:188
  679. msgid "Unable to determine the local name"
  680. msgstr "로컬 이름을 알 수 없습니다"
  681. #: methods/ftp.cc:219 methods/ftp.cc:247
  682. #, c-format
  683. msgid "The server refused the connection and said: %s"
  684. msgstr "서버에서 다음과 같이 연결을 거부했습니다: %s"
  685. #: methods/ftp.cc:225
  686. #, c-format
  687. msgid "USER failed, server said: %s"
  688. msgstr "USER 실패, 서버에서는: %s"
  689. #: methods/ftp.cc:232
  690. #, c-format
  691. msgid "PASS failed, server said: %s"
  692. msgstr "PASS 실패, 서버에서는: %s"
  693. #: methods/ftp.cc:252
  694. msgid ""
  695. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  696. "is empty."
  697. msgstr ""
  698. "프록시 서버를 지정했지만 로그인 스크립트가 없습니다. Acquire::ftp::"
  699. "ProxyLogin 값이 비어 있습니다."
  700. #: methods/ftp.cc:280
  701. #, c-format
  702. msgid "Login script command '%s' failed, server said: %s"
  703. msgstr "로그인 스크립트 명령 '%s' 실패, 서버에서는: %s"
  704. #: methods/ftp.cc:306
  705. #, c-format
  706. msgid "TYPE failed, server said: %s"
  707. msgstr "TYPE 실패, 서버에서는: %s"
  708. #: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240
  709. msgid "Connection timeout"
  710. msgstr "연결 시간 초과"
  711. #: methods/ftp.cc:350
  712. msgid "Server closed the connection"
  713. msgstr "서버에서 연결을 닫았습니다"
  714. #: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475
  715. #: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489
  716. #: apt-pkg/contrib/fileutl.cc:1491
  717. msgid "Read error"
  718. msgstr "읽기 오류"
  719. #: methods/ftp.cc:360 methods/rsh.cc:209
  720. msgid "A response overflowed the buffer."
  721. msgstr "응답이 버퍼 크기를 넘어갔습니다."
  722. #: methods/ftp.cc:377 methods/ftp.cc:389
  723. msgid "Protocol corruption"
  724. msgstr "프로토콜이 틀렸습니다"
  725. #: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872
  726. #: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606
  727. #: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613
  728. #: apt-pkg/contrib/fileutl.cc:1638
  729. msgid "Write error"
  730. msgstr "쓰기 오류"
  731. #: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742
  732. msgid "Could not create a socket"
  733. msgstr "소켓을 만들 수 없습니다"
  734. #: methods/ftp.cc:712
  735. msgid "Could not connect data socket, connection timed out"
  736. msgstr "데이터 소켓을 연결할 수 없습니다. 연결 시간이 초과되었습니다"
  737. #: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28
  738. msgid "Failed"
  739. msgstr "실패"
  740. #: methods/ftp.cc:718
  741. msgid "Could not connect passive socket."
  742. msgstr "수동(passive) 소켓을 연결할 수 없습니다."
  743. #: methods/ftp.cc:735
  744. msgid "getaddrinfo was unable to get a listening socket"
  745. msgstr "getaddrinfo에서 소켓에 listen할 수 없습니다"
  746. #: methods/ftp.cc:749
  747. msgid "Could not bind a socket"
  748. msgstr "소켓을 bind할 수 없습니다"
  749. #: methods/ftp.cc:753
  750. msgid "Could not listen on the socket"
  751. msgstr "소켓에 listen할 수 없습니다"
  752. #: methods/ftp.cc:760
  753. msgid "Could not determine the socket's name"
  754. msgstr "소켓의 이름을 알아낼 수 없습니다"
  755. #: methods/ftp.cc:792
  756. msgid "Unable to send PORT command"
  757. msgstr "PORT 명령을 보낼 수 없습니다"
  758. #: methods/ftp.cc:802
  759. #, c-format
  760. msgid "Unknown address family %u (AF_*)"
  761. msgstr "주소 %u의 종류(AF_*)를 알 수 없습니다"
  762. #: methods/ftp.cc:811
  763. #, c-format
  764. msgid "EPRT failed, server said: %s"
  765. msgstr "EPRT 실패, 서버에서는: %s"
  766. #: methods/ftp.cc:831
  767. msgid "Data socket connect timed out"
  768. msgstr "데이터 소켓 연결 시간 초과"
  769. #: methods/ftp.cc:838
  770. msgid "Unable to accept connection"
  771. msgstr "연결을 받을 수 없습니다"
  772. #: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316
  773. msgid "Problem hashing file"
  774. msgstr "파일 해싱에 문제가 있습니다"
  775. #: methods/ftp.cc:890
  776. #, c-format
  777. msgid "Unable to fetch file, server said '%s'"
  778. msgstr "파일을 가져올 수 없습니다. 서버 왈, '%s'"
  779. #: methods/ftp.cc:905 methods/rsh.cc:335
  780. msgid "Data socket timed out"
  781. msgstr "데이터 소켓에 제한 시간이 초과했습니다"
  782. #: methods/ftp.cc:935
  783. #, c-format
  784. msgid "Data transfer failed, server said '%s'"
  785. msgstr "데이터 전송 실패, 서버에서는: %s"
  786. #. Get the files information
  787. #: methods/ftp.cc:1014
  788. msgid "Query"
  789. msgstr "질의"
  790. #: methods/ftp.cc:1128
  791. msgid "Unable to invoke "
  792. msgstr "다음을 실행할 수 없습니다: "
  793. #: methods/connect.cc:76
  794. #, c-format
  795. msgid "Connecting to %s (%s)"
  796. msgstr "%s(%s)에 연결하는 중입니다"
  797. #: methods/connect.cc:87
  798. #, c-format
  799. msgid "[IP: %s %s]"
  800. msgstr "[IP: %s %s]"
  801. #: methods/connect.cc:94
  802. #, c-format
  803. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  804. msgstr "%s에 대한 소켓을 만들 수 없습니다 (f=%u t=%u p=%u)"
  805. #: methods/connect.cc:100
  806. #, c-format
  807. msgid "Cannot initiate the connection to %s:%s (%s)."
  808. msgstr "%s:%s에 연결을 초기화할 수 없습니다 (%s)."
  809. #: methods/connect.cc:108
  810. #, c-format
  811. msgid "Could not connect to %s:%s (%s), connection timed out"
  812. msgstr "%s:%s에 연결할 수 없습니다 (%s). 연결 제한 시간이 초과했습니다"
  813. #: methods/connect.cc:126
  814. #, c-format
  815. msgid "Could not connect to %s:%s (%s)."
  816. msgstr "%s:%s에 연결할 수 없습니다 (%s)."
  817. #. We say this mainly because the pause here is for the
  818. #. ssh connection that is still going
  819. #: methods/connect.cc:154 methods/rsh.cc:439
  820. #, c-format
  821. msgid "Connecting to %s"
  822. msgstr "%s에 연결하는 중입니다"
  823. #: methods/connect.cc:180 methods/connect.cc:199
  824. #, c-format
  825. msgid "Could not resolve '%s'"
  826. msgstr "'%s'의 주소를 알아낼 수 없습니다"
  827. #: methods/connect.cc:205
  828. #, c-format
  829. msgid "Temporary failure resolving '%s'"
  830. msgstr "'%s'의 주소를 알아내는데 임시로 실패했습니다"
  831. #: methods/connect.cc:209
  832. #, fuzzy, c-format
  833. msgid "System error resolving '%s:%s'"
  834. msgstr "'%s:%s'의 주소를 알아내는데 무언가 이상한 일이 발생했습니다 (%i - %s)"
  835. #: methods/connect.cc:211
  836. #, c-format
  837. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  838. msgstr "'%s:%s'의 주소를 알아내는데 무언가 이상한 일이 발생했습니다 (%i - %s)"
  839. #: methods/connect.cc:258
  840. #, c-format
  841. msgid "Unable to connect to %s:%s:"
  842. msgstr "%s:%s에 연결할 수 없습니다:"
  843. #: methods/gpgv.cc:168
  844. msgid ""
  845. "Internal error: Good signature, but could not determine key fingerprint?!"
  846. msgstr "내부 오류: 서명은 올바르지만 키 핑거프린트를 확인할 수 없습니다?!"
  847. #: methods/gpgv.cc:172
  848. msgid "At least one invalid signature was encountered."
  849. msgstr "최소한 하나 이상의 서명이 잘못되었습니다."
  850. #: methods/gpgv.cc:174
  851. msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)"
  852. msgstr ""
  853. "서명을 확인하는 'gpgv' 프로그램을 실행할 수 없습니다. (gpgv를 설치했습니까?)"
  854. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  855. #: methods/gpgv.cc:180
  856. #, c-format
  857. msgid ""
  858. "Clearsigned file isn't valid, got '%s' (does the network require "
  859. "authentication?)"
  860. msgstr ""
  861. #: methods/gpgv.cc:184
  862. msgid "Unknown error executing gpgv"
  863. msgstr "gpgv 실행 도중 알 수 없는 오류 발생"
  864. #: methods/gpgv.cc:217 methods/gpgv.cc:224
  865. msgid "The following signatures were invalid:\n"
  866. msgstr "다음 서명이 올바르지 않습니다:\n"
  867. #: methods/gpgv.cc:231
  868. msgid ""
  869. "The following signatures couldn't be verified because the public key is not "
  870. "available:\n"
  871. msgstr "다음 서명들은 공개키가 없기 때문에 인증할 수 없습니다:\n"
  872. #: methods/gzip.cc:69
  873. msgid "Empty files can't be valid archives"
  874. msgstr ""
  875. #: methods/http.cc:509
  876. msgid "Error writing to the file"
  877. msgstr "해당 파일에 쓰는데 오류가 발생했습니다"
  878. #: methods/http.cc:523
  879. msgid "Error reading from server. Remote end closed connection"
  880. msgstr "서버에서 읽고 연결을 닫는데 오류가 발생했습니다"
  881. #: methods/http.cc:525
  882. msgid "Error reading from server"
  883. msgstr "서버에서 읽는데 오류가 발생했습니다"
  884. #: methods/http.cc:561
  885. msgid "Error writing to file"
  886. msgstr "파일에 쓰는데 오류가 발생했습니다"
  887. #: methods/http.cc:621
  888. msgid "Select failed"
  889. msgstr "select가 실패했습니다"
  890. #: methods/http.cc:626
  891. msgid "Connection timed out"
  892. msgstr "연결 시간이 초과했습니다"
  893. #: methods/http.cc:649
  894. msgid "Error writing to output file"
  895. msgstr "출력 파일에 쓰는데 오류가 발생했습니다"
  896. #: methods/server.cc:51
  897. msgid "Waiting for headers"
  898. msgstr "헤더를 기다리는 중입니다"
  899. #: methods/server.cc:109
  900. msgid "Bad header line"
  901. msgstr "헤더 줄이 잘못되었습니다"
  902. #: methods/server.cc:134 methods/server.cc:141
  903. msgid "The HTTP server sent an invalid reply header"
  904. msgstr "HTTP 서버에서 잘못된 응답 헤더를 보냈습니다"
  905. #: methods/server.cc:171
  906. msgid "The HTTP server sent an invalid Content-Length header"
  907. msgstr "HTTP 서버에서 잘못된 Content-Length 헤더를 보냈습니다"
  908. #: methods/server.cc:194
  909. msgid "The HTTP server sent an invalid Content-Range header"
  910. msgstr "HTTP 서버에서 잘못된 Content-Range 헤더를 보냈습니다"
  911. #: methods/server.cc:196
  912. msgid "This HTTP server has broken range support"
  913. msgstr "HTTP 서버에 범위 지원 기능이 잘못되어 있습니다"
  914. #: methods/server.cc:220
  915. msgid "Unknown date format"
  916. msgstr "데이터 형식을 알 수 없습니다"
  917. #: methods/server.cc:489
  918. msgid "Bad header data"
  919. msgstr "헤더 데이터가 잘못되었습니다"
  920. #: methods/server.cc:506 methods/server.cc:562
  921. msgid "Connection failed"
  922. msgstr "연결이 실패했습니다"
  923. #: methods/server.cc:654
  924. msgid "Internal error"
  925. msgstr "내부 오류"
  926. #: apt-private/private-upgrade.cc:25
  927. msgid "Calculating upgrade... "
  928. msgstr "업그레이드를 계산하는 중입니다... "
  929. #: apt-private/private-upgrade.cc:30
  930. #, fuzzy
  931. msgid "Internal error, Upgrade broke stuff"
  932. msgstr "내부 오류, AllUpgrade 프로그램이 무언가를 망가뜨렸습니다"
  933. #: apt-private/private-upgrade.cc:32
  934. msgid "Done"
  935. msgstr "완료"
  936. #: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47
  937. msgid "Sorting"
  938. msgstr ""
  939. #: apt-private/private-list.cc:131
  940. msgid "Listing"
  941. msgstr ""
  942. #: apt-private/private-list.cc:164
  943. #, c-format
  944. msgid "There is %i additional version. Please use the '-a' switch to see it"
  945. msgid_plural ""
  946. "There are %i additional versions. Please use the '-a' switch to see them."
  947. msgstr[0] ""
  948. #: apt-private/private-cachefile.cc:93
  949. msgid "Correcting dependencies..."
  950. msgstr "의존성을 바로잡는 중입니다..."
  951. #: apt-private/private-cachefile.cc:96
  952. msgid " failed."
  953. msgstr " 실패."
  954. #: apt-private/private-cachefile.cc:99
  955. msgid "Unable to correct dependencies"
  956. msgstr "의존성을 바로잡을 수 없습니다"
  957. #: apt-private/private-cachefile.cc:102
  958. msgid "Unable to minimize the upgrade set"
  959. msgstr "업그레이드 집합을 최소화할 수 없습니다"
  960. #: apt-private/private-cachefile.cc:104
  961. msgid " Done"
  962. msgstr " 완료"
  963. #: apt-private/private-cachefile.cc:108
  964. msgid "You might want to run 'apt-get -f install' to correct these."
  965. msgstr ""
  966. "이 상황을 바로잡으려면 'apt-get -f install'을 실행해야 할 수도 있습니다."
  967. #: apt-private/private-cachefile.cc:111
  968. msgid "Unmet dependencies. Try using -f."
  969. msgstr "의존성이 맞지 않습니다. -f 옵션을 사용해 보십시오."
  970. #: apt-private/private-output.cc:102 apt-private/private-show.cc:84
  971. #: apt-private/private-show.cc:89
  972. msgid "unknown"
  973. msgstr ""
  974. #: apt-private/private-output.cc:232
  975. #, fuzzy, c-format
  976. msgid "[installed,upgradable to: %s]"
  977. msgstr " [설치함]"
  978. #: apt-private/private-output.cc:236
  979. #, fuzzy
  980. msgid "[installed,local]"
  981. msgstr " [설치함]"
  982. #: apt-private/private-output.cc:239
  983. msgid "[installed,auto-removable]"
  984. msgstr ""
  985. #: apt-private/private-output.cc:241
  986. #, fuzzy
  987. msgid "[installed,automatic]"
  988. msgstr " [설치함]"
  989. #: apt-private/private-output.cc:243
  990. #, fuzzy
  991. msgid "[installed]"
  992. msgstr " [설치함]"
  993. #: apt-private/private-output.cc:247
  994. #, c-format
  995. msgid "[upgradable from: %s]"
  996. msgstr ""
  997. #: apt-private/private-output.cc:251
  998. msgid "[residual-config]"
  999. msgstr ""
  1000. #: apt-private/private-output.cc:351
  1001. msgid "The following packages have unmet dependencies:"
  1002. msgstr "다음 패키지의 의존성이 맞지 않습니다:"
  1003. #: apt-private/private-output.cc:441
  1004. #, c-format
  1005. msgid "but %s is installed"
  1006. msgstr "하지만 %s 패키지를 설치했습니다"
  1007. #: apt-private/private-output.cc:443
  1008. #, c-format
  1009. msgid "but %s is to be installed"
  1010. msgstr "하지만 %s 패키지를 설치할 것입니다"
  1011. #: apt-private/private-output.cc:450
  1012. msgid "but it is not installable"
  1013. msgstr "하지만 설치할 수 없습니다"
  1014. #: apt-private/private-output.cc:452
  1015. msgid "but it is a virtual package"
  1016. msgstr "하지만 가상 패키지입니다"
  1017. #: apt-private/private-output.cc:455
  1018. msgid "but it is not installed"
  1019. msgstr "하지만 설치하지 않았습니다"
  1020. #: apt-private/private-output.cc:455
  1021. msgid "but it is not going to be installed"
  1022. msgstr "하지만 %s 패키지를 설치하지 않을 것입니다"
  1023. #: apt-private/private-output.cc:460
  1024. msgid " or"
  1025. msgstr " 혹은"
  1026. #: apt-private/private-output.cc:489
  1027. msgid "The following NEW packages will be installed:"
  1028. msgstr "다음 새 패키지를 설치할 것입니다:"
  1029. #: apt-private/private-output.cc:515
  1030. msgid "The following packages will be REMOVED:"
  1031. msgstr "다음 패키지를 지울 것입니다:"
  1032. #: apt-private/private-output.cc:537
  1033. msgid "The following packages have been kept back:"
  1034. msgstr "다음 패키지를 과거 버전으로 유지합니다:"
  1035. #: apt-private/private-output.cc:558
  1036. msgid "The following packages will be upgraded:"
  1037. msgstr "다음 패키지를 업그레이드할 것입니다:"
  1038. #: apt-private/private-output.cc:579
  1039. msgid "The following packages will be DOWNGRADED:"
  1040. msgstr "다음 패키지를 다운그레이드할 것입니다:"
  1041. #: apt-private/private-output.cc:599
  1042. msgid "The following held packages will be changed:"
  1043. msgstr "고정되었던 다음 패키지를 바꿀 것입니다:"
  1044. #: apt-private/private-output.cc:654
  1045. #, c-format
  1046. msgid "%s (due to %s) "
  1047. msgstr "%s (%s때문에) "
  1048. #: apt-private/private-output.cc:662
  1049. msgid ""
  1050. "WARNING: The following essential packages will be removed.\n"
  1051. "This should NOT be done unless you know exactly what you are doing!"
  1052. msgstr ""
  1053. "경고: 꼭 필요한 다음 패키지를 지우게 됩니다.\n"
  1054. "무슨 일을 하고 있는 지 정확히 알지 못한다면 지우지 마십시오!"
  1055. #: apt-private/private-output.cc:693
  1056. #, c-format
  1057. msgid "%lu upgraded, %lu newly installed, "
  1058. msgstr "%lu개 업그레이드, %lu개 새로 설치, "
  1059. #: apt-private/private-output.cc:697
  1060. #, c-format
  1061. msgid "%lu reinstalled, "
  1062. msgstr "%lu개 다시 설치, "
  1063. #: apt-private/private-output.cc:699
  1064. #, c-format
  1065. msgid "%lu downgraded, "
  1066. msgstr "%lu개 업그레이드, "
  1067. #: apt-private/private-output.cc:701
  1068. #, c-format
  1069. msgid "%lu to remove and %lu not upgraded.\n"
  1070. msgstr "%lu개 제거 및 %lu개 업그레이드 안 함.\n"
  1071. #: apt-private/private-output.cc:705
  1072. #, c-format
  1073. msgid "%lu not fully installed or removed.\n"
  1074. msgstr "%lu개를 완전히 설치하지 못했거나 지움.\n"
  1075. #. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
  1076. #. e.g. "Do you want to continue? [Y/n] "
  1077. #. The user has to answer with an input matching the
  1078. #. YESEXPR/NOEXPR defined in your l10n.
  1079. #: apt-private/private-output.cc:727
  1080. msgid "[Y/n]"
  1081. msgstr "[Y/n]"
  1082. #. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
  1083. #. e.g. "Should this file be removed? [y/N] "
  1084. #. The user has to answer with an input matching the
  1085. #. YESEXPR/NOEXPR defined in your l10n.
  1086. #: apt-private/private-output.cc:733
  1087. msgid "[y/N]"
  1088. msgstr "[y/N]"
  1089. #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
  1090. #: apt-private/private-output.cc:744
  1091. msgid "Y"
  1092. msgstr "Y"
  1093. #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
  1094. #: apt-private/private-output.cc:750
  1095. msgid "N"
  1096. msgstr ""
  1097. #: apt-private/private-output.cc:772 apt-pkg/cachefilter.cc:35
  1098. #, c-format
  1099. msgid "Regex compilation error - %s"
  1100. msgstr "정규식 컴파일 오류 - %s"
  1101. #: apt-private/private-update.cc:31
  1102. msgid "The update command takes no arguments"
  1103. msgstr "update 명령은 인수를 받지 않습니다"
  1104. #: apt-private/private-show.cc:156
  1105. #, c-format
  1106. msgid "There is %i additional record. Please use the '-a' switch to see it"
  1107. msgid_plural ""
  1108. "There are %i additional records. Please use the '-a' switch to see them."
  1109. msgstr[0] ""
  1110. #: apt-private/private-show.cc:163
  1111. msgid "not a real package (virtual)"
  1112. msgstr ""
  1113. #: apt-private/private-install.cc:81
  1114. msgid "Internal error, InstallPackages was called with broken packages!"
  1115. msgstr "내부 오류. 망가진 패키지에서 InstallPackages를 호출했습니다!"
  1116. #: apt-private/private-install.cc:90
  1117. msgid "Packages need to be removed but remove is disabled."
  1118. msgstr "패키지를 제거해야 하지만 제거가 금지되어 있습니다."
  1119. #: apt-private/private-install.cc:109
  1120. msgid "Internal error, Ordering didn't finish"
  1121. msgstr "내부 오류. 순서변경작업이 끝나지 않았습니다"
  1122. #: apt-private/private-install.cc:147
  1123. msgid "How odd... The sizes didn't match, email apt@packages.debian.org"
  1124. msgstr ""
  1125. "이상하게도 크기가 서로 다릅니다. apt@packages.debian.org로 이메일을 보내주십"
  1126. "시오."
  1127. #. TRANSLATOR: The required space between number and unit is already included
  1128. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  1129. #: apt-private/private-install.cc:154
  1130. #, c-format
  1131. msgid "Need to get %sB/%sB of archives.\n"
  1132. msgstr "%s바이트/%s바이트 아카이브를 받아야 합니다.\n"
  1133. #. TRANSLATOR: The required space between number and unit is already included
  1134. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1135. #: apt-private/private-install.cc:159
  1136. #, c-format
  1137. msgid "Need to get %sB of archives.\n"
  1138. msgstr "%s바이트 아카이브를 받아야 합니다.\n"
  1139. #. TRANSLATOR: The required space between number and unit is already included
  1140. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1141. #: apt-private/private-install.cc:166
  1142. #, c-format
  1143. msgid "After this operation, %sB of additional disk space will be used.\n"
  1144. msgstr "이 작업 후 %s바이트의 디스크 공간을 더 사용하게 됩니다.\n"
  1145. #. TRANSLATOR: The required space between number and unit is already included
  1146. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1147. #: apt-private/private-install.cc:171
  1148. #, c-format
  1149. msgid "After this operation, %sB disk space will be freed.\n"
  1150. msgstr "이 작업 후 %s바이트의 디스크 공간이 비워집니다.\n"
  1151. #: apt-private/private-install.cc:199
  1152. #, c-format
  1153. msgid "You don't have enough free space in %s."
  1154. msgstr "%s 안에 충분한 여유 공간이 없습니다."
  1155. #: apt-private/private-install.cc:209 apt-private/private-download.cc:54
  1156. msgid "There are problems and -y was used without --force-yes"
  1157. msgstr "문제가 발생했고 -y 옵션이 --force-yes 옵션 없이 사용되었습니다"
  1158. #: apt-private/private-install.cc:215 apt-private/private-install.cc:237
  1159. msgid "Trivial Only specified but this is not a trivial operation."
  1160. msgstr ""
  1161. "사소한 작업만 가능하도록(Trivial Only) 지정되었지만 이 작업은 사소한 작업이 "
  1162. "아닙니다."
  1163. # 입력을 받아야 한다. 한글 입력을 못 할 수 있으므로 원문 그대로 사용.
  1164. #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
  1165. #. careful with hard to type or special characters (like non-breaking spaces)
  1166. #: apt-private/private-install.cc:219
  1167. msgid "Yes, do as I say!"
  1168. msgstr "Yes, do as I say!"
  1169. #: apt-private/private-install.cc:221
  1170. #, c-format
  1171. msgid ""
  1172. "You are about to do something potentially harmful.\n"
  1173. "To continue type in the phrase '%s'\n"
  1174. " ?] "
  1175. msgstr ""
  1176. "시스템에 무언가 해가 되는 작업을 하려고 합니다.\n"
  1177. "계속하시려면 다음 문구를 입력하십시오: '%s'\n"
  1178. " ?] "
  1179. #: apt-private/private-install.cc:227 apt-private/private-install.cc:245
  1180. msgid "Abort."
  1181. msgstr "중단."
  1182. #: apt-private/private-install.cc:242
  1183. msgid "Do you want to continue?"
  1184. msgstr "계속 하시겠습니까?"
  1185. #: apt-private/private-install.cc:312
  1186. msgid "Some files failed to download"
  1187. msgstr "일부 파일을 받는데 실패했습니다"
  1188. #: apt-private/private-install.cc:319
  1189. msgid ""
  1190. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  1191. "missing?"
  1192. msgstr ""
  1193. "아카이브를 받을 수 없습니다. 아마도 apt-get update를 실행해야 하거나 --fix-"
  1194. "missing 옵션을 줘서 실행해야 할 것입니다."
  1195. #: apt-private/private-install.cc:323
  1196. msgid "--fix-missing and media swapping is not currently supported"
  1197. msgstr "--fix-missing 옵션과 동시에 미디어 바꾸기는 현재 지원하지 않습니다"
  1198. #: apt-private/private-install.cc:328
  1199. msgid "Unable to correct missing packages."
  1200. msgstr "빠진 패키지를 바로잡을 수 없습니다."
  1201. #: apt-private/private-install.cc:329
  1202. msgid "Aborting install."
  1203. msgstr "설치를 중단합니다."
  1204. #: apt-private/private-install.cc:365
  1205. msgid ""
  1206. "The following package disappeared from your system as\n"
  1207. "all files have been overwritten by other packages:"
  1208. msgid_plural ""
  1209. "The following packages disappeared from your system as\n"
  1210. "all files have been overwritten by other packages:"
  1211. msgstr[0] ""
  1212. "다음 패키지는 패키지의 파일을 모두 다른 패키지가\n"
  1213. "덮어썼기 때문에 사라졌습니다:"
  1214. #: apt-private/private-install.cc:369
  1215. msgid "Note: This is done automatically and on purpose by dpkg."
  1216. msgstr "주의: dpkg에서 자동으로 의도적으로 수행했습니다."
  1217. #: apt-private/private-install.cc:390
  1218. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  1219. msgstr "삭제를 할 수 없으므로 AutoRemover를 실행하지 못합니다"
  1220. #: apt-private/private-install.cc:498
  1221. msgid ""
  1222. "Hmm, seems like the AutoRemover destroyed something which really\n"
  1223. "shouldn't happen. Please file a bug report against apt."
  1224. msgstr ""
  1225. "AutoRemover가 뭔가를 망가뜨린 것으로 보입니다. 이 문제는 실제 일어나서는\n"
  1226. "안 됩니다. apt에 대해 버그 보고를 하십시오."
  1227. #.
  1228. #. if (Packages == 1)
  1229. #. {
  1230. #. c1out << std::endl;
  1231. #. c1out <<
  1232. #. _("Since you only requested a single operation it is extremely likely that\n"
  1233. #. "the package is simply not installable and a bug report against\n"
  1234. #. "that package should be filed.") << std::endl;
  1235. #. }
  1236. #.
  1237. #: apt-private/private-install.cc:501 apt-private/private-install.cc:642
  1238. msgid "The following information may help to resolve the situation:"
  1239. msgstr "이 상황을 해결하는데 다음 정보가 도움이 될 수도 있습니다:"
  1240. #: apt-private/private-install.cc:505
  1241. msgid "Internal Error, AutoRemover broke stuff"
  1242. msgstr "내부 오류, 문제 해결 프로그램이 무언가를 망가뜨렸습니다"
  1243. #: apt-private/private-install.cc:512
  1244. msgid ""
  1245. "The following package was automatically installed and is no longer required:"
  1246. msgid_plural ""
  1247. "The following packages were automatically installed and are no longer "
  1248. "required:"
  1249. msgstr[0] "다음 패키지가 자동으로 설치되었지만 더 이상 필요하지 않습니다:"
  1250. #: apt-private/private-install.cc:516
  1251. #, c-format
  1252. msgid "%lu package was automatically installed and is no longer required.\n"
  1253. msgid_plural ""
  1254. "%lu packages were automatically installed and are no longer required.\n"
  1255. msgstr[0] "패키지 %lu개가 자동으로 설치되었지만 더 이상 필요하지 않습니다.\n"
  1256. #: apt-private/private-install.cc:518
  1257. #, fuzzy
  1258. msgid "Use 'apt-get autoremove' to remove it."
  1259. msgid_plural "Use 'apt-get autoremove' to remove them."
  1260. msgstr[0] "이들을 지우려면 'apt-get autoremove'를 사용하십시오."
  1261. #: apt-private/private-install.cc:612
  1262. msgid "You might want to run 'apt-get -f install' to correct these:"
  1263. msgstr "다음을 바로잡으려면 'apt-get -f install'을 실행해 보십시오:"
  1264. # FIXME: specify a solution? 무슨 솔루션?
  1265. #: apt-private/private-install.cc:614
  1266. msgid ""
  1267. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  1268. "solution)."
  1269. msgstr ""
  1270. "의존성이 맞지 않습니다. 패키지 없이 'apt-get -f install'을 시도해 보십시오 "
  1271. "(아니면 해결 방법을 지정하십시오)."
  1272. #: apt-private/private-install.cc:627
  1273. msgid ""
  1274. "Some packages could not be installed. This may mean that you have\n"
  1275. "requested an impossible situation or if you are using the unstable\n"
  1276. "distribution that some required packages have not yet been created\n"
  1277. "or been moved out of Incoming."
  1278. msgstr ""
  1279. "몇몇 패키지를 설치할 수 없습니다. 요청한 상황이 불가능할 수도 있고,\n"
  1280. "불안정 배포판을 사용해서 일부 필요한 패키지를 아직 만들지 않았거나,\n"
  1281. "아직 Incoming에서 나오지 않은 경우일 수도 있습니다."
  1282. #: apt-private/private-install.cc:648
  1283. msgid "Broken packages"
  1284. msgstr "망가진 패키지"
  1285. #: apt-private/private-install.cc:701
  1286. msgid "The following extra packages will be installed:"
  1287. msgstr "다음 패키지를 더 설치할 것입니다:"
  1288. #: apt-private/private-install.cc:791
  1289. msgid "Suggested packages:"
  1290. msgstr "제안하는 패키지:"
  1291. #: apt-private/private-install.cc:792
  1292. msgid "Recommended packages:"
  1293. msgstr "추천하는 패키지:"
  1294. #: apt-private/private-main.cc:32
  1295. msgid ""
  1296. "NOTE: This is only a simulation!\n"
  1297. " apt-get needs root privileges for real execution.\n"
  1298. " Keep also in mind that locking is deactivated,\n"
  1299. " so don't depend on the relevance to the real current situation!"
  1300. msgstr ""
  1301. "알림: 시험 동작입니다!\n"
  1302. " 실행하려면 apt-get을 실행할 때 루트 권한이 필요합니다.\n"
  1303. " 또 잠금 기능을 사용하지 않는 상태이므로, 현재 상황에 의존하지\n"
  1304. " 않도록 하십시오!"
  1305. #: apt-private/private-download.cc:31
  1306. msgid "WARNING: The following packages cannot be authenticated!"
  1307. msgstr "경고: 다음 패키지를 인증할 수 없습니다!"
  1308. #: apt-private/private-download.cc:35
  1309. msgid "Authentication warning overridden.\n"
  1310. msgstr "인증 경고를 무시합니다.\n"
  1311. #: apt-private/private-download.cc:40 apt-private/private-download.cc:47
  1312. msgid "Some packages could not be authenticated"
  1313. msgstr "인증할 수 없는 패키지가 있습니다"
  1314. #: apt-private/private-download.cc:45
  1315. msgid "Install these packages without verification?"
  1316. msgstr "확인하지 않고 패키지를 설치하시겠습니까?"
  1317. #: apt-private/private-download.cc:86 apt-pkg/update.cc:77
  1318. #, c-format
  1319. msgid "Failed to fetch %s %s\n"
  1320. msgstr "%s 파일을 받는데 실패했습니다 %s\n"
  1321. #: apt-private/private-sources.cc:58
  1322. #, fuzzy, c-format
  1323. msgid "Failed to parse %s. Edit again? "
  1324. msgstr "%s 파일의 이름을 %s(으)로 바꾸는데 실패했습니다"
  1325. #: apt-private/private-sources.cc:70
  1326. #, c-format
  1327. msgid "Your '%s' file changed, please run 'apt-get update'."
  1328. msgstr ""
  1329. #: apt-private/private-search.cc:51
  1330. msgid "Full Text Search"
  1331. msgstr ""
  1332. #: apt-private/acqprogress.cc:66
  1333. msgid "Hit "
  1334. msgstr "기존 "
  1335. #: apt-private/acqprogress.cc:90
  1336. msgid "Get:"
  1337. msgstr "받기:"
  1338. #: apt-private/acqprogress.cc:121
  1339. msgid "Ign "
  1340. msgstr "무시"
  1341. #: apt-private/acqprogress.cc:125
  1342. msgid "Err "
  1343. msgstr "오류 "
  1344. #: apt-private/acqprogress.cc:146
  1345. #, c-format
  1346. msgid "Fetched %sB in %s (%sB/s)\n"
  1347. msgstr "내려받기 %s바이트, 소요시간 %s (%s바이트/초)\n"
  1348. #: apt-private/acqprogress.cc:236
  1349. #, c-format
  1350. msgid " [Working]"
  1351. msgstr " [작업중]"
  1352. #: apt-private/acqprogress.cc:297
  1353. #, c-format
  1354. msgid ""
  1355. "Media change: please insert the disc labeled\n"
  1356. " '%s'\n"
  1357. "in the drive '%s' and press enter\n"
  1358. msgstr ""
  1359. "미디어 바꾸기: '%2$s' 드라이브에 다음 레이블이 달린\n"
  1360. "디스크를 넣고 enter를 누르십시오\n"
  1361. " '%1$s'\n"
  1362. #. Only warn if there are no sources.list.d.
  1363. #. Only warn if there is no sources.list file.
  1364. #: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/clean.cc:40
  1365. #: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491
  1366. #: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286
  1367. #: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481
  1368. #: apt-pkg/contrib/cdromutl.cc:205
  1369. #, c-format
  1370. msgid "Unable to read %s"
  1371. msgstr "%s을(를) 읽을 수 없습니다"
  1372. #: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46
  1373. #: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497
  1374. #: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201
  1375. #: apt-pkg/contrib/cdromutl.cc:235
  1376. #, c-format
  1377. msgid "Unable to change to %s"
  1378. msgstr "%s 디렉토리로 이동할 수 없습니다"
  1379. #. FIXME: fallback to a default mirror here instead
  1380. #. and provide a config option to define that default
  1381. #: methods/mirror.cc:280
  1382. #, c-format
  1383. msgid "No mirror file '%s' found "
  1384. msgstr "'%s' 미러 파일이 없습니다 "
  1385. #. FIXME: fallback to a default mirror here instead
  1386. #. and provide a config option to define that default
  1387. #: methods/mirror.cc:287
  1388. #, fuzzy, c-format
  1389. msgid "Can not read mirror file '%s'"
  1390. msgstr "'%s' 미러 파일이 없습니다 "
  1391. #: methods/mirror.cc:315
  1392. #, fuzzy, c-format
  1393. msgid "No entry found in mirror file '%s'"
  1394. msgstr "'%s' 미러 파일이 없습니다 "
  1395. #: methods/mirror.cc:445
  1396. #, c-format
  1397. msgid "[Mirror: %s]"
  1398. msgstr "[미러 사이트: %s]"
  1399. #: methods/rsh.cc:102 ftparchive/multicompress.cc:171
  1400. msgid "Failed to create IPC pipe to subprocess"
  1401. msgstr "하위 프로세스에 대한 IPC 파이프를 만드는데 실패했습니다"
  1402. #: methods/rsh.cc:343
  1403. msgid "Connection closed prematurely"
  1404. msgstr "연결이 너무 빨리 끊어졌습니다"
  1405. #: dselect/install:33
  1406. msgid "Bad default setting!"
  1407. msgstr "기본 설정이 잘못되었습니다!"
  1408. #: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
  1409. #: dselect/install:106 dselect/update:45
  1410. msgid "Press enter to continue."
  1411. msgstr "계속 하시려면 enter를 누르십시오."
  1412. #: dselect/install:92
  1413. msgid "Do you want to erase any previously downloaded .deb files?"
  1414. msgstr "이전에 다운로드 받았던 .deb 파일을 지우시겠습니까?"
  1415. #: dselect/install:102
  1416. msgid "Some errors occurred while unpacking. Packages that were installed"
  1417. msgstr "압축을 푸는데 몇몇 오류가 발생했습니다. 설치된 패키지를"
  1418. #: dselect/install:103
  1419. msgid "will be configured. This may result in duplicate errors"
  1420. msgstr "설정합니다. 오류때문에 의존성을 만족하지 못해 설정하는 과정에서"
  1421. #: dselect/install:104
  1422. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1423. msgstr ""
  1424. "오류가 중복되어 나타날 수 있습니다. 하지만 상관없고, 이 메세지 위에 나온"
  1425. #: dselect/install:105
  1426. msgid ""
  1427. "above this message are important. Please fix them and run [I]nstall again"
  1428. msgstr "오류만 중요합니다. 이 오류를 고친 다음에 설치(I)를 다시 시도하십시오"
  1429. #: dselect/update:30
  1430. msgid "Merging available information"
  1431. msgstr "이용 가능 패키지 정보를 합칩니다"
  1432. #: apt-inst/filelist.cc:380
  1433. msgid "DropNode called on still linked node"
  1434. msgstr "DropNode가 아직 연결되어 있는 노드에 대해 호출되었습니다"
  1435. #: apt-inst/filelist.cc:412
  1436. msgid "Failed to locate the hash element!"
  1437. msgstr "해시 항목을 찾는데 실패했습니다"
  1438. #: apt-inst/filelist.cc:459
  1439. msgid "Failed to allocate diversion"
  1440. msgstr "diversion을 할당하는데 실패했습니다"
  1441. #: apt-inst/filelist.cc:464
  1442. msgid "Internal error in AddDiversion"
  1443. msgstr "AddDiversion에서 내부 오류"
  1444. #: apt-inst/filelist.cc:477
  1445. #, c-format
  1446. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1447. msgstr "전환된 파일을 덮어 쓰려고 합니다 (%s -> %s 및 %s/%s)"
  1448. #: apt-inst/filelist.cc:506
  1449. #, c-format
  1450. msgid "Double add of diversion %s -> %s"
  1451. msgstr "전환된 파일을 두 번 추가합니다 (%s -> %s)"
  1452. #: apt-inst/filelist.cc:549
  1453. #, c-format
  1454. msgid "Duplicate conf file %s/%s"
  1455. msgstr "%s/%s 설정 파일이 중복되었습니다"
  1456. #: apt-inst/extract.cc:101 apt-inst/extract.cc:172
  1457. #, c-format
  1458. msgid "The path %s is too long"
  1459. msgstr "경로 %s이(가) 너무 깁니다"
  1460. #: apt-inst/extract.cc:132
  1461. #, c-format
  1462. msgid "Unpacking %s more than once"
  1463. msgstr "%s을(를) 두 번 이상 풀었습니다"
  1464. #: apt-inst/extract.cc:142
  1465. #, c-format
  1466. msgid "The directory %s is diverted"
  1467. msgstr "%s 디렉터리가 전환되었습니다"
  1468. #: apt-inst/extract.cc:152
  1469. #, c-format
  1470. msgid "The package is trying to write to the diversion target %s/%s"
  1471. msgstr "이 패키지에서 전환된 대상에 쓰려고 합니다 (%s/%s)"
  1472. #: apt-inst/extract.cc:162 apt-inst/extract.cc:306
  1473. msgid "The diversion path is too long"
  1474. msgstr "전환하는 경로가 너무 깁니다"
  1475. #: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216
  1476. #: ftparchive/cachedb.cc:131
  1477. #, c-format
  1478. msgid "Failed to stat %s"
  1479. msgstr "%s의 정보를 읽는데 실패했습니다"
  1480. #: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374
  1481. #, c-format
  1482. msgid "Failed to rename %s to %s"
  1483. msgstr "%s 파일의 이름을 %s(으)로 바꾸는데 실패했습니다"
  1484. #: apt-inst/extract.cc:249
  1485. #, c-format
  1486. msgid "The directory %s is being replaced by a non-directory"
  1487. msgstr "%s 디렉터리를 디렉터리가 아닌 파일로 덮어쓰려고 합니다"
  1488. #: apt-inst/extract.cc:289
  1489. msgid "Failed to locate node in its hash bucket"
  1490. msgstr "해시 버킷에서 노드를 찾는데 실패했습니다"
  1491. #: apt-inst/extract.cc:293
  1492. msgid "The path is too long"
  1493. msgstr "경로가 너무 깁니다"
  1494. #: apt-inst/extract.cc:421
  1495. #, c-format
  1496. msgid "Overwrite package match with no version for %s"
  1497. msgstr "덮어 쓰는 패키지가 %s 패키지의 어떤 버전과도 맞지 않습니다"
  1498. #: apt-inst/extract.cc:438
  1499. #, c-format
  1500. msgid "File %s/%s overwrites the one in the package %s"
  1501. msgstr "%s/%s 파일은 %s 패키지에 있는 파일을 덮어 씁니다"
  1502. #: apt-inst/extract.cc:498
  1503. #, c-format
  1504. msgid "Unable to stat %s"
  1505. msgstr "%s의 정보를 읽을 수 없습니다"
  1506. #: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54
  1507. #, c-format
  1508. msgid "Failed to write file %s"
  1509. msgstr "%s 파일을 쓰는데 실패했습니다"
  1510. #: apt-inst/dirstream.cc:105
  1511. #, c-format
  1512. msgid "Failed to close file %s"
  1513. msgstr "%s 파일을 닫는데 실패했습니다"
  1514. #: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54
  1515. #: apt-inst/deb/debfile.cc:63
  1516. #, c-format
  1517. msgid "This is not a valid DEB archive, missing '%s' member"
  1518. msgstr "올바른 DEB 아카이브가 아닙니다. '%s' 멤버가 없습니다"
  1519. #: apt-inst/deb/debfile.cc:132
  1520. #, c-format
  1521. msgid "Internal error, could not locate member %s"
  1522. msgstr "내부 오류, %s 멤버를 찾을 수 없습니다"
  1523. #: apt-inst/deb/debfile.cc:227
  1524. msgid "Unparsable control file"
  1525. msgstr "control 파일을 파싱할 수 없습니다"
  1526. #: apt-inst/contrib/arfile.cc:76
  1527. msgid "Invalid archive signature"
  1528. msgstr "아카이브 서명이 틀렸습니다"
  1529. #: apt-inst/contrib/arfile.cc:84
  1530. msgid "Error reading archive member header"
  1531. msgstr "아카이브 멤버 헤더를 읽는데 오류가 발생했습니다"
  1532. #: apt-inst/contrib/arfile.cc:96
  1533. #, c-format
  1534. msgid "Invalid archive member header %s"
  1535. msgstr "아카이브 멤버 헤더 %s이(가) 잘못되었습니다"
  1536. #: apt-inst/contrib/arfile.cc:108
  1537. msgid "Invalid archive member header"
  1538. msgstr "아카이브 멤버 헤더가 잘못되었습니다"
  1539. #: apt-inst/contrib/arfile.cc:137
  1540. msgid "Archive is too short"
  1541. msgstr "아카이브 길이가 너무 짧습니다"
  1542. #: apt-inst/contrib/arfile.cc:141
  1543. msgid "Failed to read the archive headers"
  1544. msgstr "아카이브 헤더를 읽는데 실패했습니다"
  1545. #: apt-inst/contrib/extracttar.cc:124
  1546. msgid "Failed to create pipes"
  1547. msgstr "파이프 만들기가 실패했습니다"
  1548. #: apt-inst/contrib/extracttar.cc:151
  1549. msgid "Failed to exec gzip "
  1550. msgstr "gzip 실행이 실패했습니다"
  1551. #: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218
  1552. msgid "Corrupted archive"
  1553. msgstr "아카이브가 손상되었습니다"
  1554. #: apt-inst/contrib/extracttar.cc:203
  1555. msgid "Tar checksum failed, archive corrupted"
  1556. msgstr "tar 체크섬 실패, 아카이브가 손상되었습니다"
  1557. #: apt-inst/contrib/extracttar.cc:308
  1558. #, c-format
  1559. msgid "Unknown TAR header type %u, member %s"
  1560. msgstr "알 수 없는 TAR 헤더 타입 %u, 멤버 %s"
  1561. #: apt-pkg/clean.cc:61
  1562. #, c-format
  1563. msgid "Unable to stat %s."
  1564. msgstr "%s의 정보를 읽을 수 없습니다."
  1565. #: apt-pkg/install-progress.cc:57
  1566. #, c-format
  1567. msgid "Progress: [%3i%%]"
  1568. msgstr ""
  1569. #: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174
  1570. msgid "Running dpkg"
  1571. msgstr "dpkg 실행하는 중입니다"
  1572. #: apt-pkg/init.cc:146
  1573. #, c-format
  1574. msgid "Packaging system '%s' is not supported"
  1575. msgstr "'%s' 패키지 시스템을 지원하지 않습니다"
  1576. #: apt-pkg/init.cc:162
  1577. msgid "Unable to determine a suitable packaging system type"
  1578. msgstr "올바른 패키지 시스템 타입을 알아낼 수 없습니다"
  1579. #: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773
  1580. #, c-format
  1581. msgid "Wrote %i records.\n"
  1582. msgstr "레코드 %i개를 썼습니다.\n"
  1583. #: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775
  1584. #, c-format
  1585. msgid "Wrote %i records with %i missing files.\n"
  1586. msgstr "레코드 %i개를 파일 %i개가 빠진 상태로 썼습니다.\n"
  1587. #: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778
  1588. #, c-format
  1589. msgid "Wrote %i records with %i mismatched files\n"
  1590. msgstr "레코드 %i개를 파일 %i개가 맞지 않은 상태로 썼습니다\n"
  1591. #: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781
  1592. #, c-format
  1593. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  1594. msgstr "레코드 %i개를 파일 %i개가 빠지고 %i개가 맞지 않은 상태로 썼습니다\n"
  1595. #: apt-pkg/indexcopy.cc:515
  1596. #, c-format
  1597. msgid "Can't find authentication record for: %s"
  1598. msgstr "다음의 인증 기록을 찾을 수 없습니다: %s"
  1599. #: apt-pkg/indexcopy.cc:521
  1600. #, c-format
  1601. msgid "Hash mismatch for: %s"
  1602. msgstr "다음의 해시가 다릅니다: %s"
  1603. #: apt-pkg/acquire-worker.cc:116
  1604. #, c-format
  1605. msgid "The method driver %s could not be found."
  1606. msgstr "설치 방법 드라이버 %s을(를) 찾을 수 없습니다."
  1607. #: apt-pkg/acquire-worker.cc:118
  1608. #, fuzzy, c-format
  1609. msgid "Is the package %s installed?"
  1610. msgstr "'dpkg-dev' 패키지가 설치되었는지를 확인하십시오.\n"
  1611. #: apt-pkg/acquire-worker.cc:169
  1612. #, c-format
  1613. msgid "Method %s did not start correctly"
  1614. msgstr "설치 방법 %s이(가) 올바르게 시작하지 않았습니다"
  1615. #: apt-pkg/acquire-worker.cc:455
  1616. #, c-format
  1617. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  1618. msgstr ""
  1619. "'%2$s' 드라이브에 '%1$s'(으)로 표기된 디스크를 넣고 Enter를 누르십시오."
  1620. #: apt-pkg/cachefile.cc:94
  1621. msgid "The package lists or status file could not be parsed or opened."
  1622. msgstr "패키지 목록이나 상태 파일을 파싱할 수 없거나 열 수 없습니다."
  1623. #: apt-pkg/cachefile.cc:98
  1624. msgid "You may want to run apt-get update to correct these problems"
  1625. msgstr "apt-get update를 실행하면 이 문제를 바로잡을 수도 있습니다."
  1626. #: apt-pkg/cachefile.cc:116
  1627. msgid "The list of sources could not be read."
  1628. msgstr "소스 목록을 읽을 수 없습니다."
  1629. #: apt-pkg/pkgcache.cc:155
  1630. msgid "Empty package cache"
  1631. msgstr "패키지 캐시가 비어 있습니다"
  1632. #: apt-pkg/pkgcache.cc:161
  1633. msgid "The package cache file is corrupted"
  1634. msgstr "패키지 캐시 파일이 손상되었습니다"
  1635. #: apt-pkg/pkgcache.cc:166
  1636. msgid "The package cache file is an incompatible version"
  1637. msgstr "패키지 캐시 파일이 호환되지 않는 버전입니다"
  1638. #: apt-pkg/pkgcache.cc:169
  1639. #, fuzzy
  1640. msgid "The package cache file is corrupted, it is too small"
  1641. msgstr "패키지 캐시 파일이 손상되었습니다"
  1642. #: apt-pkg/pkgcache.cc:174
  1643. #, c-format
  1644. msgid "This APT does not support the versioning system '%s'"
  1645. msgstr "이 APT는 '%s' 버전 시스템을 지원하지 않습니다"
  1646. #: apt-pkg/pkgcache.cc:179
  1647. msgid "The package cache was built for a different architecture"
  1648. msgstr "패키지 캐시가 다른 아키텍쳐용입니다."
  1649. #: apt-pkg/pkgcache.cc:321
  1650. msgid "Depends"
  1651. msgstr "의존"
  1652. #: apt-pkg/pkgcache.cc:321
  1653. msgid "PreDepends"
  1654. msgstr "미리의존"
  1655. #: apt-pkg/pkgcache.cc:321
  1656. msgid "Suggests"
  1657. msgstr "제안"
  1658. #: apt-pkg/pkgcache.cc:322
  1659. msgid "Recommends"
  1660. msgstr "추천"
  1661. #: apt-pkg/pkgcache.cc:322
  1662. msgid "Conflicts"
  1663. msgstr "충돌"
  1664. #: apt-pkg/pkgcache.cc:322
  1665. msgid "Replaces"
  1666. msgstr "대체"
  1667. #: apt-pkg/pkgcache.cc:323
  1668. msgid "Obsoletes"
  1669. msgstr "없앰"
  1670. #: apt-pkg/pkgcache.cc:323
  1671. msgid "Breaks"
  1672. msgstr "망가뜨림"
  1673. #: apt-pkg/pkgcache.cc:323
  1674. msgid "Enhances"
  1675. msgstr "향상"
  1676. #: apt-pkg/pkgcache.cc:334
  1677. msgid "important"
  1678. msgstr "중요"
  1679. #: apt-pkg/pkgcache.cc:334
  1680. msgid "required"
  1681. msgstr "필수"
  1682. #: apt-pkg/pkgcache.cc:334
  1683. msgid "standard"
  1684. msgstr "표준"
  1685. #: apt-pkg/pkgcache.cc:335
  1686. msgid "optional"
  1687. msgstr "옵션"
  1688. #: apt-pkg/pkgcache.cc:335
  1689. msgid "extra"
  1690. msgstr "별도"
  1691. #: apt-pkg/pkgrecords.cc:38
  1692. #, c-format
  1693. msgid "Index file type '%s' is not supported"
  1694. msgstr "인덱스 파일 타입 '%s' 타입은 지원하지 않습니다"
  1695. #: apt-pkg/pkgcachegen.cc:93
  1696. msgid "Cache has an incompatible versioning system"
  1697. msgstr "캐시의 버전 시스템이 호환되지 않습니다"
  1698. #. TRANSLATOR: The first placeholder is a package name,
  1699. #. the other two should be copied verbatim as they include debug info
  1700. #: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234
  1701. #: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327
  1702. #: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382
  1703. #: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403
  1704. #: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415
  1705. #: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440
  1706. #: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517
  1707. #: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555
  1708. #: apt-pkg/pkgcachegen.cc:569
  1709. #, fuzzy, c-format
  1710. msgid "Error occurred while processing %s (%s%d)"
  1711. msgstr "%s 처리 중에 오류가 발생했습니다 (FindPkg)"
  1712. #: apt-pkg/pkgcachegen.cc:257
  1713. msgid "Wow, you exceeded the number of package names this APT is capable of."
  1714. msgstr "우와, 이 APT가 처리할 수 있는 패키지 이름 개수를 넘어갔습니다."
  1715. #: apt-pkg/pkgcachegen.cc:260
  1716. msgid "Wow, you exceeded the number of versions this APT is capable of."
  1717. msgstr "우와, 이 APT가 처리할 수 있는 버전 개수를 넘어갔습니다."
  1718. #: apt-pkg/pkgcachegen.cc:263
  1719. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  1720. msgstr "우와, 이 APT가 처리할 수 있는 설명 개수를 넘어갔습니다."
  1721. #: apt-pkg/pkgcachegen.cc:266
  1722. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  1723. msgstr "우와, 이 APT가 처리할 수 있는 의존성 개수를 넘어갔습니다."
  1724. #: apt-pkg/pkgcachegen.cc:576
  1725. #, c-format
  1726. msgid "Package %s %s was not found while processing file dependencies"
  1727. msgstr "파일 의존성을 처리하는 데, %s %s 패키지가 없습니다"
  1728. #: apt-pkg/pkgcachegen.cc:1211
  1729. #, c-format
  1730. msgid "Couldn't stat source package list %s"
  1731. msgstr "소스 패키지 목록 %s의 정보를 읽을 수 없습니다"
  1732. #: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403
  1733. #: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566
  1734. msgid "Reading package lists"
  1735. msgstr "패키지 목록을 읽는 중입니다"
  1736. #: apt-pkg/pkgcachegen.cc:1316
  1737. msgid "Collecting File Provides"
  1738. msgstr "파일에서 제공하는 것을 모으는 중입니다"
  1739. #: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259
  1740. #, c-format
  1741. msgid "Unable to write to %s"
  1742. msgstr "%s에 쓸 수 없습니다"
  1743. #: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515
  1744. msgid "IO Error saving source cache"
  1745. msgstr "소스 캐시를 저장하는데 입출력 오류가 발생했습니다"
  1746. #: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70
  1747. msgid "Send scenario to solver"
  1748. msgstr ""
  1749. #: apt-pkg/edsp.cc:216
  1750. msgid "Send request to solver"
  1751. msgstr ""
  1752. #: apt-pkg/edsp.cc:286
  1753. msgid "Prepare for receiving solution"
  1754. msgstr ""
  1755. #: apt-pkg/edsp.cc:293
  1756. msgid "External solver failed without a proper error message"
  1757. msgstr ""
  1758. #: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571
  1759. msgid "Execute external solver"
  1760. msgstr ""
  1761. #: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2045
  1762. #, c-format
  1763. msgid "rename failed, %s (%s -> %s)."
  1764. msgstr "이름 바꾸기가 실패했습니다. %s (%s -> %s)."
  1765. #: apt-pkg/acquire-item.cc:163
  1766. msgid "Hash Sum mismatch"
  1767. msgstr "해시 합이 맞지 않습니다"
  1768. #: apt-pkg/acquire-item.cc:168
  1769. msgid "Size mismatch"
  1770. msgstr "크기가 맞지 않습니다"
  1771. #: apt-pkg/acquire-item.cc:173
  1772. #, fuzzy
  1773. msgid "Invalid file format"
  1774. msgstr "잘못된 작업 %s"
  1775. #: apt-pkg/acquire-item.cc:1579
  1776. #, c-format
  1777. msgid ""
  1778. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  1779. "or malformed file)"
  1780. msgstr ""
  1781. #: apt-pkg/acquire-item.cc:1595
  1782. #, fuzzy, c-format
  1783. msgid "Unable to find hash sum for '%s' in Release file"
  1784. msgstr "Release 파일 %s 파일을 파싱할 수 없습니다"
  1785. #: apt-pkg/acquire-item.cc:1637
  1786. msgid "There is no public key available for the following key IDs:\n"
  1787. msgstr "다음 키 ID의 공개키가 없습니다:\n"
  1788. #: apt-pkg/acquire-item.cc:1675
  1789. #, c-format
  1790. msgid ""
  1791. "Release file for %s is expired (invalid since %s). Updates for this "
  1792. "repository will not be applied."
  1793. msgstr ""
  1794. #: apt-pkg/acquire-item.cc:1697
  1795. #, c-format
  1796. msgid "Conflicting distribution: %s (expected %s but got %s)"
  1797. msgstr "배포판 충돌: %s (예상값 %s, 실제값 %s)"
  1798. #: apt-pkg/acquire-item.cc:1727
  1799. #, c-format
  1800. msgid ""
  1801. "An error occurred during the signature verification. The repository is not "
  1802. "updated and the previous index files will be used. GPG error: %s: %s\n"
  1803. msgstr ""
  1804. "디지털 서명 확인에 오류가 발생했습니다. 저장고를 업데이트하지 않고\n"
  1805. "예전의 인덱스 파일을 사용합니다. GPG 오류: %s: %s\n"
  1806. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  1807. #: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742
  1808. #, c-format
  1809. msgid "GPG error: %s: %s"
  1810. msgstr "GPG 오류: %s: %s"
  1811. #: apt-pkg/acquire-item.cc:1865
  1812. #, c-format
  1813. msgid ""
  1814. "I wasn't able to locate a file for the %s package. This might mean you need "
  1815. "to manually fix this package. (due to missing arch)"
  1816. msgstr ""
  1817. "%s 패키지의 파일을 찾을 수 없습니다. 수동으로 이 패키지를 고쳐야 할 수도 있습"
  1818. "니다. (아키텍쳐가 빠졌기 때문입니다)"
  1819. #: apt-pkg/acquire-item.cc:1931
  1820. #, c-format
  1821. msgid "Can't find a source to download version '%s' of '%s'"
  1822. msgstr ""
  1823. #: apt-pkg/acquire-item.cc:1989
  1824. #, c-format
  1825. msgid ""
  1826. "The package index files are corrupted. No Filename: field for package %s."
  1827. msgstr ""
  1828. "패키지 인덱스 파일이 손상되었습니다. %s 패키지에 Filename: 필드가 없습니다."
  1829. #: apt-pkg/vendorlist.cc:85
  1830. #, c-format
  1831. msgid "Vendor block %s contains no fingerprint"
  1832. msgstr "벤더 블럭 %s의 핑거프린트가 없습니다"
  1833. #: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829
  1834. #, c-format
  1835. msgid "List directory %spartial is missing."
  1836. msgstr "목록 디렉터리 %spartial이 빠졌습니다."
  1837. #: apt-pkg/acquire.cc:91
  1838. #, c-format
  1839. msgid "Archives directory %spartial is missing."
  1840. msgstr "아카이브 디렉터리 %spartial이 빠졌습니다."
  1841. #: apt-pkg/acquire.cc:99
  1842. #, c-format
  1843. msgid "Unable to lock directory %s"
  1844. msgstr "%s 디렉터리를 잠글 수 없습니다"
  1845. #. only show the ETA if it makes sense
  1846. #. two days
  1847. #: apt-pkg/acquire.cc:899
  1848. #, c-format
  1849. msgid "Retrieving file %li of %li (%s remaining)"
  1850. msgstr "파일 받아오는 중: %2$li 중 %1$li (%3$s 남았음)"
  1851. #: apt-pkg/acquire.cc:901
  1852. #, c-format
  1853. msgid "Retrieving file %li of %li"
  1854. msgstr "파일 받아오는 중: %2$li 중 %1$li"
  1855. #: apt-pkg/update.cc:103 apt-pkg/update.cc:105
  1856. #, fuzzy
  1857. msgid ""
  1858. "Some index files failed to download. They have been ignored, or old ones "
  1859. "used instead."
  1860. msgstr ""
  1861. "일부 인덱스 파일을 다운로드하는데 실패했습니다. 해당 파일을 무시하거나 과거"
  1862. "의 버전을 대신 사용합니다."
  1863. #: apt-pkg/srcrecords.cc:52
  1864. msgid "You must put some 'source' URIs in your sources.list"
  1865. msgstr "sources.list에 '소스' URI를 써 넣어야 합니다"
  1866. #: apt-pkg/policy.cc:83
  1867. #, c-format
  1868. msgid ""
  1869. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  1870. "available in the sources"
  1871. msgstr ""
  1872. #: apt-pkg/policy.cc:422
  1873. #, c-format
  1874. msgid "Invalid record in the preferences file %s, no Package header"
  1875. msgstr "기본 설정 파일 %s에 잘못된 데이터가 있습니다. Package 헤더가 없습니다"
  1876. #: apt-pkg/policy.cc:444
  1877. #, c-format
  1878. msgid "Did not understand pin type %s"
  1879. msgstr "핀 타입 %s이(가) 무엇인지 이해할 수 없습니다"
  1880. #: apt-pkg/policy.cc:452
  1881. msgid "No priority (or zero) specified for pin"
  1882. msgstr "핀에 우선순위(혹은 0)를 지정하지 않았습니다"
  1883. #: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932
  1884. #, c-format
  1885. msgid ""
  1886. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  1887. "under APT::Immediate-Configure for details. (%d)"
  1888. msgstr ""
  1889. "'%s'에 대해 즉시 설정을 할 수 없습니다. 자세한 설명은 man 5 apt.conf 페이지에"
  1890. "서 APT::Immediate-Configure 항목을 보십시오. (%d)"
  1891. #: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535
  1892. #, fuzzy, c-format
  1893. msgid "Could not configure '%s'. "
  1894. msgstr "'%s' 파일을 열 수 없습니다"
  1895. #: apt-pkg/packagemanager.cc:577
  1896. #, c-format
  1897. msgid ""
  1898. "This installation run will require temporarily removing the essential "
  1899. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  1900. "you really want to do it, activate the APT::Force-LoopBreak option."
  1901. msgstr ""
  1902. "이번에 설치할 때 충돌/선의존성이 루프가 걸렸기 때문에 꼭 필요한 %s 패키지를 "
  1903. "잠깐 제거해야 합니다. 이 패키지를 제거하는 건 좋지 않지만, 정말 지우려면 "
  1904. "APT::Force-LoopBreak 옵션을 켜십시오."
  1905. #: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347
  1906. #, c-format
  1907. msgid "Line %u too long in source list %s."
  1908. msgstr "소스 리스트 %2$s의 %1$u번 줄이 너무 깁니다."
  1909. #: apt-pkg/cdrom.cc:571
  1910. msgid "Unmounting CD-ROM...\n"
  1911. msgstr "CD-ROM을 마운트 해제하는 중입니다...\n"
  1912. #: apt-pkg/cdrom.cc:586
  1913. #, c-format
  1914. msgid "Using CD-ROM mount point %s\n"
  1915. msgstr "CD-ROM 마운트 위치 %s 사용\n"
  1916. #: apt-pkg/cdrom.cc:599
  1917. msgid "Waiting for disc...\n"
  1918. msgstr "디스크를 기다리는 중입니다...\n"
  1919. #: apt-pkg/cdrom.cc:609
  1920. msgid "Mounting CD-ROM...\n"
  1921. msgstr "CD-ROM 마운트하는 중입니다...\n"
  1922. #: apt-pkg/cdrom.cc:620
  1923. msgid "Identifying... "
  1924. msgstr "알아보는 중입니다... "
  1925. #: apt-pkg/cdrom.cc:662
  1926. #, c-format
  1927. msgid "Stored label: %s\n"
  1928. msgstr "저장된 레이블: %s\n"
  1929. #: apt-pkg/cdrom.cc:680
  1930. msgid "Scanning disc for index files...\n"
  1931. msgstr "디스크에서 색인 파일을 찾는 중입니다...\n"
  1932. #: apt-pkg/cdrom.cc:734
  1933. #, c-format
  1934. msgid ""
  1935. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  1936. "%zu signatures\n"
  1937. msgstr "패키지 색인 %zu개, 소스 색인 %zu개, 번역 색인 %zu개, 서명 %zu개 발견\n"
  1938. #: apt-pkg/cdrom.cc:744
  1939. msgid ""
  1940. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  1941. "wrong architecture?"
  1942. msgstr ""
  1943. "패키지 파일이 하나도 없습니다. 아마도 데비안 디스크가 아니거나 아키텍처가 잘"
  1944. "못된 것 같습니다?"
  1945. #: apt-pkg/cdrom.cc:771
  1946. #, c-format
  1947. msgid "Found label '%s'\n"
  1948. msgstr "레이블 발견: %s \n"
  1949. #: apt-pkg/cdrom.cc:800
  1950. msgid "That is not a valid name, try again.\n"
  1951. msgstr "올바른 이름이 아닙니다. 다시 시도하십시오.\n"
  1952. #: apt-pkg/cdrom.cc:817
  1953. #, c-format
  1954. msgid ""
  1955. "This disc is called: \n"
  1956. "'%s'\n"
  1957. msgstr ""
  1958. "이 디스크는 다음과 같습니다: \n"
  1959. "'%s'\n"
  1960. #: apt-pkg/cdrom.cc:819
  1961. msgid "Copying package lists..."
  1962. msgstr "패키지 목록을 복사하는 중입니다..."
  1963. #: apt-pkg/cdrom.cc:863
  1964. msgid "Writing new source list\n"
  1965. msgstr "새 소스 리스트를 쓰는 중입니다\n"
  1966. #: apt-pkg/cdrom.cc:874
  1967. msgid "Source list entries for this disc are:\n"
  1968. msgstr "이 디스크의 소스 리스트 항목은 다음과 같습니다:\n"
  1969. #: apt-pkg/algorithms.cc:265
  1970. #, c-format
  1971. msgid ""
  1972. "The package %s needs to be reinstalled, but I can't find an archive for it."
  1973. msgstr ""
  1974. "%s 패키지를 다시 설치해야 하지만, 이 패키지의 아카이브를 찾을 수 없습니다."
  1975. #: apt-pkg/algorithms.cc:1086
  1976. msgid ""
  1977. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  1978. "held packages."
  1979. msgstr ""
  1980. "오류, pkgProblemResolver::Resolve가 망가졌습니다. 고정 패키지때문에 발생할 수"
  1981. "도 있습니다."
  1982. #: apt-pkg/algorithms.cc:1088
  1983. msgid "Unable to correct problems, you have held broken packages."
  1984. msgstr "문제를 바로잡을 수 없습니다. 망가진 고정 패키지가 있습니다."
  1985. #: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167
  1986. msgid "Building dependency tree"
  1987. msgstr "의존성 트리를 만드는 중입니다"
  1988. #: apt-pkg/depcache.cc:139
  1989. msgid "Candidate versions"
  1990. msgstr "후보 버전"
  1991. #: apt-pkg/depcache.cc:168
  1992. msgid "Dependency generation"
  1993. msgstr "의존성 만들기"
  1994. #: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225
  1995. msgid "Reading state information"
  1996. msgstr "상태 정보를 읽는 중입니다"
  1997. #: apt-pkg/depcache.cc:250
  1998. #, c-format
  1999. msgid "Failed to open StateFile %s"
  2000. msgstr "상태파일 %s 여는데 실패했습니다"
  2001. #: apt-pkg/depcache.cc:256
  2002. #, c-format
  2003. msgid "Failed to write temporary StateFile %s"
  2004. msgstr "임시 상태파일 %s 쓰는데 실패했습니다"
  2005. #: apt-pkg/tagfile.cc:140
  2006. #, c-format
  2007. msgid "Unable to parse package file %s (1)"
  2008. msgstr "패키지 파일 %s 파일을 파싱할 수 없습니다 (1)"
  2009. #: apt-pkg/tagfile.cc:237
  2010. #, c-format
  2011. msgid "Unable to parse package file %s (2)"
  2012. msgstr "패키지 파일 %s 파일을 파싱할 수 없습니다 (2)"
  2013. #: apt-pkg/cacheset.cc:489
  2014. #, c-format
  2015. msgid "Release '%s' for '%s' was not found"
  2016. msgstr "%2$s 패키지의 '%1$s' 릴리즈를 찾을 수 없습니다"
  2017. #: apt-pkg/cacheset.cc:492
  2018. #, c-format
  2019. msgid "Version '%s' for '%s' was not found"
  2020. msgstr "%2$s 패키지의 '%1$s' 버전을 찾을 수 없습니다"
  2021. #: apt-pkg/cacheset.cc:603
  2022. #, c-format
  2023. msgid "Couldn't find task '%s'"
  2024. msgstr "'%s' 작업을 찾을 수 없습니다"
  2025. #: apt-pkg/cacheset.cc:609
  2026. #, c-format
  2027. msgid "Couldn't find any package by regex '%s'"
  2028. msgstr "'%s' 정규식에 해당하는 패키지가 없습니다"
  2029. #: apt-pkg/cacheset.cc:615
  2030. #, fuzzy, c-format
  2031. msgid "Couldn't find any package by glob '%s'"
  2032. msgstr "'%s' 정규식에 해당하는 패키지가 없습니다"
  2033. #: apt-pkg/cacheset.cc:626
  2034. #, c-format
  2035. msgid "Can't select versions from package '%s' as it is purely virtual"
  2036. msgstr "'%s' 패키지는 가상 패키지이므로 버전을 선택할 수 없습니다"
  2037. #: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640
  2038. #, c-format
  2039. msgid ""
  2040. "Can't select installed nor candidate version from package '%s' as it has "
  2041. "neither of them"
  2042. msgstr ""
  2043. "'%s' 패키지에서 설치한 버전이나 후보 버전을 선택할 수 없습니다. 둘 다 아닙니"
  2044. "다."
  2045. #: apt-pkg/cacheset.cc:647
  2046. #, c-format
  2047. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2048. msgstr "'%s' 패키지에서 최신 버전을 선택할 수 없습니다. 가상 패키지입니다."
  2049. #: apt-pkg/cacheset.cc:655
  2050. #, c-format
  2051. msgid "Can't select candidate version from package %s as it has no candidate"
  2052. msgstr "'%s' 패키지에서 후보 버전을 선택할 수 없습니다. 후보가 없습니다."
  2053. #: apt-pkg/cacheset.cc:663
  2054. #, c-format
  2055. msgid "Can't select installed version from package %s as it is not installed"
  2056. msgstr "'%s' 패키지에서 설치한 버전을 선택할 수 없습니다. 설치하지 않았습니다."
  2057. #: apt-pkg/indexrecords.cc:78
  2058. #, c-format
  2059. msgid "Unable to parse Release file %s"
  2060. msgstr "Release 파일 %s 파일을 파싱할 수 없습니다"
  2061. #: apt-pkg/indexrecords.cc:86
  2062. #, c-format
  2063. msgid "No sections in Release file %s"
  2064. msgstr "Release 파일 %s에 섹션이 없습니다"
  2065. #: apt-pkg/indexrecords.cc:117
  2066. #, c-format
  2067. msgid "No Hash entry in Release file %s"
  2068. msgstr "Release 파일 %s에 Hash 항목이 없습니다"
  2069. #: apt-pkg/indexrecords.cc:130
  2070. #, c-format
  2071. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2072. msgstr "Release 파일 %s에 'Valid-Until' 항목이 잘못되었습니다"
  2073. #: apt-pkg/indexrecords.cc:149
  2074. #, c-format
  2075. msgid "Invalid 'Date' entry in Release file %s"
  2076. msgstr "Release 파일 %s에 'Date' 항목이 잘못되었습니다"
  2077. #: apt-pkg/sourcelist.cc:127
  2078. #, fuzzy, c-format
  2079. msgid "Malformed stanza %u in source list %s (URI parse)"
  2080. msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (URI 파싱)"
  2081. #: apt-pkg/sourcelist.cc:170
  2082. #, c-format
  2083. msgid "Malformed line %lu in source list %s ([option] unparseable)"
  2084. msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([option] 파싱 불가)"
  2085. #: apt-pkg/sourcelist.cc:173
  2086. #, c-format
  2087. msgid "Malformed line %lu in source list %s ([option] too short)"
  2088. msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([option] 너무 짧음)"
  2089. #: apt-pkg/sourcelist.cc:184
  2090. #, c-format
  2091. msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  2092. msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([%3$s] 대입이 아님)"
  2093. #: apt-pkg/sourcelist.cc:190
  2094. #, c-format
  2095. msgid "Malformed line %lu in source list %s ([%s] has no key)"
  2096. msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([%3$s] 키가 없음)"
  2097. #: apt-pkg/sourcelist.cc:193
  2098. #, c-format
  2099. msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  2100. msgstr ""
  2101. "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([%3$s] %4$s 키에 값이 없음)"
  2102. #: apt-pkg/sourcelist.cc:206
  2103. #, c-format
  2104. msgid "Malformed line %lu in source list %s (URI)"
  2105. msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (URI)"
  2106. #: apt-pkg/sourcelist.cc:208
  2107. #, c-format
  2108. msgid "Malformed line %lu in source list %s (dist)"
  2109. msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (dist)"
  2110. #: apt-pkg/sourcelist.cc:211
  2111. #, c-format
  2112. msgid "Malformed line %lu in source list %s (URI parse)"
  2113. msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (URI 파싱)"
  2114. #: apt-pkg/sourcelist.cc:217
  2115. #, c-format
  2116. msgid "Malformed line %lu in source list %s (absolute dist)"
  2117. msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (절대 dist)"
  2118. #: apt-pkg/sourcelist.cc:224
  2119. #, c-format
  2120. msgid "Malformed line %lu in source list %s (dist parse)"
  2121. msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (dist 파싱)"
  2122. #: apt-pkg/sourcelist.cc:335
  2123. #, c-format
  2124. msgid "Opening %s"
  2125. msgstr "%s 파일을 여는 중입니다"
  2126. #: apt-pkg/sourcelist.cc:371
  2127. #, c-format
  2128. msgid "Malformed line %u in source list %s (type)"
  2129. msgstr "소스 리스트 %2$s의 %1$u번 줄이 잘못되었습니다 (타입)"
  2130. #: apt-pkg/sourcelist.cc:375
  2131. #, c-format
  2132. msgid "Type '%s' is not known on line %u in source list %s"
  2133. msgstr "소스 목록 %3$s의 %2$u번 줄의 '%1$s' 타입을 알 수 없습니다"
  2134. #: apt-pkg/sourcelist.cc:416
  2135. #, fuzzy, c-format
  2136. msgid "Type '%s' is not known on stanza %u in source list %s"
  2137. msgstr "소스 목록 %3$s의 %2$u번 줄의 '%1$s' 타입을 알 수 없습니다"
  2138. #: apt-pkg/deb/dpkgpm.cc:95
  2139. #, c-format
  2140. msgid "Installing %s"
  2141. msgstr "%s 설치하는 중입니다"
  2142. #: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996
  2143. #, c-format
  2144. msgid "Configuring %s"
  2145. msgstr "%s 설정 중입니다"
  2146. #: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003
  2147. #, c-format
  2148. msgid "Removing %s"
  2149. msgstr "%s 패키지를 지우는 중입니다"
  2150. #: apt-pkg/deb/dpkgpm.cc:98
  2151. #, c-format
  2152. msgid "Completely removing %s"
  2153. msgstr "%s 패키지를 완전히 지우는 중입니다"
  2154. #: apt-pkg/deb/dpkgpm.cc:99
  2155. #, c-format
  2156. msgid "Noting disappearance of %s"
  2157. msgstr "%s 사라짐 발견했습니다"
  2158. #: apt-pkg/deb/dpkgpm.cc:100
  2159. #, c-format
  2160. msgid "Running post-installation trigger %s"
  2161. msgstr "설치 후 트리거 %s 실행하는 중입니다"
  2162. #. FIXME: use a better string after freeze
  2163. #: apt-pkg/deb/dpkgpm.cc:827
  2164. #, c-format
  2165. msgid "Directory '%s' missing"
  2166. msgstr "디렉터리 '%s' 없습니다."
  2167. #: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864
  2168. #, c-format
  2169. msgid "Could not open file '%s'"
  2170. msgstr "'%s' 파일을 열 수 없습니다"
  2171. #: apt-pkg/deb/dpkgpm.cc:989
  2172. #, c-format
  2173. msgid "Preparing %s"
  2174. msgstr "%s 준비 중입니다"
  2175. #: apt-pkg/deb/dpkgpm.cc:990
  2176. #, c-format
  2177. msgid "Unpacking %s"
  2178. msgstr "%s 푸는 중입니다"
  2179. #: apt-pkg/deb/dpkgpm.cc:995
  2180. #, c-format
  2181. msgid "Preparing to configure %s"
  2182. msgstr "%s 패키지를 설정할 준비하는 중입니다"
  2183. #: apt-pkg/deb/dpkgpm.cc:997
  2184. #, c-format
  2185. msgid "Installed %s"
  2186. msgstr "%s 설치"
  2187. #: apt-pkg/deb/dpkgpm.cc:1002
  2188. #, c-format
  2189. msgid "Preparing for removal of %s"
  2190. msgstr "%s 패키지를 지울 준비하는 중입니다"
  2191. #: apt-pkg/deb/dpkgpm.cc:1004
  2192. #, c-format
  2193. msgid "Removed %s"
  2194. msgstr "%s 지움"
  2195. #: apt-pkg/deb/dpkgpm.cc:1009
  2196. #, c-format
  2197. msgid "Preparing to completely remove %s"
  2198. msgstr "%s 패키지를 완전히 지울 준비를 하는 중입니다"
  2199. #: apt-pkg/deb/dpkgpm.cc:1010
  2200. #, c-format
  2201. msgid "Completely removed %s"
  2202. msgstr "%s 패키지를 완전히 지웠습니다"
  2203. #: apt-pkg/deb/dpkgpm.cc:1066
  2204. msgid "ioctl(TIOCGWINSZ) failed"
  2205. msgstr ""
  2206. #: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090
  2207. #, fuzzy, c-format
  2208. msgid "Can not write log (%s)"
  2209. msgstr "%s에 쓸 수 없습니다"
  2210. #: apt-pkg/deb/dpkgpm.cc:1069
  2211. msgid "Is /dev/pts mounted?"
  2212. msgstr ""
  2213. #: apt-pkg/deb/dpkgpm.cc:1090
  2214. msgid "Is stdout a terminal?"
  2215. msgstr ""
  2216. #: apt-pkg/deb/dpkgpm.cc:1568
  2217. msgid "Operation was interrupted before it could finish"
  2218. msgstr ""
  2219. #: apt-pkg/deb/dpkgpm.cc:1630
  2220. msgid "No apport report written because MaxReports is reached already"
  2221. msgstr "보고서를 작성하지 않습니다. 이미 MaxReports 값에 도달했습니다."
  2222. #. check if its not a follow up error
  2223. #: apt-pkg/deb/dpkgpm.cc:1635
  2224. msgid "dependency problems - leaving unconfigured"
  2225. msgstr "의존성 문제 - 설정하지 않은 상태로 남겨둡니다"
  2226. #: apt-pkg/deb/dpkgpm.cc:1637
  2227. msgid ""
  2228. "No apport report written because the error message indicates its a followup "
  2229. "error from a previous failure."
  2230. msgstr ""
  2231. "보고서를 작성하지 않습니다. 오류 메시지에 따르면 예전의 실패 때문에 생긴 부수"
  2232. "적인 오류입니다."
  2233. #: apt-pkg/deb/dpkgpm.cc:1643
  2234. msgid ""
  2235. "No apport report written because the error message indicates a disk full "
  2236. "error"
  2237. msgstr ""
  2238. "보고서를 작성하지 않습니다. 오류 메시지에 따르면 디스크가 가득 찼습니다."
  2239. #: apt-pkg/deb/dpkgpm.cc:1650
  2240. msgid ""
  2241. "No apport report written because the error message indicates a out of memory "
  2242. "error"
  2243. msgstr "보고서를 작성하지 않습니다. 오류 메시지에 따르면 메모리가 부족합니다."
  2244. #: apt-pkg/deb/dpkgpm.cc:1657 apt-pkg/deb/dpkgpm.cc:1663
  2245. #, fuzzy
  2246. msgid ""
  2247. "No apport report written because the error message indicates an issue on the "
  2248. "local system"
  2249. msgstr ""
  2250. "보고서를 작성하지 않습니다. 오류 메시지에 따르면 디스크가 가득 찼습니다."
  2251. #: apt-pkg/deb/dpkgpm.cc:1684
  2252. msgid ""
  2253. "No apport report written because the error message indicates a dpkg I/O error"
  2254. msgstr ""
  2255. "보고서를 작성하지 않습니다. 오류 메시지에 따르면 dpkg 입출력 오류입니다."
  2256. #: apt-pkg/deb/debsystem.cc:91
  2257. #, c-format
  2258. msgid ""
  2259. "Unable to lock the administration directory (%s), is another process using "
  2260. "it?"
  2261. msgstr ""
  2262. "관리 디렉터리를 (%s) 잠글 수 없습니다. 다른 프로세스가 사용하고 있지 않습니"
  2263. "까?"
  2264. #: apt-pkg/deb/debsystem.cc:94
  2265. #, c-format
  2266. msgid "Unable to lock the administration directory (%s), are you root?"
  2267. msgstr "관리 디렉터리를 (%s) 잠글 수 없습니다. 루트 사용자가 맞습니까?"
  2268. #. TRANSLATORS: the %s contains the recovery command, usually
  2269. #. dpkg --configure -a
  2270. #: apt-pkg/deb/debsystem.cc:110
  2271. #, c-format
  2272. msgid ""
  2273. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2274. msgstr ""
  2275. "dpkg가 중단되었습니다. 수동으로 '%s' 명령을 실행해 문제점을 바로잡으십시오."
  2276. #: apt-pkg/deb/debsystem.cc:128
  2277. msgid "Not locked"
  2278. msgstr "잠기지 않음"
  2279. #. d means days, h means hours, min means minutes, s means seconds
  2280. #: apt-pkg/contrib/strutl.cc:406
  2281. #, c-format
  2282. msgid "%lid %lih %limin %lis"
  2283. msgstr "%li일 %li시간 %li분 %li초"
  2284. #. h means hours, min means minutes, s means seconds
  2285. #: apt-pkg/contrib/strutl.cc:413
  2286. #, c-format
  2287. msgid "%lih %limin %lis"
  2288. msgstr "%li시간 %li분 %li초"
  2289. #. min means minutes, s means seconds
  2290. #: apt-pkg/contrib/strutl.cc:420
  2291. #, c-format
  2292. msgid "%limin %lis"
  2293. msgstr "%li분 %li초"
  2294. #. s means seconds
  2295. #: apt-pkg/contrib/strutl.cc:425
  2296. #, c-format
  2297. msgid "%lis"
  2298. msgstr "%li초"
  2299. #: apt-pkg/contrib/strutl.cc:1236
  2300. #, c-format
  2301. msgid "Selection %s not found"
  2302. msgstr "선택한 %s이(가) 없습니다"
  2303. #: apt-pkg/contrib/fileutl.cc:190
  2304. #, c-format
  2305. msgid "Not using locking for read only lock file %s"
  2306. msgstr "읽기 전용 잠금 파일 %s에 대해 잠금을 사용하지 않습니다"
  2307. #: apt-pkg/contrib/fileutl.cc:195
  2308. #, c-format
  2309. msgid "Could not open lock file %s"
  2310. msgstr "잠금 파일 %s 파일을 열 수 없습니다"
  2311. #: apt-pkg/contrib/fileutl.cc:218
  2312. #, c-format
  2313. msgid "Not using locking for nfs mounted lock file %s"
  2314. msgstr "NFS로 마운트된 잠금 파일 %s에 대해 잠금을 사용하지 않습니다"
  2315. #: apt-pkg/contrib/fileutl.cc:223
  2316. #, c-format
  2317. msgid "Could not get lock %s"
  2318. msgstr "%s 잠금 파일을 얻을 수 없습니다"
  2319. #: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474
  2320. #, c-format
  2321. msgid "List of files can't be created as '%s' is not a directory"
  2322. msgstr ""
  2323. #: apt-pkg/contrib/fileutl.cc:394
  2324. #, c-format
  2325. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  2326. msgstr ""
  2327. #: apt-pkg/contrib/fileutl.cc:412
  2328. #, c-format
  2329. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  2330. msgstr ""
  2331. #: apt-pkg/contrib/fileutl.cc:421
  2332. #, c-format
  2333. msgid ""
  2334. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  2335. msgstr ""
  2336. #: apt-pkg/contrib/fileutl.cc:824
  2337. #, c-format
  2338. msgid "Sub-process %s received a segmentation fault."
  2339. msgstr "하위 프로세스 %s 프로세스가 세그멘테이션 오류를 받았습니다."
  2340. #: apt-pkg/contrib/fileutl.cc:826
  2341. #, c-format
  2342. msgid "Sub-process %s received signal %u."
  2343. msgstr "하위 프로세스 %s 프로세스가 %u번 시그널을 받았습니다."
  2344. #: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239
  2345. #, c-format
  2346. msgid "Sub-process %s returned an error code (%u)"
  2347. msgstr "하위 프로세스 %s 프로세스가 오류 코드(%u)를 리턴했습니다"
  2348. #: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232
  2349. #, c-format
  2350. msgid "Sub-process %s exited unexpectedly"
  2351. msgstr "하위 프로세스 %s 프로세스가 예상치 못하게 끝났습니다"
  2352. #: apt-pkg/contrib/fileutl.cc:913
  2353. #, c-format
  2354. msgid "Problem closing the gzip file %s"
  2355. msgstr "%s gzip 파일을 닫는데 문제가 있습니다"
  2356. #: apt-pkg/contrib/fileutl.cc:1101
  2357. #, c-format
  2358. msgid "Could not open file %s"
  2359. msgstr "%s 파일을 열 수 없습니다"
  2360. #: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207
  2361. #, c-format
  2362. msgid "Could not open file descriptor %d"
  2363. msgstr "%d 파일 디스크립터를 열 수 없습니다"
  2364. #: apt-pkg/contrib/fileutl.cc:1314
  2365. msgid "Failed to create subprocess IPC"
  2366. msgstr "하위 프로세스 IPC를 만드는데 실패했습니다"
  2367. #: apt-pkg/contrib/fileutl.cc:1372
  2368. msgid "Failed to exec compressor "
  2369. msgstr "다음 압축 프로그램을 실행하는데 실패했습니다: "
  2370. #: apt-pkg/contrib/fileutl.cc:1513
  2371. #, fuzzy, c-format
  2372. msgid "read, still have %llu to read but none left"
  2373. msgstr "%lu만큼 더 읽어야 하지만 더 이상 읽을 데이터가 없습니다"
  2374. #: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648
  2375. #, fuzzy, c-format
  2376. msgid "write, still have %llu to write but couldn't"
  2377. msgstr "%lu만큼 더 써야 하지만 더 이상 쓸 수 없습니다"
  2378. #: apt-pkg/contrib/fileutl.cc:1913
  2379. #, c-format
  2380. msgid "Problem closing the file %s"
  2381. msgstr "%s 파일을 닫는데 문제가 있습니다"
  2382. #: apt-pkg/contrib/fileutl.cc:1925
  2383. #, c-format
  2384. msgid "Problem renaming the file %s to %s"
  2385. msgstr "%s 파일을 %s(으)로 이름을 바꾸는데 문제가 있습니다"
  2386. #: apt-pkg/contrib/fileutl.cc:1936
  2387. #, c-format
  2388. msgid "Problem unlinking the file %s"
  2389. msgstr "%s 파일을 삭제하는데 문제가 있습니다"
  2390. #: apt-pkg/contrib/fileutl.cc:1949
  2391. msgid "Problem syncing the file"
  2392. msgstr "파일을 동기화하는데 문제가 있습니다"
  2393. #: apt-pkg/contrib/progress.cc:148
  2394. #, c-format
  2395. msgid "%c%s... Error!"
  2396. msgstr "%c%s... 오류!"
  2397. #: apt-pkg/contrib/progress.cc:150
  2398. #, c-format
  2399. msgid "%c%s... Done"
  2400. msgstr "%c%s... 완료"
  2401. #: apt-pkg/contrib/progress.cc:181
  2402. msgid "..."
  2403. msgstr ""
  2404. #. Print the spinner
  2405. #: apt-pkg/contrib/progress.cc:197
  2406. #, fuzzy, c-format
  2407. msgid "%c%s... %u%%"
  2408. msgstr "%c%s... 완료"
  2409. #: apt-pkg/contrib/mmap.cc:79
  2410. msgid "Can't mmap an empty file"
  2411. msgstr "빈 파일에 메모리 매핑할 수 없습니다"
  2412. #: apt-pkg/contrib/mmap.cc:111
  2413. #, c-format
  2414. msgid "Couldn't duplicate file descriptor %i"
  2415. msgstr "%i 파일 디스크립터를 복사할 수 없습니다"
  2416. #: apt-pkg/contrib/mmap.cc:119
  2417. #, fuzzy, c-format
  2418. msgid "Couldn't make mmap of %llu bytes"
  2419. msgstr "%lu바이트를 메모리 매핑할 수 없습니다"
  2420. #: apt-pkg/contrib/mmap.cc:146
  2421. msgid "Unable to close mmap"
  2422. msgstr "mmap을 닫을 수 없습니다"
  2423. #: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202
  2424. msgid "Unable to synchronize mmap"
  2425. msgstr "mmap을 동기화할 수 없습니다"
  2426. #: apt-pkg/contrib/mmap.cc:290
  2427. #, c-format
  2428. msgid "Couldn't make mmap of %lu bytes"
  2429. msgstr "%lu바이트를 메모리 매핑할 수 없습니다"
  2430. #: apt-pkg/contrib/mmap.cc:322
  2431. msgid "Failed to truncate file"
  2432. msgstr "파일을 자르는데 실패했습니다"
  2433. #: apt-pkg/contrib/mmap.cc:341
  2434. #, c-format
  2435. msgid ""
  2436. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  2437. "Current value: %lu. (man 5 apt.conf)"
  2438. msgstr ""
  2439. "동적 mmap이 한계를 벗어났습니다. APT::Cache-Start의 크기를 높이십시오. 현재 "
  2440. "값: %lu. (man 5 apt.conf)"
  2441. #: apt-pkg/contrib/mmap.cc:446
  2442. #, c-format
  2443. msgid ""
  2444. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  2445. "reached."
  2446. msgstr "mmap 크기를 늘릴 수 없습니다. 이미 %lu 바이트 한계에 도달했습니다."
  2447. #: apt-pkg/contrib/mmap.cc:449
  2448. msgid ""
  2449. "Unable to increase size of the MMap as automatic growing is disabled by user."
  2450. msgstr ""
  2451. "mmap 크기를 늘릴 수 없습니다. 자동으로 늘리는 기능을 사용자가 금지했습니다."
  2452. #: apt-pkg/contrib/cdromutl.cc:65
  2453. #, c-format
  2454. msgid "Unable to stat the mount point %s"
  2455. msgstr "마운트 위치 %s의 정보를 읽을 수 없습니다"
  2456. #: apt-pkg/contrib/cdromutl.cc:246
  2457. msgid "Failed to stat the cdrom"
  2458. msgstr "CD-ROM의 정보를 읽을 수 없습니다"
  2459. #: apt-pkg/contrib/configuration.cc:519
  2460. #, c-format
  2461. msgid "Unrecognized type abbreviation: '%c'"
  2462. msgstr "이 타입 줄임말을 알 수 없습니다: '%c'"
  2463. #: apt-pkg/contrib/configuration.cc:633
  2464. #, c-format
  2465. msgid "Opening configuration file %s"
  2466. msgstr "설정 파일 %s 파일을 여는 중입니다"
  2467. #: apt-pkg/contrib/configuration.cc:801
  2468. #, c-format
  2469. msgid "Syntax error %s:%u: Block starts with no name."
  2470. msgstr "문법 오류 %s:%u: 블럭이 이름으로 시작하지 않습니다."
  2471. #: apt-pkg/contrib/configuration.cc:820
  2472. #, c-format
  2473. msgid "Syntax error %s:%u: Malformed tag"
  2474. msgstr "문법 오류 %s:%u: 태그의 형식이 잘못되었습니다"
  2475. #: apt-pkg/contrib/configuration.cc:837
  2476. #, c-format
  2477. msgid "Syntax error %s:%u: Extra junk after value"
  2478. msgstr "문법 오류 %s:%u: 값 뒤에 쓰레기 데이터가 더 있습니다"
  2479. #: apt-pkg/contrib/configuration.cc:877
  2480. #, c-format
  2481. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  2482. msgstr "문법 오류 %s:%u: 지시어는 맨 위 단계에서만 쓸 수 있습니다"
  2483. #: apt-pkg/contrib/configuration.cc:884
  2484. #, c-format
  2485. msgid "Syntax error %s:%u: Too many nested includes"
  2486. msgstr "문법 오류 %s:%u: include가 너무 많이 겹쳐 있습니다"
  2487. #: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893
  2488. #, c-format
  2489. msgid "Syntax error %s:%u: Included from here"
  2490. msgstr "문법 오류 %s:%u: 여기서 include됩니다"
  2491. #: apt-pkg/contrib/configuration.cc:897
  2492. #, c-format
  2493. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  2494. msgstr "문법 오류 %s:%u: 지원하지 않는 지시어 '%s'"
  2495. #: apt-pkg/contrib/configuration.cc:900
  2496. #, c-format
  2497. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  2498. msgstr "문법 오류 %s:%u: clear 지시어는 인수로 option 트리를 지정해야 합니다"
  2499. #: apt-pkg/contrib/configuration.cc:950
  2500. #, c-format
  2501. msgid "Syntax error %s:%u: Extra junk at end of file"
  2502. msgstr "문법 오류 %s:%u: 파일의 끝에 쓰레기 데이터가 더 있습니다"
  2503. #. TRANSLATOR: %s is the trusted keyring parts directory
  2504. #: apt-pkg/contrib/gpgv.cc:72
  2505. #, c-format
  2506. msgid "No keyring installed in %s."
  2507. msgstr "%s에 키 모음을 설치하지 않았습니다."
  2508. #: apt-pkg/contrib/cmndline.cc:121
  2509. #, c-format
  2510. msgid "Command line option '%c' [from %s] is not known."
  2511. msgstr "명령행 옵션 '%c' 옵션을 [%s에서] 알 수 없습니다."
  2512. #: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155
  2513. #: apt-pkg/contrib/cmndline.cc:163
  2514. #, c-format
  2515. msgid "Command line option %s is not understood"
  2516. msgstr "명령행 옵션 '%s' 옵션을 알 수 없습니다"
  2517. #: apt-pkg/contrib/cmndline.cc:168
  2518. #, c-format
  2519. msgid "Command line option %s is not boolean"
  2520. msgstr "명령행 옵션 '%s' 옵션은 불리언이 아닙니다"
  2521. #: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230
  2522. #, c-format
  2523. msgid "Option %s requires an argument."
  2524. msgstr "%s 옵션에는 인수가 필요합니다."
  2525. #: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249
  2526. #, c-format
  2527. msgid "Option %s: Configuration item specification must have an =<val>."
  2528. msgstr "%s 옵션: 설정 항목 지정은 =<값> 형태여야 합니다."
  2529. #: apt-pkg/contrib/cmndline.cc:278
  2530. #, c-format
  2531. msgid "Option %s requires an integer argument, not '%s'"
  2532. msgstr "%s 옵션에는 정수 인수가 필요합니다. '%s'이(가) 아닙니다"
  2533. #: apt-pkg/contrib/cmndline.cc:309
  2534. #, c-format
  2535. msgid "Option '%s' is too long"
  2536. msgstr "'%s' 옵션이 너무 깁니다"
  2537. #: apt-pkg/contrib/cmndline.cc:341
  2538. #, c-format
  2539. msgid "Sense %s is not understood, try true or false."
  2540. msgstr "%s 센스를 이해할 수 없습니다. 참 아니면 거짓으로 해 보십시오."
  2541. #: apt-pkg/contrib/cmndline.cc:391
  2542. #, c-format
  2543. msgid "Invalid operation %s"
  2544. msgstr "잘못된 작업 %s"
  2545. #: cmdline/apt-extracttemplates.cc:224
  2546. msgid ""
  2547. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  2548. "\n"
  2549. "apt-extracttemplates is a tool to extract config and template info\n"
  2550. "from debian packages\n"
  2551. "\n"
  2552. "Options:\n"
  2553. " -h This help text\n"
  2554. " -t Set the temp dir\n"
  2555. " -c=? Read this configuration file\n"
  2556. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  2557. msgstr ""
  2558. "사용법: apt-extracttemplates 파일1 [파일2 ...]\n"
  2559. "\n"
  2560. "apt-extracttemplates는 데비안 패키지에서 설정 및 서식 정보를 뽑아내는\n"
  2561. "도구입니다\n"
  2562. "\n"
  2563. "옵션:\n"
  2564. " -h 이 도움말\n"
  2565. " -t 임시 디렉토리 설정\n"
  2566. " -c=? 설정 파일을 읽습니다\n"
  2567. " -o=? 임의의 옵션을 설정합니다. 예를 들어 -o dir::cache=/tmp\n"
  2568. #: cmdline/apt-extracttemplates.cc:254
  2569. #, fuzzy, c-format
  2570. msgid "Unable to mkstemp %s"
  2571. msgstr "%s의 정보를 읽을 수 없습니다"
  2572. #: cmdline/apt-extracttemplates.cc:300
  2573. msgid "Cannot get debconf version. Is debconf installed?"
  2574. msgstr "debconf 버전을 알 수 없습니다. debconf가 설치되었습니까?"
  2575. #: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358
  2576. msgid "Package extension list is too long"
  2577. msgstr "패키지 확장 목록이 너무 깁니다"
  2578. #: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199
  2579. #: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273
  2580. #: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309
  2581. #, c-format
  2582. msgid "Error processing directory %s"
  2583. msgstr "%s 디렉터리를 처리하는데 오류가 발생했습니다"
  2584. #: ftparchive/apt-ftparchive.cc:271
  2585. msgid "Source extension list is too long"
  2586. msgstr "소스 확장 목록이 너무 깁니다"
  2587. #: ftparchive/apt-ftparchive.cc:388
  2588. msgid "Error writing header to contents file"
  2589. msgstr "컨텐츠 파일에 헤더를 쓰는데 오류가 발생했습니다"
  2590. #: ftparchive/apt-ftparchive.cc:418
  2591. #, c-format
  2592. msgid "Error processing contents %s"
  2593. msgstr "%s 컨텐츠를 처리하는데 오류가 발생했습니다"
  2594. #: ftparchive/apt-ftparchive.cc:606
  2595. msgid ""
  2596. "Usage: apt-ftparchive [options] command\n"
  2597. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  2598. " sources srcpath [overridefile [pathprefix]]\n"
  2599. " contents path\n"
  2600. " release path\n"
  2601. " generate config [groups]\n"
  2602. " clean config\n"
  2603. "\n"
  2604. "apt-ftparchive generates index files for Debian archives. It supports\n"
  2605. "many styles of generation from fully automated to functional replacements\n"
  2606. "for dpkg-scanpackages and dpkg-scansources\n"
  2607. "\n"
  2608. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  2609. "Package file contains the contents of all the control fields from\n"
  2610. "each package as well as the MD5 hash and filesize. An override file\n"
  2611. "is supported to force the value of Priority and Section.\n"
  2612. "\n"
  2613. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  2614. "The --source-override option can be used to specify a src override file\n"
  2615. "\n"
  2616. "The 'packages' and 'sources' command should be run in the root of the\n"
  2617. "tree. BinaryPath should point to the base of the recursive search and \n"
  2618. "override file should contain the override flags. Pathprefix is\n"
  2619. "appended to the filename fields if present. Example usage from the \n"
  2620. "Debian archive:\n"
  2621. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  2622. " dists/potato/main/binary-i386/Packages\n"
  2623. "\n"
  2624. "Options:\n"
  2625. " -h This help text\n"
  2626. " --md5 Control MD5 generation\n"
  2627. " -s=? Source override file\n"
  2628. " -q Quiet\n"
  2629. " -d=? Select the optional caching database\n"
  2630. " --no-delink Enable delinking debug mode\n"
  2631. " --contents Control contents file generation\n"
  2632. " -c=? Read this configuration file\n"
  2633. " -o=? Set an arbitrary configuration option"
  2634. msgstr ""
  2635. "사용법: apt-ftparchive [옵션] 명령\n"
  2636. "명령: packages 바이너리경로 [override파일 [경로앞부분]]\n"
  2637. " sources 소스경로 [override파일 [경로앞부분]]\n"
  2638. " contents 경로\n"
  2639. " release 경로\n"
  2640. " generate 설정 [그룹]\n"
  2641. " clean 설정\n"
  2642. "\n"
  2643. "apt-ftparchive는 데비안 아카이브용 인덱스 파일을 만듭니다. 이 프로그램은\n"
  2644. "여러 종류의 인덱스 파일 만드는 작업을 지원합니다 -- 완전 자동화 작업부터\n"
  2645. "dpkg-scanpackages와 dpkg-scansources의 기능을 대체하기도 합니다.\n"
  2646. "\n"
  2647. "apt-ftparchive는 .deb 파일의 트리에서부터 Package 파일을 만듭니다.\n"
  2648. "Package 파일에는 각 패키지의 모든 제어 필드는 물론 MD5 해시와 파일\n"
  2649. "크기도 들어 있습니다. override 파일을 이용해 Priority와 Section의 값을 \n"
  2650. "강제로 설정할 수 있습니다\n"
  2651. "\n"
  2652. "이와 비슷하게 apt-ftparchive는 .dsc 파일의 트리에서 Sources 파일을\n"
  2653. "만듭니다. --source-override 옵션을 이용해 소스 override 파일을\n"
  2654. "지정할 수 있습니다.\n"
  2655. "\n"
  2656. "'packages'와 'sources' 명령은 해당 트리의 맨 위에서 실행해야 합니다.\n"
  2657. "\"바이너리경로\"는 검색할 때의 기준 위치를 가리키며 \"override파일\"에는\n"
  2658. "override 플래그들을 담고 있습니다. \"경로앞부분\"은 각 파일 이름\n"
  2659. "필드의 앞에 더해 집니다. 데비안 아카이브에 있는 예를 하나 들자면:\n"
  2660. "\n"
  2661. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  2662. " dists/potato/main/binary-i386/Packages\n"
  2663. "\n"
  2664. "옵션:\n"
  2665. " -h 이 도움말\n"
  2666. " --md5 MD5 만들기 작업을 제어합니다\n"
  2667. " -s=? 소스 override 파일\n"
  2668. " -q 조용히\n"
  2669. " -d=? 캐시 데이터베이스를 직접 설정합니다\n"
  2670. " --no-delink 디버깅 모드 지우기를 사용합니다\n"
  2671. " --contents 컨텐츠 파일을 만드는 적업을 제어합니다\n"
  2672. " -c=? 이 설정 파일을 읽습니다\n"
  2673. " -o=? 임의의 옵션을 설정합니다"
  2674. #: ftparchive/apt-ftparchive.cc:812
  2675. msgid "No selections matched"
  2676. msgstr "맞는 패키지가 없습니다"
  2677. #: ftparchive/apt-ftparchive.cc:890
  2678. #, c-format
  2679. msgid "Some files are missing in the package file group `%s'"
  2680. msgstr "`%s' 패키지 파일 그룹에 몇몇 파일이 빠졌습니다"
  2681. #: ftparchive/cachedb.cc:51
  2682. #, c-format
  2683. msgid "DB was corrupted, file renamed to %s.old"
  2684. msgstr "DB가 망가졌습니다. 파일 이름을 %s.old로 바꿉니다"
  2685. #: ftparchive/cachedb.cc:69
  2686. #, c-format
  2687. msgid "DB is old, attempting to upgrade %s"
  2688. msgstr "DB가 오래되었습니다. %s의 업그레이드를 시도합니다"
  2689. #: ftparchive/cachedb.cc:80
  2690. msgid ""
  2691. "DB format is invalid. If you upgraded from an older version of apt, please "
  2692. "remove and re-create the database."
  2693. msgstr ""
  2694. "DB 형식이 잘못되었습니다. APT 예전 버전에서 업그레이드했다면, 데이터베이스를 "
  2695. "지우고 다시 만드십시오."
  2696. #: ftparchive/cachedb.cc:85
  2697. #, c-format
  2698. msgid "Unable to open DB file %s: %s"
  2699. msgstr "DB 파일, %s 파일을 열 수 없습니다: %s"
  2700. #: ftparchive/cachedb.cc:253
  2701. msgid "Archive has no control record"
  2702. msgstr "아카이브에 컨트롤 기록이 없습니다"
  2703. # FIXME: 왠 커서??
  2704. #: ftparchive/cachedb.cc:494
  2705. msgid "Unable to get a cursor"
  2706. msgstr "커서를 가져올 수 없습니다"
  2707. #: ftparchive/writer.cc:91
  2708. #, c-format
  2709. msgid "W: Unable to read directory %s\n"
  2710. msgstr "경고: %s 디렉터리를 읽을 수 없습니다\n"
  2711. #: ftparchive/writer.cc:96
  2712. #, c-format
  2713. msgid "W: Unable to stat %s\n"
  2714. msgstr "경고: %s의 정보를 읽을 수 없습니다\n"
  2715. #: ftparchive/writer.cc:152
  2716. msgid "E: "
  2717. msgstr "오류: "
  2718. #: ftparchive/writer.cc:154
  2719. msgid "W: "
  2720. msgstr "경고: "
  2721. #: ftparchive/writer.cc:161
  2722. msgid "E: Errors apply to file "
  2723. msgstr "오류: 다음 파일에 적용하는데 오류가 발생했습니다: "
  2724. #: ftparchive/writer.cc:179 ftparchive/writer.cc:211
  2725. #, c-format
  2726. msgid "Failed to resolve %s"
  2727. msgstr "%s의 경로를 알아내는데 실패했습니다"
  2728. #: ftparchive/writer.cc:192
  2729. msgid "Tree walking failed"
  2730. msgstr "트리에서 이동이 실패했습니다"
  2731. #: ftparchive/writer.cc:219
  2732. #, c-format
  2733. msgid "Failed to open %s"
  2734. msgstr "%s 파일을 여는데 실패했습니다"
  2735. # FIXME: ??
  2736. #: ftparchive/writer.cc:278
  2737. #, c-format
  2738. msgid " DeLink %s [%s]\n"
  2739. msgstr " 링크 %s [%s] 없애기\n"
  2740. #: ftparchive/writer.cc:286
  2741. #, c-format
  2742. msgid "Failed to readlink %s"
  2743. msgstr "%s 파일에 readlink하는데 실패했습니다"
  2744. #: ftparchive/writer.cc:290
  2745. #, c-format
  2746. msgid "Failed to unlink %s"
  2747. msgstr "%s 파일을 지우는데 실패했습니다"
  2748. #: ftparchive/writer.cc:298
  2749. #, c-format
  2750. msgid "*** Failed to link %s to %s"
  2751. msgstr "*** %s 파일을 %s에 링크하는데 실패했습니다"
  2752. #: ftparchive/writer.cc:308
  2753. #, c-format
  2754. msgid " DeLink limit of %sB hit.\n"
  2755. msgstr " DeLink 한계값 %s바이트에 도달했습니다.\n"
  2756. #: ftparchive/writer.cc:413
  2757. msgid "Archive had no package field"
  2758. msgstr "아카이브에 패키지 필드가 없습니다"
  2759. #: ftparchive/writer.cc:421 ftparchive/writer.cc:711
  2760. #, c-format
  2761. msgid " %s has no override entry\n"
  2762. msgstr " %s에는 override 항목이 없습니다\n"
  2763. #: ftparchive/writer.cc:489 ftparchive/writer.cc:855
  2764. #, c-format
  2765. msgid " %s maintainer is %s not %s\n"
  2766. msgstr " %s 관리자가 %s입니다 (%s 아님)\n"
  2767. #: ftparchive/writer.cc:721
  2768. #, c-format
  2769. msgid " %s has no source override entry\n"
  2770. msgstr " %s에는 source override 항목이 없습니다\n"
  2771. #: ftparchive/writer.cc:725
  2772. #, c-format
  2773. msgid " %s has no binary override entry either\n"
  2774. msgstr " %s에는 binary override 항목이 없습니다\n"
  2775. #: ftparchive/contents.cc:340 ftparchive/contents.cc:371
  2776. msgid "realloc - Failed to allocate memory"
  2777. msgstr "realloc - 메모리를 할당하는데 실패했습니다"
  2778. #: ftparchive/override.cc:38 ftparchive/override.cc:142
  2779. #, c-format
  2780. msgid "Unable to open %s"
  2781. msgstr "%s 열 수 없습니다"
  2782. #. skip spaces
  2783. #. find end of word
  2784. #: ftparchive/override.cc:68
  2785. #, fuzzy, c-format
  2786. msgid "Malformed override %s line %llu (%s)"
  2787. msgstr "override %s의 %lu번 줄 #1이 잘못되었습니다"
  2788. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  2789. #, c-format
  2790. msgid "Failed to read the override file %s"
  2791. msgstr "%s override 파일을 읽는데 실패했습니다"
  2792. #: ftparchive/override.cc:166
  2793. #, fuzzy, c-format
  2794. msgid "Malformed override %s line %llu #1"
  2795. msgstr "override %s의 %lu번 줄 #1이 잘못되었습니다"
  2796. #: ftparchive/override.cc:178
  2797. #, fuzzy, c-format
  2798. msgid "Malformed override %s line %llu #2"
  2799. msgstr "override %s의 %lu번 줄 #2가 잘못되었습니다"
  2800. #: ftparchive/override.cc:191
  2801. #, fuzzy, c-format
  2802. msgid "Malformed override %s line %llu #3"
  2803. msgstr "override %s의 %lu번 줄 #3이 잘못되었습니다"
  2804. #: ftparchive/multicompress.cc:73
  2805. #, c-format
  2806. msgid "Unknown compression algorithm '%s'"
  2807. msgstr "'%s' 압축 알고리즘을 알 수 없습니다"
  2808. #: ftparchive/multicompress.cc:103
  2809. #, c-format
  2810. msgid "Compressed output %s needs a compression set"
  2811. msgstr "압축된 출력물 %s에는 압축 세트가 필요합니다"
  2812. #: ftparchive/multicompress.cc:192
  2813. msgid "Failed to create FILE*"
  2814. msgstr "FILE*를 만드는데 실패했습니다"
  2815. #: ftparchive/multicompress.cc:195
  2816. msgid "Failed to fork"
  2817. msgstr "fork하는데 실패했습니다"
  2818. #: ftparchive/multicompress.cc:209
  2819. msgid "Compress child"
  2820. msgstr "압축 하위 프로세스"
  2821. #: ftparchive/multicompress.cc:232
  2822. #, c-format
  2823. msgid "Internal error, failed to create %s"
  2824. msgstr "내부 오류, %s 만드는데 실패했습니다"
  2825. #: ftparchive/multicompress.cc:305
  2826. msgid "IO to subprocess/file failed"
  2827. msgstr "하위 프로세스/파일에 입출력하는데 실패했습니다"
  2828. #: ftparchive/multicompress.cc:343
  2829. msgid "Failed to read while computing MD5"
  2830. msgstr "MD5를 계산하는 동안 읽는데 실패했습니다"
  2831. #: ftparchive/multicompress.cc:359
  2832. #, c-format
  2833. msgid "Problem unlinking %s"
  2834. msgstr "%s의 링크를 해제하는데 문제가 있습니다"
  2835. #: cmdline/apt-internal-solver.cc:46
  2836. #, fuzzy
  2837. msgid ""
  2838. "Usage: apt-internal-solver\n"
  2839. "\n"
  2840. "apt-internal-solver is an interface to use the current internal\n"
  2841. "like an external resolver for the APT family for debugging or alike\n"
  2842. "\n"
  2843. "Options:\n"
  2844. " -h This help text.\n"
  2845. " -q Loggable output - no progress indicator\n"
  2846. " -c=? Read this configuration file\n"
  2847. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  2848. msgstr ""
  2849. "사용법: apt-extracttemplates 파일1 [파일2 ...]\n"
  2850. "\n"
  2851. "apt-extracttemplates는 데비안 패키지에서 설정 및 서식 정보를 뽑아내는\n"
  2852. "도구입니다\n"
  2853. "\n"
  2854. "옵션:\n"
  2855. " -h 이 도움말\n"
  2856. " -t 임시 디렉토리 설정\n"
  2857. " -c=? 설정 파일을 읽습니다\n"
  2858. " -o=? 임의의 옵션을 설정합니다. 예를 들어 -o dir::cache=/tmp\n"
  2859. #: cmdline/apt-sortpkgs.cc:89
  2860. msgid "Unknown package record!"
  2861. msgstr "알 수 없는 패키지 기록!"
  2862. #: cmdline/apt-sortpkgs.cc:153
  2863. msgid ""
  2864. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  2865. "\n"
  2866. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  2867. "to indicate what kind of file it is.\n"
  2868. "\n"
  2869. "Options:\n"
  2870. " -h This help text\n"
  2871. " -s Use source file sorting\n"
  2872. " -c=? Read this configuration file\n"
  2873. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  2874. msgstr ""
  2875. "사용법: apt-sortpkgs [옵션] 파일1 [파일2 ...]\n"
  2876. "\n"
  2877. "apt-sortpkgs는 패키지 파일을 정렬하는 간단한 도구입니다. -s 옵션은 무슨 파일"
  2878. "인지\n"
  2879. "알아 내는데 쓰입니다.\n"
  2880. "\n"
  2881. "옵션:\n"
  2882. " -h 이 도움말\n"
  2883. " -s 소스 파일 정렬을 사용합니다\n"
  2884. " -c=? 이 설정 파일을 읽습니다\n"
  2885. " -o=? 임의의 옵션을 설정합니다. 예를 들어 -o dir::cache=/tmp\n"
  2886. #~ msgid "%s not a valid DEB package."
  2887. #~ msgstr "%s은(는) 올바른 DEB 패키지가 아닙니다."
  2888. #~ msgid ""
  2889. #~ "Using CD-ROM mount point %s\n"
  2890. #~ "Mounting CD-ROM\n"
  2891. #~ msgstr ""
  2892. #~ "CD-ROM 마운트 위치로 %s 사용\n"
  2893. #~ "CD-ROM을 마운트하는 중입니다\n"
  2894. #~ msgid ""
  2895. #~ "Could not patch %s with mmap and with file operation usage - the patch "
  2896. #~ "seems to be corrupt."
  2897. #~ msgstr ""
  2898. #~ "%s 패치를 mmap과 파일 동작을 이용해 적용할 수 없습니다. 패치 파일이 손상"
  2899. #~ "된 것처럼 보입니다."
  2900. #~ msgid ""
  2901. #~ "Could not patch %s with mmap (but no mmap specific fail) - the patch "
  2902. #~ "seems to be corrupt."
  2903. #~ msgstr ""
  2904. #~ "%s 패치를 mmap을 이용해 (mmap 관련 실패는 없음) 적용할 수 없습니다. 패치 "
  2905. #~ "파일이 손상된 것처럼 보입니다."
  2906. #~ msgid "Note, selecting '%s' for task '%s'\n"
  2907. #~ msgstr "주의, 작업 '%2$s'에 대해 '%1$s'을(를) 선택합니다\n"
  2908. #~ msgid "Note, selecting '%s' for regex '%s'\n"
  2909. #~ msgstr "주의, 정규식 '%2$s'에 대해 '%1$s'을(를) 선택합니다\n"
  2910. #~ msgid "Package %s is a virtual package provided by:\n"
  2911. #~ msgstr "%s 패키지는 다음이 제공하는 가상 패키지입니다:\n"
  2912. #~ msgid " [Not candidate version]"
  2913. #~ msgstr "[후보 버전 아님]"
  2914. #~ msgid "You should explicitly select one to install."
  2915. #~ msgstr "설치할 패키지를 하나 분명히 지정해야 합니다."
  2916. #~ msgid ""
  2917. #~ "Package %s is not available, but is referred to by another package.\n"
  2918. #~ "This may mean that the package is missing, has been obsoleted, or\n"
  2919. #~ "is only available from another source\n"
  2920. #~ msgstr ""
  2921. #~ "%s 패키지를 사용할 수 없습니다. 하지만 다른 패키지가 참조하고 있습니다.\n"
  2922. #~ "해당 패키지가 누락되었거나 지워졌다는 뜻입니다. 아니면 또 다른 곳에서\n"
  2923. #~ "패키지를 받아와야 하는 경우일 수도 있습니다.\n"
  2924. #~ msgid "However the following packages replace it:"
  2925. #~ msgstr "하지만 다음 패키지가 대체합니다:"
  2926. #~ msgid "Package '%s' has no installation candidate"
  2927. #~ msgstr "'%s' 패키지는 설치할 수 있는 후보가 없습니다"
  2928. #~ msgid "Virtual packages like '%s' can't be removed\n"
  2929. #~ msgstr "'%s' 패키지와 같은 가상 패키지는 제거할 수 없습니다\n"
  2930. #, fuzzy
  2931. #~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
  2932. #~ msgstr "%s 패키지를 설치하지 않았으므로, 지우지 않습니다\n"
  2933. #, fuzzy
  2934. #~ msgid "Package '%s' is not installed, so not removed\n"
  2935. #~ msgstr "%s 패키지를 설치하지 않았으므로, 지우지 않습니다\n"
  2936. #~ msgid "Note, selecting '%s' instead of '%s'\n"
  2937. #~ msgstr "주의, '%2$s' 대신에 '%1$s' 패키지를 선택합니다\n"
  2938. #~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  2939. #~ msgstr ""
  2940. #~ "%s 패키지를 건너 뜁니다. 이미 설치되어 있고 업그레이드를 하지 않습니다.\n"
  2941. #~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  2942. #~ msgstr "%s 패키지를 건너 뜁니다. 설치되지 않았고 업그레이드만 요청합니다.\n"
  2943. #~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  2944. #~ msgstr ""
  2945. #~ "%s 패키지를 다시 설치하는 건 불가능합니다. 다운로드할 수 없습니다.\n"
  2946. #~ msgid "%s is already the newest version.\n"
  2947. #~ msgstr "%s 패키지는 이미 최신 버전입니다.\n"
  2948. #~ msgid "Selected version '%s' (%s) for '%s'\n"
  2949. #~ msgstr "'%3$s' 패키지의 '%1$s' (%2$s) 버전을 선택합니다\n"
  2950. #, fuzzy
  2951. #~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  2952. #~ msgstr "'%3$s' 패키지의 '%1$s' (%2$s) 버전을 선택합니다\n"
  2953. #~ msgid "Ignore unavailable target release '%s' of package '%s'"
  2954. #~ msgstr "'%2$s' 패키지의 '%1$s' 대상 릴리스는 없으므로 무시합니다."
  2955. #~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  2956. #~ msgstr ""
  2957. #~ "올바른 DEB 아카이브가 아닙니다. '%s'나 '%s' 혹은 '%s' 멤버가 없습니다"
  2958. #~ msgid "MD5Sum mismatch"
  2959. #~ msgstr "MD5Sum이 맞지 않습니다"
  2960. #~ msgid ""
  2961. #~ "I wasn't able to locate a file for the %s package. This might mean you "
  2962. #~ "need to manually fix this package."
  2963. #~ msgstr ""
  2964. #~ "%s 패키지의 파일을 찾을 수 없습니다. 수동으로 이 패키지를 고쳐야 할 수도 "
  2965. #~ "있습니다."
  2966. #~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2967. #~ msgstr ""
  2968. #~ "로그에 쓰는데 실패. openpty() 실패(/dev/pts가 마운트되어있지 않습니까?)\n"
  2969. #~ msgid "Skipping nonexistent file %s"
  2970. #~ msgstr "%s 파일은 없으므로 무시합니다"
  2971. #~ msgid "Failed to remove %s"
  2972. #~ msgstr "%s을(를) 지우는데 실패했습니다"
  2973. #~ msgid "Unable to create %s"
  2974. #~ msgstr "%s을(를) 만들 수 없습니다"
  2975. #~ msgid "Failed to stat %sinfo"
  2976. #~ msgstr "%sinfo의 정보를 읽는데 실패했습니다"
  2977. #~ msgid "The info and temp directories need to be on the same filesystem"
  2978. #~ msgstr "정보 디렉토리와 임시 디렉토리는 같은 파일 시스템에 있어야 합니다"
  2979. #~ msgid "Failed to change to the admin dir %sinfo"
  2980. #~ msgstr "관리 디렉토리를 %sinfo로 바꾸는데 실패했습니다"
  2981. #~ msgid "Internal error getting a package name"
  2982. #~ msgstr "패키지 이름을 가져오는데 내부 오류"
  2983. #~ msgid "Reading file listing"
  2984. #~ msgstr "파일 목록을 읽는 중입니다"
  2985. #~ msgid ""
  2986. #~ "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  2987. #~ "then make it empty and immediately re-install the same version of the "
  2988. #~ "package!"
  2989. #~ msgstr ""
  2990. #~ "목록 파일 '%sinfo/%s' 파일을 여는데 실패했습니다. 이 파일을 복구할 수 없다"
  2991. #~ "면 비워 놓고 같은 버전의 패키지를 다시 설치하십시오!"
  2992. #~ msgid "Failed reading the list file %sinfo/%s"
  2993. #~ msgstr "목록 파일 %sinfo/%s 파일을 읽는데 실패했습니다"
  2994. #~ msgid "Internal error getting a node"
  2995. #~ msgstr "노드를 얻어 오는데 내부 오류"
  2996. #~ msgid "Failed to open the diversions file %sdiversions"
  2997. #~ msgstr "전환 파일 %sdiversions를 여는데 실패했습니다"
  2998. #~ msgid "The diversion file is corrupted"
  2999. #~ msgstr "전환 파일이 손상되었습니다"
  3000. #~ msgid "Invalid line in the diversion file: %s"
  3001. #~ msgstr "전환 파일에 잘못된 줄이 있습니다: %s"
  3002. #~ msgid "Internal error adding a diversion"
  3003. #~ msgstr "diversion을 추가하는데 내부 오류"
  3004. #~ msgid "The pkg cache must be initialized first"
  3005. #~ msgstr "패키지 캐시를 먼저 초기화해야 합니다"
  3006. #~ msgid "Failed to find a Package: header, offset %lu"
  3007. #~ msgstr "패키지를 찾는데 실패했습니다: 헤더, 오프셋 %lu"
  3008. #~ msgid "Bad ConfFile section in the status file. Offset %lu"
  3009. #~ msgstr "status 파일에서 ConfFile 섹션이 잘못되었습니다. 오프셋 %lu"
  3010. #~ msgid "Error parsing MD5. Offset %lu"
  3011. #~ msgstr "MD5 분석에 오류가 있습니다. 오프셋 %lu"
  3012. #~ msgid "Couldn't change to %s"
  3013. #~ msgstr "%s 디렉토리로 이동할 수 없습니다"
  3014. #~ msgid "Failed to locate a valid control file"
  3015. #~ msgstr "올바른 control 파일을 찾는데 실패했습니다"
  3016. #~ msgid "Couldn't open pipe for %s"
  3017. #~ msgstr "%s에 대한 파이프를 열 수 없습니다"
  3018. #~ msgid "Read error from %s process"
  3019. #~ msgstr "%s 프로세스에서 읽는데 오류가 발생했습니다"
  3020. #~ msgid "Got a single header line over %u chars"
  3021. #~ msgstr "헤더 한 줄에 %u개가 넘는 문자가 들어 있습니다"
  3022. #~ msgid "Note: This is done automatic and on purpose by dpkg."
  3023. #~ msgstr "주의: dpkg에서 자동으로 의도적으로 수행했습니다."
  3024. #~ msgid "Malformed override %s line %lu #1"
  3025. #~ msgstr "override %s의 %lu번 줄 #1이 잘못되었습니다"
  3026. #~ msgid "Malformed override %s line %lu #2"
  3027. #~ msgstr "override %s의 %lu번 줄 #2가 잘못되었습니다"
  3028. #~ msgid "Malformed override %s line %lu #3"
  3029. #~ msgstr "override %s의 %lu번 줄 #3이 잘못되었습니다"
  3030. #~ msgid "decompressor"
  3031. #~ msgstr "압축 해제 프로그램"
  3032. #~ msgid "read, still have %lu to read but none left"
  3033. #~ msgstr "%lu만큼 더 읽어야 하지만 더 이상 읽을 데이터가 없습니다"
  3034. #~ msgid "write, still have %lu to write but couldn't"
  3035. #~ msgstr "%lu만큼 더 써야 하지만 더 이상 쓸 수 없습니다"
  3036. #~ msgid ""
  3037. #~ "Could not perform immediate configuration on already unpacked '%s'. "
  3038. #~ "Please see man 5 apt.conf under APT::Immediate-Configure for details."
  3039. #~ msgstr ""
  3040. #~ "이미 압축이 풀린 '%s' 패키지에 대해 즉시 설정을 할 수 없습니다. 자세한 설"
  3041. #~ "명은 man 5 apt.conf 페이지에서 APT::Immediate-Configure 항목을 보십시오."
  3042. #~ msgid "Error occurred while processing %s (NewPackage)"
  3043. #~ msgstr "%s 처리하는 중에 오류가 발생했습니다 (NewPackage)"
  3044. #~ msgid "Error occurred while processing %s (UsePackage1)"
  3045. #~ msgstr "%s 처리하는 중에 오류가 발생했습니다 (UsePackage1)"
  3046. #~ msgid "Error occurred while processing %s (NewFileDesc1)"
  3047. #~ msgstr "%s 처리하는 중에 오류가 발생했습니다 (NewFileDesc1)"
  3048. #~ msgid "Error occurred while processing %s (UsePackage2)"
  3049. #~ msgstr "%s 처리하는 중에 오류가 발생했습니다 (UsePackage2)"
  3050. #~ msgid "Error occurred while processing %s (NewFileVer1)"
  3051. #~ msgstr "%s 처리하는 중에 오류가 발생했습니다 (NewFileVer1)"
  3052. #~ msgid "Error occurred while processing %s (NewVersion%d)"
  3053. #~ msgstr "%s 처리하는 중에 오류가 발생했습니다 (NewVersion%d)"
  3054. #~ msgid "Error occurred while processing %s (UsePackage3)"
  3055. #~ msgstr "%s 처리하는 중에 오류가 발생했습니다 (UsePackage3)"
  3056. #~ msgid "Error occurred while processing %s (NewFileDesc2)"
  3057. #~ msgstr "%s 처리하는 중에 오류가 발생했습니다 (NewFileDesc1)"
  3058. #~ msgid "Error occurred while processing %s (FindPkg)"
  3059. #~ msgstr "%s 처리 중에 오류가 발생했습니다 (FindPkg)"
  3060. #~ msgid "Error occurred while processing %s (CollectFileProvides)"
  3061. #~ msgstr "%s 처리 중에 오류가 발생했습니다 (CollectFileProvides)"
  3062. #~ msgid "Internal error, could not locate member"
  3063. #~ msgstr "내부 오류, 멤버를 찾을 수 없습니다"
  3064. #~ msgid "Internal error, group '%s' has no installable pseudo package"
  3065. #~ msgstr "내부 오류, '%s' 그룹에 설치할 수 있는 패키지가 없습니다."
  3066. #~ msgid "Release file expired, ignoring %s (invalid since %s)"
  3067. #~ msgstr "Release 파일이 만료되었습니다. %s 무시. (%s 이후로 무효)"