apt-all.pot 60 KB

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