ko.po 123 KB

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