dpkg.pot 107 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR Software in the Public Interest, Inc.
  3. # This file is distributed under the same license as the PACKAGE package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: PACKAGE VERSION\n"
  10. "Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
  11. "POT-Creation-Date: 2007-08-18 03:58+0300\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=CHARSET\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. #: lib/compat.c:46
  19. msgid "unable to open tmpfile for vsnprintf"
  20. msgstr ""
  21. #: lib/compat.c:48
  22. msgid "unable to rewind at start of vsnprintf"
  23. msgstr ""
  24. #: lib/compat.c:49
  25. msgid "unable to truncate in vsnprintf"
  26. msgstr ""
  27. #: lib/compat.c:51
  28. msgid "write error in vsnprintf"
  29. msgstr ""
  30. #: lib/compat.c:52
  31. msgid "unable to flush in vsnprintf"
  32. msgstr ""
  33. #: lib/compat.c:53
  34. msgid "unable to stat in vsnprintf"
  35. msgstr ""
  36. #: lib/compat.c:54
  37. msgid "unable to rewind in vsnprintf"
  38. msgstr ""
  39. #: lib/compat.c:62
  40. msgid "read error in vsnprintf truncated"
  41. msgstr ""
  42. #: lib/compat.c:89
  43. #, c-format
  44. msgid "System error no.%d"
  45. msgstr ""
  46. #: lib/compat.c:99
  47. #, c-format
  48. msgid "Signal no.%d"
  49. msgstr ""
  50. #: lib/compression.c:34
  51. #, c-format
  52. msgid "%s: failed to exec '%s %s'"
  53. msgstr ""
  54. #: lib/compression.c:62
  55. #, c-format
  56. msgid "%s: internal gzip error: `%s'"
  57. msgstr ""
  58. #: lib/compression.c:85
  59. #, c-format
  60. msgid "%s: internal bzip2 error: `%s'"
  61. msgstr ""
  62. #: lib/compression.c:97
  63. #, c-format
  64. msgid "%s: decompression"
  65. msgstr ""
  66. #: lib/compression.c:132
  67. #, c-format
  68. msgid "%s: internal gzip error: read: `%s'"
  69. msgstr ""
  70. #: lib/compression.c:142
  71. #, c-format
  72. msgid "%s: internal gzip error: write: `%s'"
  73. msgstr ""
  74. #: lib/compression.c:145
  75. #, c-format
  76. msgid "%s: internal gzip error: read(%i) != write(%i)"
  77. msgstr ""
  78. #: lib/compression.c:167
  79. #, c-format
  80. msgid "%s: internal bzip2 error: read: `%s'"
  81. msgstr ""
  82. #: lib/compression.c:177
  83. #, c-format
  84. msgid "%s: internal bzip2 error: write: `%s'"
  85. msgstr ""
  86. #: lib/compression.c:180
  87. #, c-format
  88. msgid "%s: internal bzip2 error: read(%i) != write(%i)"
  89. msgstr ""
  90. #: lib/compression.c:195
  91. #, c-format
  92. msgid "%s: compression"
  93. msgstr ""
  94. #: lib/database.c:124
  95. #, c-format
  96. msgid "couldn't allocate memory for strdup in findpackage(%s)"
  97. msgstr ""
  98. #: lib/database.c:194
  99. #, c-format
  100. msgid "size %7d occurs %5d times\n"
  101. msgstr ""
  102. #: lib/database.c:195
  103. msgid "failed write during hashreport"
  104. msgstr ""
  105. #: lib/dbmodify.c:59
  106. #, c-format
  107. msgid ""
  108. "updates directory contains file `%.250s' whose name is too long (length=%d, "
  109. "max=%d)"
  110. msgstr ""
  111. #: lib/dbmodify.c:63
  112. #, c-format
  113. msgid ""
  114. "updates directory contains files with different length names (both %d and %d)"
  115. msgstr ""
  116. #: lib/dbmodify.c:77
  117. #, c-format
  118. msgid "cannot scan updates directory `%.255s'"
  119. msgstr ""
  120. #: lib/dbmodify.c:93
  121. #, c-format
  122. msgid "failed to remove incorporated update file %.255s"
  123. msgstr ""
  124. #: lib/dbmodify.c:111 src/archives.c:650 dpkg-deb/build.c:319
  125. #, c-format
  126. msgid "unable to create `%.255s'"
  127. msgstr ""
  128. #: lib/dbmodify.c:115
  129. #, c-format
  130. msgid "unable to fill %.250s with padding"
  131. msgstr ""
  132. #: lib/dbmodify.c:117
  133. #, c-format
  134. msgid "unable to flush %.250s after padding"
  135. msgstr ""
  136. #: lib/dbmodify.c:119
  137. #, c-format
  138. msgid "unable to seek to start of %.250s after padding"
  139. msgstr ""
  140. #: lib/dbmodify.c:150
  141. msgid "requested operation requires superuser privilege"
  142. msgstr ""
  143. #: lib/dbmodify.c:155
  144. msgid "unable to access dpkg status area"
  145. msgstr ""
  146. #: lib/dbmodify.c:157
  147. msgid "operation requires read/write access to dpkg status area"
  148. msgstr ""
  149. #: lib/dbmodify.c:205
  150. #, c-format
  151. msgid "failed to remove my own update file %.255s"
  152. msgstr ""
  153. #: lib/dbmodify.c:262
  154. #, c-format
  155. msgid "unable to write updated status of `%.250s'"
  156. msgstr ""
  157. #: lib/dbmodify.c:264
  158. #, c-format
  159. msgid "unable to flush updated status of `%.250s'"
  160. msgstr ""
  161. #: lib/dbmodify.c:266
  162. #, c-format
  163. msgid "unable to truncate for updated status of `%.250s'"
  164. msgstr ""
  165. #: lib/dbmodify.c:268
  166. #, c-format
  167. msgid "unable to fsync updated status of `%.250s'"
  168. msgstr ""
  169. #: lib/dbmodify.c:270
  170. #, c-format
  171. msgid "unable to close updated status of `%.250s'"
  172. msgstr ""
  173. #: lib/dbmodify.c:273
  174. #, c-format
  175. msgid "unable to install updated status of `%.250s'"
  176. msgstr ""
  177. #: lib/dbmodify.c:303
  178. #, c-format
  179. msgid "couldn't open log `%s': %s\n"
  180. msgstr ""
  181. #: lib/dump.c:266
  182. #, c-format
  183. msgid "failed to write details of `%.50s' to `%.250s'"
  184. msgstr ""
  185. #: lib/dump.c:293
  186. #, c-format
  187. msgid "failed to open `%s' for writing %s information"
  188. msgstr ""
  189. #: lib/dump.c:296
  190. msgid "unable to set buffering on status file"
  191. msgstr ""
  192. #: lib/dump.c:307
  193. #, c-format
  194. msgid "failed to write %s record about `%.50s' to `%.250s'"
  195. msgstr ""
  196. #: lib/dump.c:315
  197. #, c-format
  198. msgid "failed to flush %s information to `%.250s'"
  199. msgstr ""
  200. #: lib/dump.c:317
  201. #, c-format
  202. msgid "failed to fsync %s information to `%.250s'"
  203. msgstr ""
  204. #: lib/dump.c:319
  205. #, c-format
  206. msgid "failed to close `%.250s' after writing %s information"
  207. msgstr ""
  208. #: lib/dump.c:323
  209. #, c-format
  210. msgid "failed to link `%.250s' to `%.250s' for backup of %s info"
  211. msgstr ""
  212. #: lib/dump.c:326
  213. #, c-format
  214. msgid "failed to install `%.250s' as `%.250s' containing %s info"
  215. msgstr ""
  216. #: lib/ehandle.c:81
  217. msgid "out of memory pushing error handler: "
  218. msgstr ""
  219. #: lib/ehandle.c:96
  220. #, c-format
  221. msgid ""
  222. "%s: error while cleaning up:\n"
  223. " %s\n"
  224. msgstr ""
  225. #: lib/ehandle.c:111
  226. #, c-format
  227. msgid "dpkg: too many nested errors during error recovery !!\n"
  228. msgstr ""
  229. #: lib/ehandle.c:186
  230. msgid "out of memory for new cleanup entry with many arguments"
  231. msgstr ""
  232. #: lib/ehandle.c:198
  233. msgid "out of memory for new cleanup entry"
  234. msgstr ""
  235. #: lib/ehandle.c:284
  236. #, c-format
  237. msgid "error writing `%s'"
  238. msgstr ""
  239. #: lib/ehandle.c:288
  240. #, c-format
  241. msgid "%s:%d: internal error `%s'\n"
  242. msgstr ""
  243. #: lib/fields.c:44
  244. #, c-format
  245. msgid "%s is missing"
  246. msgstr ""
  247. #: lib/fields.c:57
  248. #, c-format
  249. msgid "`%.*s' is not allowed for %s"
  250. msgstr ""
  251. #: lib/fields.c:64
  252. #, c-format
  253. msgid "junk after %s"
  254. msgstr ""
  255. #: lib/fields.c:74
  256. #, c-format
  257. msgid "invalid package name (%.250s)"
  258. msgstr ""
  259. #: lib/fields.c:91
  260. #, c-format
  261. msgid "empty file details field `%s'"
  262. msgstr ""
  263. #: lib/fields.c:94
  264. #, c-format
  265. msgid "file details field `%s' not allowed in status file"
  266. msgstr ""
  267. #: lib/fields.c:104
  268. #, c-format
  269. msgid "too many values in file details field `%s' (compared to others)"
  270. msgstr ""
  271. #: lib/fields.c:117
  272. #, c-format
  273. msgid "too few values in file details field `%s' (compared to others)"
  274. msgstr ""
  275. #: lib/fields.c:133
  276. msgid "yes/no in boolean field"
  277. msgstr ""
  278. #: lib/fields.c:152
  279. msgid "word in `priority' field"
  280. msgstr ""
  281. #: lib/fields.c:166
  282. msgid "value for `status' field not allowed in this context"
  283. msgstr ""
  284. #: lib/fields.c:170
  285. msgid "first (want) word in `status' field"
  286. msgstr ""
  287. #: lib/fields.c:173
  288. msgid "second (error) word in `status' field"
  289. msgstr ""
  290. #: lib/fields.c:179
  291. msgid "third (status) word in `status' field"
  292. msgstr ""
  293. #: lib/fields.c:190
  294. #, c-format
  295. msgid "error in Version string `%.250s': %.250s"
  296. msgstr ""
  297. #: lib/fields.c:201
  298. msgid "obsolete `Revision' or `Package-Revision' field used"
  299. msgstr ""
  300. #: lib/fields.c:219
  301. msgid "value for `config-version' field not allowed in this context"
  302. msgstr ""
  303. #: lib/fields.c:223
  304. #, c-format
  305. msgid "error in Config-Version string `%.250s': %.250s"
  306. msgstr ""
  307. #: lib/fields.c:247
  308. #, c-format
  309. msgid "value for `conffiles' has malformatted line `%.*s'"
  310. msgstr ""
  311. #: lib/fields.c:265
  312. #, c-format
  313. msgid "value for `conffiles' has line starting with non-space `%c'"
  314. msgstr ""
  315. #: lib/fields.c:281
  316. msgid "root or null directory is listed as a conffile"
  317. msgstr ""
  318. #: lib/fields.c:337
  319. #, c-format
  320. msgid ""
  321. "`%s' field, missing package name, or garbage where package name expected"
  322. msgstr ""
  323. #: lib/fields.c:340
  324. #, c-format
  325. msgid "`%s' field, invalid package name `%.255s': %s"
  326. msgstr ""
  327. #: lib/fields.c:371
  328. #, c-format
  329. msgid ""
  330. "`%s' field, reference to `%.255s':\n"
  331. " bad version relationship %c%c"
  332. msgstr ""
  333. #: lib/fields.c:377
  334. #, c-format
  335. msgid ""
  336. "`%s' field, reference to `%.255s':\n"
  337. " `%c' is obsolete, use `%c=' or `%c%c' instead"
  338. msgstr ""
  339. #: lib/fields.c:387
  340. #, c-format
  341. msgid ""
  342. "`%s' field, reference to `%.255s':\n"
  343. " implicit exact match on version number, suggest using `=' instead"
  344. msgstr ""
  345. #: lib/fields.c:394
  346. msgid "Only exact versions may be used for Provides"
  347. msgstr ""
  348. #: lib/fields.c:398
  349. #, c-format
  350. msgid ""
  351. "`%s' field, reference to `%.255s':\n"
  352. " version value starts with non-alphanumeric, suggest adding a space"
  353. msgstr ""
  354. #: lib/fields.c:413 lib/fields.c:416
  355. #, c-format
  356. msgid "`%s' field, reference to `%.255s': version contains `%c'"
  357. msgstr ""
  358. #: lib/fields.c:419
  359. #, c-format
  360. msgid "`%s' field, reference to `%.255s': version unterminated"
  361. msgstr ""
  362. #: lib/fields.c:429
  363. #, c-format
  364. msgid "`%s' field, reference to `%.255s': error in version: %.255s"
  365. msgstr ""
  366. #: lib/fields.c:438
  367. #, c-format
  368. msgid "`%s' field, syntax error after reference to package `%.255s'"
  369. msgstr ""
  370. #: lib/fields.c:446
  371. #, c-format
  372. msgid "alternatives (`|') not allowed in %s field"
  373. msgstr ""
  374. #: lib/lock.c:45
  375. msgid "unable to unlock dpkg status database"
  376. msgstr ""
  377. #: lib/lock.c:65
  378. msgid "you do not have permission to lock the dpkg status database"
  379. msgstr ""
  380. #: lib/lock.c:66
  381. msgid "unable to open/create status database lockfile"
  382. msgstr ""
  383. #: lib/lock.c:75
  384. msgid "status database area is locked by another process"
  385. msgstr ""
  386. #: lib/lock.c:76
  387. msgid "unable to lock dpkg status database"
  388. msgstr ""
  389. #: lib/mlib.c:51
  390. #, c-format
  391. msgid "malloc failed (%ld bytes)"
  392. msgstr ""
  393. #: lib/mlib.c:64 dpkg-deb/info.c:99
  394. #, c-format
  395. msgid "realloc failed (%ld bytes)"
  396. msgstr ""
  397. #: lib/mlib.c:71
  398. #, c-format
  399. msgid "%s (subprocess): %s\n"
  400. msgstr ""
  401. #: lib/mlib.c:85
  402. msgid "fork failed"
  403. msgstr ""
  404. #: lib/mlib.c:98
  405. #, c-format
  406. msgid "failed to dup for std%s"
  407. msgstr ""
  408. #: lib/mlib.c:99
  409. #, c-format
  410. msgid "failed to dup for fd %d"
  411. msgstr ""
  412. #: lib/mlib.c:105
  413. msgid "failed to create pipe"
  414. msgstr ""
  415. #: lib/mlib.c:114
  416. #, c-format
  417. msgid "dpkg: warning - %s returned error exit status %d\n"
  418. msgstr ""
  419. #: lib/mlib.c:116
  420. #, c-format
  421. msgid "subprocess %s returned error exit status %d"
  422. msgstr ""
  423. #: lib/mlib.c:121
  424. #, c-format
  425. msgid "dpkg: warning - %s killed by signal (%s)%s\n"
  426. msgstr ""
  427. #: lib/mlib.c:122 lib/mlib.c:125
  428. msgid ", core dumped"
  429. msgstr ""
  430. #: lib/mlib.c:124
  431. #, c-format
  432. msgid "subprocess %s killed by signal (%s)%s"
  433. msgstr ""
  434. #: lib/mlib.c:127
  435. #, c-format
  436. msgid "subprocess %s failed with wait status code %d"
  437. msgstr ""
  438. #: lib/mlib.c:137
  439. #, c-format
  440. msgid "wait for %s failed"
  441. msgstr ""
  442. #: lib/mlib.c:145
  443. #, c-format
  444. msgid "unable to read filedescriptor flags for %.250s"
  445. msgstr ""
  446. #: lib/mlib.c:147
  447. #, c-format
  448. msgid "unable to set close-on-exec flag for %.250s"
  449. msgstr ""
  450. #: lib/mlib.c:199
  451. #, c-format
  452. msgid "failed in buffer_write(fd) (%i, ret=%li): %s"
  453. msgstr ""
  454. #: lib/mlib.c:206
  455. #, c-format
  456. msgid "eof in buffer_write(stream): %s"
  457. msgstr ""
  458. #: lib/mlib.c:208
  459. #, c-format
  460. msgid "error in buffer_write(stream): %s"
  461. msgstr ""
  462. #: lib/mlib.c:214
  463. #, c-format
  464. msgid "unknown data type `%i' in buffer_write\n"
  465. msgstr ""
  466. #: lib/mlib.c:230
  467. #, c-format
  468. msgid "failed in buffer_read(fd): %s"
  469. msgstr ""
  470. #: lib/mlib.c:237
  471. #, c-format
  472. msgid "error in buffer_read(stream): %s"
  473. msgstr ""
  474. #: lib/mlib.c:240
  475. #, c-format
  476. msgid "unknown data type `%i' in buffer_read\n"
  477. msgstr ""
  478. #: lib/mlib.c:306
  479. #, c-format
  480. msgid "failed to allocate buffer in buffer_copy (%s)"
  481. msgstr ""
  482. #: lib/mlib.c:337
  483. #, c-format
  484. msgid "failed in buffer_copy (%s)"
  485. msgstr ""
  486. #: lib/mlib.c:338
  487. #, c-format
  488. msgid "short read in buffer_copy (%s)"
  489. msgstr ""
  490. #: lib/myopt.c:40
  491. #, c-format
  492. msgid "failed to open configuration file `%.255s' for reading"
  493. msgstr ""
  494. #: lib/myopt.c:73
  495. #, c-format
  496. msgid "configuration error: unknown option %s"
  497. msgstr ""
  498. #: lib/myopt.c:76
  499. #, c-format
  500. msgid "configuration error: %s needs a value"
  501. msgstr ""
  502. #: lib/myopt.c:80
  503. #, c-format
  504. msgid "configuration error: %s does not take a value"
  505. msgstr ""
  506. #: lib/myopt.c:85
  507. #, c-format
  508. msgid "read error in configuration file `%.255s'"
  509. msgstr ""
  510. #: lib/myopt.c:86
  511. #, c-format
  512. msgid "error closing configuration file `%.255s'"
  513. msgstr ""
  514. #: lib/myopt.c:94 lib/myopt.c:102
  515. msgid "Error allocating memory for cfgfilename"
  516. msgstr ""
  517. #: lib/myopt.c:130
  518. #, c-format
  519. msgid "unknown option --%s"
  520. msgstr ""
  521. #: lib/myopt.c:134
  522. #, c-format
  523. msgid "--%s option takes a value"
  524. msgstr ""
  525. #: lib/myopt.c:139
  526. #, c-format
  527. msgid "--%s option does not take a value"
  528. msgstr ""
  529. #: lib/myopt.c:146
  530. #, c-format
  531. msgid "unknown option -%c"
  532. msgstr ""
  533. #: lib/myopt.c:151
  534. #, c-format
  535. msgid "-%c option takes a value"
  536. msgstr ""
  537. #: lib/myopt.c:159
  538. #, c-format
  539. msgid "-%c option does not take a value"
  540. msgstr ""
  541. #: lib/parse.c:106
  542. #, c-format
  543. msgid "failed to open package info file `%.255s' for reading"
  544. msgstr ""
  545. #: lib/parse.c:111
  546. #, c-format
  547. msgid "can't stat package info file `%.255s'"
  548. msgstr ""
  549. #: lib/parse.c:116
  550. #, c-format
  551. msgid "can't mmap package info file `%.255s'"
  552. msgstr ""
  553. #: lib/parse.c:119
  554. #, c-format
  555. msgid "failed to malloc for info file `%.255s'"
  556. msgstr ""
  557. #: lib/parse.c:121
  558. #, c-format
  559. msgid "copy info file `%.255s'"
  560. msgstr ""
  561. #: lib/parse.c:153
  562. #, c-format
  563. msgid "EOF after field name `%.*s'"
  564. msgstr ""
  565. #: lib/parse.c:156
  566. #, c-format
  567. msgid "newline in field name `%.*s'"
  568. msgstr ""
  569. #: lib/parse.c:159
  570. #, c-format
  571. msgid "MSDOS EOF (^Z) in field name `%.*s'"
  572. msgstr ""
  573. #: lib/parse.c:162
  574. #, c-format
  575. msgid "field name `%.*s' must be followed by colon"
  576. msgstr ""
  577. #: lib/parse.c:170
  578. #, c-format
  579. msgid "EOF before value of field `%.*s' (missing final newline)"
  580. msgstr ""
  581. #: lib/parse.c:174
  582. #, c-format
  583. msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
  584. msgstr ""
  585. #: lib/parse.c:188
  586. #, c-format
  587. msgid "EOF during value of field `%.*s' (missing final newline)"
  588. msgstr ""
  589. #: lib/parse.c:211
  590. #, c-format
  591. msgid "duplicate value for `%s' field"
  592. msgstr ""
  593. #: lib/parse.c:216
  594. #, c-format
  595. msgid "user-defined field name `%.*s' too short"
  596. msgstr ""
  597. #: lib/parse.c:221
  598. #, c-format
  599. msgid "duplicate value for user-defined field `%.*s'"
  600. msgstr ""
  601. #: lib/parse.c:234
  602. msgid "several package info entries found, only one allowed"
  603. msgstr ""
  604. #: lib/parse.c:260
  605. msgid "Configured-Version for package with inappropriate Status"
  606. msgstr ""
  607. #: lib/parse.c:274
  608. msgid "Package which in state not-installed has conffiles, forgetting them"
  609. msgstr ""
  610. #: lib/parse.c:331
  611. #, c-format
  612. msgid "failed to close after read: `%.255s'"
  613. msgstr ""
  614. #: lib/parse.c:332
  615. #, c-format
  616. msgid "no package information in `%.255s'"
  617. msgstr ""
  618. #: lib/parsehelp.c:38
  619. #, c-format
  620. msgid "failed to read `%s' at line %d"
  621. msgstr ""
  622. #: lib/parsehelp.c:41
  623. #, c-format
  624. msgid "warning, in file `%.255s' near line %d"
  625. msgstr ""
  626. #: lib/parsehelp.c:44
  627. #, c-format
  628. msgid "parse error, in file `%.255s' near line %d"
  629. msgstr ""
  630. #: lib/parsehelp.c:48
  631. #, c-format
  632. msgid " package `%.255s'"
  633. msgstr ""
  634. #: lib/parsehelp.c:59
  635. msgid "failed to write parsing warning"
  636. msgstr ""
  637. #: lib/parsehelp.c:119
  638. msgid "may not be empty string"
  639. msgstr ""
  640. #: lib/parsehelp.c:120
  641. msgid "must start with an alphanumeric"
  642. msgstr ""
  643. #: lib/parsehelp.c:129
  644. #, c-format
  645. msgid "character `%c' not allowed (only letters, digits and characters `%s')"
  646. msgstr ""
  647. #: lib/parsehelp.c:184
  648. msgid "<none>"
  649. msgstr ""
  650. #: lib/parsehelp.c:199
  651. msgid "version string is empty"
  652. msgstr ""
  653. #: lib/parsehelp.c:210
  654. msgid "version string has embedded spaces"
  655. msgstr ""
  656. #: lib/parsehelp.c:215
  657. msgid "epoch in version is not number"
  658. msgstr ""
  659. #: lib/parsehelp.c:216
  660. msgid "nothing after colon in version number"
  661. msgstr ""
  662. #: lib/parsehelp.c:238
  663. #, c-format
  664. msgid "missing %s"
  665. msgstr ""
  666. #: lib/parsehelp.c:242
  667. #, c-format
  668. msgid "empty value for %s"
  669. msgstr ""
  670. #: lib/showcright.c:34
  671. msgid "cannot open GPL file"
  672. msgstr ""
  673. #: lib/showpkg.c:70
  674. #, c-format
  675. msgid "invalid character `%c' in field width\n"
  676. msgstr ""
  677. #: lib/showpkg.c:157
  678. #, c-format
  679. msgid "Closing brace missing in format\n"
  680. msgstr ""
  681. #: lib/varbuf.c:105
  682. msgid "failed to realloc for variable buffer"
  683. msgstr ""
  684. #: src/archives.c:209
  685. msgid "process_archive ... already disappeared !"
  686. msgstr ""
  687. #: src/archives.c:229
  688. msgid "error reading from dpkg-deb pipe"
  689. msgstr ""
  690. #: src/archives.c:266
  691. #, c-format
  692. msgid "error setting timestamps of `%.255s'"
  693. msgstr ""
  694. #: src/archives.c:273 src/archives.c:667
  695. #, c-format
  696. msgid "error setting ownership of `%.255s'"
  697. msgstr ""
  698. #: src/archives.c:275 src/archives.c:670
  699. #, c-format
  700. msgid "error setting permissions of `%.255s'"
  701. msgstr ""
  702. #: src/archives.c:339
  703. #, c-format
  704. msgid "failed to stat (dereference) existing symlink `%.250s'"
  705. msgstr ""
  706. #: src/archives.c:360
  707. #, c-format
  708. msgid ""
  709. "failed to stat (dereference) proposed new symlink target `%.250s' for "
  710. "symlink `%.250s'"
  711. msgstr ""
  712. #: src/archives.c:411
  713. #, c-format
  714. msgid ""
  715. "trying to overwrite `%.250s', which is the diverted version of `"
  716. "%.250s' (package: %.100s)"
  717. msgstr ""
  718. #: src/archives.c:417
  719. #, c-format
  720. msgid "trying to overwrite `%.250s', which is the diverted version of `%.250s'"
  721. msgstr ""
  722. #: src/archives.c:440
  723. #, c-format
  724. msgid "unable to stat `%.255s' (which I was about to install)"
  725. msgstr ""
  726. #: src/archives.c:448
  727. #, c-format
  728. msgid ""
  729. "unable to clean up mess surrounding `%.255s' before installing another "
  730. "version"
  731. msgstr ""
  732. #: src/archives.c:454
  733. #, c-format
  734. msgid "unable to stat restored `%.255s' before installing another version"
  735. msgstr ""
  736. #: src/archives.c:489
  737. #, c-format
  738. msgid "archive contained object `%.255s' of unknown type 0x%x"
  739. msgstr ""
  740. #: src/archives.c:549
  741. #, c-format
  742. msgid "Replacing files in old package %s ...\n"
  743. msgstr ""
  744. #: src/archives.c:552
  745. #, c-format
  746. msgid "Replaced by files in installed package %s ...\n"
  747. msgstr ""
  748. #: src/archives.c:558
  749. #, c-format
  750. msgid ""
  751. "trying to overwrite directory `%.250s' in package %.250s with nondirectory"
  752. msgstr ""
  753. #: src/archives.c:568
  754. #, c-format
  755. msgid "trying to overwrite `%.250s', which is also in package %.250s"
  756. msgstr ""
  757. #: src/archives.c:593
  758. #, c-format
  759. msgid "gobble replaced file `%.255s'"
  760. msgstr ""
  761. #: src/archives.c:655
  762. #, c-format
  763. msgid "backend dpkg-deb during `%.255s'"
  764. msgstr ""
  765. #: src/archives.c:673
  766. #, c-format
  767. msgid "error closing/writing `%.255s'"
  768. msgstr ""
  769. #: src/archives.c:678
  770. #, c-format
  771. msgid "error creating pipe `%.255s'"
  772. msgstr ""
  773. #: src/archives.c:684 src/archives.c:690
  774. #, c-format
  775. msgid "error creating device `%.255s'"
  776. msgstr ""
  777. #: src/archives.c:699
  778. #, c-format
  779. msgid "error creating hard link `%.255s'"
  780. msgstr ""
  781. #: src/archives.c:706
  782. #, c-format
  783. msgid "error creating symbolic link `%.255s'"
  784. msgstr ""
  785. #: src/archives.c:712 src/archives.c:717
  786. #, c-format
  787. msgid "error setting ownership of symlink `%.255s'"
  788. msgstr ""
  789. #: src/archives.c:723
  790. #, c-format
  791. msgid "error creating directory `%.255s'"
  792. msgstr ""
  793. #: src/archives.c:758
  794. #, c-format
  795. msgid "unable to move aside `%.255s' to install new version"
  796. msgstr ""
  797. #: src/archives.c:767
  798. #, c-format
  799. msgid "unable to read link `%.255s'"
  800. msgstr ""
  801. #: src/archives.c:771
  802. #, c-format
  803. msgid "unable to make backup symlink for `%.255s'"
  804. msgstr ""
  805. #: src/archives.c:774 src/archives.c:777
  806. #, c-format
  807. msgid "unable to chown backup symlink for `%.255s'"
  808. msgstr ""
  809. #: src/archives.c:782
  810. #, c-format
  811. msgid "unable to make backup link of `%.255s' before installing new version"
  812. msgstr ""
  813. #: src/archives.c:806
  814. #, c-format
  815. msgid "unable to install new version of `%.255s'"
  816. msgstr ""
  817. #: src/archives.c:853
  818. #, c-format
  819. msgid ""
  820. "dpkg: warning - ignoring dependency problem with %s:\n"
  821. "%s"
  822. msgstr ""
  823. #: src/archives.c:860
  824. #, c-format
  825. msgid ""
  826. "dpkg: warning - considering deconfiguration of essential\n"
  827. " package %s, to enable %s.\n"
  828. msgstr ""
  829. #: src/archives.c:864
  830. #, c-format
  831. msgid ""
  832. "dpkg: no, %s is essential, will not deconfigure\n"
  833. " it in order to enable %s.\n"
  834. msgstr ""
  835. #: src/archives.c:878
  836. #, c-format
  837. msgid ""
  838. "dpkg: no, cannot proceed with %s (--auto-deconfigure will help):\n"
  839. "%s"
  840. msgstr ""
  841. #: src/archives.c:888
  842. #, c-format
  843. msgid "removal of %.250s"
  844. msgstr ""
  845. #: src/archives.c:915
  846. #, c-format
  847. msgid "installation of %.250s"
  848. msgstr ""
  849. #: src/archives.c:916
  850. #, c-format
  851. msgid ""
  852. "dpkg: considering deconfiguration of %s, which would be broken by %s ...\n"
  853. msgstr ""
  854. #: src/archives.c:923
  855. #, c-format
  856. msgid "dpkg: yes, will deconfigure %s (broken by %s).\n"
  857. msgstr ""
  858. #: src/archives.c:927 src/archives.c:1048
  859. #, c-format
  860. msgid ""
  861. "dpkg: regarding %s containing %s:\n"
  862. "%s"
  863. msgstr ""
  864. #: src/archives.c:935
  865. #, c-format
  866. msgid "dpkg: warning - ignoring breakage, may proceed anyway !\n"
  867. msgstr ""
  868. #: src/archives.c:941
  869. #, c-format
  870. msgid ""
  871. "installing %.250s would break %.250s, and\n"
  872. " deconfiguration is not permitted (--auto-deconfigure might help)"
  873. msgstr ""
  874. #: src/archives.c:945
  875. #, c-format
  876. msgid "installing %.250s would break existing software"
  877. msgstr ""
  878. #: src/archives.c:978
  879. #, c-format
  880. msgid "dpkg: considering removing %s in favour of %s ...\n"
  881. msgstr ""
  882. #: src/archives.c:982
  883. #, c-format
  884. msgid "%s is not properly installed - ignoring any dependencies on it.\n"
  885. msgstr ""
  886. #: src/archives.c:1009
  887. #, c-format
  888. msgid "dpkg: may have trouble removing %s, as it provides %s ...\n"
  889. msgstr ""
  890. #: src/archives.c:1024
  891. #, c-format
  892. msgid ""
  893. "dpkg: package %s requires reinstallation, but will remove anyway as you "
  894. "request.\n"
  895. msgstr ""
  896. #: src/archives.c:1027
  897. #, c-format
  898. msgid "dpkg: package %s requires reinstallation, will not remove.\n"
  899. msgstr ""
  900. #: src/archives.c:1034
  901. #, c-format
  902. msgid "package %s has too many Conflicts/Replaces pairs"
  903. msgstr ""
  904. #: src/archives.c:1040
  905. #, c-format
  906. msgid "dpkg: yes, will remove %s in favour of %s.\n"
  907. msgstr ""
  908. #: src/archives.c:1051
  909. #, c-format
  910. msgid "conflicting packages - not installing %.250s"
  911. msgstr ""
  912. #: src/archives.c:1052
  913. #, c-format
  914. msgid "dpkg: warning - ignoring conflict, may proceed anyway !\n"
  915. msgstr ""
  916. #: src/archives.c:1090
  917. #, c-format
  918. msgid "--%s --recursive needs at least one path argument"
  919. msgstr ""
  920. #: src/archives.c:1120
  921. msgid "failed to exec find for --recursive"
  922. msgstr ""
  923. #: src/archives.c:1125
  924. msgid "failed to fdopen find's pipe"
  925. msgstr ""
  926. #: src/archives.c:1131
  927. msgid "error reading find's pipe"
  928. msgstr ""
  929. #: src/archives.c:1132
  930. msgid "error closing find's pipe"
  931. msgstr ""
  932. #: src/archives.c:1135
  933. #, c-format
  934. msgid "find for --recursive returned unhandled error %i"
  935. msgstr ""
  936. #: src/archives.c:1138
  937. msgid "searched, but found no packages (files matching *.deb)"
  938. msgstr ""
  939. #: src/archives.c:1154
  940. #, c-format
  941. msgid "--%s needs at least one package archive file argument"
  942. msgstr ""
  943. #: src/archives.c:1223
  944. #, c-format
  945. msgid "Selecting previously deselected package %s.\n"
  946. msgstr ""
  947. #: src/archives.c:1228
  948. #, c-format
  949. msgid "Skipping deselected package %s.\n"
  950. msgstr ""
  951. #: src/archives.c:1242
  952. #, c-format
  953. msgid "Version %.250s of %.250s already installed, skipping.\n"
  954. msgstr ""
  955. #: src/archives.c:1252
  956. #, c-format
  957. msgid "%s - warning: downgrading %.250s from %.250s to %.250s.\n"
  958. msgstr ""
  959. #: src/archives.c:1258
  960. #, c-format
  961. msgid "Will not downgrade %.250s from version %.250s to %.250s, skipping.\n"
  962. msgstr ""
  963. #: src/cleanup.c:83
  964. #, c-format
  965. msgid ""
  966. "unable to remove newly-installed version of `%.250s' to allow reinstallation "
  967. "of backup copy"
  968. msgstr ""
  969. #: src/cleanup.c:90
  970. #, c-format
  971. msgid "unable to restore backup version of `%.250s'"
  972. msgstr ""
  973. #: src/cleanup.c:94
  974. #, c-format
  975. msgid "unable to remove newly-installed version of `%.250s'"
  976. msgstr ""
  977. #: src/cleanup.c:101
  978. #, c-format
  979. msgid "unable to remove newly-extracted version of `%.250s'"
  980. msgstr ""
  981. #: src/configure.c:92
  982. #, c-format
  983. msgid "no package named `%s' is installed, cannot configure"
  984. msgstr ""
  985. #: src/configure.c:94
  986. #, c-format
  987. msgid "package %.250s is already installed and configured"
  988. msgstr ""
  989. #: src/configure.c:96
  990. #, c-format
  991. msgid ""
  992. "package %.250s is not ready for configuration\n"
  993. " cannot configure (current status `%.250s')"
  994. msgstr ""
  995. #: src/configure.c:117
  996. #, c-format
  997. msgid ""
  998. "dpkg: dependency problems prevent configuration of %s:\n"
  999. "%s"
  1000. msgstr ""
  1001. #: src/configure.c:120
  1002. msgid "dependency problems - leaving unconfigured"
  1003. msgstr ""
  1004. #: src/configure.c:124
  1005. #, c-format
  1006. msgid ""
  1007. "dpkg: %s: dependency problems, but configuring anyway as you request:\n"
  1008. "%s"
  1009. msgstr ""
  1010. #: src/configure.c:132
  1011. msgid ""
  1012. "Package is in a very bad inconsistent state - you should\n"
  1013. " reinstall it before attempting configuration."
  1014. msgstr ""
  1015. #: src/configure.c:135
  1016. #, c-format
  1017. msgid "Setting up %s (%s) ...\n"
  1018. msgstr ""
  1019. #: src/configure.c:182
  1020. #, c-format
  1021. msgid "unable to stat new dist conffile `%.250s'"
  1022. msgstr ""
  1023. #: src/configure.c:192 src/configure.c:431
  1024. #, c-format
  1025. msgid "unable to stat current installed conffile `%.250s'"
  1026. msgstr ""
  1027. #: src/configure.c:201
  1028. #, c-format
  1029. msgid ""
  1030. "\n"
  1031. "Configuration file `%s', does not exist on system.\n"
  1032. "Installing new config file as you request.\n"
  1033. msgstr ""
  1034. #: src/configure.c:235
  1035. #, c-format
  1036. msgid "dpkg: %s: warning - failed to remove old backup `%.250s': %s\n"
  1037. msgstr ""
  1038. #: src/configure.c:243
  1039. #, c-format
  1040. msgid "dpkg: %s: warning - failed to rename `%.250s' to `%.250s': %s\n"
  1041. msgstr ""
  1042. #: src/configure.c:251
  1043. #, c-format
  1044. msgid "dpkg: %s: warning - failed to remove `%.250s': %s\n"
  1045. msgstr ""
  1046. #: src/configure.c:259
  1047. #, c-format
  1048. msgid "dpkg: %s: warning - failed to remove old distrib version `%.250s': %s\n"
  1049. msgstr ""
  1050. #: src/configure.c:264
  1051. #, c-format
  1052. msgid "dpkg: %s: warning - failed to remove `%.250s' (before overwrite): %s\n"
  1053. msgstr ""
  1054. #: src/configure.c:269
  1055. #, c-format
  1056. msgid "dpkg: %s: warning - failed to link `%.250s' to `%.250s': %s\n"
  1057. msgstr ""
  1058. #: src/configure.c:273
  1059. #, c-format
  1060. msgid "Installing new version of config file %s ...\n"
  1061. msgstr ""
  1062. #: src/configure.c:277
  1063. #, c-format
  1064. msgid "unable to install `%.250s' as `%.250s'"
  1065. msgstr ""
  1066. #: src/configure.c:336
  1067. #, c-format
  1068. msgid ""
  1069. "dpkg: %s: warning - unable to stat config file `%s'\n"
  1070. " (= `%s'): %s\n"
  1071. msgstr ""
  1072. #: src/configure.c:347
  1073. #, c-format
  1074. msgid ""
  1075. "dpkg: %s: warning - config file `%s' is a circular link\n"
  1076. " (= `%s')\n"
  1077. msgstr ""
  1078. #: src/configure.c:360
  1079. #, c-format
  1080. msgid ""
  1081. "dpkg: %s: warning - unable to readlink conffile `%s'\n"
  1082. " (= `%s'): %s\n"
  1083. msgstr ""
  1084. #: src/configure.c:380
  1085. #, c-format
  1086. msgid ""
  1087. "dpkg: %s: warning - conffile `%.250s' resolves to degenerate filename\n"
  1088. " (`%s' is a symlink to `%s')\n"
  1089. msgstr ""
  1090. #: src/configure.c:393
  1091. #, c-format
  1092. msgid ""
  1093. "dpkg: %s: warning - conffile `%.250s' is not a plain file or symlink (= `%"
  1094. "s')\n"
  1095. msgstr ""
  1096. #: src/configure.c:411
  1097. msgid "md5hash"
  1098. msgstr ""
  1099. #: src/configure.c:417
  1100. #, c-format
  1101. msgid "dpkg: %s: warning - unable to open conffile %s for hash: %s\n"
  1102. msgstr ""
  1103. #: src/configure.c:435
  1104. #, c-format
  1105. msgid "unable to change ownership of new dist conffile `%.250s'"
  1106. msgstr ""
  1107. #: src/configure.c:438
  1108. #, c-format
  1109. msgid "unable to set mode of new dist conffile `%.250s'"
  1110. msgstr ""
  1111. #: src/configure.c:468
  1112. #, c-format
  1113. msgid "failed to run %s (%.250s)"
  1114. msgstr ""
  1115. #: src/configure.c:477 src/configure.c:515
  1116. msgid "wait for shell failed"
  1117. msgstr ""
  1118. #: src/configure.c:497
  1119. msgid "Type `exit' when you're done.\n"
  1120. msgstr ""
  1121. #: src/configure.c:506
  1122. #, c-format
  1123. msgid "failed to exec shell (%.250s)"
  1124. msgstr ""
  1125. #: src/configure.c:518
  1126. msgid "Don't forget to foreground (`fg') this process when you're done !\n"
  1127. msgstr ""
  1128. #: src/configure.c:561
  1129. #, c-format
  1130. msgid ""
  1131. "\n"
  1132. "Configuration file `%s'"
  1133. msgstr ""
  1134. #: src/configure.c:563
  1135. #, c-format
  1136. msgid " (actually `%s')"
  1137. msgstr ""
  1138. #: src/configure.c:567
  1139. #, c-format
  1140. msgid ""
  1141. "\n"
  1142. " ==> File on system created by you or by a script.\n"
  1143. " ==> File also in package provided by package maintainer.\n"
  1144. msgstr ""
  1145. #: src/configure.c:572
  1146. #, c-format
  1147. msgid ""
  1148. "\n"
  1149. " Not modified since installation.\n"
  1150. msgstr ""
  1151. #: src/configure.c:574
  1152. #, c-format
  1153. msgid ""
  1154. "\n"
  1155. " ==> Modified (by you or by a script) since installation.\n"
  1156. msgstr ""
  1157. #: src/configure.c:575
  1158. #, c-format
  1159. msgid ""
  1160. "\n"
  1161. " ==> Deleted (by you or by a script) since installation.\n"
  1162. msgstr ""
  1163. #: src/configure.c:578
  1164. #, c-format
  1165. msgid " ==> Package distributor has shipped an updated version.\n"
  1166. msgstr ""
  1167. #: src/configure.c:579
  1168. #, c-format
  1169. msgid " Version in package is the same as at last installation.\n"
  1170. msgstr ""
  1171. #: src/configure.c:586
  1172. #, c-format
  1173. msgid " ==> Using new file as you requested.\n"
  1174. msgstr ""
  1175. #: src/configure.c:590
  1176. #, c-format
  1177. msgid " ==> Using current old file as you requested.\n"
  1178. msgstr ""
  1179. #: src/configure.c:600
  1180. #, c-format
  1181. msgid " ==> Keeping old config file as default.\n"
  1182. msgstr ""
  1183. #: src/configure.c:604
  1184. #, c-format
  1185. msgid " ==> Using new config file as default.\n"
  1186. msgstr ""
  1187. #: src/configure.c:612
  1188. #, c-format
  1189. msgid ""
  1190. " What would you like to do about it ? Your options are:\n"
  1191. " Y or I : install the package maintainer's version\n"
  1192. " N or O : keep your currently-installed version\n"
  1193. " D : show the differences between the versions\n"
  1194. " Z : background this process to examine the situation\n"
  1195. msgstr ""
  1196. #: src/configure.c:619
  1197. #, c-format
  1198. msgid " The default action is to keep your current version.\n"
  1199. msgstr ""
  1200. #: src/configure.c:621
  1201. #, c-format
  1202. msgid " The default action is to install the new version.\n"
  1203. msgstr ""
  1204. #: src/configure.c:627
  1205. msgid "[default=N]"
  1206. msgstr ""
  1207. #: src/configure.c:628
  1208. msgid "[default=Y]"
  1209. msgstr ""
  1210. #: src/configure.c:628
  1211. msgid "[no default]"
  1212. msgstr ""
  1213. #: src/configure.c:631
  1214. msgid "error writing to stderr, discovered before conffile prompt"
  1215. msgstr ""
  1216. #: src/configure.c:638
  1217. msgid "read error on stdin at conffile prompt"
  1218. msgstr ""
  1219. #: src/configure.c:639
  1220. msgid "EOF on stdin at conffile prompt"
  1221. msgstr ""
  1222. #: src/depcon.c:77
  1223. #, c-format
  1224. msgid "unable to check for existence of `%.250s'"
  1225. msgstr ""
  1226. #: src/depcon.c:156
  1227. #, c-format
  1228. msgid "%s depends on %s"
  1229. msgstr ""
  1230. #: src/depcon.c:159
  1231. #, c-format
  1232. msgid "%s pre-depends on %s"
  1233. msgstr ""
  1234. #: src/depcon.c:162
  1235. #, c-format
  1236. msgid "%s recommends %s"
  1237. msgstr ""
  1238. #: src/depcon.c:165
  1239. #, c-format
  1240. msgid "%s suggests %s"
  1241. msgstr ""
  1242. #: src/depcon.c:168
  1243. #, c-format
  1244. msgid "%s breaks %s"
  1245. msgstr ""
  1246. #: src/depcon.c:171
  1247. #, c-format
  1248. msgid "%s conflicts with %s"
  1249. msgstr ""
  1250. #: src/depcon.c:174
  1251. #, c-format
  1252. msgid "%s enhances %s"
  1253. msgstr ""
  1254. #: src/depcon.c:265
  1255. #, c-format
  1256. msgid " %.250s is to be removed.\n"
  1257. msgstr ""
  1258. #: src/depcon.c:268
  1259. #, c-format
  1260. msgid " %.250s is to be deconfigured.\n"
  1261. msgstr ""
  1262. #: src/depcon.c:272
  1263. #, c-format
  1264. msgid " %.250s is to be installed, but is version %.250s.\n"
  1265. msgstr ""
  1266. #: src/depcon.c:280
  1267. #, c-format
  1268. msgid " %.250s is installed, but is version %.250s.\n"
  1269. msgstr ""
  1270. #: src/depcon.c:295
  1271. #, c-format
  1272. msgid " %.250s is unpacked, but has never been configured.\n"
  1273. msgstr ""
  1274. #: src/depcon.c:299
  1275. #, c-format
  1276. msgid " %.250s is unpacked, but is version %.250s.\n"
  1277. msgstr ""
  1278. #: src/depcon.c:305
  1279. #, c-format
  1280. msgid " %.250s latest configured version is %.250s.\n"
  1281. msgstr ""
  1282. #: src/depcon.c:314
  1283. #, c-format
  1284. msgid " %.250s is %s.\n"
  1285. msgstr ""
  1286. #: src/depcon.c:350
  1287. #, c-format
  1288. msgid " %.250s provides %.250s but is to be removed.\n"
  1289. msgstr ""
  1290. #: src/depcon.c:354
  1291. #, c-format
  1292. msgid " %.250s provides %.250s but is to be deconfigured.\n"
  1293. msgstr ""
  1294. #: src/depcon.c:359
  1295. #, c-format
  1296. msgid " %.250s provides %.250s but is %s.\n"
  1297. msgstr ""
  1298. #: src/depcon.c:373
  1299. #, c-format
  1300. msgid " %.250s is not installed.\n"
  1301. msgstr ""
  1302. #: src/depcon.c:404
  1303. #, c-format
  1304. msgid " %.250s (version %.250s) is to be installed.\n"
  1305. msgstr ""
  1306. #: src/depcon.c:424
  1307. #, c-format
  1308. msgid " %.250s (version %.250s) is %s.\n"
  1309. msgstr ""
  1310. #: src/depcon.c:449
  1311. #, c-format
  1312. msgid " %.250s provides %.250s and is to be installed.\n"
  1313. msgstr ""
  1314. #: src/depcon.c:485
  1315. #, c-format
  1316. msgid " %.250s provides %.250s and is %s.\n"
  1317. msgstr ""
  1318. #: src/enquiry.c:56 src/query.c:96 src/query.c:139
  1319. msgid "(no description available)"
  1320. msgstr ""
  1321. #: src/enquiry.c:81
  1322. msgid ""
  1323. "The following packages are in a mess due to serious problems during\n"
  1324. "installation. They must be reinstalled for them (and any packages\n"
  1325. "that depend on them) to function properly:\n"
  1326. msgstr ""
  1327. #: src/enquiry.c:86
  1328. msgid ""
  1329. "The following packages have been unpacked but not yet configured.\n"
  1330. "They must be configured using dpkg --configure or the configure\n"
  1331. "menu option in dselect for them to work:\n"
  1332. msgstr ""
  1333. #: src/enquiry.c:91
  1334. msgid ""
  1335. "The following packages are only half configured, probably due to problems\n"
  1336. "configuring them the first time. The configuration should be retried using\n"
  1337. "dpkg --configure <package> or the configure menu option in dselect:\n"
  1338. msgstr ""
  1339. #: src/enquiry.c:96
  1340. msgid ""
  1341. "The following packages are only half installed, due to problems during\n"
  1342. "installation. The installation can probably be completed by retrying it;\n"
  1343. "the packages can be removed using dselect or dpkg --remove:\n"
  1344. msgstr ""
  1345. #: src/enquiry.c:121
  1346. msgid "--audit does not take any arguments"
  1347. msgstr ""
  1348. #: src/enquiry.c:156
  1349. msgid "<unknown>"
  1350. msgstr ""
  1351. #: src/enquiry.c:173
  1352. msgid "--yet-to-unpack does not take any arguments"
  1353. msgstr ""
  1354. #: src/enquiry.c:211
  1355. #, c-format
  1356. msgid " %d in %s: "
  1357. msgstr ""
  1358. #: src/enquiry.c:226
  1359. #, c-format
  1360. msgid " %d packages, from the following sections:"
  1361. msgstr ""
  1362. #: src/enquiry.c:245
  1363. msgid "--assert-* does not take any arguments"
  1364. msgstr ""
  1365. #: src/enquiry.c:260
  1366. #, c-format
  1367. msgid ""
  1368. "Version of dpkg with working epoch support not yet configured.\n"
  1369. " Please use `dpkg --configure dpkg', and then try again.\n"
  1370. msgstr ""
  1371. #: src/enquiry.c:264
  1372. #, c-format
  1373. msgid "dpkg not recorded as installed, cannot check for epoch support !\n"
  1374. msgstr ""
  1375. #: src/enquiry.c:307
  1376. msgid "--predep-package does not take any argument"
  1377. msgstr ""
  1378. #: src/enquiry.c:359
  1379. #, c-format
  1380. msgid ""
  1381. "dpkg: cannot see how to satisfy pre-dependency:\n"
  1382. " %s\n"
  1383. msgstr ""
  1384. #: src/enquiry.c:360
  1385. #, c-format
  1386. msgid "cannot satisfy pre-dependencies for %.250s (wanted due to %.250s)"
  1387. msgstr ""
  1388. #: src/enquiry.c:377
  1389. msgid "--print-architecture does not take any argument"
  1390. msgstr ""
  1391. #: src/enquiry.c:419
  1392. msgid ""
  1393. "--compare-versions takes three arguments: <version> <relation> <version>"
  1394. msgstr ""
  1395. #: src/enquiry.c:424
  1396. msgid "--compare-versions bad relation"
  1397. msgstr ""
  1398. #: src/enquiry.c:429 src/enquiry.c:440
  1399. #, c-format
  1400. msgid "dpkg: version '%s' has bad syntax: %s\n"
  1401. msgstr ""
  1402. #: src/errors.c:58
  1403. #, c-format
  1404. msgid ""
  1405. "%s: error processing %s (--%s):\n"
  1406. " %s\n"
  1407. msgstr ""
  1408. #: src/errors.c:81
  1409. msgid ""
  1410. "dpkg: failed to allocate memory for new entry in list of failed packages."
  1411. msgstr ""
  1412. #: src/errors.c:91
  1413. #, c-format
  1414. msgid "dpkg: too many errors, stopping\n"
  1415. msgstr ""
  1416. #: src/errors.c:97
  1417. msgid "Errors were encountered while processing:\n"
  1418. msgstr ""
  1419. #: src/errors.c:104
  1420. msgid "Processing was halted because there were too many errors.\n"
  1421. msgstr ""
  1422. #: src/errors.c:112
  1423. #, c-format
  1424. msgid "Package %s was on hold, processing it anyway as you request\n"
  1425. msgstr ""
  1426. #: src/errors.c:116
  1427. #, c-format
  1428. msgid ""
  1429. "Package %s is on hold, not touching it. Use --force-hold to override.\n"
  1430. msgstr ""
  1431. #: src/errors.c:125
  1432. msgid ""
  1433. "dpkg - warning, overriding problem because --force enabled:\n"
  1434. " "
  1435. msgstr ""
  1436. #: src/filesdb.c:123
  1437. #, c-format
  1438. msgid "unable to open files list file for package `%.250s'"
  1439. msgstr ""
  1440. #: src/filesdb.c:128
  1441. #, c-format
  1442. msgid ""
  1443. "dpkg: serious warning: files list file for package `%.250s' missing, "
  1444. "assuming package has no files currently installed.\n"
  1445. msgstr ""
  1446. #: src/filesdb.c:145
  1447. #, c-format
  1448. msgid "files list for package `%.250s'"
  1449. msgstr ""
  1450. #: src/filesdb.c:158
  1451. #, c-format
  1452. msgid "files list file for package `%.250s' contains empty filename"
  1453. msgstr ""
  1454. #: src/filesdb.c:170
  1455. #, c-format
  1456. msgid "error closing files list file for package `%.250s'"
  1457. msgstr ""
  1458. #: src/filesdb.c:201
  1459. #, c-format
  1460. msgid "(Reading database ... "
  1461. msgstr ""
  1462. #: src/filesdb.c:209
  1463. #, c-format
  1464. msgid "%d files and directories currently installed.)\n"
  1465. msgstr ""
  1466. #: src/filesdb.c:240
  1467. #, c-format
  1468. msgid "unable to create updated files list file for package %s"
  1469. msgstr ""
  1470. #: src/filesdb.c:250
  1471. #, c-format
  1472. msgid "failed to write to updated files list file for package %s"
  1473. msgstr ""
  1474. #: src/filesdb.c:252
  1475. #, c-format
  1476. msgid "failed to flush updated files list file for package %s"
  1477. msgstr ""
  1478. #: src/filesdb.c:254
  1479. #, c-format
  1480. msgid "failed to sync updated files list file for package %s"
  1481. msgstr ""
  1482. #: src/filesdb.c:257
  1483. #, c-format
  1484. msgid "failed to close updated files list file for package %s"
  1485. msgstr ""
  1486. #: src/filesdb.c:259
  1487. #, c-format
  1488. msgid "failed to install updated files list file for package %s"
  1489. msgstr ""
  1490. #: src/filesdb.c:323
  1491. msgid "failed to open statoverride file"
  1492. msgstr ""
  1493. #: src/filesdb.c:327
  1494. msgid "failed to fstat statoverride file"
  1495. msgstr ""
  1496. #: src/filesdb.c:330
  1497. msgid "failed to fstat previous statoverride file"
  1498. msgstr ""
  1499. #: src/filesdb.c:349
  1500. #, c-format
  1501. msgid "statoverride file `%.250s'"
  1502. msgstr ""
  1503. #: src/filesdb.c:362
  1504. msgid "statoverride file contains empty line"
  1505. msgstr ""
  1506. #: src/filesdb.c:447
  1507. msgid "failed to open diversions file"
  1508. msgstr ""
  1509. #: src/filesdb.c:451
  1510. msgid "failed to fstat previous diversions file"
  1511. msgstr ""
  1512. #: src/filesdb.c:453
  1513. msgid "failed to fstat diversions file"
  1514. msgstr ""
  1515. #: src/filesdb.c:474
  1516. msgid "fgets gave an empty string from diversions [i]"
  1517. msgstr ""
  1518. #: src/filesdb.c:475
  1519. msgid "diversions file has too-long line or EOF [i]"
  1520. msgstr ""
  1521. #: src/filesdb.c:481
  1522. msgid "read error in diversions [ii]"
  1523. msgstr ""
  1524. #: src/filesdb.c:482
  1525. msgid "unexpected EOF in diversions [ii]"
  1526. msgstr ""
  1527. #: src/filesdb.c:485
  1528. msgid "fgets gave an empty string from diversions [ii]"
  1529. msgstr ""
  1530. #: src/filesdb.c:486 src/filesdb.c:497
  1531. msgid "diversions file has too-long line or EOF [ii]"
  1532. msgstr ""
  1533. #: src/filesdb.c:492
  1534. msgid "read error in diversions [iii]"
  1535. msgstr ""
  1536. #: src/filesdb.c:493
  1537. msgid "unexpected EOF in diversions [iii]"
  1538. msgstr ""
  1539. #: src/filesdb.c:496
  1540. msgid "fgets gave an empty string from diversions [iii]"
  1541. msgstr ""
  1542. #: src/filesdb.c:504
  1543. #, c-format
  1544. msgid "conflicting diversions involving `%.250s' or `%.250s'"
  1545. msgstr ""
  1546. #: src/filesdb.c:513
  1547. msgid "read error in diversions [i]"
  1548. msgstr ""
  1549. #: src/help.c:41
  1550. msgid "not installed"
  1551. msgstr ""
  1552. #: src/help.c:42
  1553. msgid "unpacked but not configured"
  1554. msgstr ""
  1555. #: src/help.c:43
  1556. msgid "broken due to postinst failure"
  1557. msgstr ""
  1558. #: src/help.c:44
  1559. msgid "installed"
  1560. msgstr ""
  1561. #: src/help.c:45
  1562. msgid "broken due to failed removal"
  1563. msgstr ""
  1564. #: src/help.c:46
  1565. msgid "not installed but configs remain"
  1566. msgstr ""
  1567. #: src/help.c:87
  1568. msgid "dpkg - error: PATH is not set.\n"
  1569. msgstr ""
  1570. #: src/help.c:102
  1571. #, c-format
  1572. msgid "dpkg: `%s' not found on PATH.\n"
  1573. msgstr ""
  1574. #: src/help.c:109
  1575. #, c-format
  1576. msgid ""
  1577. "%d expected program(s) not found on PATH.\n"
  1578. "NB: root's PATH should usually contain /usr/local/sbin, /usr/sbin and /sbin."
  1579. msgstr ""
  1580. #: src/help.c:185
  1581. #, c-format
  1582. msgid "failed to chroot to `%.250s'"
  1583. msgstr ""
  1584. #: src/help.c:233
  1585. #, c-format
  1586. msgid "error un-catching signal %s: %s\n"
  1587. msgstr ""
  1588. #: src/help.c:251
  1589. #, c-format
  1590. msgid "unable to ignore signal %s before running script"
  1591. msgstr ""
  1592. #: src/help.c:260
  1593. #, c-format
  1594. msgid "unable to set execute permissions on `%.250s'"
  1595. msgstr ""
  1596. #: src/help.c:305
  1597. #, c-format
  1598. msgid "unable to stat installed %s script `%.250s'"
  1599. msgstr ""
  1600. #: src/help.c:307 src/help.c:363 src/help.c:383
  1601. #, c-format
  1602. msgid "unable to execute %s"
  1603. msgstr ""
  1604. #: src/help.c:331
  1605. #, c-format
  1606. msgid "unable to stat new %s script `%.250s'"
  1607. msgstr ""
  1608. #: src/help.c:333
  1609. #, c-format
  1610. msgid "unable to execute new %s"
  1611. msgstr ""
  1612. #: src/help.c:352
  1613. #, c-format
  1614. msgid "old %s script"
  1615. msgstr ""
  1616. #: src/help.c:360
  1617. #, c-format
  1618. msgid "dpkg: warning - unable to stat %s `%.250s': %s\n"
  1619. msgstr ""
  1620. #: src/help.c:367
  1621. #, c-format
  1622. msgid "dpkg - trying script from the new package instead ...\n"
  1623. msgstr ""
  1624. #: src/help.c:374
  1625. #, c-format
  1626. msgid "new %s script"
  1627. msgstr ""
  1628. #: src/help.c:378
  1629. msgid "there is no script in the new version of the package - giving up"
  1630. msgstr ""
  1631. #: src/help.c:380
  1632. #, c-format
  1633. msgid "unable to stat %s `%.250s'"
  1634. msgstr ""
  1635. #: src/help.c:384
  1636. #, c-format
  1637. msgid "dpkg: ... it looks like that went OK.\n"
  1638. msgstr ""
  1639. #: src/help.c:473
  1640. msgid "unlink"
  1641. msgstr ""
  1642. #: src/help.c:487
  1643. msgid "chmod"
  1644. msgstr ""
  1645. #: src/help.c:503 src/processarc.c:721
  1646. msgid "delete"
  1647. msgstr ""
  1648. #: src/help.c:513
  1649. #, c-format
  1650. msgid "failed to %s `%%.255s'"
  1651. msgstr ""
  1652. #: src/help.c:519 dpkg-deb/info.c:54
  1653. msgid "failed to exec rm for cleanup"
  1654. msgstr ""
  1655. #: src/main.c:44
  1656. #, c-format
  1657. msgid "Debian `%s' package management program version %s.\n"
  1658. msgstr ""
  1659. #: src/main.c:46 src/query.c:490 dpkg-deb/main.c:48 dpkg-split/main.c:41
  1660. #, c-format
  1661. msgid ""
  1662. "This is free software; see the GNU General Public License version 2 or\n"
  1663. "later for copying conditions. There is NO warranty.\n"
  1664. "See %s --license for copyright and license details.\n"
  1665. msgstr ""
  1666. #: src/main.c:57 src/query.c:501 dpkg-deb/main.c:56 dpkg-split/main.c:49
  1667. #, c-format
  1668. msgid ""
  1669. "Usage: %s [<option> ...] <command>\n"
  1670. "\n"
  1671. msgstr ""
  1672. #: src/main.c:61
  1673. #, c-format
  1674. msgid ""
  1675. "Commands:\n"
  1676. " -i|--install <.deb file name> ... | -R|--recursive <directory> ...\n"
  1677. " --unpack <.deb file name> ... | -R|--recursive <directory> ...\n"
  1678. " -A|--record-avail <.deb file name> ... | -R|--recursive <directory> ...\n"
  1679. " --configure <package> ... | -a|--pending\n"
  1680. " -r|--remove <package> ... | -a|--pending\n"
  1681. " -P|--purge <package> ... | -a|--pending\n"
  1682. " --get-selections [<pattern> ...] Get list of selections to stdout.\n"
  1683. " --set-selections Set package selections from stdin.\n"
  1684. " --clear-selections Deselect every non-essential package.\n"
  1685. " --update-avail <Packages-file> Replace available packages info.\n"
  1686. " --merge-avail <Packages-file> Merge with info from file.\n"
  1687. " --clear-avail Erase existing available info.\n"
  1688. " --forget-old-unavail Forget uninstalled unavailable pkgs.\n"
  1689. " -s|--status <package> ... Display package status details.\n"
  1690. " -p|--print-avail <package> ... Display available version details.\n"
  1691. " -L|--listfiles <package> ... List files `owned' by package(s).\n"
  1692. " -l|--list [<pattern> ...] List packages concisely.\n"
  1693. " -S|--search <pattern> ... Find package(s) owning file(s).\n"
  1694. " -C|--audit Check for broken package(s).\n"
  1695. " --print-architecture Print dpkg architecture.\n"
  1696. " --compare-versions <a> <op> <b> Compare version numbers - see below.\n"
  1697. " --force-help Show help on forcing.\n"
  1698. " -Dh|--debug=help Show help on debugging.\n"
  1699. "\n"
  1700. msgstr ""
  1701. #: src/main.c:88 src/query.c:515 dpkg-deb/main.c:73 dpkg-split/main.c:63
  1702. #, c-format
  1703. msgid ""
  1704. " -h|--help Show this help message.\n"
  1705. " --version Show the version.\n"
  1706. " --license|--licence Show the copyright licensing terms.\n"
  1707. "\n"
  1708. msgstr ""
  1709. #: src/main.c:94
  1710. #, c-format
  1711. msgid ""
  1712. "Use dpkg -b|--build|-c|--contents|-e|--control|-I|--info|-f|--field|\n"
  1713. " -x|--extract|-X|--vextract|--fsys-tarfile on archives (type %s --help).\n"
  1714. "\n"
  1715. msgstr ""
  1716. #: src/main.c:99
  1717. #, c-format
  1718. msgid ""
  1719. "For internal use: dpkg --assert-support-predepends | --predep-package |\n"
  1720. " --assert-working-epoch | --assert-long-filenames | --assert-multi-conrep.\n"
  1721. "\n"
  1722. msgstr ""
  1723. #: src/main.c:104
  1724. #, c-format
  1725. msgid ""
  1726. "Options:\n"
  1727. " --admindir=<directory> Use <directory> instead of %s.\n"
  1728. " --root=<directory> Install on a different root directory.\n"
  1729. " --instdir=<directory> Change installation dir without changing admin "
  1730. "dir.\n"
  1731. " -O|--selected-only Skip packages not selected for install/"
  1732. "upgrade.\n"
  1733. " -E|--skip-same-version Skip packages whose same version is installed.\n"
  1734. " -G|--refuse-downgrade Skip packages with earlier version than "
  1735. "installed.\n"
  1736. " -B|--auto-deconfigure Install even if it would break some other "
  1737. "package.\n"
  1738. " --no-debsig Do not try to verify package signatures.\n"
  1739. " --no-act|--dry-run|--simulate\n"
  1740. " Just say what we would do - don't do it.\n"
  1741. " -D|--debug=<octal> Enable debugging (see -Dhelp or --debug=help).\n"
  1742. " --status-fd <n> Send status change updates to file descriptor "
  1743. "<n>.\n"
  1744. " --log=<filename> Log status changes and actions to <filename>.\n"
  1745. " --ignore-depends=<package>,...\n"
  1746. " Ignore dependencies involving <package>.\n"
  1747. " --force-... Override problems (see --force-help).\n"
  1748. " --no-force-...|--refuse-...\n"
  1749. " Stop when problems encountered.\n"
  1750. " --abort-after <n> Abort after encountering <n> errors.\n"
  1751. "\n"
  1752. msgstr ""
  1753. #: src/main.c:127
  1754. #, c-format
  1755. msgid ""
  1756. "Comparison operators for --compare-versions are:\n"
  1757. " lt le eq ne ge gt (treat empty version as earlier than any "
  1758. "version);\n"
  1759. " lt-nl le-nl ge-nl gt-nl (treat empty version as later than any version);\n"
  1760. " < << <= = >= >> > (only for compatibility with control file "
  1761. "syntax).\n"
  1762. "\n"
  1763. msgstr ""
  1764. #: src/main.c:134
  1765. #, c-format
  1766. msgid "Use `dselect' or `aptitude' for user-friendly package management.\n"
  1767. msgstr ""
  1768. #: src/main.c:141
  1769. msgid ""
  1770. "Type dpkg --help for help about installing and deinstalling packages [*];\n"
  1771. "Use `dselect' or `aptitude' for user-friendly package management;\n"
  1772. "Type dpkg -Dhelp for a list of dpkg debug flag values;\n"
  1773. "Type dpkg --force-help for a list of forcing options;\n"
  1774. "Type dpkg-deb --help for help about manipulating *.deb files;\n"
  1775. "Type dpkg --license for copyright license and lack of warranty (GNU GPL) "
  1776. "[*].\n"
  1777. "\n"
  1778. "Options marked [*] produce a lot of output - pipe it through `less' or "
  1779. "`more' !"
  1780. msgstr ""
  1781. #: src/main.c:207 src/query.c:567 dpkg-deb/main.c:177 dpkg-split/main.c:157
  1782. #, c-format
  1783. msgid "conflicting actions -%c (--%s) and -%c (--%s)"
  1784. msgstr ""
  1785. #: src/main.c:213
  1786. #, c-format
  1787. msgid "Warning: obsolete option `--%s'\n"
  1788. msgstr ""
  1789. #: src/main.c:221
  1790. #, c-format
  1791. msgid ""
  1792. "%s debugging option, --debug=<octal> or -D<octal>:\n"
  1793. "\n"
  1794. " number ref. in source description\n"
  1795. " 1 general Generally helpful progress information\n"
  1796. " 2 scripts Invocation and status of maintainer scripts\n"
  1797. " 10 eachfile Output for each file processed\n"
  1798. " 100 eachfiledetail Lots of output for each file processed\n"
  1799. " 20 conff Output for each configuration file\n"
  1800. " 200 conffdetail Lots of output for each configuration file\n"
  1801. " 40 depcon Dependencies and conflicts\n"
  1802. " 400 depcondetail Lots of dependencies/conflicts output\n"
  1803. " 1000 veryverbose Lots of drivel about eg the dpkg/info directory\n"
  1804. " 2000 stupidlyverbose Insane amounts of drivel\n"
  1805. "\n"
  1806. "Debugging options are be mixed using bitwise-or.\n"
  1807. "Note that the meanings and values are subject to change.\n"
  1808. msgstr ""
  1809. #: src/main.c:242
  1810. msgid "--debug requires an octal argument"
  1811. msgstr ""
  1812. #: src/main.c:266
  1813. #, c-format
  1814. msgid "null package name in --ignore-depends comma-separated list `%.250s'"
  1815. msgstr ""
  1816. #: src/main.c:272
  1817. #, c-format
  1818. msgid "--ignore-depends requires a legal package name. `%.250s' is not; %s"
  1819. msgstr ""
  1820. #: src/main.c:288 src/main.c:299
  1821. #, c-format
  1822. msgid "invalid integer for --%s: `%.250s'"
  1823. msgstr ""
  1824. #: src/main.c:319
  1825. #, c-format
  1826. msgid ""
  1827. "%s forcing options - control behaviour when problems found:\n"
  1828. " warn but continue: --force-<thing>,<thing>,...\n"
  1829. " stop with error: --refuse-<thing>,<thing>,... | --no-force-<thing>,...\n"
  1830. " Forcing things:\n"
  1831. " all [!] Set all force options\n"
  1832. " downgrade [*] Replace a package with a lower version\n"
  1833. " configure-any Configure any package which may help this one\n"
  1834. " hold Process incidental packages even when on hold\n"
  1835. " bad-path PATH is missing important programs, problems "
  1836. "likely\n"
  1837. " not-root Try to (de)install things even when not root\n"
  1838. " overwrite Overwrite a file from one package with another\n"
  1839. " overwrite-diverted Overwrite a diverted file with an undiverted "
  1840. "version\n"
  1841. " bad-verify Install a package even if it fails authenticity "
  1842. "check\n"
  1843. " depends-version [!] Turn dependency version problems into warnings\n"
  1844. " depends [!] Turn all dependency problems into warnings\n"
  1845. " confnew [!] Always use the new config files, don't prompt\n"
  1846. " confold [!] Always use the old config files, don't prompt\n"
  1847. " confdef [!] Use the default option for new config files if one\n"
  1848. " is available, don't prompt. If no default can be "
  1849. "found,\n"
  1850. " you will be prompted unless one of the confold or\n"
  1851. " confnew options is also given\n"
  1852. " confmiss [!] Always install missing config files\n"
  1853. " conflicts [!] Allow installation of conflicting packages\n"
  1854. " architecture [!] Process even packages with wrong architecture\n"
  1855. " overwrite-dir [!] Overwrite one package's directory with another's "
  1856. "file\n"
  1857. " remove-reinstreq [!] Remove packages which require installation\n"
  1858. " remove-essential [!] Remove an essential package\n"
  1859. "\n"
  1860. "WARNING - use of options marked [!] can seriously damage your installation.\n"
  1861. "Forcing options marked [*] are enabled by default.\n"
  1862. msgstr ""
  1863. #: src/main.c:364
  1864. #, c-format
  1865. msgid "unknown force/refuse option `%.*s'"
  1866. msgstr ""
  1867. #: src/main.c:369
  1868. #, c-format
  1869. msgid "Warning: obsolete force/refuse option `%s'\n"
  1870. msgstr ""
  1871. #: src/main.c:492 src/main.c:502 src/main.c:510
  1872. msgid "couldn't malloc in execbackend"
  1873. msgstr ""
  1874. #: src/main.c:496 src/main.c:519
  1875. msgid "couldn't strdup in execbackend"
  1876. msgstr ""
  1877. #: src/main.c:524
  1878. #, c-format
  1879. msgid "failed to exec %s"
  1880. msgstr ""
  1881. #: src/main.c:539
  1882. msgid "--command-fd takes one argument, not zero"
  1883. msgstr ""
  1884. #: src/main.c:541
  1885. msgid "--command-fd only takes one argument"
  1886. msgstr ""
  1887. #: src/main.c:543
  1888. msgid "invalid number for --command-fd"
  1889. msgstr ""
  1890. #: src/main.c:545
  1891. #, c-format
  1892. msgid "couldn't open `%i' for stream"
  1893. msgstr ""
  1894. #: src/main.c:570
  1895. #, c-format
  1896. msgid "unexpected eof before end of line %d"
  1897. msgstr ""
  1898. #: src/main.c:614 src/main.c:629 src/query.c:603 dpkg-deb/main.c:202
  1899. #: dpkg-split/main.c:170
  1900. msgid "need an action option"
  1901. msgstr ""
  1902. #: src/packages.c:79
  1903. #, c-format
  1904. msgid "--%s --pending does not take any non-option arguments"
  1905. msgstr ""
  1906. #: src/packages.c:109 src/query.c:331
  1907. #, c-format
  1908. msgid "--%s needs at least one package name argument"
  1909. msgstr ""
  1910. #: src/packages.c:116
  1911. msgid ""
  1912. "you must specify packages by their own names, not by quoting the names of "
  1913. "the files they come in"
  1914. msgstr ""
  1915. #: src/packages.c:150
  1916. #, c-format
  1917. msgid "Package %s listed more than once, only processing once.\n"
  1918. msgstr ""
  1919. #: src/packages.c:154
  1920. #, c-format
  1921. msgid ""
  1922. "More than one copy of package %s has been unpacked\n"
  1923. " in this run ! Only configuring it once.\n"
  1924. msgstr ""
  1925. #: src/packages.c:269
  1926. #, c-format
  1927. msgid " Package %s which provides %s is to be removed.\n"
  1928. msgstr ""
  1929. #: src/packages.c:272
  1930. #, c-format
  1931. msgid " Package %s is to be removed.\n"
  1932. msgstr ""
  1933. #: src/packages.c:287
  1934. #, c-format
  1935. msgid " Version of %s on system is %s.\n"
  1936. msgstr ""
  1937. #: src/packages.c:307
  1938. #, c-format
  1939. msgid "dpkg: also configuring `%s' (required by `%s')\n"
  1940. msgstr ""
  1941. #: src/packages.c:313
  1942. #, c-format
  1943. msgid " Package %s which provides %s is not configured yet.\n"
  1944. msgstr ""
  1945. #: src/packages.c:316
  1946. #, c-format
  1947. msgid " Package %s is not configured yet.\n"
  1948. msgstr ""
  1949. #: src/packages.c:328
  1950. #, c-format
  1951. msgid " Package %s which provides %s is not installed.\n"
  1952. msgstr ""
  1953. #: src/packages.c:331
  1954. #, c-format
  1955. msgid " Package %s is not installed.\n"
  1956. msgstr ""
  1957. #: src/packages.c:362
  1958. #, c-format
  1959. msgid " %s (%s) breaks %s and is %s.\n"
  1960. msgstr ""
  1961. #: src/packages.c:370
  1962. #, c-format
  1963. msgid " %s (%s) provides %s.\n"
  1964. msgstr ""
  1965. #: src/packages.c:375
  1966. #, c-format
  1967. msgid " Version of %s to be configured is %s.\n"
  1968. msgstr ""
  1969. #: src/packages.c:467
  1970. msgid " depends on "
  1971. msgstr ""
  1972. #: src/packages.c:473
  1973. msgid "; however:\n"
  1974. msgstr ""
  1975. #: src/processarc.c:102
  1976. msgid "cannot access archive"
  1977. msgstr ""
  1978. #: src/processarc.c:112
  1979. #, c-format
  1980. msgid "error ensuring `%.250s' doesn't exist"
  1981. msgstr ""
  1982. #: src/processarc.c:117
  1983. msgid "failed to exec dpkg-split to see if it's part of a multiparter"
  1984. msgstr ""
  1985. #: src/processarc.c:120
  1986. msgid "wait for dpkg-split failed"
  1987. msgstr ""
  1988. #: src/processarc.c:126
  1989. msgid "reassembled package file"
  1990. msgstr ""
  1991. #: src/processarc.c:141
  1992. #, c-format
  1993. msgid "Authenticating %s ...\n"
  1994. msgstr ""
  1995. #: src/processarc.c:146
  1996. msgid "failed to execl debsig-verify"
  1997. msgstr ""
  1998. #: src/processarc.c:152
  1999. #, c-format
  2000. msgid "Verification on package %s failed!"
  2001. msgstr ""
  2002. #: src/processarc.c:154
  2003. #, c-format
  2004. msgid ""
  2005. "Verification on package %s failed,\n"
  2006. "but installing anyway as you request.\n"
  2007. msgstr ""
  2008. #: src/processarc.c:157
  2009. #, c-format
  2010. msgid "passed\n"
  2011. msgstr ""
  2012. #: src/processarc.c:166
  2013. msgid "unable to get unique filename for control info"
  2014. msgstr ""
  2015. #: src/processarc.c:188
  2016. msgid "failed to exec dpkg-deb to extract control information"
  2017. msgstr ""
  2018. #: src/processarc.c:205
  2019. #, c-format
  2020. msgid "Recorded info about %s from %s.\n"
  2021. msgstr ""
  2022. #: src/processarc.c:214
  2023. #, c-format
  2024. msgid "package architecture (%s) does not match system (%s)"
  2025. msgstr ""
  2026. #: src/processarc.c:269
  2027. #, c-format
  2028. msgid ""
  2029. "dpkg: regarding %s containing %s, pre-dependency problem:\n"
  2030. "%s"
  2031. msgstr ""
  2032. #: src/processarc.c:272
  2033. #, c-format
  2034. msgid "pre-dependency problem - not installing %.250s"
  2035. msgstr ""
  2036. #: src/processarc.c:273
  2037. #, c-format
  2038. msgid "dpkg: warning - ignoring pre-dependency problem !\n"
  2039. msgstr ""
  2040. #: src/processarc.c:288
  2041. #, c-format
  2042. msgid "Preparing to replace %s %s (using %s) ...\n"
  2043. msgstr ""
  2044. #: src/processarc.c:293
  2045. #, c-format
  2046. msgid "Unpacking %s (from %s) ...\n"
  2047. msgstr ""
  2048. #: src/processarc.c:315
  2049. #, c-format
  2050. msgid "name of conffile (starting `%.250s') is too long (>%d characters)"
  2051. msgstr ""
  2052. #: src/processarc.c:368
  2053. #, c-format
  2054. msgid "read error in %.250s"
  2055. msgstr ""
  2056. #: src/processarc.c:370
  2057. #, c-format
  2058. msgid "error closing %.250s"
  2059. msgstr ""
  2060. #: src/processarc.c:372
  2061. #, c-format
  2062. msgid "error trying to open %.250s"
  2063. msgstr ""
  2064. #: src/processarc.c:405
  2065. #, c-format
  2066. msgid "De-configuring %s, to allow removal of %s ...\n"
  2067. msgstr ""
  2068. #: src/processarc.c:408
  2069. #, c-format
  2070. msgid "De-configuring %s ...\n"
  2071. msgstr ""
  2072. #: src/processarc.c:479
  2073. #, c-format
  2074. msgid "Unpacking replacement %.250s ...\n"
  2075. msgstr ""
  2076. #: src/processarc.c:560
  2077. msgid "unable to exec dpkg-deb to get filesystem archive"
  2078. msgstr ""
  2079. #: src/processarc.c:573
  2080. msgid "error reading dpkg-deb tar output"
  2081. msgstr ""
  2082. #: src/processarc.c:575
  2083. msgid "corrupted filesystem tarfile - corrupted package archive"
  2084. msgstr ""
  2085. #: src/processarc.c:578
  2086. msgid "dpkg-deb: zap possible trailing zeros"
  2087. msgstr ""
  2088. #: src/processarc.c:631
  2089. #, c-format
  2090. msgid "dpkg: warning - could not stat old file `%.250s' so not deleting it: %s"
  2091. msgstr ""
  2092. #: src/processarc.c:639
  2093. #, c-format
  2094. msgid "dpkg: warning - unable to delete old directory `%.250s': %s\n"
  2095. msgstr ""
  2096. #: src/processarc.c:643
  2097. #, c-format
  2098. msgid ""
  2099. "dpkg: warning - old conffile `%.250s' was an empty directory (and has now "
  2100. "been deleted)\n"
  2101. msgstr ""
  2102. #: src/processarc.c:673
  2103. #, c-format
  2104. msgid "unable to stat other new file `%.250s'"
  2105. msgstr ""
  2106. #: src/processarc.c:684
  2107. #, c-format
  2108. msgid ""
  2109. "dpkg: warning - old file `%.250s' is the same as several new files! (both `"
  2110. "%.250s' and `%.250s')\n"
  2111. msgstr ""
  2112. #: src/processarc.c:725
  2113. #, c-format
  2114. msgid "dpkg: warning - unable to %s old file `%%.250s': %%s\n"
  2115. msgstr ""
  2116. #: src/processarc.c:751 src/processarc.c:992 src/remove.c:292
  2117. msgid "cannot read info directory"
  2118. msgstr ""
  2119. #: src/processarc.c:764
  2120. #, c-format
  2121. msgid "old version of package has overly-long info file name starting `%.250s'"
  2122. msgstr ""
  2123. #: src/processarc.c:776
  2124. #, c-format
  2125. msgid "unable to remove obsolete info file `%.250s'"
  2126. msgstr ""
  2127. #: src/processarc.c:779
  2128. #, c-format
  2129. msgid "unable to install (supposed) new info file `%.250s'"
  2130. msgstr ""
  2131. #: src/processarc.c:786
  2132. msgid "unable to open temp control directory"
  2133. msgstr ""
  2134. #: src/processarc.c:795
  2135. #, c-format
  2136. msgid "package contains overly-long control info file name (starting `%.50s')"
  2137. msgstr ""
  2138. #: src/processarc.c:800
  2139. #, c-format
  2140. msgid "package control info contained directory `%.250s'"
  2141. msgstr ""
  2142. #: src/processarc.c:802
  2143. #, c-format
  2144. msgid "package control info rmdir of `%.250s' didn't say not a dir"
  2145. msgstr ""
  2146. #: src/processarc.c:808
  2147. #, c-format
  2148. msgid "dpkg: warning - package %s contained list as info file"
  2149. msgstr ""
  2150. #: src/processarc.c:815
  2151. #, c-format
  2152. msgid "unable to install new info file `%.250s' as `%.250s'"
  2153. msgstr ""
  2154. #: src/processarc.c:972
  2155. #, c-format
  2156. msgid "(Noting disappearance of %s, which has been completely replaced.)\n"
  2157. msgstr ""
  2158. #: src/processarc.c:1008
  2159. #, c-format
  2160. msgid "unable to delete disappearing control info file `%.250s'"
  2161. msgstr ""
  2162. #: src/query.c:160
  2163. msgid ""
  2164. "Desired=Unknown/Install/Remove/Purge/Hold\n"
  2165. "| Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed\n"
  2166. "|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: "
  2167. "uppercase=bad)\n"
  2168. msgstr ""
  2169. #: src/query.c:164
  2170. msgid "Name"
  2171. msgstr ""
  2172. #: src/query.c:164
  2173. msgid "Version"
  2174. msgstr ""
  2175. #: src/query.c:164
  2176. msgid "Description"
  2177. msgstr ""
  2178. #: src/query.c:232 src/query.c:475 src/select.c:80
  2179. #, c-format
  2180. msgid "No packages found matching %s.\n"
  2181. msgstr ""
  2182. #: src/query.c:254
  2183. #, c-format
  2184. msgid "diversion by %s from: %s\n"
  2185. msgstr ""
  2186. #: src/query.c:256
  2187. #, c-format
  2188. msgid "diversion by %s to: %s\n"
  2189. msgstr ""
  2190. #: src/query.c:259
  2191. #, c-format
  2192. msgid "local diversion from: %s\n"
  2193. msgstr ""
  2194. #: src/query.c:260
  2195. #, c-format
  2196. msgid "local diversion to: %s\n"
  2197. msgstr ""
  2198. #: src/query.c:285
  2199. msgid "--search needs at least one file name pattern argument"
  2200. msgstr ""
  2201. #: src/query.c:313
  2202. #, c-format
  2203. msgid "dpkg: %s not found.\n"
  2204. msgstr ""
  2205. #: src/query.c:351
  2206. #, c-format
  2207. msgid "Package `%s' is not installed and no info is available.\n"
  2208. msgstr ""
  2209. #: src/query.c:360
  2210. #, c-format
  2211. msgid "Package `%s' is not available.\n"
  2212. msgstr ""
  2213. #: src/query.c:370
  2214. #, c-format
  2215. msgid "Package `%s' is not installed.\n"
  2216. msgstr ""
  2217. #: src/query.c:379
  2218. #, c-format
  2219. msgid "Package `%s' does not contain any files (!)\n"
  2220. msgstr ""
  2221. #: src/query.c:386
  2222. #, c-format
  2223. msgid "locally diverted to: %s\n"
  2224. msgstr ""
  2225. #: src/query.c:389
  2226. #, c-format
  2227. msgid "package diverts others to: %s\n"
  2228. msgstr ""
  2229. #: src/query.c:392
  2230. #, c-format
  2231. msgid "diverted by %s to: %s\n"
  2232. msgstr ""
  2233. #: src/query.c:414
  2234. msgid ""
  2235. "Use dpkg --info (= dpkg-deb --info) to examine archive files,\n"
  2236. "and dpkg --contents (= dpkg-deb --contents) to list their contents.\n"
  2237. msgstr ""
  2238. #: src/query.c:488
  2239. #, c-format
  2240. msgid "Debian `%s' package management program query tool\n"
  2241. msgstr ""
  2242. #: src/query.c:505
  2243. #, c-format
  2244. msgid ""
  2245. "Commands:\n"
  2246. " -s|--status <package> ... Display package status details.\n"
  2247. " -p|--print-avail <package> ... Display available version details.\n"
  2248. " -L|--listfiles <package> ... List files `owned' by package(s).\n"
  2249. " -l|--list [<pattern> ...] List packages concisely.\n"
  2250. " -W|--show <pattern> ... Show information on package(s).\n"
  2251. " -S|--search <pattern> ... Find package(s) owning file(s).\n"
  2252. "\n"
  2253. msgstr ""
  2254. #: src/query.c:521
  2255. #, c-format
  2256. msgid ""
  2257. "Options:\n"
  2258. " --admindir=<directory> Use <directory> instead of %s.\n"
  2259. " -f|--showformat=<format> Use alternative format for --show.\n"
  2260. "\n"
  2261. msgstr ""
  2262. #: src/query.c:527 dpkg-deb/main.c:97
  2263. #, c-format
  2264. msgid ""
  2265. "Format syntax:\n"
  2266. " A format is a string that will be output for each package. The format\n"
  2267. " can include the standard escape sequences \\n (newline), \\r (carriage\n"
  2268. " return) or \\\\ (plain backslash). Package information can be included\n"
  2269. " by inserting variable references to package fields using the ${var[;"
  2270. "width]}\n"
  2271. " syntax. Fields will be right-aligned unless the width is negative in "
  2272. "which\n"
  2273. " case left alignment will be used.\n"
  2274. msgstr ""
  2275. #: src/query.c:537
  2276. msgid ""
  2277. "Use --help for help about querying packages;\n"
  2278. "Use --license for copyright license and lack of warranty (GNU GPL).\n"
  2279. "\n"
  2280. msgstr ""
  2281. #: src/remove.c:92
  2282. #, c-format
  2283. msgid ""
  2284. "dpkg - warning: ignoring request to remove %.250s which isn't installed.\n"
  2285. msgstr ""
  2286. #: src/remove.c:100
  2287. #, c-format
  2288. msgid ""
  2289. "dpkg - warning: ignoring request to remove %.250s, only the config\n"
  2290. " files of which are on the system. Use --purge to remove them too.\n"
  2291. msgstr ""
  2292. #: src/remove.c:109
  2293. msgid "This is an essential package - it should not be removed."
  2294. msgstr ""
  2295. #: src/remove.c:135
  2296. #, c-format
  2297. msgid ""
  2298. "dpkg: dependency problems prevent removal of %s:\n"
  2299. "%s"
  2300. msgstr ""
  2301. #: src/remove.c:137
  2302. msgid "dependency problems - not removing"
  2303. msgstr ""
  2304. #: src/remove.c:141
  2305. #, c-format
  2306. msgid ""
  2307. "dpkg: %s: dependency problems, but removing anyway as you request:\n"
  2308. "%s"
  2309. msgstr ""
  2310. #: src/remove.c:149
  2311. msgid ""
  2312. "Package is in a very bad inconsistent state - you should\n"
  2313. " reinstall it before attempting a removal."
  2314. msgstr ""
  2315. #: src/remove.c:156
  2316. #, c-format
  2317. msgid "Would remove or purge %s ...\n"
  2318. msgstr ""
  2319. #: src/remove.c:164
  2320. #, c-format
  2321. msgid "Removing %s ...\n"
  2322. msgstr ""
  2323. #: src/remove.c:257 src/remove.c:374
  2324. #, c-format
  2325. msgid ""
  2326. "dpkg - warning: while removing %.250s, unable to remove directory `%.250s': %"
  2327. "s - directory may be a mount point ?\n"
  2328. msgstr ""
  2329. #: src/remove.c:264 src/remove.c:381
  2330. #, c-format
  2331. msgid "cannot remove `%.250s'"
  2332. msgstr ""
  2333. #: src/remove.c:282
  2334. #, c-format
  2335. msgid "cannot remove file `%.250s'"
  2336. msgstr ""
  2337. #: src/remove.c:315
  2338. #, c-format
  2339. msgid "unable to delete control info file `%.250s'"
  2340. msgstr ""
  2341. #: src/remove.c:368
  2342. #, c-format
  2343. msgid ""
  2344. "dpkg - warning: while removing %.250s, directory `%.250s' not empty so not "
  2345. "removed.\n"
  2346. msgstr ""
  2347. #: src/remove.c:404
  2348. #, c-format
  2349. msgid "Purging configuration files for %s ...\n"
  2350. msgstr ""
  2351. #: src/remove.c:454
  2352. #, c-format
  2353. msgid "cannot remove old config file `%.250s' (= `%.250s')"
  2354. msgstr ""
  2355. #: src/remove.c:469
  2356. #, c-format
  2357. msgid "cannot read config file dir `%.250s' (from `%.250s')"
  2358. msgstr ""
  2359. #: src/remove.c:504
  2360. #, c-format
  2361. msgid "cannot remove old backup config file `%.250s' (of `%.250s')"
  2362. msgstr ""
  2363. #: src/remove.c:540
  2364. #, c-format
  2365. msgid "unable to check existence of `%.250s'"
  2366. msgstr ""
  2367. #: src/remove.c:575
  2368. msgid "cannot remove old files list"
  2369. msgstr ""
  2370. #: src/remove.c:581
  2371. msgid "can't remove old postrm script"
  2372. msgstr ""
  2373. #: src/select.c:95
  2374. msgid "--set-selections does not take any argument"
  2375. msgstr ""
  2376. #: src/select.c:114
  2377. #, c-format
  2378. msgid "unexpected eof in package name at line %d"
  2379. msgstr ""
  2380. #: src/select.c:115
  2381. #, c-format
  2382. msgid "unexpected end of line in package name at line %d"
  2383. msgstr ""
  2384. #: src/select.c:119
  2385. #, c-format
  2386. msgid "unexpected eof after package name at line %d"
  2387. msgstr ""
  2388. #: src/select.c:120
  2389. #, c-format
  2390. msgid "unexpected end of line after package name at line %d"
  2391. msgstr ""
  2392. #: src/select.c:129
  2393. #, c-format
  2394. msgid "unexpected data after package and selection at line %d"
  2395. msgstr ""
  2396. #: src/select.c:134
  2397. #, c-format
  2398. msgid "illegal package name at line %d: %.250s"
  2399. msgstr ""
  2400. #: src/select.c:136
  2401. #, c-format
  2402. msgid "unknown wanted status at line %d: %.250s"
  2403. msgstr ""
  2404. #: src/select.c:142
  2405. msgid "read error on standard input"
  2406. msgstr ""
  2407. #: src/select.c:154
  2408. msgid "--clear-selections does not take any argument"
  2409. msgstr ""
  2410. #: src/update.c:44
  2411. #, c-format
  2412. msgid "--%s takes no arguments"
  2413. msgstr ""
  2414. #: src/update.c:48
  2415. #, c-format
  2416. msgid "--%s needs exactly one Packages file argument"
  2417. msgstr ""
  2418. #: src/update.c:57
  2419. msgid "unable to access dpkg status area for bulk available update"
  2420. msgstr ""
  2421. #: src/update.c:59
  2422. msgid "bulk available update requires write access to dpkg status area"
  2423. msgstr ""
  2424. #: src/update.c:66
  2425. #, c-format
  2426. msgid "Replacing available packages info, using %s.\n"
  2427. msgstr ""
  2428. #: src/update.c:69
  2429. #, c-format
  2430. msgid "Updating available packages info, using %s.\n"
  2431. msgstr ""
  2432. #: src/update.c:93
  2433. #, c-format
  2434. msgid "Information about %d package(s) was updated.\n"
  2435. msgstr ""
  2436. #: src/update.c:101
  2437. msgid "--forget-old-unavail takes no arguments"
  2438. msgstr ""
  2439. #: dpkg-deb/build.c:67
  2440. #, c-format
  2441. msgid "dpkg-deb - error: %s (`%s') doesn't contain any digits\n"
  2442. msgstr ""
  2443. #: dpkg-deb/build.c:111
  2444. #, c-format
  2445. msgid "file name '%.50s...' is too long"
  2446. msgstr ""
  2447. #: dpkg-deb/build.c:172
  2448. msgid "--build needs a directory argument"
  2449. msgstr ""
  2450. #: dpkg-deb/build.c:181
  2451. msgid "--build takes at most two arguments"
  2452. msgstr ""
  2453. #: dpkg-deb/build.c:185
  2454. #, c-format
  2455. msgid "unable to check for existence of archive `%.250s'"
  2456. msgstr ""
  2457. #: dpkg-deb/build.c:200
  2458. msgid "target is directory - cannot skip control file check"
  2459. msgstr ""
  2460. #: dpkg-deb/build.c:201
  2461. #, c-format
  2462. msgid ""
  2463. "dpkg-deb: warning, not checking contents of control area.\n"
  2464. "dpkg-deb: building an unknown package in `%s'.\n"
  2465. msgstr ""
  2466. #: dpkg-deb/build.c:219
  2467. msgid "package name has characters that aren't lowercase alphanums or `-+.'"
  2468. msgstr ""
  2469. #: dpkg-deb/build.c:221
  2470. #, c-format
  2471. msgid "warning, `%s' contains user-defined Priority value `%s'\n"
  2472. msgstr ""
  2473. #: dpkg-deb/build.c:226
  2474. #, c-format
  2475. msgid "warning, `%s' contains user-defined field `%s'\n"
  2476. msgstr ""
  2477. #: dpkg-deb/build.c:232
  2478. #, c-format
  2479. msgid "%d errors in control file"
  2480. msgstr ""
  2481. #: dpkg-deb/build.c:243
  2482. #, c-format
  2483. msgid "dpkg-deb: building package `%s' in `%s'.\n"
  2484. msgstr ""
  2485. #: dpkg-deb/build.c:251
  2486. #, c-format
  2487. msgid "control directory has bad permissions %03lo (must be >=0755 and <=0775)"
  2488. msgstr ""
  2489. #: dpkg-deb/build.c:262
  2490. #, c-format
  2491. msgid "maintainer script `%.50s' is not a plain file or symlink"
  2492. msgstr ""
  2493. #: dpkg-deb/build.c:264
  2494. #, c-format
  2495. msgid ""
  2496. "maintainer script `%.50s' has bad permissions %03lo (must be >=0555 and "
  2497. "<=0775)"
  2498. msgstr ""
  2499. #: dpkg-deb/build.c:268
  2500. #, c-format
  2501. msgid "maintainer script `%.50s' is not stattable"
  2502. msgstr ""
  2503. #: dpkg-deb/build.c:278
  2504. msgid "empty string from fgets reading conffiles"
  2505. msgstr ""
  2506. #: dpkg-deb/build.c:280
  2507. #, c-format
  2508. msgid ""
  2509. "warning, conffile name `%.50s...' is too long, or missing final newline\n"
  2510. msgstr ""
  2511. #: dpkg-deb/build.c:293
  2512. #, c-format
  2513. msgid "warning, conffile filename `%s' contains trailing white spaces\n"
  2514. msgstr ""
  2515. #: dpkg-deb/build.c:295
  2516. #, c-format
  2517. msgid "conffile `%.250s' does not appear in package"
  2518. msgstr ""
  2519. #: dpkg-deb/build.c:297
  2520. #, c-format
  2521. msgid "conffile `%.250s' is not stattable"
  2522. msgstr ""
  2523. #: dpkg-deb/build.c:299
  2524. #, c-format
  2525. msgid "warning, conffile `%s' is not a plain file\n"
  2526. msgstr ""
  2527. #: dpkg-deb/build.c:304
  2528. msgid "error reading conffiles file"
  2529. msgstr ""
  2530. #: dpkg-deb/build.c:307
  2531. msgid "error opening conffiles file"
  2532. msgstr ""
  2533. #: dpkg-deb/build.c:310
  2534. #, c-format
  2535. msgid "dpkg-deb: ignoring %d warnings about the control file(s)\n"
  2536. msgstr ""
  2537. #: dpkg-deb/build.c:320
  2538. #, c-format
  2539. msgid "unable to unbuffer `%.255s'"
  2540. msgstr ""
  2541. #: dpkg-deb/build.c:325 dpkg-deb/build.c:399 dpkg-deb/build.c:420
  2542. #, c-format
  2543. msgid "failed to chdir to `%.255s'"
  2544. msgstr ""
  2545. #: dpkg-deb/build.c:326
  2546. msgid "failed to chdir to .../DEBIAN"
  2547. msgstr ""
  2548. #: dpkg-deb/build.c:328 dpkg-deb/build.c:401
  2549. msgid "failed to exec tar -cf"
  2550. msgstr ""
  2551. #: dpkg-deb/build.c:334
  2552. msgid "failed to make tmpfile (control)"
  2553. msgstr ""
  2554. #: dpkg-deb/build.c:335
  2555. #, c-format
  2556. msgid "failed to open tmpfile (control), %s"
  2557. msgstr ""
  2558. #: dpkg-deb/build.c:338
  2559. #, c-format
  2560. msgid "failed to unlink tmpfile (control), %s"
  2561. msgstr ""
  2562. #: dpkg-deb/build.c:346 dpkg-deb/build.c:375
  2563. msgid "control"
  2564. msgstr ""
  2565. #: dpkg-deb/build.c:351
  2566. msgid "failed to fstat tmpfile (control)"
  2567. msgstr ""
  2568. #: dpkg-deb/build.c:374
  2569. msgid "failed to rewind tmpfile (control)"
  2570. msgstr ""
  2571. #: dpkg-deb/build.c:382
  2572. msgid "failed to make tmpfile (data)"
  2573. msgstr ""
  2574. #: dpkg-deb/build.c:383
  2575. #, c-format
  2576. msgid "failed to open tmpfile (data), %s"
  2577. msgstr ""
  2578. #: dpkg-deb/build.c:386
  2579. #, c-format
  2580. msgid "failed to unlink tmpfile (data), %s"
  2581. msgstr ""
  2582. #: dpkg-deb/build.c:410 dpkg-deb/extract.c:279
  2583. msgid "data"
  2584. msgstr ""
  2585. #: dpkg-deb/build.c:423
  2586. msgid "failed to exec find"
  2587. msgstr ""
  2588. #: dpkg-deb/build.c:434 dpkg-deb/build.c:441
  2589. msgid "failed to write filename to tar pipe (data)"
  2590. msgstr ""
  2591. #: dpkg-deb/build.c:464
  2592. #, c-format
  2593. msgid "Internal error, compress_type `%i' unknown!"
  2594. msgstr ""
  2595. #: dpkg-deb/build.c:476
  2596. msgid "failed to rewind tmpfile (data)"
  2597. msgstr ""
  2598. #: dpkg-deb/build.c:477
  2599. msgid "cat (data)"
  2600. msgstr ""
  2601. #: dpkg-deb/extract.c:52
  2602. msgid "failed to exec sh -c mv foo/* &c"
  2603. msgstr ""
  2604. #: dpkg-deb/extract.c:60
  2605. #, c-format
  2606. msgid "error reading %s from file %.255s"
  2607. msgstr ""
  2608. #: dpkg-deb/extract.c:62
  2609. #, c-format
  2610. msgid "unexpected end of file in %s in %.255s"
  2611. msgstr ""
  2612. #: dpkg-deb/extract.c:73 dpkg-split/info.c:52
  2613. #, c-format
  2614. msgid "file `%.250s' is corrupt - %.250s length contains nulls"
  2615. msgstr ""
  2616. #: dpkg-deb/extract.c:80 dpkg-split/info.c:43
  2617. #, c-format
  2618. msgid "file `%.250s' is corrupt - bad digit (code %d) in %s"
  2619. msgstr ""
  2620. #: dpkg-deb/extract.c:105
  2621. #, c-format
  2622. msgid "failed to read archive `%.255s'"
  2623. msgstr ""
  2624. #: dpkg-deb/extract.c:106
  2625. msgid "failed to fstat archive"
  2626. msgstr ""
  2627. #: dpkg-deb/extract.c:107
  2628. msgid "version number"
  2629. msgstr ""
  2630. #: dpkg-deb/extract.c:116
  2631. msgid "between members"
  2632. msgstr ""
  2633. #: dpkg-deb/extract.c:118 dpkg-split/info.c:95
  2634. #, c-format
  2635. msgid "file `%.250s' is corrupt - bad magic at end of first header"
  2636. msgstr ""
  2637. #: dpkg-deb/extract.c:122
  2638. #, c-format
  2639. msgid "file `%.250s' is corrupt - negative member length %zi"
  2640. msgstr ""
  2641. #: dpkg-deb/extract.c:126
  2642. #, c-format
  2643. msgid "file `%.250s' is not a debian binary archive (try dpkg-split?)"
  2644. msgstr ""
  2645. #: dpkg-deb/extract.c:129
  2646. msgid "header info member"
  2647. msgstr ""
  2648. #: dpkg-deb/extract.c:132
  2649. msgid "archive has no newlines in header"
  2650. msgstr ""
  2651. #: dpkg-deb/extract.c:135
  2652. msgid "archive has no dot in version number"
  2653. msgstr ""
  2654. #: dpkg-deb/extract.c:138
  2655. #, c-format
  2656. msgid "archive version %.250s not understood, get newer dpkg-deb"
  2657. msgstr ""
  2658. #: dpkg-deb/extract.c:147 dpkg-deb/extract.c:180
  2659. #, c-format
  2660. msgid "skipped member data from %s"
  2661. msgstr ""
  2662. #: dpkg-deb/extract.c:170
  2663. #, c-format
  2664. msgid "file `%.250s' contains ununderstood data member %.*s, giving up"
  2665. msgstr ""
  2666. #: dpkg-deb/extract.c:176
  2667. #, c-format
  2668. msgid "file `%.250s' contains two control members, giving up"
  2669. msgstr ""
  2670. #: dpkg-deb/extract.c:188
  2671. #, c-format
  2672. msgid ""
  2673. " new debian package, version %s.\n"
  2674. " size %ld bytes: control archive= %zi bytes.\n"
  2675. msgstr ""
  2676. #: dpkg-deb/extract.c:200
  2677. msgid "control information length"
  2678. msgstr ""
  2679. #: dpkg-deb/extract.c:202
  2680. #, c-format
  2681. msgid "archive has malformatted control length `%s'"
  2682. msgstr ""
  2683. #: dpkg-deb/extract.c:205
  2684. #, c-format
  2685. msgid ""
  2686. " old debian package, version %s.\n"
  2687. " size %ld bytes: control archive= %zi, main archive= %ld.\n"
  2688. msgstr ""
  2689. #: dpkg-deb/extract.c:213
  2690. msgid "failed allocating memory for variable `ctrlarea'"
  2691. msgstr ""
  2692. #: dpkg-deb/extract.c:216
  2693. msgid "control area"
  2694. msgstr ""
  2695. #: dpkg-deb/extract.c:222
  2696. #, c-format
  2697. msgid ""
  2698. "dpkg-deb: file looks like it might be an archive which has been\n"
  2699. "dpkg-deb: corrupted by being downloaded in ASCII mode\n"
  2700. msgstr ""
  2701. #: dpkg-deb/extract.c:227
  2702. #, c-format
  2703. msgid "`%.255s' is not a debian format archive"
  2704. msgstr ""
  2705. #: dpkg-deb/extract.c:233
  2706. msgid "failed getting the current file position"
  2707. msgstr ""
  2708. #: dpkg-deb/extract.c:238
  2709. msgid "failed setting the current file position"
  2710. msgstr ""
  2711. #: dpkg-deb/extract.c:247
  2712. msgid "failed to open pipe descriptor `1' in paste"
  2713. msgstr ""
  2714. #: dpkg-deb/extract.c:249
  2715. msgid "failed to write to gzip -dc"
  2716. msgstr ""
  2717. #: dpkg-deb/extract.c:250
  2718. msgid "failed to close gzip -dc"
  2719. msgstr ""
  2720. #: dpkg-deb/extract.c:257
  2721. msgid "failed to syscall lseek to files archive portion"
  2722. msgstr ""
  2723. #: dpkg-deb/extract.c:265
  2724. msgid "failed to write to pipe in copy"
  2725. msgstr ""
  2726. #: dpkg-deb/extract.c:266
  2727. msgid "failed to close pipe in copy"
  2728. msgstr ""
  2729. #: dpkg-deb/extract.c:287
  2730. msgid "failed to create directory"
  2731. msgstr ""
  2732. #: dpkg-deb/extract.c:288
  2733. msgid "failed to chdir to directory after creating it"
  2734. msgstr ""
  2735. #: dpkg-deb/extract.c:290
  2736. msgid "failed to chdir to directory"
  2737. msgstr ""
  2738. #: dpkg-deb/extract.c:304
  2739. msgid "failed to exec tar"
  2740. msgstr ""
  2741. #: dpkg-deb/extract.c:327 dpkg-deb/extract.c:342 dpkg-deb/info.c:68
  2742. #, c-format
  2743. msgid "--%s needs a .deb filename argument"
  2744. msgstr ""
  2745. #: dpkg-deb/extract.c:330
  2746. #, c-format
  2747. msgid ""
  2748. "--%s needs a target directory.\n"
  2749. "Perhaps you should be using dpkg --install ?"
  2750. msgstr ""
  2751. #: dpkg-deb/extract.c:333
  2752. #, c-format
  2753. msgid "--%s takes at most two arguments (.deb and directory)"
  2754. msgstr ""
  2755. #: dpkg-deb/extract.c:344
  2756. #, c-format
  2757. msgid "--%s takes only one argument (.deb filename)"
  2758. msgstr ""
  2759. #: dpkg-deb/info.c:49
  2760. msgid "failed to chdir to `/' for cleanup"
  2761. msgstr ""
  2762. #: dpkg-deb/info.c:51
  2763. msgid "failed to fork for cleanup"
  2764. msgstr ""
  2765. #: dpkg-deb/info.c:56
  2766. msgid "failed to wait for rm cleanup"
  2767. msgstr ""
  2768. #: dpkg-deb/info.c:57
  2769. #, c-format
  2770. msgid "rm cleanup failed, code %d\n"
  2771. msgstr ""
  2772. #: dpkg-deb/info.c:71
  2773. msgid "failed to make temporary directoryname"
  2774. msgstr ""
  2775. #: dpkg-deb/info.c:76
  2776. msgid "failed to exec rm -rf"
  2777. msgstr ""
  2778. #: dpkg-deb/info.c:108
  2779. msgid "info_spew"
  2780. msgstr ""
  2781. #: dpkg-deb/info.c:110
  2782. #, c-format
  2783. msgid "dpkg-deb: `%.255s' contains no control component `%.255s'\n"
  2784. msgstr ""
  2785. #: dpkg-deb/info.c:114
  2786. #, c-format
  2787. msgid "open component `%.255s' (in %.255s) failed in an unexpected way"
  2788. msgstr ""
  2789. #: dpkg-deb/info.c:120
  2790. msgid "One requested control component is missing"
  2791. msgstr ""
  2792. #: dpkg-deb/info.c:122
  2793. #, c-format
  2794. msgid "%d requested control components are missing"
  2795. msgstr ""
  2796. #: dpkg-deb/info.c:135
  2797. #, c-format
  2798. msgid "cannot scan directory `%.255s'"
  2799. msgstr ""
  2800. #: dpkg-deb/info.c:140
  2801. #, c-format
  2802. msgid "cannot stat `%.255s' (in `%.255s')"
  2803. msgstr ""
  2804. #: dpkg-deb/info.c:143
  2805. #, c-format
  2806. msgid "cannot open `%.255s' (in `%.255s')"
  2807. msgstr ""
  2808. #: dpkg-deb/info.c:157
  2809. #, c-format
  2810. msgid "failed to read `%.255s' (in `%.255s')"
  2811. msgstr ""
  2812. #: dpkg-deb/info.c:160
  2813. #, c-format
  2814. msgid " %7ld bytes, %5d lines %c %-20.127s %.127s\n"
  2815. msgstr ""
  2816. #: dpkg-deb/info.c:166
  2817. #, c-format
  2818. msgid " not a plain file %.255s\n"
  2819. msgstr ""
  2820. #: dpkg-deb/info.c:171
  2821. #, c-format
  2822. msgid "failed to read `control' (in `%.255s')"
  2823. msgstr ""
  2824. #: dpkg-deb/info.c:172
  2825. msgid "(no `control' file in control archive!)\n"
  2826. msgstr ""
  2827. #: dpkg-deb/info.c:192
  2828. msgid "could not open the `control' component"
  2829. msgstr ""
  2830. #: dpkg-deb/info.c:222
  2831. msgid "failed during read of `control' component"
  2832. msgstr ""
  2833. #: dpkg-deb/info.c:233
  2834. msgid "Error in format"
  2835. msgstr ""
  2836. #: dpkg-deb/info.c:269
  2837. msgid "--contents takes exactly one argument"
  2838. msgstr ""
  2839. #: dpkg-deb/main.c:46
  2840. #, c-format
  2841. msgid "Debian `%s' package archive backend version %s.\n"
  2842. msgstr ""
  2843. #: dpkg-deb/main.c:60
  2844. #, c-format
  2845. msgid ""
  2846. "Commands:\n"
  2847. " -b|--build <directory> [<deb>] Build an archive.\n"
  2848. " -c|--contents <deb> List contents.\n"
  2849. " -I|--info <deb> [<cfile> ...] Show info to stdout.\n"
  2850. " -W|--show <deb> Show information on package(s)\n"
  2851. " -f|--field <deb> [<cfield> ...] Show field(s) to stdout.\n"
  2852. " -e|--control <deb> [<directory>] Extract control info.\n"
  2853. " -x|--extract <deb> <directory> Extract files.\n"
  2854. " -X|--vextract <deb> <directory> Extract & list files.\n"
  2855. " --fsys-tarfile <deb> Output filesystem tarfile.\n"
  2856. "\n"
  2857. msgstr ""
  2858. #: dpkg-deb/main.c:79
  2859. #, c-format
  2860. msgid ""
  2861. "<deb> is the filename of a Debian format archive.\n"
  2862. "<cfile> is the name of an administrative file component.\n"
  2863. "<cfield> is the name of a field in the main `control' file.\n"
  2864. "\n"
  2865. msgstr ""
  2866. #: dpkg-deb/main.c:85
  2867. #, c-format
  2868. msgid ""
  2869. "Options:\n"
  2870. " --showformat=<format> Use alternative format for --show.\n"
  2871. " -D Enable debugging output.\n"
  2872. " --old, --new Select archive format.\n"
  2873. " --nocheck Suppress control file check (build bad\n"
  2874. " packages).\n"
  2875. " -z# Set the compression level when building.\n"
  2876. " -Z<type> Set the compression type used when "
  2877. "building.\n"
  2878. " Allowed values: gzip, bzip2, lzma, "
  2879. "none.\n"
  2880. "\n"
  2881. msgstr ""
  2882. #: dpkg-deb/main.c:106
  2883. #, c-format
  2884. msgid ""
  2885. "\n"
  2886. "Use `dpkg' to install and remove packages from your system, or\n"
  2887. "`dselect' or `aptitude' for user-friendly package management. Packages\n"
  2888. "unpacked using `dpkg-deb --extract' will be incorrectly installed !\n"
  2889. msgstr ""
  2890. #: dpkg-deb/main.c:115
  2891. msgid ""
  2892. "Type dpkg-deb --help for help about manipulating *.deb files;\n"
  2893. "Type dpkg --help for help about installing and deinstalling packages."
  2894. msgstr ""
  2895. #: dpkg-deb/main.c:194
  2896. #, c-format
  2897. msgid "unknown compression type `%s'!"
  2898. msgstr ""
  2899. #: dpkg-split/info.c:64
  2900. #, c-format
  2901. msgid "file `%.250s' is corrupt - %.250s missing"
  2902. msgstr ""
  2903. #: dpkg-split/info.c:67
  2904. #, c-format
  2905. msgid "file `%.250s' is corrupt - missing newline after %.250s"
  2906. msgstr ""
  2907. #: dpkg-split/info.c:91
  2908. msgid "unable to seek back"
  2909. msgstr ""
  2910. #: dpkg-split/info.c:105
  2911. #, c-format
  2912. msgid "file `%.250s' is corrupt - bad padding character (code %d)"
  2913. msgstr ""
  2914. #: dpkg-split/info.c:109
  2915. #, c-format
  2916. msgid "file `%.250s' is corrupt - nulls in info section"
  2917. msgstr ""
  2918. #: dpkg-split/info.c:116
  2919. #, c-format
  2920. msgid "file `%.250s' is format version `%.250s' - you need a newer dpkg-split"
  2921. msgstr ""
  2922. #: dpkg-split/info.c:124
  2923. #, c-format
  2924. msgid "file `%.250s' is corrupt - bad MD5 checksum `%.250s'"
  2925. msgstr ""
  2926. #: dpkg-split/info.c:131
  2927. #, c-format
  2928. msgid "file `%.250s' is corrupt - no slash between part numbers"
  2929. msgstr ""
  2930. #: dpkg-split/info.c:140
  2931. #, c-format
  2932. msgid "file `%.250s' is corrupt - bad part number"
  2933. msgstr ""
  2934. #: dpkg-split/info.c:145
  2935. #, c-format
  2936. msgid "file `%.250s' is corrupt - bad magic at end of second header"
  2937. msgstr ""
  2938. #: dpkg-split/info.c:147
  2939. #, c-format
  2940. msgid "file `%.250s' is corrupt - second member is not data member"
  2941. msgstr ""
  2942. #: dpkg-split/info.c:153
  2943. #, c-format
  2944. msgid "file `%.250s' is corrupt - wrong number of parts for quoted sizes"
  2945. msgstr ""
  2946. #: dpkg-split/info.c:157
  2947. #, c-format
  2948. msgid "file `%.250s' is corrupt - size is wrong for quoted part number"
  2949. msgstr ""
  2950. #: dpkg-split/info.c:163
  2951. #, c-format
  2952. msgid "unable to fstat part file `%.250s'"
  2953. msgstr ""
  2954. #: dpkg-split/info.c:169
  2955. #, c-format
  2956. msgid "file `%.250s' is corrupt - too short"
  2957. msgstr ""
  2958. #: dpkg-split/info.c:181 dpkg-split/info.c:222
  2959. #, c-format
  2960. msgid "cannot open archive part file `%.250s'"
  2961. msgstr ""
  2962. #: dpkg-split/info.c:183
  2963. #, c-format
  2964. msgid "file `%.250s' is not an archive part"
  2965. msgstr ""
  2966. #: dpkg-split/info.c:188
  2967. #, c-format
  2968. msgid ""
  2969. "%s:\n"
  2970. " Part format version: %s\n"
  2971. " Part of package: %s\n"
  2972. " ... version: %s\n"
  2973. " ... MD5 checksum: %s\n"
  2974. " ... length: %lu bytes\n"
  2975. " ... split every: %lu bytes\n"
  2976. " Part number: %d/%d\n"
  2977. " Part length: %zi bytes\n"
  2978. " Part offset: %lu bytes\n"
  2979. " Part file size (used portion): %lu bytes\n"
  2980. "\n"
  2981. msgstr ""
  2982. #: dpkg-split/info.c:218
  2983. msgid "--info requires one or more part file arguments"
  2984. msgstr ""
  2985. #: dpkg-split/info.c:228
  2986. #, c-format
  2987. msgid "file `%s' is not an archive part\n"
  2988. msgstr ""
  2989. #: dpkg-split/join.c:48
  2990. #, c-format
  2991. msgid "unable to open output file `%.250s'"
  2992. msgstr ""
  2993. #: dpkg-split/join.c:52
  2994. #, c-format
  2995. msgid "unable to (re)open input part file `%.250s'"
  2996. msgstr ""
  2997. #: dpkg-split/join.c:68
  2998. #, c-format
  2999. msgid "done\n"
  3000. msgstr ""
  3001. #: dpkg-split/join.c:84
  3002. #, c-format
  3003. msgid "files `%.250s' and `%.250s' are not parts of the same file"
  3004. msgstr ""
  3005. #: dpkg-split/join.c:89
  3006. #, c-format
  3007. msgid "there are several versions of part %d - at least `%.250s' and `%.250s'"
  3008. msgstr ""
  3009. #: dpkg-split/join.c:102
  3010. msgid "--join requires one or more part file arguments"
  3011. msgstr ""
  3012. #: dpkg-split/join.c:123
  3013. #, c-format
  3014. msgid "part %d is missing"
  3015. msgstr ""
  3016. #: dpkg-split/main.c:38
  3017. #, c-format
  3018. msgid "Debian `%s' package split/join tool; version %s.\n"
  3019. msgstr ""
  3020. #: dpkg-split/main.c:40
  3021. #, c-format
  3022. msgid "Copyright (C) 1994-1996 Ian Jackson.\n"
  3023. msgstr ""
  3024. #: dpkg-split/main.c:53
  3025. #, c-format
  3026. msgid ""
  3027. "Commands:\n"
  3028. " -s|--split <file> [<prefix>] Split an archive.\n"
  3029. " -j|--join <part> <part> ... Join parts together.\n"
  3030. " -I|--info <part> ... Display info about a part.\n"
  3031. " -a|--auto -o <complete> <part> Auto-accumulate parts.\n"
  3032. " -l|--listq List unmatched pieces.\n"
  3033. " -d|--discard [<filename> ...] Discard unmatched pieces.\n"
  3034. "\n"
  3035. msgstr ""
  3036. #: dpkg-split/main.c:69
  3037. #, c-format
  3038. msgid ""
  3039. "Options:\n"
  3040. " --depotdir <directory> Use <directory> instead of %s/%s.\n"
  3041. " -S|--partsize <size> In KiB, for -s (default is 450).\n"
  3042. " -o|--output <file> For -j (default is <package>-<version>."
  3043. "deb).\n"
  3044. " -Q|--npquiet Be quiet when -a is not a part.\n"
  3045. " --msdos Generate 8.3 filenames.\n"
  3046. "\n"
  3047. "Exit status: 0 = OK; 1 = -a is not a part; 2 = trouble!\n"
  3048. msgstr ""
  3049. #: dpkg-split/main.c:81
  3050. msgid "Type dpkg-split --help for help."
  3051. msgstr ""
  3052. #: dpkg-split/main.c:91 dpkg-split/main.c:95
  3053. #, c-format
  3054. msgid "error reading %.250s"
  3055. msgstr ""
  3056. #: dpkg-split/main.c:96
  3057. #, c-format
  3058. msgid "unexpected end of file in %.250s"
  3059. msgstr ""
  3060. #: dpkg-split/main.c:116
  3061. msgid "part size is far too large or is not positive"
  3062. msgstr ""
  3063. #: dpkg-split/main.c:120
  3064. #, c-format
  3065. msgid "part size must be at least %dk (to allow for header)"
  3066. msgstr ""
  3067. #: dpkg-split/queue.c:69
  3068. #, c-format
  3069. msgid "unable to read depot directory `%.250s'"
  3070. msgstr ""
  3071. #: dpkg-split/queue.c:107
  3072. msgid "--auto requires the use of the --output option"
  3073. msgstr ""
  3074. #: dpkg-split/queue.c:109
  3075. msgid "--auto requires exactly one part file argument"
  3076. msgstr ""
  3077. #: dpkg-split/queue.c:113
  3078. #, c-format
  3079. msgid "unable to read part file `%.250s'"
  3080. msgstr ""
  3081. #: dpkg-split/queue.c:116
  3082. #, c-format
  3083. msgid "File `%.250s' is not part of a multipart archive.\n"
  3084. msgstr ""
  3085. #: dpkg-split/queue.c:143
  3086. #, c-format
  3087. msgid "unable to reopen part file `%.250s'"
  3088. msgstr ""
  3089. #: dpkg-split/queue.c:147
  3090. #, c-format
  3091. msgid "part file `%.250s' has trailing garbage"
  3092. msgstr ""
  3093. #: dpkg-split/queue.c:156
  3094. #, c-format
  3095. msgid "unable to open new depot file `%.250s'"
  3096. msgstr ""
  3097. #: dpkg-split/queue.c:160
  3098. #, c-format
  3099. msgid "unable to rename new depot file `%.250s' to `%.250s'"
  3100. msgstr ""
  3101. #: dpkg-split/queue.c:162
  3102. #, c-format
  3103. msgid "Part %d of package %s filed (still want "
  3104. msgstr ""
  3105. #: dpkg-split/queue.c:166
  3106. msgid " and "
  3107. msgstr ""
  3108. #: dpkg-split/queue.c:179
  3109. #, c-format
  3110. msgid "unable to delete used-up depot file `%.250s'"
  3111. msgstr ""
  3112. #: dpkg-split/queue.c:194
  3113. msgid "--listq does not take any arguments"
  3114. msgstr ""
  3115. #: dpkg-split/queue.c:197
  3116. msgid "Junk files left around in the depot directory:\n"
  3117. msgstr ""
  3118. #: dpkg-split/queue.c:202 dpkg-split/queue.c:226
  3119. #, c-format
  3120. msgid "unable to stat `%.250s'"
  3121. msgstr ""
  3122. #: dpkg-split/queue.c:205
  3123. #, c-format
  3124. msgid " %s (%lu bytes)\n"
  3125. msgstr ""
  3126. #: dpkg-split/queue.c:207
  3127. #, c-format
  3128. msgid " %s (not a plain file)\n"
  3129. msgstr ""
  3130. #: dpkg-split/queue.c:212
  3131. msgid "Packages not yet reassembled:\n"
  3132. msgstr ""
  3133. #: dpkg-split/queue.c:228
  3134. #, c-format
  3135. msgid "part file `%.250s' is not a plain file"
  3136. msgstr ""
  3137. #: dpkg-split/queue.c:233
  3138. #, c-format
  3139. msgid "(total %lu bytes)\n"
  3140. msgstr ""
  3141. #: dpkg-split/queue.c:256
  3142. #, c-format
  3143. msgid "unable to discard `%.250s'"
  3144. msgstr ""
  3145. #: dpkg-split/queue.c:257
  3146. #, c-format
  3147. msgid "Deleted %s.\n"
  3148. msgstr ""
  3149. #: dpkg-split/split.c:45
  3150. msgid "--split needs a source filename argument"
  3151. msgstr ""
  3152. #: dpkg-split/split.c:48
  3153. msgid "--split takes at most a source filename and destination prefix"
  3154. msgstr ""
  3155. #: dpkg-split/split.c:62
  3156. #, c-format
  3157. msgid "unable to open source file `%.250s'"
  3158. msgstr ""
  3159. #: dpkg-split/split.c:63
  3160. msgid "unable to fstat source file"
  3161. msgstr ""
  3162. #: dpkg-split/split.c:64
  3163. #, c-format
  3164. msgid "source file `%.250s' not a plain file"
  3165. msgstr ""
  3166. #: dpkg-split/split.c:70
  3167. msgid "unable to exec mksplit"
  3168. msgstr ""
  3169. #: scripts/cleanup-info.pl:35 scripts/dpkg-divert.pl:15
  3170. #: scripts/dpkg-statoverride.pl:23 scripts/install-info.pl:13
  3171. #: scripts/update-alternatives.pl:60
  3172. #, perl-format
  3173. msgid "Debian %s version %s.\n"
  3174. msgstr ""
  3175. #: scripts/cleanup-info.pl:37
  3176. msgid ""
  3177. "\n"
  3178. "Copyright (C) 1996 Kim-Minh Kaplan."
  3179. msgstr ""
  3180. #: scripts/cleanup-info.pl:40 scripts/dpkg-divert.pl:21
  3181. #: scripts/dpkg-statoverride.pl:28 scripts/install-info.pl:18
  3182. #: scripts/update-alternatives.pl:66
  3183. msgid ""
  3184. "\n"
  3185. "This is free software; see the GNU General Public Licence version 2 or\n"
  3186. "later for copying conditions. There is NO warranty.\n"
  3187. msgstr ""
  3188. #: scripts/cleanup-info.pl:48
  3189. #, perl-format
  3190. msgid ""
  3191. "Usage: %s [<option> ...] [--] [<dirname>]\n"
  3192. "\n"
  3193. "Options:\n"
  3194. " --unsafe set some additional possibly useful options.\n"
  3195. " warning: this option may garble an otherwise correct file.\n"
  3196. " --help show this help message.\n"
  3197. " --version show the version.\n"
  3198. msgstr ""
  3199. #: scripts/cleanup-info.pl:65 scripts/install-info.pl:504
  3200. #, perl-format
  3201. msgid "%s: warning - unable to unlock %s: %s"
  3202. msgstr ""
  3203. #: scripts/cleanup-info.pl:85 scripts/install-info.pl:115
  3204. #, perl-format
  3205. msgid "%s: unknown option `%s'"
  3206. msgstr ""
  3207. #: scripts/cleanup-info.pl:93 scripts/install-info.pl:126
  3208. #, perl-format
  3209. msgid "%s: too many arguments"
  3210. msgstr ""
  3211. #: scripts/cleanup-info.pl:100 scripts/install-info.pl:301
  3212. #, perl-format
  3213. msgid "%s: failed to lock dir for editing! %s"
  3214. msgstr ""
  3215. #: scripts/cleanup-info.pl:102
  3216. #, perl-format
  3217. msgid "try deleting %s"
  3218. msgstr ""
  3219. #: scripts/cleanup-info.pl:106 scripts/install-info.pl:308
  3220. #: scripts/update-alternatives.pl:163
  3221. #, perl-format
  3222. msgid "unable to open %s: %s"
  3223. msgstr ""
  3224. #: scripts/cleanup-info.pl:108 scripts/install-info.pl:478
  3225. #, perl-format
  3226. msgid "unable to create %s: %s"
  3227. msgstr ""
  3228. #: scripts/cleanup-info.pl:119 scripts/install-info.pl:481
  3229. #, perl-format
  3230. msgid "unable to write %s: %s"
  3231. msgstr ""
  3232. #: scripts/cleanup-info.pl:159 scripts/install-info.pl:161
  3233. #: scripts/install-info.pl:203 scripts/install-info.pl:310
  3234. #, perl-format
  3235. msgid "unable to read %s: %s"
  3236. msgstr ""
  3237. #: scripts/cleanup-info.pl:160 scripts/install-info.pl:311
  3238. #, perl-format
  3239. msgid "unable to close %s after read: %s"
  3240. msgstr ""
  3241. #: scripts/cleanup-info.pl:164 scripts/install-info.pl:482
  3242. #: scripts/update-alternatives.pl:535
  3243. #, perl-format
  3244. msgid "unable to close %s: %s"
  3245. msgstr ""
  3246. #: scripts/cleanup-info.pl:170 scripts/install-info.pl:486
  3247. #, perl-format
  3248. msgid "unable to backup old %s, giving up: %s"
  3249. msgstr ""
  3250. #: scripts/cleanup-info.pl:173
  3251. #, perl-format
  3252. msgid "failed to install %s; it will be left as %s: %s"
  3253. msgstr ""
  3254. #: scripts/cleanup-info.pl:177
  3255. #, perl-format
  3256. msgid "%s: unable to unlock %s: %s"
  3257. msgstr ""
  3258. #: scripts/dpkg-divert.pl:11 scripts/update-alternatives.pl:56
  3259. #, perl-format
  3260. msgid "Cannot get ENOENT value from %s: %s"
  3261. msgstr ""
  3262. #: scripts/dpkg-divert.pl:17
  3263. msgid ""
  3264. "\n"
  3265. "Copyright (C) 1995 Ian Jackson.\n"
  3266. "Copyright (C) 2000,2001 Wichert Akkerman."
  3267. msgstr ""
  3268. #: scripts/dpkg-divert.pl:29
  3269. #, perl-format
  3270. msgid ""
  3271. "Usage: %s [<option> ...] <command>\n"
  3272. "\n"
  3273. "Commands:\n"
  3274. " [--add] <file> add a diversion.\n"
  3275. " --remove <file> remove the diversion.\n"
  3276. " --list [<glob-pattern>] show file diversions.\n"
  3277. " --truename <file> return the diverted file.\n"
  3278. "\n"
  3279. "Options:\n"
  3280. " --package <package> name of the package whose copy of <file> will "
  3281. "not\n"
  3282. " be diverted.\n"
  3283. " --local all packages' versions are diverted.\n"
  3284. " --divert <divert-to> the name used by other packages' versions.\n"
  3285. " --rename actually move the file aside (or back).\n"
  3286. " --admindir <directory> set the directory with the diversions file.\n"
  3287. " --test don't do anything, just demonstrate.\n"
  3288. " --quiet quiet operation, minimal output.\n"
  3289. " --help show this help message.\n"
  3290. " --version show the version.\n"
  3291. "\n"
  3292. "When adding, default is --local and --divert <original>.distrib.\n"
  3293. "When removing, --package or --local and --divert must match if specified.\n"
  3294. "Package preinst/postrm scripts should always specify --package and --"
  3295. "divert.\n"
  3296. msgstr ""
  3297. #: scripts/dpkg-divert.pl:74 scripts/dpkg-statoverride.pl:56
  3298. #: scripts/update-alternatives.pl:229
  3299. #, perl-format
  3300. msgid "two commands specified: %s and --%s"
  3301. msgstr ""
  3302. #: scripts/dpkg-divert.pl:107
  3303. #, perl-format
  3304. msgid "--%s needs a divert-to argument"
  3305. msgstr ""
  3306. #: scripts/dpkg-divert.pl:109
  3307. msgid "divert-to may not contain newlines"
  3308. msgstr ""
  3309. #: scripts/dpkg-divert.pl:111
  3310. #, perl-format
  3311. msgid "--%s needs a <package> argument"
  3312. msgstr ""
  3313. #: scripts/dpkg-divert.pl:113
  3314. msgid "package may not contain newlines"
  3315. msgstr ""
  3316. #: scripts/dpkg-divert.pl:115 scripts/dpkg-statoverride.pl:75
  3317. #: scripts/update-alternatives.pl:278 scripts/update-alternatives.pl:281
  3318. #, perl-format
  3319. msgid "--%s needs a <directory> argument"
  3320. msgstr ""
  3321. #: scripts/dpkg-divert.pl:118 scripts/dpkg-statoverride.pl:87
  3322. #: scripts/update-alternatives.pl:286
  3323. #, perl-format
  3324. msgid "unknown option `%s'"
  3325. msgstr ""
  3326. #: scripts/dpkg-divert.pl:124
  3327. #, perl-format
  3328. msgid "cannot open diversions: %s"
  3329. msgstr ""
  3330. #: scripts/dpkg-divert.pl:127
  3331. msgid "missing altname"
  3332. msgstr ""
  3333. #: scripts/dpkg-divert.pl:129
  3334. msgid "missing package"
  3335. msgstr ""
  3336. #: scripts/dpkg-divert.pl:135 scripts/dpkg-divert.pl:163
  3337. #: scripts/dpkg-divert.pl:206 scripts/dpkg-statoverride.pl:150
  3338. #, perl-format
  3339. msgid "--%s needs a single argument"
  3340. msgstr ""
  3341. #: scripts/dpkg-divert.pl:137 scripts/dpkg-divert.pl:141
  3342. #, perl-format
  3343. msgid "filename \"%s\" is not absolute"
  3344. msgstr ""
  3345. #: scripts/dpkg-divert.pl:138 scripts/dpkg-statoverride.pl:124
  3346. msgid "file may not contain newlines"
  3347. msgstr ""
  3348. #: scripts/dpkg-divert.pl:139
  3349. msgid "Cannot divert directories"
  3350. msgstr ""
  3351. #: scripts/dpkg-divert.pl:148
  3352. #, perl-format
  3353. msgid "Leaving `%s'"
  3354. msgstr ""
  3355. #: scripts/dpkg-divert.pl:151
  3356. #, perl-format
  3357. msgid "`%s' clashes with `%s'"
  3358. msgstr ""
  3359. #: scripts/dpkg-divert.pl:157
  3360. #, perl-format
  3361. msgid "Adding `%s'"
  3362. msgstr ""
  3363. #: scripts/dpkg-divert.pl:167
  3364. #, perl-format
  3365. msgid ""
  3366. "mismatch on divert-to\n"
  3367. " when removing `%s'\n"
  3368. " found `%s'"
  3369. msgstr ""
  3370. #: scripts/dpkg-divert.pl:169
  3371. #, perl-format
  3372. msgid ""
  3373. "mismatch on package\n"
  3374. " when removing `%s'\n"
  3375. " found `%s'"
  3376. msgstr ""
  3377. #: scripts/dpkg-divert.pl:171
  3378. #, perl-format
  3379. msgid "Removing `%s'"
  3380. msgstr ""
  3381. #: scripts/dpkg-divert.pl:186
  3382. #, perl-format
  3383. msgid "No diversion `%s', none removed"
  3384. msgstr ""
  3385. #: scripts/dpkg-divert.pl:216
  3386. #, perl-format
  3387. msgid "internal error - bad mode `%s'"
  3388. msgstr ""
  3389. #: scripts/dpkg-divert.pl:230
  3390. #, perl-format
  3391. msgid "cannot stat old name `%s': %s"
  3392. msgstr ""
  3393. #: scripts/dpkg-divert.pl:232
  3394. #, perl-format
  3395. msgid "cannot stat new name `%s': %s"
  3396. msgstr ""
  3397. #: scripts/dpkg-divert.pl:247
  3398. #, perl-format
  3399. msgid "error checking `%s': %s"
  3400. msgstr ""
  3401. #: scripts/dpkg-divert.pl:252
  3402. #, perl-format
  3403. msgid ""
  3404. "rename involves overwriting `%s' with\n"
  3405. " different file `%s', not allowed"
  3406. msgstr ""
  3407. #: scripts/dpkg-divert.pl:262
  3408. #, perl-format
  3409. msgid "rename: remove duplicate old link `%s': %s"
  3410. msgstr ""
  3411. #: scripts/dpkg-divert.pl:264
  3412. #, perl-format
  3413. msgid "rename: rename `%s' to `%s': %s"
  3414. msgstr ""
  3415. #: scripts/dpkg-divert.pl:271
  3416. #, perl-format
  3417. msgid "create diversions-new: %s"
  3418. msgstr ""
  3419. #: scripts/dpkg-divert.pl:275
  3420. #, perl-format
  3421. msgid "write diversions-new: %s"
  3422. msgstr ""
  3423. #: scripts/dpkg-divert.pl:277
  3424. #, perl-format
  3425. msgid "close diversions-new: %s"
  3426. msgstr ""
  3427. #: scripts/dpkg-divert.pl:279
  3428. #, perl-format
  3429. msgid "remove old diversions-old: %s"
  3430. msgstr ""
  3431. #: scripts/dpkg-divert.pl:281
  3432. #, perl-format
  3433. msgid "create new diversions-old: %s"
  3434. msgstr ""
  3435. #: scripts/dpkg-divert.pl:283
  3436. #, perl-format
  3437. msgid "install new diversions: %s"
  3438. msgstr ""
  3439. #: scripts/dpkg-divert.pl:306 scripts/update-alternatives.pl:738
  3440. #, perl-format
  3441. msgid "internal error: %s corrupt: %s"
  3442. msgstr ""
  3443. #: scripts/dpkg-statoverride.pl:25
  3444. msgid ""
  3445. "\n"
  3446. "Copyright (C) 2000 Wichert Akkerman."
  3447. msgstr ""
  3448. #: scripts/dpkg-statoverride.pl:36
  3449. #, perl-format
  3450. msgid ""
  3451. "Usage: %s [<option> ...] <command>\n"
  3452. "\n"
  3453. "Commands:\n"
  3454. " --add <owner> <group> <mode> <file>\n"
  3455. " add a new entry into the database.\n"
  3456. " --remove <file> remove file from the database.\n"
  3457. " --list [<glob-pattern>] list current overrides in the database.\n"
  3458. "\n"
  3459. "Options:\n"
  3460. " --admindir <directory> set the directory with the statoverride file.\n"
  3461. " --update immediately update file permissions.\n"
  3462. " --force force an action even if a sanity check fails.\n"
  3463. " --quiet quiet operation, minimal output.\n"
  3464. " --help show this help message.\n"
  3465. " --version show the version.\n"
  3466. msgstr ""
  3467. #: scripts/dpkg-statoverride.pl:94
  3468. msgid "no mode specified"
  3469. msgstr ""
  3470. #: scripts/dpkg-statoverride.pl:98
  3471. msgid "--add needs four arguments"
  3472. msgstr ""
  3473. #: scripts/dpkg-statoverride.pl:106
  3474. #, perl-format
  3475. msgid "illegal user %s"
  3476. msgstr ""
  3477. #: scripts/dpkg-statoverride.pl:109
  3478. #, perl-format
  3479. msgid "non-existing user %s"
  3480. msgstr ""
  3481. #: scripts/dpkg-statoverride.pl:115
  3482. #, perl-format
  3483. msgid "illegal group %s"
  3484. msgstr ""
  3485. #: scripts/dpkg-statoverride.pl:118
  3486. #, perl-format
  3487. msgid "non-existing group %s"
  3488. msgstr ""
  3489. #: scripts/dpkg-statoverride.pl:122
  3490. #, perl-format
  3491. msgid "illegal mode %s"
  3492. msgstr ""
  3493. #: scripts/dpkg-statoverride.pl:125 scripts/dpkg-statoverride.pl:152
  3494. #: scripts/dpkg-statoverride.pl:171
  3495. msgid "stripping trailing /"
  3496. msgstr ""
  3497. #: scripts/dpkg-statoverride.pl:128
  3498. #, perl-format
  3499. msgid "An override for \"%s\" already exists, "
  3500. msgstr ""
  3501. #: scripts/dpkg-statoverride.pl:130
  3502. msgid "but --force specified so will be ignored."
  3503. msgstr ""
  3504. #: scripts/dpkg-statoverride.pl:132
  3505. msgid "aborting"
  3506. msgstr ""
  3507. #: scripts/dpkg-statoverride.pl:143
  3508. #, perl-format
  3509. msgid "warning: --update given but %s does not exist"
  3510. msgstr ""
  3511. #: scripts/dpkg-statoverride.pl:145
  3512. #, perl-format
  3513. msgid "failed to chown %s: %s"
  3514. msgstr ""
  3515. #: scripts/dpkg-statoverride.pl:146
  3516. #, perl-format
  3517. msgid "failed to chmod %s: %s"
  3518. msgstr ""
  3519. #: scripts/dpkg-statoverride.pl:154
  3520. msgid "No override present."
  3521. msgstr ""
  3522. #: scripts/dpkg-statoverride.pl:162
  3523. msgid "warning: --update is useless for --remove"
  3524. msgstr ""
  3525. #: scripts/dpkg-statoverride.pl:189
  3526. #, perl-format
  3527. msgid "cannot open statoverride: %s"
  3528. msgstr ""
  3529. #: scripts/dpkg-statoverride.pl:195
  3530. #, perl-format
  3531. msgid "Multiple overrides for \"%s\", aborting"
  3532. msgstr ""
  3533. #: scripts/dpkg-statoverride.pl:208
  3534. #, perl-format
  3535. msgid "cannot open new statoverride file: %s"
  3536. msgstr ""
  3537. #: scripts/dpkg-statoverride.pl:215
  3538. #, perl-format
  3539. msgid "error removing statoverride-old: %s"
  3540. msgstr ""
  3541. #: scripts/dpkg-statoverride.pl:217
  3542. #, perl-format
  3543. msgid "error creating new statoverride-old: %s"
  3544. msgstr ""
  3545. #: scripts/dpkg-statoverride.pl:219
  3546. #, perl-format
  3547. msgid "error installing new statoverride: %s"
  3548. msgstr ""
  3549. #: scripts/install-info.pl:15
  3550. msgid ""
  3551. "\n"
  3552. "Copyright (C) 1994,1995 Ian Jackson."
  3553. msgstr ""
  3554. #: scripts/install-info.pl:27
  3555. #, perl-format
  3556. msgid ""
  3557. "Usage: %s [<options> ...] [--] <filename>\n"
  3558. "\n"
  3559. "Options:\n"
  3560. " --section <regexp> <title>\n"
  3561. " put the new entry in the <regex> matched section\n"
  3562. " or create a new one with <title> if non-"
  3563. "existent.\n"
  3564. " --menuentry=<text> set the menu entry.\n"
  3565. " --description=<text> set the description to be used in the menu "
  3566. "entry.\n"
  3567. " --info-file=<path> specify info file to install in the directory.\n"
  3568. " --dir-file=<path> specify file name of info directory file.\n"
  3569. " --infodir=<directory> same as '--dir-file=<directory>/dir'.\n"
  3570. " --info-dir=<directory> likewise.\n"
  3571. " --keep-old do not replace entries nor remove empty ones.\n"
  3572. " --remove remove the entry specified by <filename> "
  3573. "basename.\n"
  3574. " --remove-exactly remove the exact <filename> entry.\n"
  3575. " --test enables test mode (no actions taken).\n"
  3576. " --debug enables debug mode (show more information).\n"
  3577. " --quiet do not show output messages.\n"
  3578. " --help show this help message.\n"
  3579. " --version show the version.\n"
  3580. msgstr ""
  3581. #: scripts/install-info.pl:93
  3582. #, perl-format
  3583. msgid "could not open stderr for output! %s"
  3584. msgstr ""
  3585. #: scripts/install-info.pl:97
  3586. #, perl-format
  3587. msgid "%s: --section needs two more args"
  3588. msgstr ""
  3589. #: scripts/install-info.pl:103
  3590. #, perl-format
  3591. msgid "%s: option --%s is deprecated (ignored)"
  3592. msgstr ""
  3593. #: scripts/install-info.pl:129
  3594. #, perl-format
  3595. msgid "%s: --section ignored with --remove"
  3596. msgstr ""
  3597. #: scripts/install-info.pl:130
  3598. #, perl-format
  3599. msgid "%s: --description ignored with --remove"
  3600. msgstr ""
  3601. #: scripts/install-info.pl:133
  3602. #, perl-format
  3603. msgid "%s: test mode - dir file will not be updated"
  3604. msgstr ""
  3605. #: scripts/install-info.pl:187
  3606. #, perl-format
  3607. msgid "%s: warning, ignoring confusing INFO-DIR-ENTRY in file."
  3608. msgstr ""
  3609. #: scripts/install-info.pl:196
  3610. msgid "invalid info entry"
  3611. msgstr ""
  3612. #: scripts/install-info.pl:222
  3613. #, perl-format
  3614. msgid ""
  3615. "\n"
  3616. "No `START-INFO-DIR-ENTRY' and no `This file documents'.\n"
  3617. "%s: unable to determine description for `dir' entry - giving up\n"
  3618. msgstr ""
  3619. #: scripts/install-info.pl:275
  3620. #, perl-format
  3621. msgid "%s: no file %s, retrieving backup file %s."
  3622. msgstr ""
  3623. #: scripts/install-info.pl:278 scripts/install-info.pl:288
  3624. #, perl-format
  3625. msgid "%s: copying %s to %s failed, giving up: %s"
  3626. msgstr ""
  3627. #: scripts/install-info.pl:284
  3628. #, perl-format
  3629. msgid "%s: no backup file %s available, retrieving default file."
  3630. msgstr ""
  3631. #: scripts/install-info.pl:293
  3632. #, perl-format
  3633. msgid "%s: no backup file %s available."
  3634. msgstr ""
  3635. #: scripts/install-info.pl:294
  3636. #, perl-format
  3637. msgid "%s: no default file %s available, giving up."
  3638. msgstr ""
  3639. #: scripts/install-info.pl:303
  3640. #, perl-format
  3641. msgid "try deleting %s?"
  3642. msgstr ""
  3643. #: scripts/install-info.pl:344
  3644. #, perl-format
  3645. msgid "%s: existing entry for `%s' not replaced"
  3646. msgstr ""
  3647. #: scripts/install-info.pl:347
  3648. #, perl-format
  3649. msgid "%s: replacing existing dir entry for `%s'"
  3650. msgstr ""
  3651. #: scripts/install-info.pl:360
  3652. #, perl-format
  3653. msgid "%s: creating new section `%s'"
  3654. msgstr ""
  3655. #: scripts/install-info.pl:363
  3656. #, perl-format
  3657. msgid "%s: no sections yet, creating Miscellaneous section too."
  3658. msgstr ""
  3659. #: scripts/install-info.pl:381
  3660. #, perl-format
  3661. msgid "%s: no section specified for new entry, placing at end"
  3662. msgstr ""
  3663. #: scripts/install-info.pl:418
  3664. #, perl-format
  3665. msgid "%s: deleting entry `%s ...'"
  3666. msgstr ""
  3667. #: scripts/install-info.pl:424
  3668. #, perl-format
  3669. msgid "%s: empty section `%s' not removed"
  3670. msgstr ""
  3671. #: scripts/install-info.pl:427
  3672. #, perl-format
  3673. msgid "%s: deleting empty section `%s'"
  3674. msgstr ""
  3675. #: scripts/install-info.pl:434
  3676. #, perl-format
  3677. msgid "%s: no entry for file `%s' and menu entry `%s'"
  3678. msgstr ""
  3679. #: scripts/install-info.pl:436
  3680. #, perl-format
  3681. msgid "%s: no entry for file `%s'"
  3682. msgstr ""
  3683. #: scripts/install-info.pl:489
  3684. #, perl-format
  3685. msgid "unable to install new %s: %s"
  3686. msgstr ""
  3687. #: scripts/install-info.pl:492
  3688. #, perl-format
  3689. msgid "unable to unlock %s: %s"
  3690. msgstr ""
  3691. #: scripts/install-info.pl:494
  3692. #, perl-format
  3693. msgid "%s: could not backup %s in %s: %s"
  3694. msgstr ""
  3695. #: scripts/install-info.pl:511
  3696. #, perl-format
  3697. msgid "unable to read %s: %d"
  3698. msgstr ""
  3699. #: scripts/install-info.pl:515
  3700. #, perl-format
  3701. msgid "dbg: %s"
  3702. msgstr ""
  3703. #: scripts/update-alternatives.pl:62
  3704. msgid ""
  3705. "\n"
  3706. "Copyright (C) 1995 Ian Jackson.\n"
  3707. "Copyright (C) 2000-2002 Wichert Akkerman."
  3708. msgstr ""
  3709. #: scripts/update-alternatives.pl:74
  3710. #, perl-format
  3711. msgid ""
  3712. "Usage: %s [<option> ...] <command>\n"
  3713. "\n"
  3714. "Commands:\n"
  3715. " --install <link> <name> <path> <priority>\n"
  3716. " [--slave <link> <name> <path>] ...\n"
  3717. " add a group of alternatives to the system.\n"
  3718. " --remove <name> <path> remove <path> from the <name> group alternative.\n"
  3719. " --remove-all <name> remove <name> group from the alternatives "
  3720. "system.\n"
  3721. " --auto <name> switch the master link <name> to automatic mode.\n"
  3722. " --display <name> display information about the <name> group.\n"
  3723. " --list <name> display all targets of the <name> group.\n"
  3724. " --config <name> show alternatives for the <name> group and ask "
  3725. "the\n"
  3726. " user to select which one to use.\n"
  3727. " --set <name> <path> set <path> as alternative for <name>.\n"
  3728. " --all call --config on all alternatives.\n"
  3729. "\n"
  3730. "<link> is the symlink pointing to %s/<name>.\n"
  3731. " (e.g. /usr/bin/pager)\n"
  3732. "<name> is the master name for this link group.\n"
  3733. " (e.g. pager)\n"
  3734. "<path> is the location of one of the alternative target files.\n"
  3735. " (e.g. /usr/bin/less)\n"
  3736. "<priority> is an integer; options with higher numbers have higher priority "
  3737. "in\n"
  3738. " automatic mode.\n"
  3739. "\n"
  3740. "Options:\n"
  3741. " --altdir <directory> change the alternatives directory.\n"
  3742. " --admindir <directory> change the administrative directory.\n"
  3743. " --test don't do anything, just demonstrate.\n"
  3744. " --verbose verbose operation, more output.\n"
  3745. " --quiet quiet operation, minimal output.\n"
  3746. " --help show this help message.\n"
  3747. " --version show the version.\n"
  3748. msgstr ""
  3749. #: scripts/update-alternatives.pl:127
  3750. msgid "invalid update mode"
  3751. msgstr ""
  3752. #: scripts/update-alternatives.pl:131
  3753. #, perl-format
  3754. msgid "duplicate slave %s"
  3755. msgstr ""
  3756. #: scripts/update-alternatives.pl:134
  3757. #, perl-format
  3758. msgid "slave link same as main link %s"
  3759. msgstr ""
  3760. #: scripts/update-alternatives.pl:135
  3761. #, perl-format
  3762. msgid "duplicate slave link %s"
  3763. msgstr ""
  3764. #: scripts/update-alternatives.pl:139
  3765. #, perl-format
  3766. msgid "duplicate path %s"
  3767. msgstr ""
  3768. #: scripts/update-alternatives.pl:145
  3769. #, perl-format
  3770. msgid "priority %s %s"
  3771. msgstr ""
  3772. #: scripts/update-alternatives.pl:152
  3773. #, perl-format
  3774. msgid ""
  3775. "Alternative for %s points to %s - which wasn't found. Removing from list of "
  3776. "alternatives."
  3777. msgstr ""
  3778. #: scripts/update-alternatives.pl:192
  3779. #, perl-format
  3780. msgid "%s - status is %s."
  3781. msgstr ""
  3782. #: scripts/update-alternatives.pl:196
  3783. #, perl-format
  3784. msgid " link currently points to %s"
  3785. msgstr ""
  3786. #: scripts/update-alternatives.pl:198
  3787. msgid " link currently absent"
  3788. msgstr ""
  3789. #: scripts/update-alternatives.pl:200
  3790. #, perl-format
  3791. msgid " link unreadable - %s"
  3792. msgstr ""
  3793. #: scripts/update-alternatives.pl:204
  3794. #, perl-format
  3795. msgid "%s - priority %s"
  3796. msgstr ""
  3797. #: scripts/update-alternatives.pl:208
  3798. #, perl-format
  3799. msgid " slave %s: %s"
  3800. msgstr ""
  3801. #: scripts/update-alternatives.pl:213
  3802. msgid "No versions available."
  3803. msgstr ""
  3804. #: scripts/update-alternatives.pl:215
  3805. #, perl-format
  3806. msgid "Current `best' version is %s."
  3807. msgstr ""
  3808. #: scripts/update-alternatives.pl:243
  3809. #, perl-format
  3810. msgid "unknown argument `%s'"
  3811. msgstr ""
  3812. #: scripts/update-alternatives.pl:256
  3813. msgid "--install needs <link> <name> <path> <priority>"
  3814. msgstr ""
  3815. #: scripts/update-alternatives.pl:258
  3816. msgid "priority must be an integer"
  3817. msgstr ""
  3818. #: scripts/update-alternatives.pl:262
  3819. #, perl-format
  3820. msgid "--%s needs <name> <path>"
  3821. msgstr ""
  3822. #: scripts/update-alternatives.pl:267
  3823. #, perl-format
  3824. msgid "--%s needs <name>"
  3825. msgstr ""
  3826. #: scripts/update-alternatives.pl:271
  3827. msgid "--slave needs <link> <name> <path>"
  3828. msgstr ""
  3829. #: scripts/update-alternatives.pl:273
  3830. #, perl-format
  3831. msgid "slave name %s duplicated"
  3832. msgstr ""
  3833. #: scripts/update-alternatives.pl:274
  3834. #, perl-format
  3835. msgid "slave link %s duplicated"
  3836. msgstr ""
  3837. #: scripts/update-alternatives.pl:291
  3838. #, perl-format
  3839. msgid "name %s is both primary and slave"
  3840. msgstr ""
  3841. #: scripts/update-alternatives.pl:293
  3842. #, perl-format
  3843. msgid "link %s is both primary and slave"
  3844. msgstr ""
  3845. #: scripts/update-alternatives.pl:296
  3846. msgid ""
  3847. "need --display, --config, --set, --install, --remove, --all, --remove-all or "
  3848. "--auto"
  3849. msgstr ""
  3850. #: scripts/update-alternatives.pl:298
  3851. msgid "--slave only allowed with --install"
  3852. msgstr ""
  3853. #: scripts/update-alternatives.pl:311
  3854. #, perl-format
  3855. msgid "No alternatives for %s."
  3856. msgstr ""
  3857. #: scripts/update-alternatives.pl:358
  3858. #, perl-format
  3859. msgid "Setting up automatic selection of %s."
  3860. msgstr ""
  3861. #: scripts/update-alternatives.pl:361 scripts/update-alternatives.pl:363
  3862. #: scripts/update-alternatives.pl:477 scripts/update-alternatives.pl:479
  3863. #: scripts/update-alternatives.pl:542 scripts/update-alternatives.pl:544
  3864. #: scripts/update-alternatives.pl:546 scripts/update-alternatives.pl:548
  3865. #: scripts/update-alternatives.pl:594 scripts/update-alternatives.pl:596
  3866. #: scripts/update-alternatives.pl:685 scripts/update-alternatives.pl:721
  3867. #, perl-format
  3868. msgid "unable to remove %s: %s"
  3869. msgstr ""
  3870. #: scripts/update-alternatives.pl:374
  3871. #, perl-format
  3872. msgid ""
  3873. "%s has been changed (manually or by a script).\n"
  3874. "Switching to manual updates only."
  3875. msgstr ""
  3876. #: scripts/update-alternatives.pl:386
  3877. #, perl-format
  3878. msgid ""
  3879. "Checking available versions of %s, updating links in %s ...\n"
  3880. "(You may modify the symlinks there yourself if desired - see `man ln'.)"
  3881. msgstr ""
  3882. #: scripts/update-alternatives.pl:392
  3883. #, perl-format
  3884. msgid "Renaming %s link from %s to %s."
  3885. msgstr ""
  3886. #: scripts/update-alternatives.pl:395 scripts/update-alternatives.pl:419
  3887. #: scripts/update-alternatives.pl:503 scripts/update-alternatives.pl:579
  3888. #, perl-format
  3889. msgid "unable to rename %s to %s: %s"
  3890. msgstr ""
  3891. #: scripts/update-alternatives.pl:414
  3892. #, perl-format
  3893. msgid "slave link name %s duplicated"
  3894. msgstr ""
  3895. #: scripts/update-alternatives.pl:416
  3896. #, perl-format
  3897. msgid "Renaming %s slave link from %s to %s."
  3898. msgstr ""
  3899. #: scripts/update-alternatives.pl:433
  3900. msgid "Removing manually selected alternative - switching to auto mode"
  3901. msgstr ""
  3902. #: scripts/update-alternatives.pl:447
  3903. #, perl-format
  3904. msgid "Alternative %s for %s not registered, not removing."
  3905. msgstr ""
  3906. #: scripts/update-alternatives.pl:474
  3907. #, perl-format
  3908. msgid "Discarding obsolete slave link %s (%s)."
  3909. msgstr ""
  3910. #: scripts/update-alternatives.pl:495
  3911. #, perl-format
  3912. msgid "Automatic updates of %s are disabled, leaving it alone."
  3913. msgstr ""
  3914. #: scripts/update-alternatives.pl:497
  3915. #, perl-format
  3916. msgid "To return to automatic updates use `update-alternatives --auto %s'."
  3917. msgstr ""
  3918. #: scripts/update-alternatives.pl:501
  3919. #, perl-format
  3920. msgid "Recovering from previous failed update of %s ..."
  3921. msgstr ""
  3922. #: scripts/update-alternatives.pl:516
  3923. #, perl-format
  3924. msgid "unable to open %s for write: %s"
  3925. msgstr ""
  3926. #: scripts/update-alternatives.pl:539
  3927. #, perl-format
  3928. msgid "Last package providing %s (%s) removed, deleting it."
  3929. msgstr ""
  3930. #: scripts/update-alternatives.pl:553
  3931. #, perl-format
  3932. msgid ""
  3933. "warning: %s is supposed to be a symlink to %s\n"
  3934. " (or nonexistent); however, readlink failed: %s"
  3935. msgstr ""
  3936. #: scripts/update-alternatives.pl:559 scripts/update-alternatives.pl:573
  3937. #: scripts/update-alternatives.pl:589 scripts/update-alternatives.pl:605
  3938. #, perl-format
  3939. msgid "unable to ensure %s nonexistent: %s"
  3940. msgstr ""
  3941. #: scripts/update-alternatives.pl:561 scripts/update-alternatives.pl:608
  3942. #: scripts/update-alternatives.pl:622 scripts/update-alternatives.pl:671
  3943. #: scripts/update-alternatives.pl:707 scripts/update-alternatives.pl:746
  3944. #, perl-format
  3945. msgid "unable to make %s a symlink to %s: %s"
  3946. msgstr ""
  3947. #: scripts/update-alternatives.pl:563 scripts/update-alternatives.pl:583
  3948. #: scripts/update-alternatives.pl:611 scripts/update-alternatives.pl:624
  3949. #: scripts/update-alternatives.pl:673 scripts/update-alternatives.pl:709
  3950. #: scripts/update-alternatives.pl:751
  3951. #, perl-format
  3952. msgid "unable to install %s as %s: %s"
  3953. msgstr ""
  3954. #: scripts/update-alternatives.pl:566 scripts/update-alternatives.pl:615
  3955. #, perl-format
  3956. msgid "Leaving %s (%s) pointing to %s."
  3957. msgstr ""
  3958. #: scripts/update-alternatives.pl:569 scripts/update-alternatives.pl:618
  3959. #, perl-format
  3960. msgid "Updating %s (%s) to point to %s."
  3961. msgstr ""
  3962. #: scripts/update-alternatives.pl:591 scripts/update-alternatives.pl:682
  3963. #: scripts/update-alternatives.pl:718
  3964. #, perl-format
  3965. msgid "Removing %s (%s), not appropriate with %s."
  3966. msgstr ""
  3967. #: scripts/update-alternatives.pl:599
  3968. #, perl-format
  3969. msgid ""
  3970. "warning: %s is supposed to be a slave symlink to\n"
  3971. " %s, or nonexistent; however, readlink failed: %s"
  3972. msgstr ""
  3973. #: scripts/update-alternatives.pl:632
  3974. #, perl-format
  3975. msgid ""
  3976. "There is no program which provides %s.\n"
  3977. "Nothing to configure.\n"
  3978. msgstr ""
  3979. #: scripts/update-alternatives.pl:638
  3980. #, perl-format
  3981. msgid ""
  3982. "There is only 1 program which provides %s\n"
  3983. "(%s). Nothing to configure.\n"
  3984. msgstr ""
  3985. #: scripts/update-alternatives.pl:643
  3986. #, perl-format
  3987. msgid ""
  3988. "There are %s alternatives which provide `%s'.\n"
  3989. "\n"
  3990. " Selection Alternative\n"
  3991. "-----------------------------------------------\n"
  3992. msgstr ""
  3993. #: scripts/update-alternatives.pl:653
  3994. msgid "Press enter to keep the default[*], or type selection number: "
  3995. msgstr ""
  3996. #: scripts/update-alternatives.pl:668 scripts/update-alternatives.pl:705
  3997. #, perl-format
  3998. msgid "Using `%s' to provide `%s'."
  3999. msgstr ""
  4000. #: scripts/update-alternatives.pl:703
  4001. #, perl-format
  4002. msgid "Cannot find alternative `%s'."
  4003. msgstr ""
  4004. #: scripts/update-alternatives.pl:726 scripts/update-alternatives.pl:729
  4005. #, perl-format
  4006. msgid "error writing stdout: %s"
  4007. msgstr ""
  4008. #: scripts/update-alternatives.pl:728
  4009. #, perl-format
  4010. msgid "newlines prohibited in update-alternatives files (%s)"
  4011. msgstr ""
  4012. #: scripts/update-alternatives.pl:733
  4013. #, perl-format
  4014. msgid "error or eof reading %s for %s (%s)"
  4015. msgstr ""
  4016. #: scripts/update-alternatives.pl:734
  4017. #, perl-format
  4018. msgid "missing newline after %s"
  4019. msgstr ""
  4020. #: scripts/update-alternatives.pl:754
  4021. #, perl-format
  4022. msgid "Serious problem: %s"
  4023. msgstr ""