apt-all.pot 78 KB

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