apt-all.pot 73 KB

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