apt-all.pot 73 KB

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