apt-all.pot 56 KB

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