apt-all.pot 62 KB

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