apt-all.pot 64 KB

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