apt-all.pot 58 KB

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