apt-all.pot 74 KB

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