apt-all.pot 69 KB

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