apt-all.pot 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631
  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-06-06 23:30+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: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:2564 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:1655
  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:1995 cmdline/apt-get.cc:2028
  581. msgid "Unable to lock the download directory"
  582. msgstr ""
  583. #: cmdline/apt-get.cc:816 cmdline/apt-get.cc:2076 cmdline/apt-get.cc:2312
  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:2166
  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:2209
  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:2218
  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:1465
  728. msgid ""
  729. "The following packages were automatically installed and are no longer "
  730. "required:"
  731. msgstr ""
  732. #: cmdline/apt-get.cc:1467
  733. msgid "Use 'apt-get autoremove' to remove them."
  734. msgstr ""
  735. #: cmdline/apt-get.cc:1472
  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:1475 cmdline/apt-get.cc:1736
  741. msgid "The following information may help to resolve the situation:"
  742. msgstr ""
  743. #: cmdline/apt-get.cc:1479
  744. msgid "Internal Error, AutoRemover broke stuff"
  745. msgstr ""
  746. #: cmdline/apt-get.cc:1498
  747. msgid "Internal error, AllUpgrade broke stuff"
  748. msgstr ""
  749. #: cmdline/apt-get.cc:1543
  750. #, c-format
  751. msgid "Couldn't find task %s"
  752. msgstr ""
  753. #: cmdline/apt-get.cc:1642 cmdline/apt-get.cc:1678
  754. #, c-format
  755. msgid "Couldn't find package %s"
  756. msgstr ""
  757. #: cmdline/apt-get.cc:1665
  758. #, c-format
  759. msgid "Note, selecting %s for regex '%s'\n"
  760. msgstr ""
  761. #: cmdline/apt-get.cc:1695
  762. #, c-format
  763. msgid "%s set to manual installed.\n"
  764. msgstr ""
  765. #: cmdline/apt-get.cc:1708
  766. msgid "You might want to run `apt-get -f install' to correct these:"
  767. msgstr ""
  768. #: cmdline/apt-get.cc:1711
  769. msgid ""
  770. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  771. "solution)."
  772. msgstr ""
  773. #: cmdline/apt-get.cc:1723
  774. msgid ""
  775. "Some packages could not be installed. This may mean that you have\n"
  776. "requested an impossible situation or if you are using the unstable\n"
  777. "distribution that some required packages have not yet been created\n"
  778. "or been moved out of Incoming."
  779. msgstr ""
  780. #: cmdline/apt-get.cc:1731
  781. msgid ""
  782. "Since you only requested a single operation it is extremely likely that\n"
  783. "the package is simply not installable and a bug report against\n"
  784. "that package should be filed."
  785. msgstr ""
  786. #: cmdline/apt-get.cc:1739
  787. msgid "Broken packages"
  788. msgstr ""
  789. #: cmdline/apt-get.cc:1770
  790. msgid "The following extra packages will be installed:"
  791. msgstr ""
  792. #: cmdline/apt-get.cc:1859
  793. msgid "Suggested packages:"
  794. msgstr ""
  795. #: cmdline/apt-get.cc:1860
  796. msgid "Recommended packages:"
  797. msgstr ""
  798. #: cmdline/apt-get.cc:1888
  799. msgid "Calculating upgrade... "
  800. msgstr ""
  801. #: cmdline/apt-get.cc:1891 methods/ftp.cc:702 methods/connect.cc:101
  802. msgid "Failed"
  803. msgstr ""
  804. #: cmdline/apt-get.cc:1896
  805. msgid "Done"
  806. msgstr ""
  807. #: cmdline/apt-get.cc:1963 cmdline/apt-get.cc:1971
  808. msgid "Internal error, problem resolver broke stuff"
  809. msgstr ""
  810. #: cmdline/apt-get.cc:2071
  811. msgid "Must specify at least one package to fetch source for"
  812. msgstr ""
  813. #: cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2330
  814. #, c-format
  815. msgid "Unable to find a source package for %s"
  816. msgstr ""
  817. #: cmdline/apt-get.cc:2145
  818. #, c-format
  819. msgid "Skipping already downloaded file '%s'\n"
  820. msgstr ""
  821. #: cmdline/apt-get.cc:2169
  822. #, c-format
  823. msgid "You don't have enough free space in %s"
  824. msgstr ""
  825. #: cmdline/apt-get.cc:2174
  826. #, c-format
  827. msgid "Need to get %sB/%sB of source archives.\n"
  828. msgstr ""
  829. #: cmdline/apt-get.cc:2177
  830. #, c-format
  831. msgid "Need to get %sB of source archives.\n"
  832. msgstr ""
  833. #: cmdline/apt-get.cc:2183
  834. #, c-format
  835. msgid "Fetch source %s\n"
  836. msgstr ""
  837. #: cmdline/apt-get.cc:2214
  838. msgid "Failed to fetch some archives."
  839. msgstr ""
  840. #: cmdline/apt-get.cc:2242
  841. #, c-format
  842. msgid "Skipping unpack of already unpacked source in %s\n"
  843. msgstr ""
  844. #: cmdline/apt-get.cc:2254
  845. #, c-format
  846. msgid "Unpack command '%s' failed.\n"
  847. msgstr ""
  848. #: cmdline/apt-get.cc:2255
  849. #, c-format
  850. msgid "Check if the 'dpkg-dev' package is installed.\n"
  851. msgstr ""
  852. #: cmdline/apt-get.cc:2272
  853. #, c-format
  854. msgid "Build command '%s' failed.\n"
  855. msgstr ""
  856. #: cmdline/apt-get.cc:2291
  857. msgid "Child process failed"
  858. msgstr ""
  859. #: cmdline/apt-get.cc:2307
  860. msgid "Must specify at least one package to check builddeps for"
  861. msgstr ""
  862. #: cmdline/apt-get.cc:2335
  863. #, c-format
  864. msgid "Unable to get build-dependency information for %s"
  865. msgstr ""
  866. #: cmdline/apt-get.cc:2355
  867. #, c-format
  868. msgid "%s has no build depends.\n"
  869. msgstr ""
  870. #: cmdline/apt-get.cc:2407
  871. #, c-format
  872. msgid ""
  873. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  874. "found"
  875. msgstr ""
  876. #: cmdline/apt-get.cc:2459
  877. #, c-format
  878. msgid ""
  879. "%s dependency for %s cannot be satisfied because no available versions of "
  880. "package %s can satisfy version requirements"
  881. msgstr ""
  882. #: cmdline/apt-get.cc:2494
  883. #, c-format
  884. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  885. msgstr ""
  886. #: cmdline/apt-get.cc:2519
  887. #, c-format
  888. msgid "Failed to satisfy %s dependency for %s: %s"
  889. msgstr ""
  890. #: cmdline/apt-get.cc:2533
  891. #, c-format
  892. msgid "Build-dependencies for %s could not be satisfied."
  893. msgstr ""
  894. #: cmdline/apt-get.cc:2537
  895. msgid "Failed to process build dependencies"
  896. msgstr ""
  897. #: cmdline/apt-get.cc:2569
  898. msgid "Supported modules:"
  899. msgstr ""
  900. #: cmdline/apt-get.cc:2610
  901. msgid ""
  902. "Usage: apt-get [options] command\n"
  903. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  904. " apt-get [options] source pkg1 [pkg2 ...]\n"
  905. "\n"
  906. "apt-get is a simple command line interface for downloading and\n"
  907. "installing packages. The most frequently used commands are update\n"
  908. "and install.\n"
  909. "\n"
  910. "Commands:\n"
  911. " update - Retrieve new lists of packages\n"
  912. " upgrade - Perform an upgrade\n"
  913. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  914. " remove - Remove packages\n"
  915. " source - Download source archives\n"
  916. " build-dep - Configure build-dependencies for source packages\n"
  917. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  918. " dselect-upgrade - Follow dselect selections\n"
  919. " clean - Erase downloaded archive files\n"
  920. " autoclean - Erase old downloaded archive files\n"
  921. " check - Verify that there are no broken dependencies\n"
  922. "\n"
  923. "Options:\n"
  924. " -h This help text.\n"
  925. " -q Loggable output - no progress indicator\n"
  926. " -qq No output except for errors\n"
  927. " -d Download only - do NOT install or unpack archives\n"
  928. " -s No-act. Perform ordering simulation\n"
  929. " -y Assume Yes to all queries and do not prompt\n"
  930. " -f Attempt to continue if the integrity check fails\n"
  931. " -m Attempt to continue if archives are unlocatable\n"
  932. " -u Show a list of upgraded packages as well\n"
  933. " -b Build the source package after fetching it\n"
  934. " -V Show verbose version numbers\n"
  935. " -c=? Read this configuration file\n"
  936. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  937. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  938. "pages for more information and options.\n"
  939. " This APT has Super Cow Powers.\n"
  940. msgstr ""
  941. #: cmdline/acqprogress.cc:55
  942. msgid "Hit "
  943. msgstr ""
  944. #: cmdline/acqprogress.cc:79
  945. msgid "Get:"
  946. msgstr ""
  947. #: cmdline/acqprogress.cc:110
  948. msgid "Ign "
  949. msgstr ""
  950. #: cmdline/acqprogress.cc:114
  951. msgid "Err "
  952. msgstr ""
  953. #: cmdline/acqprogress.cc:135
  954. #, c-format
  955. msgid "Fetched %sB in %s (%sB/s)\n"
  956. msgstr ""
  957. #: cmdline/acqprogress.cc:225
  958. #, c-format
  959. msgid " [Working]"
  960. msgstr ""
  961. #: cmdline/acqprogress.cc:271
  962. #, c-format
  963. msgid ""
  964. "Media change: please insert the disc labeled\n"
  965. " '%s'\n"
  966. "in the drive '%s' and press enter\n"
  967. msgstr ""
  968. #: cmdline/apt-sortpkgs.cc:86
  969. msgid "Unknown package record!"
  970. msgstr ""
  971. #: cmdline/apt-sortpkgs.cc:150
  972. msgid ""
  973. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  974. "\n"
  975. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  976. "to indicate what kind of file it is.\n"
  977. "\n"
  978. "Options:\n"
  979. " -h This help text\n"
  980. " -s Use source file sorting\n"
  981. " -c=? Read this configuration file\n"
  982. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  983. msgstr ""
  984. #: dselect/install:32
  985. msgid "Bad default setting!"
  986. msgstr ""
  987. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
  988. #: dselect/install:104 dselect/update:45
  989. msgid "Press enter to continue."
  990. msgstr ""
  991. #: dselect/install:100
  992. msgid "Some errors occurred while unpacking. I'm going to configure the"
  993. msgstr ""
  994. #: dselect/install:101
  995. msgid "packages that were installed. This may result in duplicate errors"
  996. msgstr ""
  997. #: dselect/install:102
  998. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  999. msgstr ""
  1000. #: dselect/install:103
  1001. msgid ""
  1002. "above this message are important. Please fix them and run [I]nstall again"
  1003. msgstr ""
  1004. #: dselect/update:30
  1005. msgid "Merging available information"
  1006. msgstr ""
  1007. #: apt-inst/contrib/extracttar.cc:117
  1008. msgid "Failed to create pipes"
  1009. msgstr ""
  1010. #: apt-inst/contrib/extracttar.cc:144
  1011. msgid "Failed to exec gzip "
  1012. msgstr ""
  1013. #: apt-inst/contrib/extracttar.cc:181 apt-inst/contrib/extracttar.cc:207
  1014. msgid "Corrupted archive"
  1015. msgstr ""
  1016. #: apt-inst/contrib/extracttar.cc:196
  1017. msgid "Tar checksum failed, archive corrupted"
  1018. msgstr ""
  1019. #: apt-inst/contrib/extracttar.cc:299
  1020. #, c-format
  1021. msgid "Unknown TAR header type %u, member %s"
  1022. msgstr ""
  1023. #: apt-inst/contrib/arfile.cc:73
  1024. msgid "Invalid archive signature"
  1025. msgstr ""
  1026. #: apt-inst/contrib/arfile.cc:81
  1027. msgid "Error reading archive member header"
  1028. msgstr ""
  1029. #: apt-inst/contrib/arfile.cc:93 apt-inst/contrib/arfile.cc:105
  1030. msgid "Invalid archive member header"
  1031. msgstr ""
  1032. #: apt-inst/contrib/arfile.cc:131
  1033. msgid "Archive is too short"
  1034. msgstr ""
  1035. #: apt-inst/contrib/arfile.cc:135
  1036. msgid "Failed to read the archive headers"
  1037. msgstr ""
  1038. #: apt-inst/filelist.cc:384
  1039. msgid "DropNode called on still linked node"
  1040. msgstr ""
  1041. #: apt-inst/filelist.cc:416
  1042. msgid "Failed to locate the hash element!"
  1043. msgstr ""
  1044. #: apt-inst/filelist.cc:463
  1045. msgid "Failed to allocate diversion"
  1046. msgstr ""
  1047. #: apt-inst/filelist.cc:468
  1048. msgid "Internal error in AddDiversion"
  1049. msgstr ""
  1050. #: apt-inst/filelist.cc:481
  1051. #, c-format
  1052. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1053. msgstr ""
  1054. #: apt-inst/filelist.cc:510
  1055. #, c-format
  1056. msgid "Double add of diversion %s -> %s"
  1057. msgstr ""
  1058. #: apt-inst/filelist.cc:553
  1059. #, c-format
  1060. msgid "Duplicate conf file %s/%s"
  1061. msgstr ""
  1062. #: apt-inst/dirstream.cc:45 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:53
  1063. #, c-format
  1064. msgid "Failed to write file %s"
  1065. msgstr ""
  1066. #: apt-inst/dirstream.cc:96 apt-inst/dirstream.cc:104
  1067. #, c-format
  1068. msgid "Failed to close file %s"
  1069. msgstr ""
  1070. #: apt-inst/extract.cc:96 apt-inst/extract.cc:167
  1071. #, c-format
  1072. msgid "The path %s is too long"
  1073. msgstr ""
  1074. #: apt-inst/extract.cc:127
  1075. #, c-format
  1076. msgid "Unpacking %s more than once"
  1077. msgstr ""
  1078. #: apt-inst/extract.cc:137
  1079. #, c-format
  1080. msgid "The directory %s is diverted"
  1081. msgstr ""
  1082. #: apt-inst/extract.cc:147
  1083. #, c-format
  1084. msgid "The package is trying to write to the diversion target %s/%s"
  1085. msgstr ""
  1086. #: apt-inst/extract.cc:157 apt-inst/extract.cc:300
  1087. msgid "The diversion path is too long"
  1088. msgstr ""
  1089. #: apt-inst/extract.cc:243
  1090. #, c-format
  1091. msgid "The directory %s is being replaced by a non-directory"
  1092. msgstr ""
  1093. #: apt-inst/extract.cc:283
  1094. msgid "Failed to locate node in its hash bucket"
  1095. msgstr ""
  1096. #: apt-inst/extract.cc:287
  1097. msgid "The path is too long"
  1098. msgstr ""
  1099. #: apt-inst/extract.cc:417
  1100. #, c-format
  1101. msgid "Overwrite package match with no version for %s"
  1102. msgstr ""
  1103. #: apt-inst/extract.cc:434
  1104. #, c-format
  1105. msgid "File %s/%s overwrites the one in the package %s"
  1106. msgstr ""
  1107. #: apt-inst/extract.cc:467 apt-pkg/contrib/configuration.cc:750
  1108. #: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/sourcelist.cc:324
  1109. #: apt-pkg/acquire.cc:421 apt-pkg/clean.cc:38
  1110. #, c-format
  1111. msgid "Unable to read %s"
  1112. msgstr ""
  1113. #: apt-inst/extract.cc:494
  1114. #, c-format
  1115. msgid "Unable to stat %s"
  1116. msgstr ""
  1117. #: apt-inst/deb/dpkgdb.cc:55 apt-inst/deb/dpkgdb.cc:61
  1118. #, c-format
  1119. msgid "Failed to remove %s"
  1120. msgstr ""
  1121. #: apt-inst/deb/dpkgdb.cc:110 apt-inst/deb/dpkgdb.cc:112
  1122. #, c-format
  1123. msgid "Unable to create %s"
  1124. msgstr ""
  1125. #: apt-inst/deb/dpkgdb.cc:118
  1126. #, c-format
  1127. msgid "Failed to stat %sinfo"
  1128. msgstr ""
  1129. #: apt-inst/deb/dpkgdb.cc:123
  1130. msgid "The info and temp directories need to be on the same filesystem"
  1131. msgstr ""
  1132. #. Build the status cache
  1133. #: apt-inst/deb/dpkgdb.cc:139 apt-pkg/pkgcachegen.cc:752
  1134. #: apt-pkg/pkgcachegen.cc:821 apt-pkg/pkgcachegen.cc:826
  1135. #: apt-pkg/pkgcachegen.cc:949
  1136. msgid "Reading package lists"
  1137. msgstr ""
  1138. #: apt-inst/deb/dpkgdb.cc:180
  1139. #, c-format
  1140. msgid "Failed to change to the admin dir %sinfo"
  1141. msgstr ""
  1142. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:355
  1143. #: apt-inst/deb/dpkgdb.cc:448
  1144. msgid "Internal error getting a package name"
  1145. msgstr ""
  1146. #: apt-inst/deb/dpkgdb.cc:205 apt-inst/deb/dpkgdb.cc:386
  1147. msgid "Reading file listing"
  1148. msgstr ""
  1149. #: apt-inst/deb/dpkgdb.cc:216
  1150. #, c-format
  1151. msgid ""
  1152. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1153. "then make it empty and immediately re-install the same version of the "
  1154. "package!"
  1155. msgstr ""
  1156. #: apt-inst/deb/dpkgdb.cc:229 apt-inst/deb/dpkgdb.cc:242
  1157. #, c-format
  1158. msgid "Failed reading the list file %sinfo/%s"
  1159. msgstr ""
  1160. #: apt-inst/deb/dpkgdb.cc:266
  1161. msgid "Internal error getting a node"
  1162. msgstr ""
  1163. #: apt-inst/deb/dpkgdb.cc:309
  1164. #, c-format
  1165. msgid "Failed to open the diversions file %sdiversions"
  1166. msgstr ""
  1167. #: apt-inst/deb/dpkgdb.cc:324
  1168. msgid "The diversion file is corrupted"
  1169. msgstr ""
  1170. #: apt-inst/deb/dpkgdb.cc:331 apt-inst/deb/dpkgdb.cc:336
  1171. #: apt-inst/deb/dpkgdb.cc:341
  1172. #, c-format
  1173. msgid "Invalid line in the diversion file: %s"
  1174. msgstr ""
  1175. #: apt-inst/deb/dpkgdb.cc:362
  1176. msgid "Internal error adding a diversion"
  1177. msgstr ""
  1178. #: apt-inst/deb/dpkgdb.cc:383
  1179. msgid "The pkg cache must be initialized first"
  1180. msgstr ""
  1181. #: apt-inst/deb/dpkgdb.cc:443
  1182. #, c-format
  1183. msgid "Failed to find a Package: header, offset %lu"
  1184. msgstr ""
  1185. #: apt-inst/deb/dpkgdb.cc:465
  1186. #, c-format
  1187. msgid "Bad ConfFile section in the status file. Offset %lu"
  1188. msgstr ""
  1189. #: apt-inst/deb/dpkgdb.cc:470
  1190. #, c-format
  1191. msgid "Error parsing MD5. Offset %lu"
  1192. msgstr ""
  1193. #: apt-inst/deb/debfile.cc:42 apt-inst/deb/debfile.cc:47
  1194. #, c-format
  1195. msgid "This is not a valid DEB archive, missing '%s' member"
  1196. msgstr ""
  1197. #: apt-inst/deb/debfile.cc:52
  1198. #, c-format
  1199. msgid "This is not a valid DEB archive, it has no '%s' or '%s' member"
  1200. msgstr ""
  1201. #: apt-inst/deb/debfile.cc:112
  1202. #, c-format
  1203. msgid "Couldn't change to %s"
  1204. msgstr ""
  1205. #: apt-inst/deb/debfile.cc:138
  1206. msgid "Internal error, could not locate member"
  1207. msgstr ""
  1208. #: apt-inst/deb/debfile.cc:171
  1209. msgid "Failed to locate a valid control file"
  1210. msgstr ""
  1211. #: apt-inst/deb/debfile.cc:256
  1212. msgid "Unparsable control file"
  1213. msgstr ""
  1214. #: methods/cdrom.cc:114
  1215. #, c-format
  1216. msgid "Unable to read the cdrom database %s"
  1217. msgstr ""
  1218. #: methods/cdrom.cc:123
  1219. msgid ""
  1220. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1221. "cannot be used to add new CD-ROMs"
  1222. msgstr ""
  1223. #: methods/cdrom.cc:131
  1224. msgid "Wrong CD-ROM"
  1225. msgstr ""
  1226. #: methods/cdrom.cc:166
  1227. #, c-format
  1228. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1229. msgstr ""
  1230. #: methods/cdrom.cc:171
  1231. msgid "Disk not found."
  1232. msgstr ""
  1233. #: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
  1234. msgid "File not found"
  1235. msgstr ""
  1236. #: methods/copy.cc:42 methods/gpgv.cc:281 methods/gzip.cc:141
  1237. #: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
  1238. msgid "Failed to stat"
  1239. msgstr ""
  1240. #: methods/copy.cc:79 methods/gpgv.cc:278 methods/gzip.cc:147
  1241. #: methods/rred.cc:240
  1242. msgid "Failed to set modification time"
  1243. msgstr ""
  1244. #: methods/file.cc:44
  1245. msgid "Invalid URI, local URIS must not start with //"
  1246. msgstr ""
  1247. #. Login must be before getpeername otherwise dante won't work.
  1248. #: methods/ftp.cc:162
  1249. msgid "Logging in"
  1250. msgstr ""
  1251. #: methods/ftp.cc:168
  1252. msgid "Unable to determine the peer name"
  1253. msgstr ""
  1254. #: methods/ftp.cc:173
  1255. msgid "Unable to determine the local name"
  1256. msgstr ""
  1257. #: methods/ftp.cc:204 methods/ftp.cc:232
  1258. #, c-format
  1259. msgid "The server refused the connection and said: %s"
  1260. msgstr ""
  1261. #: methods/ftp.cc:210
  1262. #, c-format
  1263. msgid "USER failed, server said: %s"
  1264. msgstr ""
  1265. #: methods/ftp.cc:217
  1266. #, c-format
  1267. msgid "PASS failed, server said: %s"
  1268. msgstr ""
  1269. #: methods/ftp.cc:237
  1270. msgid ""
  1271. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1272. "is empty."
  1273. msgstr ""
  1274. #: methods/ftp.cc:265
  1275. #, c-format
  1276. msgid "Login script command '%s' failed, server said: %s"
  1277. msgstr ""
  1278. #: methods/ftp.cc:291
  1279. #, c-format
  1280. msgid "TYPE failed, server said: %s"
  1281. msgstr ""
  1282. #: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
  1283. msgid "Connection timeout"
  1284. msgstr ""
  1285. #: methods/ftp.cc:335
  1286. msgid "Server closed the connection"
  1287. msgstr ""
  1288. #: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
  1289. msgid "Read error"
  1290. msgstr ""
  1291. #: methods/ftp.cc:345 methods/rsh.cc:197
  1292. msgid "A response overflowed the buffer."
  1293. msgstr ""
  1294. #: methods/ftp.cc:362 methods/ftp.cc:374
  1295. msgid "Protocol corruption"
  1296. msgstr ""
  1297. #: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
  1298. msgid "Write error"
  1299. msgstr ""
  1300. #: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
  1301. msgid "Could not create a socket"
  1302. msgstr ""
  1303. #: methods/ftp.cc:698
  1304. msgid "Could not connect data socket, connection timed out"
  1305. msgstr ""
  1306. #: methods/ftp.cc:704
  1307. msgid "Could not connect passive socket."
  1308. msgstr ""
  1309. #: methods/ftp.cc:722
  1310. msgid "getaddrinfo was unable to get a listening socket"
  1311. msgstr ""
  1312. #: methods/ftp.cc:736
  1313. msgid "Could not bind a socket"
  1314. msgstr ""
  1315. #: methods/ftp.cc:740
  1316. msgid "Could not listen on the socket"
  1317. msgstr ""
  1318. #: methods/ftp.cc:747
  1319. msgid "Could not determine the socket's name"
  1320. msgstr ""
  1321. #: methods/ftp.cc:779
  1322. msgid "Unable to send PORT command"
  1323. msgstr ""
  1324. #: methods/ftp.cc:789
  1325. #, c-format
  1326. msgid "Unknown address family %u (AF_*)"
  1327. msgstr ""
  1328. #: methods/ftp.cc:798
  1329. #, c-format
  1330. msgid "EPRT failed, server said: %s"
  1331. msgstr ""
  1332. #: methods/ftp.cc:818
  1333. msgid "Data socket connect timed out"
  1334. msgstr ""
  1335. #: methods/ftp.cc:825
  1336. msgid "Unable to accept connection"
  1337. msgstr ""
  1338. #: methods/ftp.cc:864 methods/http.cc:958 methods/rsh.cc:303
  1339. msgid "Problem hashing file"
  1340. msgstr ""
  1341. #: methods/ftp.cc:877
  1342. #, c-format
  1343. msgid "Unable to fetch file, server said '%s'"
  1344. msgstr ""
  1345. #: methods/ftp.cc:892 methods/rsh.cc:322
  1346. msgid "Data socket timed out"
  1347. msgstr ""
  1348. #: methods/ftp.cc:922
  1349. #, c-format
  1350. msgid "Data transfer failed, server said '%s'"
  1351. msgstr ""
  1352. #. Get the files information
  1353. #: methods/ftp.cc:997
  1354. msgid "Query"
  1355. msgstr ""
  1356. #: methods/ftp.cc:1109
  1357. msgid "Unable to invoke "
  1358. msgstr ""
  1359. #: methods/connect.cc:64
  1360. #, c-format
  1361. msgid "Connecting to %s (%s)"
  1362. msgstr ""
  1363. #: methods/connect.cc:71
  1364. #, c-format
  1365. msgid "[IP: %s %s]"
  1366. msgstr ""
  1367. #: methods/connect.cc:80
  1368. #, c-format
  1369. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1370. msgstr ""
  1371. #: methods/connect.cc:86
  1372. #, c-format
  1373. msgid "Cannot initiate the connection to %s:%s (%s)."
  1374. msgstr ""
  1375. #: methods/connect.cc:93
  1376. #, c-format
  1377. msgid "Could not connect to %s:%s (%s), connection timed out"
  1378. msgstr ""
  1379. #: methods/connect.cc:108
  1380. #, c-format
  1381. msgid "Could not connect to %s:%s (%s)."
  1382. msgstr ""
  1383. #. We say this mainly because the pause here is for the
  1384. #. ssh connection that is still going
  1385. #: methods/connect.cc:136 methods/rsh.cc:425
  1386. #, c-format
  1387. msgid "Connecting to %s"
  1388. msgstr ""
  1389. #: methods/connect.cc:167
  1390. #, c-format
  1391. msgid "Could not resolve '%s'"
  1392. msgstr ""
  1393. #: methods/connect.cc:173
  1394. #, c-format
  1395. msgid "Temporary failure resolving '%s'"
  1396. msgstr ""
  1397. #: methods/connect.cc:176
  1398. #, c-format
  1399. msgid "Something wicked happened resolving '%s:%s' (%i)"
  1400. msgstr ""
  1401. #: methods/connect.cc:223
  1402. #, c-format
  1403. msgid "Unable to connect to %s %s:"
  1404. msgstr ""
  1405. #: methods/gpgv.cc:65
  1406. #, c-format
  1407. msgid "Couldn't access keyring: '%s'"
  1408. msgstr ""
  1409. #: methods/gpgv.cc:100
  1410. msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  1411. msgstr ""
  1412. #: methods/gpgv.cc:204
  1413. msgid ""
  1414. "Internal error: Good signature, but could not determine key fingerprint?!"
  1415. msgstr ""
  1416. #: methods/gpgv.cc:209
  1417. msgid "At least one invalid signature was encountered."
  1418. msgstr ""
  1419. #: methods/gpgv.cc:213
  1420. #, c-format
  1421. msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
  1422. msgstr ""
  1423. #: methods/gpgv.cc:218
  1424. msgid "Unknown error executing gpgv"
  1425. msgstr ""
  1426. #: methods/gpgv.cc:249
  1427. msgid "The following signatures were invalid:\n"
  1428. msgstr ""
  1429. #: methods/gpgv.cc:256
  1430. msgid ""
  1431. "The following signatures couldn't be verified because the public key is not "
  1432. "available:\n"
  1433. msgstr ""
  1434. #: methods/gzip.cc:64
  1435. #, c-format
  1436. msgid "Couldn't open pipe for %s"
  1437. msgstr ""
  1438. #: methods/gzip.cc:109
  1439. #, c-format
  1440. msgid "Read error from %s process"
  1441. msgstr ""
  1442. #: methods/http.cc:376
  1443. msgid "Waiting for headers"
  1444. msgstr ""
  1445. #: methods/http.cc:522
  1446. #, c-format
  1447. msgid "Got a single header line over %u chars"
  1448. msgstr ""
  1449. #: methods/http.cc:530
  1450. msgid "Bad header line"
  1451. msgstr ""
  1452. #: methods/http.cc:549 methods/http.cc:556
  1453. msgid "The HTTP server sent an invalid reply header"
  1454. msgstr ""
  1455. #: methods/http.cc:585
  1456. msgid "The HTTP server sent an invalid Content-Length header"
  1457. msgstr ""
  1458. #: methods/http.cc:600
  1459. msgid "The HTTP server sent an invalid Content-Range header"
  1460. msgstr ""
  1461. #: methods/http.cc:602
  1462. msgid "This HTTP server has broken range support"
  1463. msgstr ""
  1464. #: methods/http.cc:626
  1465. msgid "Unknown date format"
  1466. msgstr ""
  1467. #: methods/http.cc:773
  1468. msgid "Select failed"
  1469. msgstr ""
  1470. #: methods/http.cc:778
  1471. msgid "Connection timed out"
  1472. msgstr ""
  1473. #: methods/http.cc:801
  1474. msgid "Error writing to output file"
  1475. msgstr ""
  1476. #: methods/http.cc:832
  1477. msgid "Error writing to file"
  1478. msgstr ""
  1479. #: methods/http.cc:860
  1480. msgid "Error writing to the file"
  1481. msgstr ""
  1482. #: methods/http.cc:874
  1483. msgid "Error reading from server. Remote end closed connection"
  1484. msgstr ""
  1485. #: methods/http.cc:876
  1486. msgid "Error reading from server"
  1487. msgstr ""
  1488. #: methods/http.cc:1107
  1489. msgid "Bad header data"
  1490. msgstr ""
  1491. #: methods/http.cc:1124
  1492. msgid "Connection failed"
  1493. msgstr ""
  1494. #: methods/http.cc:1215
  1495. msgid "Internal error"
  1496. msgstr ""
  1497. #: apt-pkg/contrib/mmap.cc:82
  1498. msgid "Can't mmap an empty file"
  1499. msgstr ""
  1500. #: apt-pkg/contrib/mmap.cc:87
  1501. #, c-format
  1502. msgid "Couldn't make mmap of %lu bytes"
  1503. msgstr ""
  1504. #: apt-pkg/contrib/strutl.cc:981
  1505. #, c-format
  1506. msgid "Selection %s not found"
  1507. msgstr ""
  1508. #: apt-pkg/contrib/configuration.cc:436
  1509. #, c-format
  1510. msgid "Unrecognized type abbreviation: '%c'"
  1511. msgstr ""
  1512. #: apt-pkg/contrib/configuration.cc:494
  1513. #, c-format
  1514. msgid "Opening configuration file %s"
  1515. msgstr ""
  1516. #: apt-pkg/contrib/configuration.cc:512
  1517. #, c-format
  1518. msgid "Line %d too long (max %d)"
  1519. msgstr ""
  1520. #: apt-pkg/contrib/configuration.cc:608
  1521. #, c-format
  1522. msgid "Syntax error %s:%u: Block starts with no name."
  1523. msgstr ""
  1524. #: apt-pkg/contrib/configuration.cc:627
  1525. #, c-format
  1526. msgid "Syntax error %s:%u: Malformed tag"
  1527. msgstr ""
  1528. #: apt-pkg/contrib/configuration.cc:644
  1529. #, c-format
  1530. msgid "Syntax error %s:%u: Extra junk after value"
  1531. msgstr ""
  1532. #: apt-pkg/contrib/configuration.cc:684
  1533. #, c-format
  1534. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1535. msgstr ""
  1536. #: apt-pkg/contrib/configuration.cc:691
  1537. #, c-format
  1538. msgid "Syntax error %s:%u: Too many nested includes"
  1539. msgstr ""
  1540. #: apt-pkg/contrib/configuration.cc:695 apt-pkg/contrib/configuration.cc:700
  1541. #, c-format
  1542. msgid "Syntax error %s:%u: Included from here"
  1543. msgstr ""
  1544. #: apt-pkg/contrib/configuration.cc:704
  1545. #, c-format
  1546. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1547. msgstr ""
  1548. #: apt-pkg/contrib/configuration.cc:738
  1549. #, c-format
  1550. msgid "Syntax error %s:%u: Extra junk at end of file"
  1551. msgstr ""
  1552. #: apt-pkg/contrib/progress.cc:155
  1553. #, c-format
  1554. msgid "%c%s... Error!"
  1555. msgstr ""
  1556. #: apt-pkg/contrib/progress.cc:157
  1557. #, c-format
  1558. msgid "%c%s... Done"
  1559. msgstr ""
  1560. #: apt-pkg/contrib/cmndline.cc:80
  1561. #, c-format
  1562. msgid "Command line option '%c' [from %s] is not known."
  1563. msgstr ""
  1564. #: apt-pkg/contrib/cmndline.cc:106 apt-pkg/contrib/cmndline.cc:114
  1565. #: apt-pkg/contrib/cmndline.cc:122
  1566. #, c-format
  1567. msgid "Command line option %s is not understood"
  1568. msgstr ""
  1569. #: apt-pkg/contrib/cmndline.cc:127
  1570. #, c-format
  1571. msgid "Command line option %s is not boolean"
  1572. msgstr ""
  1573. #: apt-pkg/contrib/cmndline.cc:166 apt-pkg/contrib/cmndline.cc:187
  1574. #, c-format
  1575. msgid "Option %s requires an argument."
  1576. msgstr ""
  1577. #: apt-pkg/contrib/cmndline.cc:201 apt-pkg/contrib/cmndline.cc:207
  1578. #, c-format
  1579. msgid "Option %s: Configuration item specification must have an =<val>."
  1580. msgstr ""
  1581. #: apt-pkg/contrib/cmndline.cc:237
  1582. #, c-format
  1583. msgid "Option %s requires an integer argument, not '%s'"
  1584. msgstr ""
  1585. #: apt-pkg/contrib/cmndline.cc:268
  1586. #, c-format
  1587. msgid "Option '%s' is too long"
  1588. msgstr ""
  1589. #: apt-pkg/contrib/cmndline.cc:301
  1590. #, c-format
  1591. msgid "Sense %s is not understood, try true or false."
  1592. msgstr ""
  1593. #: apt-pkg/contrib/cmndline.cc:351
  1594. #, c-format
  1595. msgid "Invalid operation %s"
  1596. msgstr ""
  1597. #: apt-pkg/contrib/cdromutl.cc:55
  1598. #, c-format
  1599. msgid "Unable to stat the mount point %s"
  1600. msgstr ""
  1601. #: apt-pkg/contrib/cdromutl.cc:149 apt-pkg/acquire.cc:427 apt-pkg/clean.cc:44
  1602. #, c-format
  1603. msgid "Unable to change to %s"
  1604. msgstr ""
  1605. #: apt-pkg/contrib/cdromutl.cc:190
  1606. msgid "Failed to stat the cdrom"
  1607. msgstr ""
  1608. #: apt-pkg/contrib/fileutl.cc:82
  1609. #, c-format
  1610. msgid "Not using locking for read only lock file %s"
  1611. msgstr ""
  1612. #: apt-pkg/contrib/fileutl.cc:87
  1613. #, c-format
  1614. msgid "Could not open lock file %s"
  1615. msgstr ""
  1616. #: apt-pkg/contrib/fileutl.cc:105
  1617. #, c-format
  1618. msgid "Not using locking for nfs mounted lock file %s"
  1619. msgstr ""
  1620. #: apt-pkg/contrib/fileutl.cc:109
  1621. #, c-format
  1622. msgid "Could not get lock %s"
  1623. msgstr ""
  1624. #: apt-pkg/contrib/fileutl.cc:377
  1625. #, c-format
  1626. msgid "Waited for %s but it wasn't there"
  1627. msgstr ""
  1628. #: apt-pkg/contrib/fileutl.cc:387
  1629. #, c-format
  1630. msgid "Sub-process %s received a segmentation fault."
  1631. msgstr ""
  1632. #: apt-pkg/contrib/fileutl.cc:390
  1633. #, c-format
  1634. msgid "Sub-process %s returned an error code (%u)"
  1635. msgstr ""
  1636. #: apt-pkg/contrib/fileutl.cc:392
  1637. #, c-format
  1638. msgid "Sub-process %s exited unexpectedly"
  1639. msgstr ""
  1640. #: apt-pkg/contrib/fileutl.cc:436
  1641. #, c-format
  1642. msgid "Could not open file %s"
  1643. msgstr ""
  1644. #: apt-pkg/contrib/fileutl.cc:492
  1645. #, c-format
  1646. msgid "read, still have %lu to read but none left"
  1647. msgstr ""
  1648. #: apt-pkg/contrib/fileutl.cc:522
  1649. #, c-format
  1650. msgid "write, still have %lu to write but couldn't"
  1651. msgstr ""
  1652. #: apt-pkg/contrib/fileutl.cc:597
  1653. msgid "Problem closing the file"
  1654. msgstr ""
  1655. #: apt-pkg/contrib/fileutl.cc:603
  1656. msgid "Problem unlinking the file"
  1657. msgstr ""
  1658. #: apt-pkg/contrib/fileutl.cc:614
  1659. msgid "Problem syncing the file"
  1660. msgstr ""
  1661. #: apt-pkg/pkgcache.cc:132
  1662. msgid "Empty package cache"
  1663. msgstr ""
  1664. #: apt-pkg/pkgcache.cc:138
  1665. msgid "The package cache file is corrupted"
  1666. msgstr ""
  1667. #: apt-pkg/pkgcache.cc:143
  1668. msgid "The package cache file is an incompatible version"
  1669. msgstr ""
  1670. #: apt-pkg/pkgcache.cc:148
  1671. #, c-format
  1672. msgid "This APT does not support the versioning system '%s'"
  1673. msgstr ""
  1674. #: apt-pkg/pkgcache.cc:153
  1675. msgid "The package cache was built for a different architecture"
  1676. msgstr ""
  1677. #: apt-pkg/pkgcache.cc:224
  1678. msgid "Depends"
  1679. msgstr ""
  1680. #: apt-pkg/pkgcache.cc:224
  1681. msgid "PreDepends"
  1682. msgstr ""
  1683. #: apt-pkg/pkgcache.cc:224
  1684. msgid "Suggests"
  1685. msgstr ""
  1686. #: apt-pkg/pkgcache.cc:225
  1687. msgid "Recommends"
  1688. msgstr ""
  1689. #: apt-pkg/pkgcache.cc:225
  1690. msgid "Conflicts"
  1691. msgstr ""
  1692. #: apt-pkg/pkgcache.cc:225
  1693. msgid "Replaces"
  1694. msgstr ""
  1695. #: apt-pkg/pkgcache.cc:226
  1696. msgid "Obsoletes"
  1697. msgstr ""
  1698. #: apt-pkg/pkgcache.cc:226
  1699. msgid "Breaks"
  1700. msgstr ""
  1701. #: apt-pkg/pkgcache.cc:237
  1702. msgid "important"
  1703. msgstr ""
  1704. #: apt-pkg/pkgcache.cc:237
  1705. msgid "required"
  1706. msgstr ""
  1707. #: apt-pkg/pkgcache.cc:237
  1708. msgid "standard"
  1709. msgstr ""
  1710. #: apt-pkg/pkgcache.cc:238
  1711. msgid "optional"
  1712. msgstr ""
  1713. #: apt-pkg/pkgcache.cc:238
  1714. msgid "extra"
  1715. msgstr ""
  1716. #: apt-pkg/depcache.cc:98 apt-pkg/depcache.cc:127
  1717. msgid "Building dependency tree"
  1718. msgstr ""
  1719. #: apt-pkg/depcache.cc:99
  1720. msgid "Candidate versions"
  1721. msgstr ""
  1722. #: apt-pkg/depcache.cc:128
  1723. msgid "Dependency generation"
  1724. msgstr ""
  1725. #: apt-pkg/depcache.cc:149 apt-pkg/depcache.cc:168 apt-pkg/depcache.cc:172
  1726. msgid "Reading state information"
  1727. msgstr ""
  1728. #: apt-pkg/depcache.cc:196
  1729. #, c-format
  1730. msgid "Failed to open StateFile %s"
  1731. msgstr ""
  1732. #: apt-pkg/depcache.cc:202
  1733. #, c-format
  1734. msgid "Failed to write temporary StateFile %s"
  1735. msgstr ""
  1736. #: apt-pkg/tagfile.cc:106
  1737. #, c-format
  1738. msgid "Unable to parse package file %s (1)"
  1739. msgstr ""
  1740. #: apt-pkg/tagfile.cc:193
  1741. #, c-format
  1742. msgid "Unable to parse package file %s (2)"
  1743. msgstr ""
  1744. #: apt-pkg/sourcelist.cc:94
  1745. #, c-format
  1746. msgid "Malformed line %lu in source list %s (URI)"
  1747. msgstr ""
  1748. #: apt-pkg/sourcelist.cc:96
  1749. #, c-format
  1750. msgid "Malformed line %lu in source list %s (dist)"
  1751. msgstr ""
  1752. #: apt-pkg/sourcelist.cc:99
  1753. #, c-format
  1754. msgid "Malformed line %lu in source list %s (URI parse)"
  1755. msgstr ""
  1756. #: apt-pkg/sourcelist.cc:105
  1757. #, c-format
  1758. msgid "Malformed line %lu in source list %s (absolute dist)"
  1759. msgstr ""
  1760. #: apt-pkg/sourcelist.cc:112
  1761. #, c-format
  1762. msgid "Malformed line %lu in source list %s (dist parse)"
  1763. msgstr ""
  1764. #: apt-pkg/sourcelist.cc:203
  1765. #, c-format
  1766. msgid "Opening %s"
  1767. msgstr ""
  1768. #: apt-pkg/sourcelist.cc:220 apt-pkg/cdrom.cc:450
  1769. #, c-format
  1770. msgid "Line %u too long in source list %s."
  1771. msgstr ""
  1772. #: apt-pkg/sourcelist.cc:240
  1773. #, c-format
  1774. msgid "Malformed line %u in source list %s (type)"
  1775. msgstr ""
  1776. #: apt-pkg/sourcelist.cc:244
  1777. #, c-format
  1778. msgid "Type '%s' is not known on line %u in source list %s"
  1779. msgstr ""
  1780. #: apt-pkg/sourcelist.cc:252 apt-pkg/sourcelist.cc:255
  1781. #, c-format
  1782. msgid "Malformed line %u in source list %s (vendor id)"
  1783. msgstr ""
  1784. #: apt-pkg/packagemanager.cc:403
  1785. #, c-format
  1786. msgid ""
  1787. "This installation run will require temporarily removing the essential "
  1788. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  1789. "you really want to do it, activate the APT::Force-LoopBreak option."
  1790. msgstr ""
  1791. #: apt-pkg/pkgrecords.cc:37
  1792. #, c-format
  1793. msgid "Index file type '%s' is not supported"
  1794. msgstr ""
  1795. #: apt-pkg/algorithms.cc:248
  1796. #, c-format
  1797. msgid ""
  1798. "The package %s needs to be reinstalled, but I can't find an archive for it."
  1799. msgstr ""
  1800. #: apt-pkg/algorithms.cc:1104
  1801. msgid ""
  1802. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  1803. "held packages."
  1804. msgstr ""
  1805. #: apt-pkg/algorithms.cc:1106
  1806. msgid "Unable to correct problems, you have held broken packages."
  1807. msgstr ""
  1808. #: apt-pkg/acquire.cc:62
  1809. #, c-format
  1810. msgid "Lists directory %spartial is missing."
  1811. msgstr ""
  1812. #: apt-pkg/acquire.cc:66
  1813. #, c-format
  1814. msgid "Archive directory %spartial is missing."
  1815. msgstr ""
  1816. #. only show the ETA if it makes sense
  1817. #. two days
  1818. #: apt-pkg/acquire.cc:830
  1819. #, c-format
  1820. msgid "Retrieving file %li of %li (%s remaining)"
  1821. msgstr ""
  1822. #: apt-pkg/acquire.cc:832
  1823. #, c-format
  1824. msgid "Retrieving file %li of %li"
  1825. msgstr ""
  1826. #: apt-pkg/acquire-worker.cc:113
  1827. #, c-format
  1828. msgid "The method driver %s could not be found."
  1829. msgstr ""
  1830. #: apt-pkg/acquire-worker.cc:162
  1831. #, c-format
  1832. msgid "Method %s did not start correctly"
  1833. msgstr ""
  1834. #: apt-pkg/acquire-worker.cc:384
  1835. #, c-format
  1836. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  1837. msgstr ""
  1838. #: apt-pkg/init.cc:125
  1839. #, c-format
  1840. msgid "Packaging system '%s' is not supported"
  1841. msgstr ""
  1842. #: apt-pkg/init.cc:141
  1843. msgid "Unable to determine a suitable packaging system type"
  1844. msgstr ""
  1845. #: apt-pkg/clean.cc:61
  1846. #, c-format
  1847. msgid "Unable to stat %s."
  1848. msgstr ""
  1849. #: apt-pkg/srcrecords.cc:48
  1850. msgid "You must put some 'source' URIs in your sources.list"
  1851. msgstr ""
  1852. #: apt-pkg/cachefile.cc:73
  1853. msgid "The package lists or status file could not be parsed or opened."
  1854. msgstr ""
  1855. #: apt-pkg/cachefile.cc:77
  1856. msgid "You may want to run apt-get update to correct these problems"
  1857. msgstr ""
  1858. #: apt-pkg/policy.cc:270
  1859. msgid "Invalid record in the preferences file, no Package header"
  1860. msgstr ""
  1861. #: apt-pkg/policy.cc:292
  1862. #, c-format
  1863. msgid "Did not understand pin type %s"
  1864. msgstr ""
  1865. #: apt-pkg/policy.cc:300
  1866. msgid "No priority (or zero) specified for pin"
  1867. msgstr ""
  1868. #: apt-pkg/pkgcachegen.cc:76
  1869. msgid "Cache has an incompatible versioning system"
  1870. msgstr ""
  1871. #: apt-pkg/pkgcachegen.cc:119
  1872. #, c-format
  1873. msgid "Error occurred while processing %s (NewPackage)"
  1874. msgstr ""
  1875. #: apt-pkg/pkgcachegen.cc:134
  1876. #, c-format
  1877. msgid "Error occurred while processing %s (UsePackage1)"
  1878. msgstr ""
  1879. #: apt-pkg/pkgcachegen.cc:157
  1880. #, c-format
  1881. msgid "Error occured while processing %s (NewFileDesc1)"
  1882. msgstr ""
  1883. #: apt-pkg/pkgcachegen.cc:182
  1884. #, c-format
  1885. msgid "Error occurred while processing %s (UsePackage2)"
  1886. msgstr ""
  1887. #: apt-pkg/pkgcachegen.cc:186
  1888. #, c-format
  1889. msgid "Error occurred while processing %s (NewFileVer1)"
  1890. msgstr ""
  1891. #: apt-pkg/pkgcachegen.cc:217
  1892. #, c-format
  1893. msgid "Error occurred while processing %s (NewVersion1)"
  1894. msgstr ""
  1895. #: apt-pkg/pkgcachegen.cc:221
  1896. #, c-format
  1897. msgid "Error occurred while processing %s (UsePackage3)"
  1898. msgstr ""
  1899. #: apt-pkg/pkgcachegen.cc:225
  1900. #, c-format
  1901. msgid "Error occurred while processing %s (NewVersion2)"
  1902. msgstr ""
  1903. #: apt-pkg/pkgcachegen.cc:249
  1904. #, c-format
  1905. msgid "Error occured while processing %s (NewFileDesc2)"
  1906. msgstr ""
  1907. #: apt-pkg/pkgcachegen.cc:255
  1908. msgid "Wow, you exceeded the number of package names this APT is capable of."
  1909. msgstr ""
  1910. #: apt-pkg/pkgcachegen.cc:258
  1911. msgid "Wow, you exceeded the number of versions this APT is capable of."
  1912. msgstr ""
  1913. #: apt-pkg/pkgcachegen.cc:261
  1914. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  1915. msgstr ""
  1916. #: apt-pkg/pkgcachegen.cc:264
  1917. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  1918. msgstr ""
  1919. #: apt-pkg/pkgcachegen.cc:292
  1920. #, c-format
  1921. msgid "Error occurred while processing %s (FindPkg)"
  1922. msgstr ""
  1923. #: apt-pkg/pkgcachegen.cc:305
  1924. #, c-format
  1925. msgid "Error occurred while processing %s (CollectFileProvides)"
  1926. msgstr ""
  1927. #: apt-pkg/pkgcachegen.cc:311
  1928. #, c-format
  1929. msgid "Package %s %s was not found while processing file dependencies"
  1930. msgstr ""
  1931. #: apt-pkg/pkgcachegen.cc:682
  1932. #, c-format
  1933. msgid "Couldn't stat source package list %s"
  1934. msgstr ""
  1935. #: apt-pkg/pkgcachegen.cc:767
  1936. msgid "Collecting File Provides"
  1937. msgstr ""
  1938. #: apt-pkg/pkgcachegen.cc:894 apt-pkg/pkgcachegen.cc:901
  1939. msgid "IO Error saving source cache"
  1940. msgstr ""
  1941. #: apt-pkg/acquire-item.cc:127
  1942. #, c-format
  1943. msgid "rename failed, %s (%s -> %s)."
  1944. msgstr ""
  1945. #: apt-pkg/acquire-item.cc:405 apt-pkg/acquire-item.cc:662
  1946. #: apt-pkg/acquire-item.cc:1412
  1947. msgid "MD5Sum mismatch"
  1948. msgstr ""
  1949. #: apt-pkg/acquire-item.cc:1107
  1950. msgid "There is no public key available for the following key IDs:\n"
  1951. msgstr ""
  1952. #: apt-pkg/acquire-item.cc:1220
  1953. #, c-format
  1954. msgid ""
  1955. "I wasn't able to locate a file for the %s package. This might mean you need "
  1956. "to manually fix this package. (due to missing arch)"
  1957. msgstr ""
  1958. #: apt-pkg/acquire-item.cc:1279
  1959. #, c-format
  1960. msgid ""
  1961. "I wasn't able to locate file for the %s package. This might mean you need to "
  1962. "manually fix this package."
  1963. msgstr ""
  1964. #: apt-pkg/acquire-item.cc:1315
  1965. #, c-format
  1966. msgid ""
  1967. "The package index files are corrupted. No Filename: field for package %s."
  1968. msgstr ""
  1969. #: apt-pkg/acquire-item.cc:1402
  1970. msgid "Size mismatch"
  1971. msgstr ""
  1972. #: apt-pkg/vendorlist.cc:66
  1973. #, c-format
  1974. msgid "Vendor block %s contains no fingerprint"
  1975. msgstr ""
  1976. #: apt-pkg/cdrom.cc:531
  1977. #, c-format
  1978. msgid ""
  1979. "Using CD-ROM mount point %s\n"
  1980. "Mounting CD-ROM\n"
  1981. msgstr ""
  1982. #: apt-pkg/cdrom.cc:540 apt-pkg/cdrom.cc:622
  1983. msgid "Identifying.. "
  1984. msgstr ""
  1985. #: apt-pkg/cdrom.cc:565
  1986. #, c-format
  1987. msgid "Stored label: %s \n"
  1988. msgstr ""
  1989. #: apt-pkg/cdrom.cc:585
  1990. #, c-format
  1991. msgid "Using CD-ROM mount point %s\n"
  1992. msgstr ""
  1993. #: apt-pkg/cdrom.cc:603
  1994. msgid "Unmounting CD-ROM\n"
  1995. msgstr ""
  1996. #: apt-pkg/cdrom.cc:607
  1997. msgid "Waiting for disc...\n"
  1998. msgstr ""
  1999. #. Mount the new CDROM
  2000. #: apt-pkg/cdrom.cc:615
  2001. msgid "Mounting CD-ROM...\n"
  2002. msgstr ""
  2003. #: apt-pkg/cdrom.cc:633
  2004. msgid "Scanning disc for index files..\n"
  2005. msgstr ""
  2006. #: apt-pkg/cdrom.cc:673
  2007. #, c-format
  2008. msgid ""
  2009. "Found %i package indexes, %i source indexes, %i translation indexes and %i "
  2010. "signatures\n"
  2011. msgstr ""
  2012. #: apt-pkg/cdrom.cc:710
  2013. #, c-format
  2014. msgid "Found label '%s'\n"
  2015. msgstr ""
  2016. #: apt-pkg/cdrom.cc:739
  2017. msgid "That is not a valid name, try again.\n"
  2018. msgstr ""
  2019. #: apt-pkg/cdrom.cc:755
  2020. #, c-format
  2021. msgid ""
  2022. "This disc is called: \n"
  2023. "'%s'\n"
  2024. msgstr ""
  2025. #: apt-pkg/cdrom.cc:759
  2026. msgid "Copying package lists..."
  2027. msgstr ""
  2028. #: apt-pkg/cdrom.cc:785
  2029. msgid "Writing new source list\n"
  2030. msgstr ""
  2031. #: apt-pkg/cdrom.cc:794
  2032. msgid "Source list entries for this disc are:\n"
  2033. msgstr ""
  2034. #: apt-pkg/cdrom.cc:836
  2035. msgid "Unmounting CD-ROM...\n"
  2036. msgstr ""
  2037. #: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:830
  2038. #, c-format
  2039. msgid "Wrote %i records.\n"
  2040. msgstr ""
  2041. #: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:832
  2042. #, c-format
  2043. msgid "Wrote %i records with %i missing files.\n"
  2044. msgstr ""
  2045. #: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:835
  2046. #, c-format
  2047. msgid "Wrote %i records with %i mismatched files\n"
  2048. msgstr ""
  2049. #: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:838
  2050. #, c-format
  2051. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2052. msgstr ""
  2053. #: apt-pkg/deb/dpkgpm.cc:358
  2054. #, c-format
  2055. msgid "Preparing %s"
  2056. msgstr ""
  2057. #: apt-pkg/deb/dpkgpm.cc:359
  2058. #, c-format
  2059. msgid "Unpacking %s"
  2060. msgstr ""
  2061. #: apt-pkg/deb/dpkgpm.cc:364
  2062. #, c-format
  2063. msgid "Preparing to configure %s"
  2064. msgstr ""
  2065. #: apt-pkg/deb/dpkgpm.cc:365
  2066. #, c-format
  2067. msgid "Configuring %s"
  2068. msgstr ""
  2069. #: apt-pkg/deb/dpkgpm.cc:366
  2070. #, c-format
  2071. msgid "Installed %s"
  2072. msgstr ""
  2073. #: apt-pkg/deb/dpkgpm.cc:371
  2074. #, c-format
  2075. msgid "Preparing for removal of %s"
  2076. msgstr ""
  2077. #: apt-pkg/deb/dpkgpm.cc:372
  2078. #, c-format
  2079. msgid "Removing %s"
  2080. msgstr ""
  2081. #: apt-pkg/deb/dpkgpm.cc:373
  2082. #, c-format
  2083. msgid "Removed %s"
  2084. msgstr ""
  2085. #: apt-pkg/deb/dpkgpm.cc:378
  2086. #, c-format
  2087. msgid "Preparing to completely remove %s"
  2088. msgstr ""
  2089. #: apt-pkg/deb/dpkgpm.cc:379
  2090. #, c-format
  2091. msgid "Completely removed %s"
  2092. msgstr ""
  2093. #: methods/rred.cc:219
  2094. msgid "Could not patch file"
  2095. msgstr ""
  2096. #: methods/rsh.cc:330
  2097. msgid "Connection closed prematurely"
  2098. msgstr ""