apt-all.pot 61 KB

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