apt-all.pot 55 KB

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