apt-all.pot 54 KB

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