apt-all.pot 50 KB

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