ko.po 122 KB

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