ast.po 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: apt 0.7.18\n"
  4. "Report-Msgid-Bugs-To: \n"
  5. "POT-Creation-Date: 2009-11-27 00:15+0100\n"
  6. "PO-Revision-Date: 2009-07-01 18:09+0100\n"
  7. "Last-Translator: Marcos Alvarez Costales <marcos.alvarez.costales@gmail."
  8. "com>\n"
  9. "Language-Team: Asturian <alministradores@softastur.org>\n"
  10. "MIME-Version: 1.0\n"
  11. "Content-Type: text/plain; charset=iso-8859-1\n"
  12. "Content-Transfer-Encoding: 8bit\n"
  13. #: cmdline/apt-cache.cc:141
  14. #, c-format
  15. msgid "Package %s version %s has an unmet dep:\n"
  16. msgstr "El paquete %s versión %s nun cumple una dependencia:\n"
  17. #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644
  18. #: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021
  19. #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575
  20. #, c-format
  21. msgid "Unable to locate package %s"
  22. msgstr "Nun pue alcontrase'l paquete %s"
  23. #: cmdline/apt-cache.cc:245
  24. msgid "Total package names: "
  25. msgstr "Total de nomes de paquetes: "
  26. #: cmdline/apt-cache.cc:285
  27. msgid " Normal packages: "
  28. msgstr " Paquetes normales: "
  29. #: cmdline/apt-cache.cc:286
  30. msgid " Pure virtual packages: "
  31. msgstr " Paquetes virtuales puros: "
  32. #: cmdline/apt-cache.cc:287
  33. msgid " Single virtual packages: "
  34. msgstr " Paquetes virtuales cenciellos: "
  35. #: cmdline/apt-cache.cc:288
  36. msgid " Mixed virtual packages: "
  37. msgstr " Paquetes virtuales amestaos: "
  38. #: cmdline/apt-cache.cc:289
  39. msgid " Missing: "
  40. msgstr " Falten: "
  41. #: cmdline/apt-cache.cc:291
  42. msgid "Total distinct versions: "
  43. msgstr "Versiones distintes en total: "
  44. #: cmdline/apt-cache.cc:293
  45. msgid "Total distinct descriptions: "
  46. msgstr "Descriciones distintes en total: "
  47. #: cmdline/apt-cache.cc:295
  48. msgid "Total dependencies: "
  49. msgstr "Dependencies totales: "
  50. #: cmdline/apt-cache.cc:298
  51. msgid "Total ver/file relations: "
  52. msgstr "Relaciones versión/ficheru en total: "
  53. #: cmdline/apt-cache.cc:300
  54. msgid "Total Desc/File relations: "
  55. msgstr "Relaciones descrición/ficheru en total: "
  56. #: cmdline/apt-cache.cc:302
  57. msgid "Total Provides mappings: "
  58. msgstr "Mapes de provisiones en total: "
  59. #: cmdline/apt-cache.cc:314
  60. msgid "Total globbed strings: "
  61. msgstr "Cadenes globalizaes en total: "
  62. #: cmdline/apt-cache.cc:328
  63. msgid "Total dependency version space: "
  64. msgstr "Espaciu de dependencies de versión en total: "
  65. #: cmdline/apt-cache.cc:333
  66. msgid "Total slack space: "
  67. msgstr "Espaciu ociosu en total: "
  68. #: cmdline/apt-cache.cc:341
  69. msgid "Total space accounted for: "
  70. msgstr "Informe del total d'espaciu: "
  71. #: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221
  72. #, c-format
  73. msgid "Package file %s is out of sync."
  74. msgstr "El ficheru de paquetes %s nun ta sincronizáu."
  75. #: cmdline/apt-cache.cc:1297
  76. msgid "You must give exactly one pattern"
  77. msgstr "Has de dar exautamente un patrón"
  78. #: cmdline/apt-cache.cc:1451
  79. msgid "No packages found"
  80. msgstr "Nun s'alcontraron paquetes"
  81. #: cmdline/apt-cache.cc:1528
  82. msgid "Package files:"
  83. msgstr "Ficheros de paquete:"
  84. #: cmdline/apt-cache.cc:1535 cmdline/apt-cache.cc:1622
  85. msgid "Cache is out of sync, can't x-ref a package file"
  86. msgstr ""
  87. "La caché nun ta sincronizada, nun puede facese x-ref a un ficheru de paquete"
  88. #. Show any packages have explicit pins
  89. #: cmdline/apt-cache.cc:1549
  90. msgid "Pinned packages:"
  91. msgstr "Paquetes na chincheta:"
  92. #: cmdline/apt-cache.cc:1561 cmdline/apt-cache.cc:1602
  93. msgid "(not found)"
  94. msgstr "(nun s'alcontró)"
  95. #. Installed version
  96. #: cmdline/apt-cache.cc:1582
  97. msgid " Installed: "
  98. msgstr " Instaláu: "
  99. #: cmdline/apt-cache.cc:1584 cmdline/apt-cache.cc:1592
  100. msgid "(none)"
  101. msgstr "(dengún)"
  102. #. Candidate Version
  103. #: cmdline/apt-cache.cc:1589
  104. msgid " Candidate: "
  105. msgstr " Candidatu: "
  106. #: cmdline/apt-cache.cc:1599
  107. msgid " Package pin: "
  108. msgstr " Chincheta de paquetes: "
  109. #. Show the priority tables
  110. #: cmdline/apt-cache.cc:1608
  111. msgid " Version table:"
  112. msgstr " Tabla de versiones:"
  113. #: cmdline/apt-cache.cc:1623
  114. #, c-format
  115. msgid " %4i %s\n"
  116. msgstr " %4i %s\n"
  117. #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70
  118. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
  119. #: cmdline/apt-get.cc:2653 cmdline/apt-sortpkgs.cc:144
  120. #, c-format
  121. msgid "%s %s for %s compiled on %s %s\n"
  122. msgstr "%s %s pa %s compiláu en %s %s\n"
  123. #: cmdline/apt-cache.cc:1725
  124. msgid ""
  125. "Usage: apt-cache [options] command\n"
  126. " apt-cache [options] add file1 [file2 ...]\n"
  127. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  128. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  129. "\n"
  130. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  131. "cache files, and query information from them\n"
  132. "\n"
  133. "Commands:\n"
  134. " add - Add a package file to the source cache\n"
  135. " gencaches - Build both the package and source cache\n"
  136. " showpkg - Show some general information for a single package\n"
  137. " showsrc - Show source records\n"
  138. " stats - Show some basic statistics\n"
  139. " dump - Show the entire file in a terse form\n"
  140. " dumpavail - Print an available file to stdout\n"
  141. " unmet - Show unmet dependencies\n"
  142. " search - Search the package list for a regex pattern\n"
  143. " show - Show a readable record for the package\n"
  144. " depends - Show raw dependency information for a package\n"
  145. " rdepends - Show reverse dependency information for a package\n"
  146. " pkgnames - List the names of all packages in the system\n"
  147. " dotty - Generate package graphs for GraphViz\n"
  148. " xvcg - Generate package graphs for xvcg\n"
  149. " policy - Show policy settings\n"
  150. "\n"
  151. "Options:\n"
  152. " -h This help text.\n"
  153. " -p=? The package cache.\n"
  154. " -s=? The source cache.\n"
  155. " -q Disable progress indicator.\n"
  156. " -i Show only important deps for the unmet command.\n"
  157. " -c=? Read this configuration file\n"
  158. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  159. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  160. msgstr ""
  161. "Usu: apt-cache [opciones] orde\n"
  162. " apt-cache [opciones] add ficheru1 [ficheru2 ...]\n"
  163. " apt-cache [opciones] showpkg paq1 [paq2 ...]\n"
  164. " apt-cache [opciones] showsrc paq1 [paq2 ...]\n"
  165. "\n"
  166. "apt-cache ye una ferramienta de baxu nivel usada pa remanar\n"
  167. "ficheros de caché binarios d'APT y consultar información d'ellos\n"
  168. "\n"
  169. "Ordes:\n"
  170. " add - Amesta un ficheru de paquete a la caché fonte\n"
  171. " gencaches - Creal dambes cachés, la de paquetes y la de fontes\n"
  172. " showpkg - Amuesa algo d'información xeneral d'un sólu paquete\n"
  173. " showsrc - Amuesa los rexistros de fonte\n"
  174. " stats - Amuesa dalgunes estadístiques básiques\n"
  175. " dump - Amuesa'l ficheru ensembre en formatu tersu\n"
  176. " dumpavail - Imprenta un ficheru disponible na salida estándar\n"
  177. " unmet - Amuesa dependencies nun atopáes\n"
  178. " search - Restola na llista de paquetes por el patrón d'una espresión "
  179. "regular\n"
  180. " show - Amuesa un rexistru lleíble pal paquete\n"
  181. " depends - Amuesa la información de dependencies en bruto d'un paquete\n"
  182. " rdepends - Amuesa la información de dependencies inverses d'un paquete\n"
  183. " pkgnames - Llista los nomes de tolos paquetes nel sistema\n"
  184. " dotty - Xenera gráfiques del paquete pa GraphViz\n"
  185. " xvcg - Xenera gráfiques del paquete pa xvcg\n"
  186. " policy - Amuesa los axustes de les normes\n"
  187. "\n"
  188. "Opciones:\n"
  189. " -h Esti testu d'aida.\n"
  190. " -p=? La cache de paquetes.\n"
  191. " -s=? La cache de fontes.\n"
  192. " -q Desactiva l'indicador de progresu.\n"
  193. " -i Amuesa sólo les dependencies importantes de la orde incumplida.\n"
  194. " -c=? Lleer esti ficheru de configuración\n"
  195. " -o=? Conseña una opción de configuración arbitraria, ex -o dir::cache=/"
  196. "tmp\n"
  197. "Ver les páxines del manual apt-cache(8) y apt.conf(5) pa más información.\n"
  198. #: cmdline/apt-cdrom.cc:77
  199. #, fuzzy
  200. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  201. msgstr "Da-y un nome a esti discu, como 'Debian 2.1r1 Discu 1'"
  202. #: cmdline/apt-cdrom.cc:92
  203. msgid "Please insert a Disc in the drive and press enter"
  204. msgstr "Inxerta un discu nel preséu y calca intro"
  205. #: cmdline/apt-cdrom.cc:114
  206. msgid "Repeat this process for the rest of the CDs in your set."
  207. msgstr "Repite'l procesu colos demás CDs del conxuntu."
  208. #: cmdline/apt-config.cc:41
  209. msgid "Arguments not in pairs"
  210. msgstr "Argumentos non empareyaos"
  211. #: cmdline/apt-config.cc:76
  212. msgid ""
  213. "Usage: apt-config [options] command\n"
  214. "\n"
  215. "apt-config is a simple tool to read the APT config file\n"
  216. "\n"
  217. "Commands:\n"
  218. " shell - Shell mode\n"
  219. " dump - Show the configuration\n"
  220. "\n"
  221. "Options:\n"
  222. " -h This help text.\n"
  223. " -c=? Read this configuration file\n"
  224. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  225. msgstr ""
  226. "Usu: apt-config [opciones] orde\n"
  227. "\n"
  228. "apt-config ye una ferramienta pa lleer el ficheru de configuración d'APT.\n"
  229. "\n"
  230. "Ordes:\n"
  231. " shell - Mou shell\n"
  232. " dump - Amuesa la configuración\n"
  233. "\n"
  234. "Opciones:\n"
  235. " -h Esti testu d'aida.\n"
  236. " -c=? Llee esti ficheru de configuración\n"
  237. " -o=? Conseña una opción de configuración arbitraria, p. ex.\n"
  238. #: cmdline/apt-extracttemplates.cc:98
  239. #, c-format
  240. msgid "%s not a valid DEB package."
  241. msgstr "%s nun ye un paquete DEB válidu."
  242. #: cmdline/apt-extracttemplates.cc:232
  243. msgid ""
  244. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  245. "\n"
  246. "apt-extracttemplates is a tool to extract config and template info\n"
  247. "from debian packages\n"
  248. "\n"
  249. "Options:\n"
  250. " -h This help text\n"
  251. " -t Set the temp dir\n"
  252. " -c=? Read this configuration file\n"
  253. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  254. msgstr ""
  255. "Usu: apt-extracttemplates ficheru1 [ficheru2 ...]\n"
  256. "\n"
  257. "apt-extracttemplates ye un preséu pa sacar información de\n"
  258. "configuración y plantíes de paquetes de debian.\n"
  259. "\n"
  260. "Opciones:\n"
  261. "-h Esti testu d'aida.\n"
  262. "-t Define'l direutoriu temporal\n"
  263. "-c=? Llei esti ficheru de configuración\n"
  264. "-o=? Afita una opción de configuración arbitraria, p. ej. -o dir::cache=/"
  265. "tmp\n"
  266. #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830
  267. #, c-format
  268. msgid "Unable to write to %s"
  269. msgstr "Nun se pue escribir en %s"
  270. #: cmdline/apt-extracttemplates.cc:310
  271. msgid "Cannot get debconf version. Is debconf installed?"
  272. msgstr "Nun se pue alcontrar la versión de debconf. ¿Ta instaláu debconf?"
  273. #: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
  274. msgid "Package extension list is too long"
  275. msgstr "La llista d'estensión de paquetes ye demasiao llarga"
  276. #: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
  277. #: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
  278. #: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
  279. #, c-format
  280. msgid "Error processing directory %s"
  281. msgstr "Error al procesar el direutoriu %s"
  282. #: ftparchive/apt-ftparchive.cc:251
  283. msgid "Source extension list is too long"
  284. msgstr "La llista d'estensión de fontes ye demasiao llarga"
  285. #: ftparchive/apt-ftparchive.cc:368
  286. msgid "Error writing header to contents file"
  287. msgstr "Error al escribir la cabecera al ficheru de conteníos"
  288. #: ftparchive/apt-ftparchive.cc:398
  289. #, c-format
  290. msgid "Error processing contents %s"
  291. msgstr "Error al procesar conteníos %s"
  292. #: ftparchive/apt-ftparchive.cc:553
  293. msgid ""
  294. "Usage: apt-ftparchive [options] command\n"
  295. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  296. " sources srcpath [overridefile [pathprefix]]\n"
  297. " contents path\n"
  298. " release path\n"
  299. " generate config [groups]\n"
  300. " clean config\n"
  301. "\n"
  302. "apt-ftparchive generates index files for Debian archives. It supports\n"
  303. "many styles of generation from fully automated to functional replacements\n"
  304. "for dpkg-scanpackages and dpkg-scansources\n"
  305. "\n"
  306. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  307. "Package file contains the contents of all the control fields from\n"
  308. "each package as well as the MD5 hash and filesize. An override file\n"
  309. "is supported to force the value of Priority and Section.\n"
  310. "\n"
  311. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  312. "The --source-override option can be used to specify a src override file\n"
  313. "\n"
  314. "The 'packages' and 'sources' command should be run in the root of the\n"
  315. "tree. BinaryPath should point to the base of the recursive search and \n"
  316. "override file should contain the override flags. Pathprefix is\n"
  317. "appended to the filename fields if present. Example usage from the \n"
  318. "Debian archive:\n"
  319. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  320. " dists/potato/main/binary-i386/Packages\n"
  321. "\n"
  322. "Options:\n"
  323. " -h This help text\n"
  324. " --md5 Control MD5 generation\n"
  325. " -s=? Source override file\n"
  326. " -q Quiet\n"
  327. " -d=? Select the optional caching database\n"
  328. " --no-delink Enable delinking debug mode\n"
  329. " --contents Control contents file generation\n"
  330. " -c=? Read this configuration file\n"
  331. " -o=? Set an arbitrary configuration option"
  332. msgstr ""
  333. "Uso: apt-ftparchive [escoyetes] orde\n"
  334. "Ordes: packages camin-binariu [ficheru-disvíos [prefixu-camin]]\n"
  335. " sources camin-fonte [ficheru-disvíos [prefixu-camin]]\n"
  336. " contents camin\n"
  337. " release camin\n"
  338. " generate config [grupos]\n"
  339. " clean config\n"
  340. "\n"
  341. "apt-ftparchive xenera índices p'archivos de Debian. Sofita dellos\n"
  342. "estilos de xeneración de reemplazos pa dpkg-scanpackages y\n"
  343. "dpkg-scansources, dende los automatizáos dafechu a los funcionales .\n"
  344. "\n"
  345. "apt-ftparchive xenera ficheros Package d'un árbol de .debs. El ficheru\n"
  346. "Package tien los conteníos de tolos campos de control de cada paquete,\n"
  347. "neto que la suma MD5 y el tamañu del ficheru. Puede usase un ficheru\n"
  348. "de disvíos pa forzar el valor de Priority y Section.\n"
  349. "\n"
  350. "De mou asemeyáu, apt-ftparchive xenera ficheros Sources pa un árbol\n"
  351. "de .dscs. Puede utilizase la opción --source-override pa conseñar un\n"
  352. "ficheru de disvíu de fonte.\n"
  353. "\n"
  354. "Les ordes «packages» y «sources» han d'executase na raiz de l'árbol.\n"
  355. "BinaryPath tien qu'apuntar a la base de la gueta recursiva, y el ficheru\n"
  356. "de disvíos tien que contener les marques de los disvíos. El prefixu de\n"
  357. "camín, si esiste, améstase a los campos de nome de ficheru. Darréu,\n"
  358. "un exemplu d'usu basáu nos archivos de Debian:\n"
  359. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  360. " dists/potato/main/binary-i386/Packages\n"
  361. "\n"
  362. "Escoyetes:\n"
  363. " -h Esti testu d'aida\n"
  364. " --md5 Xenerar control MD5 \n"
  365. " -s=? Ficheru de disvíu de fontes\n"
  366. " -q Sele\n"
  367. " -d=? Seleiciona la base de datos de caché opcional \n"
  368. " --no-delink Activa'l mou de depuración de desenllaces\n"
  369. " --contents Xenerar ficheru de conteníos de control\n"
  370. " -c=? Lleer esti ficheru de configuración\n"
  371. " -o=? Afita una escoyeta de configuración propia"
  372. #: ftparchive/apt-ftparchive.cc:759
  373. msgid "No selections matched"
  374. msgstr "Nun concasó denguna seleición"
  375. #: ftparchive/apt-ftparchive.cc:832
  376. #, c-format
  377. msgid "Some files are missing in the package file group `%s'"
  378. msgstr "Falten dellos ficheros nel grupu de ficheros de paquete `%s'"
  379. #: ftparchive/cachedb.cc:43
  380. #, c-format
  381. msgid "DB was corrupted, file renamed to %s.old"
  382. msgstr "La BD corrompiose, ficheru renomáu como %s.old"
  383. #: ftparchive/cachedb.cc:61
  384. #, c-format
  385. msgid "DB is old, attempting to upgrade %s"
  386. msgstr "La DB ye antigua, tentando actualizar %s"
  387. #: ftparchive/cachedb.cc:72
  388. msgid ""
  389. "DB format is invalid. If you upgraded from a older version of apt, please "
  390. "remove and re-create the database."
  391. msgstr ""
  392. "El formatu de la base de datos nun ye válidu. Si anovaste dende una versión "
  393. "anterior d'apt, desanicia y recrea la base de datos."
  394. #: ftparchive/cachedb.cc:77
  395. #, c-format
  396. msgid "Unable to open DB file %s: %s"
  397. msgstr "Nun pudo abrise'l ficheru de BD %s: %s"
  398. #: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
  399. #: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
  400. #, c-format
  401. msgid "Failed to stat %s"
  402. msgstr "Nun pudo lleese %s"
  403. #: ftparchive/cachedb.cc:238
  404. msgid "Archive has no control record"
  405. msgstr "L'archivu nun tien rexistru de control"
  406. #: ftparchive/cachedb.cc:444
  407. msgid "Unable to get a cursor"
  408. msgstr "Nun pudo algamase un cursor"
  409. #: ftparchive/writer.cc:76
  410. #, c-format
  411. msgid "W: Unable to read directory %s\n"
  412. msgstr "A: Nun pudo lleese'l direutoriu %s\n"
  413. #: ftparchive/writer.cc:81
  414. #, c-format
  415. msgid "W: Unable to stat %s\n"
  416. msgstr "A: Nun pudo lleese %s\n"
  417. #: ftparchive/writer.cc:132
  418. msgid "E: "
  419. msgstr "E: "
  420. #: ftparchive/writer.cc:134
  421. msgid "W: "
  422. msgstr "A: "
  423. #: ftparchive/writer.cc:141
  424. msgid "E: Errors apply to file "
  425. msgstr "E: Errores aplicables al ficheru "
  426. #: ftparchive/writer.cc:158 ftparchive/writer.cc:188
  427. #, c-format
  428. msgid "Failed to resolve %s"
  429. msgstr "Nun pudo resolvese %s"
  430. #: ftparchive/writer.cc:170
  431. msgid "Tree walking failed"
  432. msgstr "Falló'l percorríu pol árbol"
  433. #: ftparchive/writer.cc:195
  434. #, c-format
  435. msgid "Failed to open %s"
  436. msgstr "Nun pudo abrise %s"
  437. #: ftparchive/writer.cc:254
  438. #, c-format
  439. msgid " DeLink %s [%s]\n"
  440. msgstr " Desenllazar %s [%s]\n"
  441. #: ftparchive/writer.cc:262
  442. #, c-format
  443. msgid "Failed to readlink %s"
  444. msgstr "Nun pudo lleese l'enllaz %s"
  445. #: ftparchive/writer.cc:266
  446. #, c-format
  447. msgid "Failed to unlink %s"
  448. msgstr "Nun pudo desenllazase %s"
  449. #: ftparchive/writer.cc:273
  450. #, c-format
  451. msgid "*** Failed to link %s to %s"
  452. msgstr "*** Falló enllazar enllazr %s a %s"
  453. #: ftparchive/writer.cc:283
  454. #, c-format
  455. msgid " DeLink limit of %sB hit.\n"
  456. msgstr " Alcanzose'l llímite of %sB de desenllaz.\n"
  457. #: ftparchive/writer.cc:388
  458. msgid "Archive had no package field"
  459. msgstr "L'archivu nun tien el campu paquetes"
  460. #: ftparchive/writer.cc:396 ftparchive/writer.cc:627
  461. #, c-format
  462. msgid " %s has no override entry\n"
  463. msgstr " %s nun tien la entrada saltos\n"
  464. #: ftparchive/writer.cc:457 ftparchive/writer.cc:715
  465. #, c-format
  466. msgid " %s maintainer is %s not %s\n"
  467. msgstr " el curiador de %s ye %s y non %s\n"
  468. #: ftparchive/writer.cc:637
  469. #, c-format
  470. msgid " %s has no source override entry\n"
  471. msgstr " %s nun tien la entrada saltos de fonte\n"
  472. #: ftparchive/writer.cc:641
  473. #, c-format
  474. msgid " %s has no binary override entry either\n"
  475. msgstr " %s tampoco nun tiene una entrada binaria de saltos\n"
  476. #: ftparchive/contents.cc:321
  477. #, c-format
  478. msgid "Internal error, could not locate member %s"
  479. msgstr "Error internu, nun se pue atopar el miembru %s"
  480. #: ftparchive/contents.cc:358 ftparchive/contents.cc:389
  481. msgid "realloc - Failed to allocate memory"
  482. msgstr "realloc - Nun pudo allugase memoria"
  483. #: ftparchive/override.cc:34 ftparchive/override.cc:142
  484. #, c-format
  485. msgid "Unable to open %s"
  486. msgstr "Nun pudo abrise %s"
  487. #: ftparchive/override.cc:60 ftparchive/override.cc:166
  488. #, c-format
  489. msgid "Malformed override %s line %lu #1"
  490. msgstr "Saltu mal formáu %s llinia %lu #1"
  491. #: ftparchive/override.cc:74 ftparchive/override.cc:178
  492. #, c-format
  493. msgid "Malformed override %s line %lu #2"
  494. msgstr "Saltu mal formáu %s llinia %lu #2"
  495. #: ftparchive/override.cc:88 ftparchive/override.cc:191
  496. #, c-format
  497. msgid "Malformed override %s line %lu #3"
  498. msgstr "Saltu mal formáu %s llinia %lu #3"
  499. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  500. #, c-format
  501. msgid "Failed to read the override file %s"
  502. msgstr "Nun pudo lleese'l ficheru de saltos %s"
  503. #: ftparchive/multicompress.cc:72
  504. #, c-format
  505. msgid "Unknown compression algorithm '%s'"
  506. msgstr "Algoritmu de compresión desconocíu '%s'"
  507. #: ftparchive/multicompress.cc:102
  508. #, c-format
  509. msgid "Compressed output %s needs a compression set"
  510. msgstr "La salida comprimida %s necesita un xuegu de compresión"
  511. #: ftparchive/multicompress.cc:169 methods/rsh.cc:91
  512. msgid "Failed to create IPC pipe to subprocess"
  513. msgstr "Falló criar un tubu IPC al soprocesu"
  514. #: ftparchive/multicompress.cc:195
  515. msgid "Failed to create FILE*"
  516. msgstr "Nun pudo criase FICHERU*"
  517. #: ftparchive/multicompress.cc:198
  518. msgid "Failed to fork"
  519. msgstr "Nun pudo biforcase"
  520. #: ftparchive/multicompress.cc:212
  521. msgid "Compress child"
  522. msgstr "Comprimir fíu"
  523. #: ftparchive/multicompress.cc:235
  524. #, c-format
  525. msgid "Internal error, failed to create %s"
  526. msgstr "Error internu, nun pudo criase %s"
  527. #: ftparchive/multicompress.cc:286
  528. msgid "Failed to create subprocess IPC"
  529. msgstr "Nun pudo criase'l soprocesu IPC"
  530. #: ftparchive/multicompress.cc:321
  531. msgid "Failed to exec compressor "
  532. msgstr "Nun pudo executase'l compresor "
  533. #: ftparchive/multicompress.cc:360
  534. msgid "decompressor"
  535. msgstr "descompresor"
  536. #: ftparchive/multicompress.cc:403
  537. msgid "IO to subprocess/file failed"
  538. msgstr "Fallu na ES al soprocesu/ficheru"
  539. #: ftparchive/multicompress.cc:455
  540. msgid "Failed to read while computing MD5"
  541. msgstr "Nun pudo lleese al computar MD5"
  542. #: ftparchive/multicompress.cc:472
  543. #, c-format
  544. msgid "Problem unlinking %s"
  545. msgstr "Problema al desenllazar %s"
  546. #: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
  547. #, c-format
  548. msgid "Failed to rename %s to %s"
  549. msgstr "Nun pudo renomase %s como %s"
  550. #: cmdline/apt-get.cc:127
  551. msgid "Y"
  552. msgstr "S"
  553. #: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1718
  554. #, c-format
  555. msgid "Regex compilation error - %s"
  556. msgstr "Error de compilación d'espresión regular - %s"
  557. #: cmdline/apt-get.cc:244
  558. msgid "The following packages have unmet dependencies:"
  559. msgstr "Los siguientes paquetes nun cumplen dependencies:"
  560. #: cmdline/apt-get.cc:334
  561. #, c-format
  562. msgid "but %s is installed"
  563. msgstr "pero %s ta instaláu"
  564. #: cmdline/apt-get.cc:336
  565. #, c-format
  566. msgid "but %s is to be installed"
  567. msgstr "pero %s ta pa instalar"
  568. #: cmdline/apt-get.cc:343
  569. msgid "but it is not installable"
  570. msgstr "pero nun ye instalable"
  571. #: cmdline/apt-get.cc:345
  572. msgid "but it is a virtual package"
  573. msgstr "pero ye un paquete virtual"
  574. #: cmdline/apt-get.cc:348
  575. msgid "but it is not installed"
  576. msgstr "pero nun ta instaláu"
  577. #: cmdline/apt-get.cc:348
  578. msgid "but it is not going to be installed"
  579. msgstr "pero nun va instalase"
  580. #: cmdline/apt-get.cc:353
  581. msgid " or"
  582. msgstr " o"
  583. #: cmdline/apt-get.cc:382
  584. msgid "The following NEW packages will be installed:"
  585. msgstr "Van instalase los siguientes paquetes NUEVOS:"
  586. #: cmdline/apt-get.cc:408
  587. msgid "The following packages will be REMOVED:"
  588. msgstr "Los siguientes paquetes van DESANICIASE:"
  589. #: cmdline/apt-get.cc:430
  590. msgid "The following packages have been kept back:"
  591. msgstr "Los siguientes paquetes tan reteníos:"
  592. #: cmdline/apt-get.cc:451
  593. msgid "The following packages will be upgraded:"
  594. msgstr "Los siguientes paquetes van actualizase:"
  595. #: cmdline/apt-get.cc:472
  596. msgid "The following packages will be DOWNGRADED:"
  597. msgstr "Los siguientes paquetes van DESACTUALIZASE:"
  598. #: cmdline/apt-get.cc:492
  599. msgid "The following held packages will be changed:"
  600. msgstr "Van camudase los siguientes paquetes reteníos:"
  601. #: cmdline/apt-get.cc:545
  602. #, c-format
  603. msgid "%s (due to %s) "
  604. msgstr "%s (por %s) "
  605. #: cmdline/apt-get.cc:553
  606. msgid ""
  607. "WARNING: The following essential packages will be removed.\n"
  608. "This should NOT be done unless you know exactly what you are doing!"
  609. msgstr ""
  610. "AVISU: Los siguientes paquetes esenciales van desaniciase.\n"
  611. "¡Esto NUN hai que facelo si nun sabes esautamente lo que faes!"
  612. #: cmdline/apt-get.cc:584
  613. #, c-format
  614. msgid "%lu upgraded, %lu newly installed, "
  615. msgstr "%lu actualizaos, %lu nuevos instalaos, "
  616. #: cmdline/apt-get.cc:588
  617. #, c-format
  618. msgid "%lu reinstalled, "
  619. msgstr "%lu reinstalaos, "
  620. #: cmdline/apt-get.cc:590
  621. #, c-format
  622. msgid "%lu downgraded, "
  623. msgstr "%lu desactualizaos, "
  624. #: cmdline/apt-get.cc:592
  625. #, c-format
  626. msgid "%lu to remove and %lu not upgraded.\n"
  627. msgstr "%lu para desaniciar y %lu nun actualizaos.\n"
  628. #: cmdline/apt-get.cc:596
  629. #, c-format
  630. msgid "%lu not fully installed or removed.\n"
  631. msgstr "%lu nun instalaos dafechu o desaniciaos.\n"
  632. #: cmdline/apt-get.cc:669
  633. msgid "Correcting dependencies..."
  634. msgstr "Iguando dependencies..."
  635. #: cmdline/apt-get.cc:672
  636. msgid " failed."
  637. msgstr " falló."
  638. #: cmdline/apt-get.cc:675
  639. msgid "Unable to correct dependencies"
  640. msgstr "Nun pudieron iguase les dependencies"
  641. #: cmdline/apt-get.cc:678
  642. msgid "Unable to minimize the upgrade set"
  643. msgstr "Nun pue amenorgase'l conxuntu d'actualización"
  644. #: cmdline/apt-get.cc:680
  645. msgid " Done"
  646. msgstr " Fecho"
  647. #: cmdline/apt-get.cc:684
  648. msgid "You might want to run `apt-get -f install' to correct these."
  649. msgstr "Habríes d'executar `apt-get -f install' para igualo."
  650. #: cmdline/apt-get.cc:687
  651. msgid "Unmet dependencies. Try using -f."
  652. msgstr "Dependencies incumplíes. Téntalo usando -f."
  653. #: cmdline/apt-get.cc:712
  654. msgid "WARNING: The following packages cannot be authenticated!"
  655. msgstr "AVISU: ¡Nun pudieron autenticase los siguientes paquetes!"
  656. #: cmdline/apt-get.cc:716
  657. msgid "Authentication warning overridden.\n"
  658. msgstr "Avisu d'autenticación saltáu.\n"
  659. #: cmdline/apt-get.cc:723
  660. msgid "Install these packages without verification [y/N]? "
  661. msgstr "¿Instalar esos paquetes ensin verificación [s/N]? "
  662. #: cmdline/apt-get.cc:725
  663. msgid "Some packages could not be authenticated"
  664. msgstr "Dellos paquetes nun pudieron autenticase"
  665. #: cmdline/apt-get.cc:734 cmdline/apt-get.cc:890
  666. msgid "There are problems and -y was used without --force-yes"
  667. msgstr "Hai problemes y utilizose -y ensin --force-yes"
  668. #: cmdline/apt-get.cc:775
  669. msgid "Internal error, InstallPackages was called with broken packages!"
  670. msgstr "Error internu, ¡InstallPackages llamose con paquetes frañaos!"
  671. #: cmdline/apt-get.cc:784
  672. msgid "Packages need to be removed but remove is disabled."
  673. msgstr "Fai falta desaniciar los paquetes pero desaniciar ta torgáu."
  674. #: cmdline/apt-get.cc:795
  675. msgid "Internal error, Ordering didn't finish"
  676. msgstr "Error internu, ordenar nun finó"
  677. #: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2060 cmdline/apt-get.cc:2093
  678. msgid "Unable to lock the download directory"
  679. msgstr "Nun pue bloquiase'l direutoriu de descarga"
  680. #: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2141 cmdline/apt-get.cc:2394
  681. #: apt-pkg/cachefile.cc:65
  682. msgid "The list of sources could not be read."
  683. msgstr "Nun pudo lleese la llista de fontes."
  684. #: cmdline/apt-get.cc:836
  685. msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  686. msgstr "Que raro.. Los tamaños nun concasen, escribe a apt@packages.debian.org"
  687. #: cmdline/apt-get.cc:841
  688. #, c-format
  689. msgid "Need to get %sB/%sB of archives.\n"
  690. msgstr "Hai que descargar %sB/%sB d'archivos.\n"
  691. #: cmdline/apt-get.cc:844
  692. #, c-format
  693. msgid "Need to get %sB of archives.\n"
  694. msgstr "Hai que descargar %sB d'archivos.\n"
  695. #: cmdline/apt-get.cc:849
  696. #, c-format
  697. msgid "After this operation, %sB of additional disk space will be used.\n"
  698. msgstr "Tres d'esta operación, van usase %sB d'espaciu de discu adicional.\n"
  699. #: cmdline/apt-get.cc:852
  700. #, c-format
  701. msgid "After this operation, %sB disk space will be freed.\n"
  702. msgstr "Tres d'esta operación, van lliberase %sB d'espaciu de discu.\n"
  703. #: cmdline/apt-get.cc:867 cmdline/apt-get.cc:870 cmdline/apt-get.cc:2237
  704. #: cmdline/apt-get.cc:2240
  705. #, c-format
  706. msgid "Couldn't determine free space in %s"
  707. msgstr "Nun pue determinase l'espaciu llibre de %s"
  708. #: cmdline/apt-get.cc:880
  709. #, c-format
  710. msgid "You don't have enough free space in %s."
  711. msgstr "Nun tienes espaciu libre bastante en %s."
  712. #: cmdline/apt-get.cc:896 cmdline/apt-get.cc:916
  713. msgid "Trivial Only specified but this is not a trivial operation."
  714. msgstr "Conseñose Trivial Only pero ésta nun ye una operación trivial."
  715. #: cmdline/apt-get.cc:898
  716. msgid "Yes, do as I say!"
  717. msgstr "Sí, ¡facer lo que digo!"
  718. #: cmdline/apt-get.cc:900
  719. #, c-format
  720. msgid ""
  721. "You are about to do something potentially harmful.\n"
  722. "To continue type in the phrase '%s'\n"
  723. " ?] "
  724. msgstr ""
  725. "Tas a piques de facer daqué potencialmente dañible.\n"
  726. "Pa continuar escribe la frase '%s'\n"
  727. " ?] "
  728. #: cmdline/apt-get.cc:906 cmdline/apt-get.cc:925
  729. msgid "Abort."
  730. msgstr "Encaboxar."
  731. #: cmdline/apt-get.cc:921
  732. msgid "Do you want to continue [Y/n]? "
  733. msgstr "¿Quies continuar [S/n]? "
  734. #: cmdline/apt-get.cc:993 cmdline/apt-get.cc:2291 apt-pkg/algorithms.cc:1389
  735. #, c-format
  736. msgid "Failed to fetch %s %s\n"
  737. msgstr "Falló algamar %s %s\n"
  738. #: cmdline/apt-get.cc:1011
  739. msgid "Some files failed to download"
  740. msgstr "Dellos ficheros nun pudieron descargase"
  741. #: cmdline/apt-get.cc:1012 cmdline/apt-get.cc:2300
  742. msgid "Download complete and in download only mode"
  743. msgstr "Descarga completa y en mou de sólo descarga"
  744. #: cmdline/apt-get.cc:1018
  745. msgid ""
  746. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  747. "missing?"
  748. msgstr ""
  749. "Nun pudieron algamase dellos archivos, ¿seique executando apt-get update o "
  750. "tentando --fix-missing?"
  751. #: cmdline/apt-get.cc:1022
  752. msgid "--fix-missing and media swapping is not currently supported"
  753. msgstr "--fix-missing y cambéu de mediu nun ta sofitao actualmente"
  754. #: cmdline/apt-get.cc:1027
  755. msgid "Unable to correct missing packages."
  756. msgstr "Nun pudieron iguase los paquetes que falten."
  757. #: cmdline/apt-get.cc:1028
  758. msgid "Aborting install."
  759. msgstr "Encaboxando la instalación."
  760. #: cmdline/apt-get.cc:1086
  761. #, c-format
  762. msgid "Note, selecting %s instead of %s\n"
  763. msgstr "Nota, escoyendo %s nel llugar de %s\n"
  764. #: cmdline/apt-get.cc:1097
  765. #, c-format
  766. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  767. msgstr "Saltando %s, ya ta instalau y la actualización nun ta activada.\n"
  768. #: cmdline/apt-get.cc:1115
  769. #, c-format
  770. msgid "Package %s is not installed, so not removed\n"
  771. msgstr "El paquete %s nun ta instalau, nun va desaniciase\n"
  772. #: cmdline/apt-get.cc:1126
  773. #, c-format
  774. msgid "Package %s is a virtual package provided by:\n"
  775. msgstr "El paquete %s ye un paquete virtual ufríu por:\n"
  776. #: cmdline/apt-get.cc:1138
  777. msgid " [Installed]"
  778. msgstr " [Instaláu]"
  779. #: cmdline/apt-get.cc:1143
  780. msgid "You should explicitly select one to install."
  781. msgstr "Has d'escoyer esplícitamente unu pa instalar."
  782. #: cmdline/apt-get.cc:1148
  783. #, c-format
  784. msgid ""
  785. "Package %s is not available, but is referred to by another package.\n"
  786. "This may mean that the package is missing, has been obsoleted, or\n"
  787. "is only available from another source\n"
  788. msgstr ""
  789. "El paquete %s nun ta disponible, otru paquete refierse a él.\n"
  790. "Esto puede significar que falta el paquete, ta arrumbáu, o sólo\n"
  791. "ta disponible dende otra fonte\n"
  792. #: cmdline/apt-get.cc:1167
  793. msgid "However the following packages replace it:"
  794. msgstr "Sicasí, los siguientes paquetes reemplacenlu:"
  795. #: cmdline/apt-get.cc:1170
  796. #, c-format
  797. msgid "Package %s has no installation candidate"
  798. msgstr "El paquete %s nun tien candidatu pa instalación"
  799. #: cmdline/apt-get.cc:1190
  800. #, c-format
  801. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  802. msgstr "La reinstalación de %s nun ye dable, nun pue descargase.\n"
  803. #: cmdline/apt-get.cc:1198
  804. #, c-format
  805. msgid "%s is already the newest version.\n"
  806. msgstr "%s yá ta na versión más nueva.\n"
  807. #: cmdline/apt-get.cc:1227
  808. #, c-format
  809. msgid "Release '%s' for '%s' was not found"
  810. msgstr "Nun s'alcontró la distribución '%s' pa '%s'"
  811. #: cmdline/apt-get.cc:1229
  812. #, c-format
  813. msgid "Version '%s' for '%s' was not found"
  814. msgstr "Nun s'alcontró la versión '%s' pa '%s'"
  815. #: cmdline/apt-get.cc:1235
  816. #, c-format
  817. msgid "Selected version %s (%s) for %s\n"
  818. msgstr "Escoyida la versión %s (%s) pa %s\n"
  819. #. if (VerTag.empty() == false && Last == 0)
  820. #: cmdline/apt-get.cc:1305 cmdline/apt-get.cc:1367
  821. #, c-format
  822. msgid "Ignore unavailable version '%s' of package '%s'"
  823. msgstr ""
  824. #: cmdline/apt-get.cc:1307
  825. #, c-format
  826. msgid "Ignore unavailable target release '%s' of package '%s'"
  827. msgstr ""
  828. #: cmdline/apt-get.cc:1332
  829. #, fuzzy, c-format
  830. msgid "Picking '%s' as source package instead of '%s'\n"
  831. msgstr "Nun se puede lleer la llista de paquetes d'oríxenes %s"
  832. #: cmdline/apt-get.cc:1383
  833. msgid "The update command takes no arguments"
  834. msgstr "La orde update nun lleva argumentos"
  835. #: cmdline/apt-get.cc:1396
  836. msgid "Unable to lock the list directory"
  837. msgstr "Nun pudo bloquiase'l direutoriu de llista"
  838. #: cmdline/apt-get.cc:1452
  839. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  840. msgstr "Suponse que nun vamos esborrar coses; nun pue entamase AutoRemover"
  841. #: cmdline/apt-get.cc:1501
  842. msgid ""
  843. "The following packages were automatically installed and are no longer "
  844. "required:"
  845. msgstr ""
  846. "Los siguientes paquetes instalaronse de manera automática y ya nun se "
  847. "necesiten:"
  848. #: cmdline/apt-get.cc:1503
  849. #, fuzzy, c-format
  850. msgid "%lu packages were automatically installed and are no longer required.\n"
  851. msgstr ""
  852. "Los siguientes paquetes instalaronse de manera automática y ya nun se "
  853. "necesiten:"
  854. #: cmdline/apt-get.cc:1504
  855. msgid "Use 'apt-get autoremove' to remove them."
  856. msgstr "Usa 'apt-get autoremove' pa desinstalalos."
  857. #: cmdline/apt-get.cc:1509
  858. msgid ""
  859. "Hmm, seems like the AutoRemover destroyed something which really\n"
  860. "shouldn't happen. Please file a bug report against apt."
  861. msgstr ""
  862. "Hmm, paez que AutoRemover destruyó daqué, lo que nun tendría\n"
  863. "por qué pasar. Por favor, unvía un informe de fallu escontra apt."
  864. #.
  865. #. if (Packages == 1)
  866. #. {
  867. #. c1out << endl;
  868. #. c1out <<
  869. #. _("Since you only requested a single operation it is extremely likely that\n"
  870. #. "the package is simply not installable and a bug report against\n"
  871. #. "that package should be filed.") << endl;
  872. #. }
  873. #.
  874. #: cmdline/apt-get.cc:1512 cmdline/apt-get.cc:1802
  875. msgid "The following information may help to resolve the situation:"
  876. msgstr "La siguiente información pue aidar a resolver la situación:"
  877. #: cmdline/apt-get.cc:1516
  878. msgid "Internal Error, AutoRemover broke stuff"
  879. msgstr "Error internu, AutoRemover rompió coses"
  880. #: cmdline/apt-get.cc:1535
  881. msgid "Internal error, AllUpgrade broke stuff"
  882. msgstr "Error internu, AllUpgrade rompió coses"
  883. #: cmdline/apt-get.cc:1590
  884. #, c-format
  885. msgid "Couldn't find task %s"
  886. msgstr "Nun pudo alcontrase la tarea %s"
  887. #: cmdline/apt-get.cc:1705 cmdline/apt-get.cc:1741
  888. #, c-format
  889. msgid "Couldn't find package %s"
  890. msgstr "Nun pudo alcontrase'l paquete %s"
  891. #: cmdline/apt-get.cc:1728
  892. #, c-format
  893. msgid "Note, selecting %s for regex '%s'\n"
  894. msgstr "Nota, escoyendo %s pa la espresión regular '%s'\n"
  895. #: cmdline/apt-get.cc:1759
  896. #, c-format
  897. msgid "%s set to manually installed.\n"
  898. msgstr "%s axustáu como instaláu manualmente.\n"
  899. #: cmdline/apt-get.cc:1772
  900. msgid "You might want to run `apt-get -f install' to correct these:"
  901. msgstr "Habríes d'executar `apt-get -f install' para iguar estos:"
  902. #: cmdline/apt-get.cc:1775
  903. msgid ""
  904. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  905. "solution)."
  906. msgstr ""
  907. "Dependencies ensin cubrir. Tenta 'apt-get -f install' ensin paquetes (o "
  908. "conseña una solución)."
  909. #: cmdline/apt-get.cc:1787
  910. msgid ""
  911. "Some packages could not be installed. This may mean that you have\n"
  912. "requested an impossible situation or if you are using the unstable\n"
  913. "distribution that some required packages have not yet been created\n"
  914. "or been moved out of Incoming."
  915. msgstr ""
  916. "Dellos paquetes nun pudieron instalase. Esto puede significar que\n"
  917. "conseñaste una situación imposible o, si tas usando la distribución\n"
  918. "inestable, que dellos paquetes necesarios nun se crearon o que\n"
  919. "s'allugaron fuera d'Incoming."
  920. #: cmdline/apt-get.cc:1805
  921. msgid "Broken packages"
  922. msgstr "Paquetes frañaos"
  923. #: cmdline/apt-get.cc:1834
  924. msgid "The following extra packages will be installed:"
  925. msgstr "Instalaránse los siguientes paquetes extra:"
  926. #: cmdline/apt-get.cc:1923
  927. msgid "Suggested packages:"
  928. msgstr "Paquetes afalaos:"
  929. #: cmdline/apt-get.cc:1924
  930. msgid "Recommended packages:"
  931. msgstr "Paquetes encamentaos"
  932. #: cmdline/apt-get.cc:1953
  933. msgid "Calculating upgrade... "
  934. msgstr "Calculando l'autualización... "
  935. #: cmdline/apt-get.cc:1956 methods/ftp.cc:707 methods/connect.cc:112
  936. msgid "Failed"
  937. msgstr "Falló"
  938. #: cmdline/apt-get.cc:1961
  939. msgid "Done"
  940. msgstr "Fecho"
  941. #: cmdline/apt-get.cc:2028 cmdline/apt-get.cc:2036
  942. msgid "Internal error, problem resolver broke stuff"
  943. msgstr "Error internu, l'iguador de problemes frañó coses"
  944. #: cmdline/apt-get.cc:2136
  945. msgid "Must specify at least one package to fetch source for"
  946. msgstr "Has de conseñar polo menos un paquete p'algamar so fonte"
  947. #: cmdline/apt-get.cc:2166 cmdline/apt-get.cc:2412
  948. #, c-format
  949. msgid "Unable to find a source package for %s"
  950. msgstr "Nun pudo alcontrase un paquete fonte pa %s"
  951. #: cmdline/apt-get.cc:2215
  952. #, c-format
  953. msgid "Skipping already downloaded file '%s'\n"
  954. msgstr "Saltando'l ficheru yá descargáu '%s'\n"
  955. #: cmdline/apt-get.cc:2250
  956. #, c-format
  957. msgid "You don't have enough free space in %s"
  958. msgstr "Nun hai espaciu llibre bastante en %s"
  959. #: cmdline/apt-get.cc:2256
  960. #, c-format
  961. msgid "Need to get %sB/%sB of source archives.\n"
  962. msgstr "Hai falta descargar %sB/%sB d'archivos fonte.\n"
  963. #: cmdline/apt-get.cc:2259
  964. #, c-format
  965. msgid "Need to get %sB of source archives.\n"
  966. msgstr "Hai falta descargar %sB d'archivos fonte.\n"
  967. #: cmdline/apt-get.cc:2265
  968. #, c-format
  969. msgid "Fetch source %s\n"
  970. msgstr "Fonte descargada %s\n"
  971. #: cmdline/apt-get.cc:2296
  972. msgid "Failed to fetch some archives."
  973. msgstr "Falló la descarga de dellos archivos."
  974. #: cmdline/apt-get.cc:2324
  975. #, c-format
  976. msgid "Skipping unpack of already unpacked source in %s\n"
  977. msgstr "Saltando'l desempaquetáu de la fonte yá desempaquetada en %s\n"
  978. #: cmdline/apt-get.cc:2336
  979. #, c-format
  980. msgid "Unpack command '%s' failed.\n"
  981. msgstr "Falló la orde de desempaquetáu '%s'.\n"
  982. #: cmdline/apt-get.cc:2337
  983. #, c-format
  984. msgid "Check if the 'dpkg-dev' package is installed.\n"
  985. msgstr "Comprueba qu'el paquete 'dpkg-dev' ta instaláu.\n"
  986. #: cmdline/apt-get.cc:2354
  987. #, c-format
  988. msgid "Build command '%s' failed.\n"
  989. msgstr "Falló la orde build '%s'.\n"
  990. #: cmdline/apt-get.cc:2373
  991. msgid "Child process failed"
  992. msgstr "Falló el procesu fíu"
  993. #: cmdline/apt-get.cc:2389
  994. msgid "Must specify at least one package to check builddeps for"
  995. msgstr ""
  996. "Hai que conseñar polo menos un paquete pa verificar les dependencies de "
  997. "construcción"
  998. #: cmdline/apt-get.cc:2417
  999. #, c-format
  1000. msgid "Unable to get build-dependency information for %s"
  1001. msgstr "Nun pudo algamase información de dependencies de construcción pa %s"
  1002. #: cmdline/apt-get.cc:2437
  1003. #, c-format
  1004. msgid "%s has no build depends.\n"
  1005. msgstr "%s nun tien dependencies de construcción.\n"
  1006. #: cmdline/apt-get.cc:2489
  1007. #, c-format
  1008. msgid ""
  1009. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  1010. "found"
  1011. msgstr ""
  1012. "La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el "
  1013. "paquete %s"
  1014. #: cmdline/apt-get.cc:2542
  1015. #, c-format
  1016. msgid ""
  1017. "%s dependency for %s cannot be satisfied because no available versions of "
  1018. "package %s can satisfy version requirements"
  1019. msgstr ""
  1020. "La dependencia %s en %s nun puede satisfacese porque denguna versión "
  1021. "disponible del paquete %s satisfaz los requisitos de versión"
  1022. #: cmdline/apt-get.cc:2578
  1023. #, c-format
  1024. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  1025. msgstr ""
  1026. "Nun se pudo satisfacer la dependencia %s pa %s: El paquete instaláu %s ye "
  1027. "demasiao nuevu"
  1028. #: cmdline/apt-get.cc:2605
  1029. #, c-format
  1030. msgid "Failed to satisfy %s dependency for %s: %s"
  1031. msgstr "Fallu pa satisfacer la dependencia %s pa %s: %s"
  1032. #: cmdline/apt-get.cc:2621
  1033. #, c-format
  1034. msgid "Build-dependencies for %s could not be satisfied."
  1035. msgstr "Les dependencies de construcción de %s nun pudieron satisfacese."
  1036. #: cmdline/apt-get.cc:2626
  1037. msgid "Failed to process build dependencies"
  1038. msgstr "Fallu al procesar les dependencies de construcción"
  1039. #: cmdline/apt-get.cc:2658
  1040. msgid "Supported modules:"
  1041. msgstr "Módulos sofitaos:"
  1042. #: cmdline/apt-get.cc:2699
  1043. msgid ""
  1044. "Usage: apt-get [options] command\n"
  1045. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1046. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1047. "\n"
  1048. "apt-get is a simple command line interface for downloading and\n"
  1049. "installing packages. The most frequently used commands are update\n"
  1050. "and install.\n"
  1051. "\n"
  1052. "Commands:\n"
  1053. " update - Retrieve new lists of packages\n"
  1054. " upgrade - Perform an upgrade\n"
  1055. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  1056. " remove - Remove packages\n"
  1057. " autoremove - Remove automatically all unused packages\n"
  1058. " purge - Remove packages and config files\n"
  1059. " source - Download source archives\n"
  1060. " build-dep - Configure build-dependencies for source packages\n"
  1061. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  1062. " dselect-upgrade - Follow dselect selections\n"
  1063. " clean - Erase downloaded archive files\n"
  1064. " autoclean - Erase old downloaded archive files\n"
  1065. " check - Verify that there are no broken dependencies\n"
  1066. "\n"
  1067. "Options:\n"
  1068. " -h This help text.\n"
  1069. " -q Loggable output - no progress indicator\n"
  1070. " -qq No output except for errors\n"
  1071. " -d Download only - do NOT install or unpack archives\n"
  1072. " -s No-act. Perform ordering simulation\n"
  1073. " -y Assume Yes to all queries and do not prompt\n"
  1074. " -f Attempt to correct a system with broken dependencies in place\n"
  1075. " -m Attempt to continue if archives are unlocatable\n"
  1076. " -u Show a list of upgraded packages as well\n"
  1077. " -b Build the source package after fetching it\n"
  1078. " -V Show verbose version numbers\n"
  1079. " -c=? Read this configuration file\n"
  1080. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1081. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  1082. "pages for more information and options.\n"
  1083. " This APT has Super Cow Powers.\n"
  1084. msgstr ""
  1085. "Usu: apt-get [opciones] comandu\n"
  1086. " apt-get [opciones] install|remove pkg1 [pkg2 ...]\n"
  1087. " apt-get [opciones] source pkg1 [pkg2 ...]\n"
  1088. "\n"
  1089. "apt-get ye una interface de llínia de comandos simple pa baxar ya\n"
  1090. "instalar paquetes. L'usu más frecuente de comandos ye p'anovar\n"
  1091. "ya instalar.\n"
  1092. "\n"
  1093. "Comandos:\n"
  1094. " update - Algamar nueva llista de paquetes\n"
  1095. " upgrade - Facer una anovación\n"
  1096. " install - Instalar nuevos paquetes (pkg ye libc6 non libc6.deb)\n"
  1097. " remove - Desaniciar paquetes\n"
  1098. " autoremove - Desaniciar automáticamente tolos paquetes non usaos\n"
  1099. " purge - Quitar y desaniciar paquetes\n"
  1100. " source - Baxar fonte del archivu\n"
  1101. " build-dep - Configurar dependencies pa los paquetes fonte\n"
  1102. " dist-upgrade - Actualización de la distribución, ver apt-get(8)\n"
  1103. " dselect-upgrade - Siguir seleiciones dselect\n"
  1104. " clean - Esborrar los ficheros de ficheros baxaos\n"
  1105. " autoclean - Esborrar ficheros de ficheros vieyos baxaos\n"
  1106. " check - Verificar que nun hai dependencies frayaes\n"
  1107. "\n"
  1108. "Opciones:\n"
  1109. " -h Esti testu d'aida.\n"
  1110. " -q Salida Log - ensín indicación de progresu\n"
  1111. " -qq Ensín salida excepto pa fallos\n"
  1112. " -d Baxar sólo - NON instalar o desempaquetar los archivos\n"
  1113. " -s Non aición. Facer una simulación ordenada\n"
  1114. " -y Asumir Yes pa toles entruges y nun visualizar la petición\n"
  1115. " -f Intentar correxir un sistema con dependencies frayaes\n"
  1116. " -m Intentar siguir si los archivos nun tan disponibles\n"
  1117. " -u Amosar una lilsta de paquetes que tan bien\n"
  1118. " -b Facer el paquete fonte dempues d'algamalu\n"
  1119. " -V Amosar númberos de versiones\n"
  1120. " -c=? Lleer esti ficheru de configuración\n"
  1121. " -o=? Afitar una opción de configuración arbitraria, p. ex. -o dir::cache=/"
  1122. "tmp\n"
  1123. "Ver lés páxines de los manuales d' apt-get(8), sources.list(5) y apt.conf"
  1124. "(5)\n"
  1125. "pa más información y opciones.\n"
  1126. " Esti APT tien Poderes de Super Vaca.\n"
  1127. #: cmdline/apt-get.cc:2866
  1128. msgid ""
  1129. "NOTE: This is only a simulation!\n"
  1130. " apt-get needs root privileges for real execution.\n"
  1131. " Keep also in mind that locking is deactivated,\n"
  1132. " so don't depend on the relevance to the real current situation!"
  1133. msgstr ""
  1134. "NOTA: ¡Esto sólo ye una simulación!\n"
  1135. " apt-get necesita privilexos de root pa la execución real.\n"
  1136. " ¡Ten tamién en cuenta que'l bloquéu ta desactiváu,\n"
  1137. " asina que nun dependen de la pertinencia de la verdadera situación "
  1138. "actual!"
  1139. #: cmdline/acqprogress.cc:55
  1140. msgid "Hit "
  1141. msgstr "Oxe "
  1142. #: cmdline/acqprogress.cc:79
  1143. msgid "Get:"
  1144. msgstr "Des:"
  1145. #: cmdline/acqprogress.cc:110
  1146. msgid "Ign "
  1147. msgstr "Ign "
  1148. #: cmdline/acqprogress.cc:114
  1149. msgid "Err "
  1150. msgstr "Err "
  1151. #: cmdline/acqprogress.cc:135
  1152. #, c-format
  1153. msgid "Fetched %sB in %s (%sB/s)\n"
  1154. msgstr "Descargaos %sB en %s (%sB/s)\n"
  1155. #: cmdline/acqprogress.cc:225
  1156. #, c-format
  1157. msgid " [Working]"
  1158. msgstr " [Tresnando]"
  1159. #: cmdline/acqprogress.cc:271
  1160. #, c-format
  1161. msgid ""
  1162. "Media change: please insert the disc labeled\n"
  1163. " '%s'\n"
  1164. "in the drive '%s' and press enter\n"
  1165. msgstr ""
  1166. "Cambeu de mediu: Por favor meti'l discu etiquetáu\n"
  1167. " '%s'\n"
  1168. "na unidá '%s' y calca Intro\n"
  1169. #: cmdline/apt-sortpkgs.cc:86
  1170. msgid "Unknown package record!"
  1171. msgstr "¡Rexistru de paquetes desconocíu!"
  1172. #: cmdline/apt-sortpkgs.cc:150
  1173. msgid ""
  1174. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1175. "\n"
  1176. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1177. "to indicate what kind of file it is.\n"
  1178. "\n"
  1179. "Options:\n"
  1180. " -h This help text\n"
  1181. " -s Use source file sorting\n"
  1182. " -c=? Read this configuration file\n"
  1183. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1184. msgstr ""
  1185. "Usu: apt-sortpkgs [opciones] ficheru1 [ficheru2 ...]\n"
  1186. "\n"
  1187. "apt-sortpkgs ye un preséu cenciellu pa tresnar ficheros de paquetes.\n"
  1188. "La opción -s úsase pa indicar qué triba de ficheru ye.\n"
  1189. "\n"
  1190. "Opciones:\n"
  1191. "-h Esti testu d'aida.\n"
  1192. "-s Usa ordenamientu de ficheros fonte\n"
  1193. "-c=? Llei esti ficheru de configuración\n"
  1194. "-o=? Afita una opción de configuración arbitraria, p. ej. -o dir::\n"
  1195. "cache=/tmp\n"
  1196. #: dselect/install:32
  1197. msgid "Bad default setting!"
  1198. msgstr "¡Mal axuste por omisión!"
  1199. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
  1200. #: dselect/install:105 dselect/update:45
  1201. msgid "Press enter to continue."
  1202. msgstr "Calca Intro pa continuar."
  1203. #: dselect/install:91
  1204. msgid "Do you want to erase any previously downloaded .deb files?"
  1205. msgstr "¿Quies desaniciar los ficheros .deb descargaos previamente?"
  1206. #: dselect/install:101
  1207. #, fuzzy
  1208. msgid "Some errors occurred while unpacking. Packages that were installed"
  1209. msgstr "Ocurrieron dellos errores al desempaquetar. Va configurarse'l"
  1210. #: dselect/install:102
  1211. #, fuzzy
  1212. msgid "will be configured. This may result in duplicate errors"
  1213. msgstr "paquetes que s'instalaron. Esto pue causar errores duplicaos"
  1214. #: dselect/install:103
  1215. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1216. msgstr ""
  1217. "o fallos causaos por dependencies que nun tán. Esto ta BIEN, sólo los fallos"
  1218. #: dselect/install:104
  1219. msgid ""
  1220. "above this message are important. Please fix them and run [I]nstall again"
  1221. msgstr ""
  1222. "enriba d'esti mensaxe son importante. Por favor, íguales y executa [I]nstall "
  1223. "otra vuelta"
  1224. #: dselect/update:30
  1225. msgid "Merging available information"
  1226. msgstr "Fusionando información disponible"
  1227. #: apt-inst/contrib/extracttar.cc:114
  1228. msgid "Failed to create pipes"
  1229. msgstr "Fallu al crear les tuberíes"
  1230. #: apt-inst/contrib/extracttar.cc:141
  1231. msgid "Failed to exec gzip "
  1232. msgstr "Fallu al executar gzip "
  1233. #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
  1234. msgid "Corrupted archive"
  1235. msgstr "Ficheru tollíu"
  1236. #: apt-inst/contrib/extracttar.cc:193
  1237. msgid "Tar checksum failed, archive corrupted"
  1238. msgstr "Falló la suma de control de tar, ficheru tollíu"
  1239. #: apt-inst/contrib/extracttar.cc:296
  1240. #, c-format
  1241. msgid "Unknown TAR header type %u, member %s"
  1242. msgstr "Testera del TAR triba %u desconocida, miembru %s"
  1243. #: apt-inst/contrib/arfile.cc:70
  1244. msgid "Invalid archive signature"
  1245. msgstr "Robla del ficheru inválida"
  1246. #: apt-inst/contrib/arfile.cc:78
  1247. msgid "Error reading archive member header"
  1248. msgstr "Fallu al lleer la testera de miembru del ficheru"
  1249. #: apt-inst/contrib/arfile.cc:90
  1250. #, fuzzy, c-format
  1251. msgid "Invalid archive member header %s"
  1252. msgstr "Testera de miembur del ficheru inválida"
  1253. #: apt-inst/contrib/arfile.cc:102
  1254. msgid "Invalid archive member header"
  1255. msgstr "Testera de miembur del ficheru inválida"
  1256. #: apt-inst/contrib/arfile.cc:128
  1257. msgid "Archive is too short"
  1258. msgstr "El ficheru ye perpequeñu"
  1259. #: apt-inst/contrib/arfile.cc:132
  1260. msgid "Failed to read the archive headers"
  1261. msgstr "Falló al lleer les testeres del ficheru"
  1262. #: apt-inst/filelist.cc:380
  1263. msgid "DropNode called on still linked node"
  1264. msgstr "Llamóse a DropNode nun nodu que ta entá enllazáu"
  1265. #: apt-inst/filelist.cc:412
  1266. msgid "Failed to locate the hash element!"
  1267. msgstr "¡Fallu al atopar l'elementu enllazáu!"
  1268. #: apt-inst/filelist.cc:459
  1269. msgid "Failed to allocate diversion"
  1270. msgstr "Falló al allugar una desvíu"
  1271. #: apt-inst/filelist.cc:464
  1272. msgid "Internal error in AddDiversion"
  1273. msgstr "Fallu internu en AddDiversion"
  1274. #: apt-inst/filelist.cc:477
  1275. #, c-format
  1276. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1277. msgstr "Intentando sobrescribir un desvíu, %s -> %s and %s/%s"
  1278. #: apt-inst/filelist.cc:506
  1279. #, c-format
  1280. msgid "Double add of diversion %s -> %s"
  1281. msgstr "Doble suma de desvíu %s -> %s"
  1282. #: apt-inst/filelist.cc:549
  1283. #, c-format
  1284. msgid "Duplicate conf file %s/%s"
  1285. msgstr "Ficheru de configuración duplicáu %s/%s"
  1286. #: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
  1287. #, c-format
  1288. msgid "Failed to write file %s"
  1289. msgstr "Falló la escritura nel ficheru %s"
  1290. #: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
  1291. #, c-format
  1292. msgid "Failed to close file %s"
  1293. msgstr "Falló al pesllar el ficheru %s"
  1294. #: apt-inst/extract.cc:93 apt-inst/extract.cc:164
  1295. #, c-format
  1296. msgid "The path %s is too long"
  1297. msgstr "La trayeutoria %s ye demasiao llarga"
  1298. #: apt-inst/extract.cc:124
  1299. #, c-format
  1300. msgid "Unpacking %s more than once"
  1301. msgstr "Desempaquetando %s más d'una vegada"
  1302. #: apt-inst/extract.cc:134
  1303. #, c-format
  1304. msgid "The directory %s is diverted"
  1305. msgstr "El direutorio %s ta desviáu"
  1306. #: apt-inst/extract.cc:144
  1307. #, c-format
  1308. msgid "The package is trying to write to the diversion target %s/%s"
  1309. msgstr "El paquete ta tentando escribir nel oxetivu desviáu %s/%s"
  1310. #: apt-inst/extract.cc:154 apt-inst/extract.cc:297
  1311. msgid "The diversion path is too long"
  1312. msgstr "La trayeutoria de desviación ye demasiao llarga"
  1313. #: apt-inst/extract.cc:240
  1314. #, c-format
  1315. msgid "The directory %s is being replaced by a non-directory"
  1316. msgstr "El direutoriu %s ta reemplazándose por un non-direutoriu"
  1317. #: apt-inst/extract.cc:280
  1318. msgid "Failed to locate node in its hash bucket"
  1319. msgstr "Fallu al atopar el nodu nel so bote d'enllaz"
  1320. #: apt-inst/extract.cc:284
  1321. msgid "The path is too long"
  1322. msgstr "La trayeutoria ye perllarga"
  1323. #: apt-inst/extract.cc:414
  1324. #, c-format
  1325. msgid "Overwrite package match with no version for %s"
  1326. msgstr "Sobreescribiendo concordancia del paquete ensin versión pa %s"
  1327. #: apt-inst/extract.cc:431
  1328. #, c-format
  1329. msgid "File %s/%s overwrites the one in the package %s"
  1330. msgstr "El ficheru %s/%s sobreescribe al que ta nel paquete %s"
  1331. #. Only warn if there are no sources.list.d.
  1332. #. Only warn if there is no sources.list file.
  1333. #: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843
  1334. #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166
  1335. #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419
  1336. #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33
  1337. #: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287
  1338. #, c-format
  1339. msgid "Unable to read %s"
  1340. msgstr "Nun ye a lleer %s"
  1341. #: apt-inst/extract.cc:491
  1342. #, c-format
  1343. msgid "Unable to stat %s"
  1344. msgstr "Nun ye a lleer %s"
  1345. #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
  1346. #, c-format
  1347. msgid "Failed to remove %s"
  1348. msgstr "Nun ye a desaniciar %s"
  1349. #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
  1350. #, c-format
  1351. msgid "Unable to create %s"
  1352. msgstr "Nun ye a crear %s"
  1353. #: apt-inst/deb/dpkgdb.cc:114
  1354. #, c-format
  1355. msgid "Failed to stat %sinfo"
  1356. msgstr "Nun ye a lleer %s"
  1357. #: apt-inst/deb/dpkgdb.cc:119
  1358. msgid "The info and temp directories need to be on the same filesystem"
  1359. msgstr ""
  1360. "Los direutorios info y temp tienen de tar nel mesmu sistema de ficheros"
  1361. #. Build the status cache
  1362. #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763
  1363. #: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837
  1364. #: apt-pkg/pkgcachegen.cc:961
  1365. msgid "Reading package lists"
  1366. msgstr "Lleendo llista de paquetes"
  1367. #: apt-inst/deb/dpkgdb.cc:176
  1368. #, c-format
  1369. msgid "Failed to change to the admin dir %sinfo"
  1370. msgstr "Fallu al camudar al direutoriu d'alministración %sinfo"
  1371. #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
  1372. #: apt-inst/deb/dpkgdb.cc:444
  1373. msgid "Internal error getting a package name"
  1374. msgstr "Fallu internu al obtener un Nome de Paquete"
  1375. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
  1376. msgid "Reading file listing"
  1377. msgstr "Lleendo llistáu de ficheros"
  1378. #: apt-inst/deb/dpkgdb.cc:212
  1379. #, c-format
  1380. msgid ""
  1381. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1382. "then make it empty and immediately re-install the same version of the "
  1383. "package!"
  1384. msgstr ""
  1385. "Nun pude abrir el ficheru de llista '%sinfo/%s'. ¡Si nun yes a restablecer "
  1386. "esti ficheru entós crea ún baleru y darréu reinstala la mesma versión del "
  1387. "paquete!"
  1388. #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
  1389. #, c-format
  1390. msgid "Failed reading the list file %sinfo/%s"
  1391. msgstr "Fallu al lleer el ficheru de llista %sinfo/%s"
  1392. #: apt-inst/deb/dpkgdb.cc:262
  1393. msgid "Internal error getting a node"
  1394. msgstr "Fallu internu al obtener un nodu"
  1395. #: apt-inst/deb/dpkgdb.cc:305
  1396. #, c-format
  1397. msgid "Failed to open the diversions file %sdiversions"
  1398. msgstr "Fallu al abrir el ficheru de desviación %sdiversions"
  1399. #: apt-inst/deb/dpkgdb.cc:320
  1400. msgid "The diversion file is corrupted"
  1401. msgstr "El ficheru de desviación ta tollíu"
  1402. #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
  1403. #: apt-inst/deb/dpkgdb.cc:337
  1404. #, c-format
  1405. msgid "Invalid line in the diversion file: %s"
  1406. msgstr "Llinia inválida nel ficheru de desviación: %s"
  1407. #: apt-inst/deb/dpkgdb.cc:358
  1408. msgid "Internal error adding a diversion"
  1409. msgstr "Fallu internu al amestar una desviación"
  1410. #: apt-inst/deb/dpkgdb.cc:379
  1411. msgid "The pkg cache must be initialized first"
  1412. msgstr "El caché del paquete tien d'entamase primero"
  1413. #: apt-inst/deb/dpkgdb.cc:439
  1414. #, c-format
  1415. msgid "Failed to find a Package: header, offset %lu"
  1416. msgstr "Fallu al atopar un paquete: Testera, desplazamientu %lu"
  1417. #: apt-inst/deb/dpkgdb.cc:461
  1418. #, c-format
  1419. msgid "Bad ConfFile section in the status file. Offset %lu"
  1420. msgstr "Estaya mala del ConfFile nel ficheru d'estñau. Desplazamientu %lu"
  1421. #: apt-inst/deb/dpkgdb.cc:466
  1422. #, c-format
  1423. msgid "Error parsing MD5. Offset %lu"
  1424. msgstr "Fallu al lleer Md5. Desplazamientu %lu"
  1425. #: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
  1426. #, c-format
  1427. msgid "This is not a valid DEB archive, missing '%s' member"
  1428. msgstr "Esti nun ye un ficheru DEB válidu, falta'l miembru '%s'"
  1429. #: apt-inst/deb/debfile.cc:50
  1430. #, c-format
  1431. msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  1432. msgstr "Esti nun ye un ficheru DEB válidu, falta'l miembru '%s', '%s' o '%s'"
  1433. #: apt-inst/deb/debfile.cc:110
  1434. #, c-format
  1435. msgid "Couldn't change to %s"
  1436. msgstr "Nun fui a camudar a %s"
  1437. #: apt-inst/deb/debfile.cc:140
  1438. msgid "Internal error, could not locate member"
  1439. msgstr "Fallu internu, nun fui a atopar el miembru"
  1440. #: apt-inst/deb/debfile.cc:173
  1441. msgid "Failed to locate a valid control file"
  1442. msgstr "Nun fui a atopar un ficheru de control válidu"
  1443. #: apt-inst/deb/debfile.cc:258
  1444. msgid "Unparsable control file"
  1445. msgstr "Ficheru de control inanalizable"
  1446. #: methods/cdrom.cc:200
  1447. #, c-format
  1448. msgid "Unable to read the cdrom database %s"
  1449. msgstr "Nun se pudo lleer la base datos %s del CD-ROM"
  1450. #: methods/cdrom.cc:209
  1451. msgid ""
  1452. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1453. "cannot be used to add new CD-ROMs"
  1454. msgstr ""
  1455. "Por favor usa apt-cdrom pa facer qu'APT reconoza esti CD. apt-get update nun "
  1456. "se puede usar p'amestar CDs nuevos"
  1457. #: methods/cdrom.cc:219
  1458. msgid "Wrong CD-ROM"
  1459. msgstr "CD-ROM malu"
  1460. #: methods/cdrom.cc:245
  1461. #, c-format
  1462. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1463. msgstr "Nun se pudo desmontar el CD-ROM de %s; puede que se tea usando entá."
  1464. #: methods/cdrom.cc:250
  1465. msgid "Disk not found."
  1466. msgstr "Nun s'atopa'l discu."
  1467. #: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264
  1468. msgid "File not found"
  1469. msgstr "Nun s'atopa'l ficheru."
  1470. #: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
  1471. #: methods/rred.cc:483 methods/rred.cc:492
  1472. msgid "Failed to stat"
  1473. msgstr "Falló al lleer"
  1474. #: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:489
  1475. msgid "Failed to set modification time"
  1476. msgstr "Nun se pudo afitar la hora de modificación"
  1477. #: methods/file.cc:44
  1478. msgid "Invalid URI, local URIS must not start with //"
  1479. msgstr "URI malu, los URIS llocales nun pueden entamar por //"
  1480. #. Login must be before getpeername otherwise dante won't work.
  1481. #: methods/ftp.cc:167
  1482. msgid "Logging in"
  1483. msgstr "Entrando"
  1484. #: methods/ftp.cc:173
  1485. msgid "Unable to determine the peer name"
  1486. msgstr "Nun se pudo determinar el nome del par"
  1487. #: methods/ftp.cc:178
  1488. msgid "Unable to determine the local name"
  1489. msgstr "Nun se pudo determinar el nome llocal"
  1490. #: methods/ftp.cc:209 methods/ftp.cc:237
  1491. #, c-format
  1492. msgid "The server refused the connection and said: %s"
  1493. msgstr "El sirvidor refugó la conexón, y dixo: %s"
  1494. #: methods/ftp.cc:215
  1495. #, c-format
  1496. msgid "USER failed, server said: %s"
  1497. msgstr "L'usuariu (USER) falló; el sirvidor dixo: %s"
  1498. #: methods/ftp.cc:222
  1499. #, c-format
  1500. msgid "PASS failed, server said: %s"
  1501. msgstr "La contraseña (PASS) falló; el sirvidor dixo: %s"
  1502. #: methods/ftp.cc:242
  1503. msgid ""
  1504. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1505. "is empty."
  1506. msgstr ""
  1507. "Especificóse un sirvidor proxy pero non un script d'entrada, Acquire::ftp::"
  1508. "ProxyLogin ta baleru."
  1509. #: methods/ftp.cc:270
  1510. #, c-format
  1511. msgid "Login script command '%s' failed, server said: %s"
  1512. msgstr "Falló la orde '%s' del guión d'entrada; el sirvidor dixo: %s"
  1513. #: methods/ftp.cc:296
  1514. #, c-format
  1515. msgid "TYPE failed, server said: %s"
  1516. msgstr "La triba (TYPE) falló; el sirvidor dixo: %s"
  1517. #: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226
  1518. msgid "Connection timeout"
  1519. msgstr "Gandió'l tiempu de conexón"
  1520. #: methods/ftp.cc:340
  1521. msgid "Server closed the connection"
  1522. msgstr "El sirvidor zarró la conexón"
  1523. #: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190
  1524. msgid "Read error"
  1525. msgstr "Fallu de llectura"
  1526. #: methods/ftp.cc:350 methods/rsh.cc:197
  1527. msgid "A response overflowed the buffer."
  1528. msgstr "Una rempuesta revirtió'l buffer."
  1529. #: methods/ftp.cc:367 methods/ftp.cc:379
  1530. msgid "Protocol corruption"
  1531. msgstr "Corrupción del protocolu"
  1532. #: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232
  1533. msgid "Write error"
  1534. msgstr "Fallu d'escritura"
  1535. #: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734
  1536. msgid "Could not create a socket"
  1537. msgstr "Nun se pudo crear un socket"
  1538. #: methods/ftp.cc:703
  1539. msgid "Could not connect data socket, connection timed out"
  1540. msgstr "Nun se pudo coneutar el zócalu de datos; gandió'l tiempu de conexón"
  1541. #: methods/ftp.cc:709
  1542. msgid "Could not connect passive socket."
  1543. msgstr "Nun se pudo coneutar un socket pasivu."
  1544. #: methods/ftp.cc:727
  1545. msgid "getaddrinfo was unable to get a listening socket"
  1546. msgstr "getaddrinfo nun pudo obtener un zócalu oyente"
  1547. #: methods/ftp.cc:741
  1548. msgid "Could not bind a socket"
  1549. msgstr "Nun se pudo enllazar con un socket"
  1550. #: methods/ftp.cc:745
  1551. msgid "Could not listen on the socket"
  1552. msgstr "Nun se pudo escuchar nel socket"
  1553. #: methods/ftp.cc:752
  1554. msgid "Could not determine the socket's name"
  1555. msgstr "Nun se pudo determinar el nome del socket"
  1556. #: methods/ftp.cc:784
  1557. msgid "Unable to send PORT command"
  1558. msgstr "Nun se pudo mandar la orde PORT"
  1559. #: methods/ftp.cc:794
  1560. #, c-format
  1561. msgid "Unknown address family %u (AF_*)"
  1562. msgstr "Direición de familia %u desconocida (AF_*)"
  1563. #: methods/ftp.cc:803
  1564. #, c-format
  1565. msgid "EPRT failed, server said: %s"
  1566. msgstr "EPRT falló; el sirvidor dixo: %s"
  1567. #: methods/ftp.cc:823
  1568. msgid "Data socket connect timed out"
  1569. msgstr "Gandió'l tiempu de conexón col zócalu de datos"
  1570. #: methods/ftp.cc:830
  1571. msgid "Unable to accept connection"
  1572. msgstr "Nun se pudo aceptar la conexón"
  1573. #: methods/ftp.cc:869 methods/http.cc:997 methods/rsh.cc:303
  1574. msgid "Problem hashing file"
  1575. msgstr "Hebo un problema al xenerar el hash del ficheru"
  1576. #: methods/ftp.cc:882
  1577. #, c-format
  1578. msgid "Unable to fetch file, server said '%s'"
  1579. msgstr "Nun se pudo descargar el ficheru; el sirvidor dixo '%s'"
  1580. #: methods/ftp.cc:897 methods/rsh.cc:322
  1581. msgid "Data socket timed out"
  1582. msgstr "Gandió'l tiempu del zócalu de datos"
  1583. #: methods/ftp.cc:927
  1584. #, c-format
  1585. msgid "Data transfer failed, server said '%s'"
  1586. msgstr "Falló la tresferencia de datos; el sirvidor dixo '%s'"
  1587. #. Get the files information
  1588. #: methods/ftp.cc:1002
  1589. msgid "Query"
  1590. msgstr "Consulta"
  1591. #: methods/ftp.cc:1114
  1592. msgid "Unable to invoke "
  1593. msgstr "Nun se pudo invocar "
  1594. #: methods/connect.cc:70
  1595. #, c-format
  1596. msgid "Connecting to %s (%s)"
  1597. msgstr "Coneutando a %s (%s)"
  1598. #: methods/connect.cc:81
  1599. #, c-format
  1600. msgid "[IP: %s %s]"
  1601. msgstr "[IP: %s %s]"
  1602. #: methods/connect.cc:90
  1603. #, c-format
  1604. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1605. msgstr "Nun se pudo crear un socket pa %s (f=%u t=%u p=%u)"
  1606. #: methods/connect.cc:96
  1607. #, c-format
  1608. msgid "Cannot initiate the connection to %s:%s (%s)."
  1609. msgstr "Nun se pudo coneutar a %s:%s (%s)."
  1610. #: methods/connect.cc:104
  1611. #, c-format
  1612. msgid "Could not connect to %s:%s (%s), connection timed out"
  1613. msgstr "Nun se pudo coneutar a %s:%s (%s); expiró'l tiempu de conexón"
  1614. #: methods/connect.cc:119
  1615. #, c-format
  1616. msgid "Could not connect to %s:%s (%s)."
  1617. msgstr "Nun se pudo coneutar a %s:%s (%s)."
  1618. #. We say this mainly because the pause here is for the
  1619. #. ssh connection that is still going
  1620. #: methods/connect.cc:147 methods/rsh.cc:425
  1621. #, c-format
  1622. msgid "Connecting to %s"
  1623. msgstr "Coneutando a %s"
  1624. #: methods/connect.cc:165 methods/connect.cc:184
  1625. #, c-format
  1626. msgid "Could not resolve '%s'"
  1627. msgstr "Nun se pudo resolver '%s'"
  1628. #: methods/connect.cc:190
  1629. #, c-format
  1630. msgid "Temporary failure resolving '%s'"
  1631. msgstr "Fallu temporal al resolver '%s'"
  1632. #: methods/connect.cc:193
  1633. #, fuzzy, c-format
  1634. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  1635. msgstr "Daqué raru pasó resolviendo '%s:%s' (%i)"
  1636. #: methods/connect.cc:240
  1637. #, fuzzy, c-format
  1638. msgid "Unable to connect to %s:%s:"
  1639. msgstr "Nun se pudo coneutar a %s %s:"
  1640. #: methods/gpgv.cc:71
  1641. #, c-format
  1642. msgid "Couldn't access keyring: '%s'"
  1643. msgstr "Nun se pudo acceder al aniellu de claves '%s'"
  1644. #: methods/gpgv.cc:107
  1645. msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  1646. msgstr ""
  1647. "E: Llista d'argumentos d'Acquire::gpgv::Options demasiao llarga. Colando."
  1648. #: methods/gpgv.cc:223
  1649. msgid ""
  1650. "Internal error: Good signature, but could not determine key fingerprint?!"
  1651. msgstr ""
  1652. "Fallu internu: Robla bona, pero nun se pudo determinar la so güella dixital?!"
  1653. #: methods/gpgv.cc:228
  1654. msgid "At least one invalid signature was encountered."
  1655. msgstr "Atopóse polo menos una robla mala."
  1656. #: methods/gpgv.cc:232
  1657. #, c-format
  1658. msgid "Could not execute '%s' to verify signature (is gpgv installed?)"
  1659. msgstr "Nun se pudo executar '%s' pa verificar la robla (¿ta instaláu gpgv?)"
  1660. #: methods/gpgv.cc:237
  1661. msgid "Unknown error executing gpgv"
  1662. msgstr "Fallu desconocíu al executar gpgv"
  1663. #: methods/gpgv.cc:271 methods/gpgv.cc:278
  1664. msgid "The following signatures were invalid:\n"
  1665. msgstr "Les siguientes robles nun valieron:\n"
  1666. #: methods/gpgv.cc:285
  1667. msgid ""
  1668. "The following signatures couldn't be verified because the public key is not "
  1669. "available:\n"
  1670. msgstr ""
  1671. "Les robles siguiente nun se pudieron verificar porque la to llave pública "
  1672. "nun ta a mano:\n"
  1673. #: methods/gzip.cc:64
  1674. #, c-format
  1675. msgid "Couldn't open pipe for %s"
  1676. msgstr "Nun se pudo abrir una tubería pa %s"
  1677. #: methods/gzip.cc:109
  1678. #, c-format
  1679. msgid "Read error from %s process"
  1680. msgstr "Fallu de llectura dende'l procesu %s"
  1681. #: methods/http.cc:384
  1682. msgid "Waiting for headers"
  1683. msgstr "Esperando les testeres"
  1684. #: methods/http.cc:530
  1685. #, c-format
  1686. msgid "Got a single header line over %u chars"
  1687. msgstr "Obtúvose una sola llinia de testera penriba de %u carauteres"
  1688. #: methods/http.cc:538
  1689. msgid "Bad header line"
  1690. msgstr "Fallu na llinia testera"
  1691. #: methods/http.cc:557 methods/http.cc:564
  1692. msgid "The HTTP server sent an invalid reply header"
  1693. msgstr "El sirvidor HTTP mandó una testera incorreuta de rempuesta"
  1694. #: methods/http.cc:593
  1695. msgid "The HTTP server sent an invalid Content-Length header"
  1696. msgstr "El sirvidor HTTP mandó una testera incorreuta de Content-Length"
  1697. #: methods/http.cc:608
  1698. msgid "The HTTP server sent an invalid Content-Range header"
  1699. msgstr "El sirvidor HTTP mandó una testera incorreuta de Content-Range"
  1700. #: methods/http.cc:610
  1701. msgid "This HTTP server has broken range support"
  1702. msgstr "Esti sirvidor HTTP tien rotu'l soporte d'alcance"
  1703. #: methods/http.cc:634
  1704. msgid "Unknown date format"
  1705. msgstr "Formatu de data desconocíu"
  1706. #: methods/http.cc:788
  1707. msgid "Select failed"
  1708. msgstr "Falló la escoyeta"
  1709. #: methods/http.cc:793
  1710. msgid "Connection timed out"
  1711. msgstr "Gandió'l tiempu de conexón"
  1712. #: methods/http.cc:816
  1713. msgid "Error writing to output file"
  1714. msgstr "Fallu al escribir nel ficheru de salida"
  1715. #: methods/http.cc:847
  1716. msgid "Error writing to file"
  1717. msgstr "Fallu al escribir nel ficheru"
  1718. #: methods/http.cc:875
  1719. msgid "Error writing to the file"
  1720. msgstr "Fallu al escribir nel ficheru"
  1721. #: methods/http.cc:889
  1722. msgid "Error reading from server. Remote end closed connection"
  1723. msgstr "Fallu al lleer nel sirvidor. El llau remotu zarró la conexón."
  1724. #: methods/http.cc:891
  1725. msgid "Error reading from server"
  1726. msgstr "Fallu al lleer nel sirvidor"
  1727. #: methods/http.cc:982 apt-pkg/contrib/mmap.cc:233
  1728. msgid "Failed to truncate file"
  1729. msgstr "Falló al francer el ficheru"
  1730. #: methods/http.cc:1147
  1731. msgid "Bad header data"
  1732. msgstr "Datos de testera incorreutos"
  1733. #: methods/http.cc:1164 methods/http.cc:1219
  1734. msgid "Connection failed"
  1735. msgstr "Fallo la conexón"
  1736. #: methods/http.cc:1311
  1737. msgid "Internal error"
  1738. msgstr "Fallu internu"
  1739. #: apt-pkg/contrib/mmap.cc:76
  1740. msgid "Can't mmap an empty file"
  1741. msgstr "Nun se puede facer mmap d'un ficheru baleru"
  1742. #: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:202
  1743. #, c-format
  1744. msgid "Couldn't make mmap of %lu bytes"
  1745. msgstr "Nun se pudo facer mmap de %lu bytes"
  1746. #: apt-pkg/contrib/mmap.cc:252
  1747. #, c-format
  1748. msgid ""
  1749. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. "
  1750. "Current value: %lu. (man 5 apt.conf)"
  1751. msgstr ""
  1752. "Dynamic MMap escosó l'espaciu. Por favor aumenta'l tamañu de APT::Cache-"
  1753. "Limit. El valor actual ye : %lu. (man 5 apt.conf)"
  1754. #: apt-pkg/contrib/mmap.cc:347
  1755. #, c-format
  1756. msgid ""
  1757. "The size of a MMap has already reached the defined limit of %lu bytes,abort "
  1758. "the try to grow the MMap."
  1759. msgstr ""
  1760. #. d means days, h means hours, min means minutes, s means seconds
  1761. #: apt-pkg/contrib/strutl.cc:346
  1762. #, c-format
  1763. msgid "%lid %lih %limin %lis"
  1764. msgstr "%lid %lih %limin %lis"
  1765. #. h means hours, min means minutes, s means seconds
  1766. #: apt-pkg/contrib/strutl.cc:353
  1767. #, c-format
  1768. msgid "%lih %limin %lis"
  1769. msgstr "%lih %limin %lis"
  1770. #. min means minutes, s means seconds
  1771. #: apt-pkg/contrib/strutl.cc:360
  1772. #, c-format
  1773. msgid "%limin %lis"
  1774. msgstr "%limin %lis"
  1775. #. s means seconds
  1776. #: apt-pkg/contrib/strutl.cc:365
  1777. #, c-format
  1778. msgid "%lis"
  1779. msgstr "%lis"
  1780. #: apt-pkg/contrib/strutl.cc:1040
  1781. #, c-format
  1782. msgid "Selection %s not found"
  1783. msgstr "Escoyeta %s que nun s'atopa"
  1784. #: apt-pkg/contrib/configuration.cc:458
  1785. #, c-format
  1786. msgid "Unrecognized type abbreviation: '%c'"
  1787. msgstr "Triba d'abreviatura que nun se reconoz: «%c»"
  1788. #: apt-pkg/contrib/configuration.cc:516
  1789. #, c-format
  1790. msgid "Opening configuration file %s"
  1791. msgstr "Abriendo ficheros de configuración %s"
  1792. #: apt-pkg/contrib/configuration.cc:684
  1793. #, c-format
  1794. msgid "Syntax error %s:%u: Block starts with no name."
  1795. msgstr "Fallu de sintaxis %s:%u: Nun hai un nome al entamu del bloque."
  1796. #: apt-pkg/contrib/configuration.cc:703
  1797. #, c-format
  1798. msgid "Syntax error %s:%u: Malformed tag"
  1799. msgstr "Fallu de sintaxis %s:%u: Marca mal formada"
  1800. #: apt-pkg/contrib/configuration.cc:720
  1801. #, c-format
  1802. msgid "Syntax error %s:%u: Extra junk after value"
  1803. msgstr "Fallu de sintaxis %s:%u: Puxarra extra dempués del valor"
  1804. #: apt-pkg/contrib/configuration.cc:760
  1805. #, c-format
  1806. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1807. msgstr ""
  1808. "Error de sintaxis %s:%u: Les directives pueden facese sólo nel nivel cimeru"
  1809. #: apt-pkg/contrib/configuration.cc:767
  1810. #, c-format
  1811. msgid "Syntax error %s:%u: Too many nested includes"
  1812. msgstr "Fallu de sintaxis %s:%u: Demasiaes inclusiones añeraes"
  1813. #: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776
  1814. #, c-format
  1815. msgid "Syntax error %s:%u: Included from here"
  1816. msgstr "Fallu de sintaxis %s:%u: Incluyendo dende equí"
  1817. #: apt-pkg/contrib/configuration.cc:780
  1818. #, c-format
  1819. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1820. msgstr "Error de sintaxis %s:%u: La directiva '%s' nun ta sofitada"
  1821. #: apt-pkg/contrib/configuration.cc:831
  1822. #, c-format
  1823. msgid "Syntax error %s:%u: Extra junk at end of file"
  1824. msgstr "Fallu de sintaxis %s:%u: Puxarra extra al final del ficheru"
  1825. #: apt-pkg/contrib/progress.cc:153
  1826. #, c-format
  1827. msgid "%c%s... Error!"
  1828. msgstr "%c%s... ¡Fallu!"
  1829. #: apt-pkg/contrib/progress.cc:155
  1830. #, c-format
  1831. msgid "%c%s... Done"
  1832. msgstr "%c%s... Fecho"
  1833. #: apt-pkg/contrib/cmndline.cc:77
  1834. #, c-format
  1835. msgid "Command line option '%c' [from %s] is not known."
  1836. msgstr "La opción de llinia d'ordes '%c' [de %s] ye desconocida."
  1837. #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
  1838. #: apt-pkg/contrib/cmndline.cc:119
  1839. #, c-format
  1840. msgid "Command line option %s is not understood"
  1841. msgstr "Nun s'entiende la opción %s de la llinia d'ordes"
  1842. #: apt-pkg/contrib/cmndline.cc:124
  1843. #, c-format
  1844. msgid "Command line option %s is not boolean"
  1845. msgstr "La opción %s de la llinia d'ordes nun ye un valor booleanu"
  1846. #: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
  1847. #, c-format
  1848. msgid "Option %s requires an argument."
  1849. msgstr "La opción %s necesita un argumentu."
  1850. #: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
  1851. #, c-format
  1852. msgid "Option %s: Configuration item specification must have an =<val>."
  1853. msgstr "Opción %s: L'axuste del elementu de configuración ha tener un =<val>."
  1854. #: apt-pkg/contrib/cmndline.cc:234
  1855. #, c-format
  1856. msgid "Option %s requires an integer argument, not '%s'"
  1857. msgstr "La opción %s pide un argumentu enteru, non '%s'"
  1858. #: apt-pkg/contrib/cmndline.cc:265
  1859. #, c-format
  1860. msgid "Option '%s' is too long"
  1861. msgstr "Opción '%s' demasiao llarga"
  1862. #: apt-pkg/contrib/cmndline.cc:298
  1863. #, c-format
  1864. msgid "Sense %s is not understood, try true or false."
  1865. msgstr "El sentíu %s nun s'entiende, prueba con braeru o falsu."
  1866. #: apt-pkg/contrib/cmndline.cc:348
  1867. #, c-format
  1868. msgid "Invalid operation %s"
  1869. msgstr "Operación incorreuta: %s"
  1870. #: apt-pkg/contrib/cdromutl.cc:52
  1871. #, c-format
  1872. msgid "Unable to stat the mount point %s"
  1873. msgstr "Nun puede algamase información del puntu de montaxe %s"
  1874. #: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187
  1875. #: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39
  1876. #, c-format
  1877. msgid "Unable to change to %s"
  1878. msgstr "Nun se pudo cambiar a %s"
  1879. #: apt-pkg/contrib/cdromutl.cc:195
  1880. msgid "Failed to stat the cdrom"
  1881. msgstr "Nun se pudo montar el CD-ROM"
  1882. #: apt-pkg/contrib/fileutl.cc:149
  1883. #, c-format
  1884. msgid "Not using locking for read only lock file %s"
  1885. msgstr "Nun ta usándose bloquéu pal ficheru de bloquéu de sólo llectura %s"
  1886. #: apt-pkg/contrib/fileutl.cc:154
  1887. #, c-format
  1888. msgid "Could not open lock file %s"
  1889. msgstr "Nun puede abrise'l ficheru de bloquéu %s"
  1890. #: apt-pkg/contrib/fileutl.cc:172
  1891. #, c-format
  1892. msgid "Not using locking for nfs mounted lock file %s"
  1893. msgstr "Nun ta usándose bloquéu pal ficheru de bloquéu %s montáu per nfs"
  1894. #: apt-pkg/contrib/fileutl.cc:176
  1895. #, c-format
  1896. msgid "Could not get lock %s"
  1897. msgstr "Nun se pudo torgar %s"
  1898. #: apt-pkg/contrib/fileutl.cc:444
  1899. #, c-format
  1900. msgid "Waited for %s but it wasn't there"
  1901. msgstr "Esperaba %s pero nun taba ellí"
  1902. #: apt-pkg/contrib/fileutl.cc:456
  1903. #, c-format
  1904. msgid "Sub-process %s received a segmentation fault."
  1905. msgstr "El subprocesu %s recibió un fallu de segmentación."
  1906. #: apt-pkg/contrib/fileutl.cc:458
  1907. #, fuzzy, c-format
  1908. msgid "Sub-process %s received signal %u."
  1909. msgstr "El subprocesu %s recibió un fallu de segmentación."
  1910. #: apt-pkg/contrib/fileutl.cc:462
  1911. #, c-format
  1912. msgid "Sub-process %s returned an error code (%u)"
  1913. msgstr "El subprocesu %s devolvió un códigu d'error (%u)"
  1914. #: apt-pkg/contrib/fileutl.cc:464
  1915. #, c-format
  1916. msgid "Sub-process %s exited unexpectedly"
  1917. msgstr "El subprocesu %s terminó de manera inesperada"
  1918. #: apt-pkg/contrib/fileutl.cc:508
  1919. #, c-format
  1920. msgid "Could not open file %s"
  1921. msgstr "Nun se pudo abrir el ficheru %s"
  1922. #: apt-pkg/contrib/fileutl.cc:564
  1923. #, c-format
  1924. msgid "read, still have %lu to read but none left"
  1925. msgstr "lleíos, entá tenía de lleer %lu pero nun queda nada"
  1926. #: apt-pkg/contrib/fileutl.cc:594
  1927. #, c-format
  1928. msgid "write, still have %lu to write but couldn't"
  1929. msgstr "escritos, entá tenía d'escribir %lu pero nun pudo facerse"
  1930. #: apt-pkg/contrib/fileutl.cc:669
  1931. msgid "Problem closing the file"
  1932. msgstr "Problemes zarrando'l ficheru"
  1933. #: apt-pkg/contrib/fileutl.cc:675
  1934. msgid "Problem unlinking the file"
  1935. msgstr "Hai problemes desvenceyando'l ficheru %s"
  1936. #: apt-pkg/contrib/fileutl.cc:686
  1937. msgid "Problem syncing the file"
  1938. msgstr "Hai problemes al sincronizar el ficheru"
  1939. #: apt-pkg/pkgcache.cc:133
  1940. msgid "Empty package cache"
  1941. msgstr "Caché de paquetes balera."
  1942. #: apt-pkg/pkgcache.cc:139
  1943. msgid "The package cache file is corrupted"
  1944. msgstr "El ficheru de caché de paquetes ta tollíu"
  1945. #: apt-pkg/pkgcache.cc:144
  1946. msgid "The package cache file is an incompatible version"
  1947. msgstr "El ficheru de caché de paquetes ye una versión incompatible"
  1948. #: apt-pkg/pkgcache.cc:149
  1949. #, c-format
  1950. msgid "This APT does not support the versioning system '%s'"
  1951. msgstr "Esti APT nun soporta'l sistema de versiones '%s'"
  1952. #: apt-pkg/pkgcache.cc:154
  1953. msgid "The package cache was built for a different architecture"
  1954. msgstr "La caché de paquetes creóse pa una arquitectura estremada"
  1955. #: apt-pkg/pkgcache.cc:225
  1956. msgid "Depends"
  1957. msgstr "Depende de"
  1958. #: apt-pkg/pkgcache.cc:225
  1959. msgid "PreDepends"
  1960. msgstr "Predepende de"
  1961. #: apt-pkg/pkgcache.cc:225
  1962. msgid "Suggests"
  1963. msgstr "Suxer"
  1964. #: apt-pkg/pkgcache.cc:226
  1965. msgid "Recommends"
  1966. msgstr "Recomienda"
  1967. #: apt-pkg/pkgcache.cc:226
  1968. msgid "Conflicts"
  1969. msgstr "En conflictu con"
  1970. #: apt-pkg/pkgcache.cc:226
  1971. msgid "Replaces"
  1972. msgstr "Sustituye a"
  1973. #: apt-pkg/pkgcache.cc:227
  1974. msgid "Obsoletes"
  1975. msgstr "Fai obsoletu a"
  1976. #: apt-pkg/pkgcache.cc:227
  1977. msgid "Breaks"
  1978. msgstr "Ruempe"
  1979. #: apt-pkg/pkgcache.cc:227
  1980. msgid "Enhances"
  1981. msgstr "Aumenta"
  1982. #: apt-pkg/pkgcache.cc:238
  1983. msgid "important"
  1984. msgstr "importante"
  1985. #: apt-pkg/pkgcache.cc:238
  1986. msgid "required"
  1987. msgstr "requeríu"
  1988. #: apt-pkg/pkgcache.cc:238
  1989. msgid "standard"
  1990. msgstr "estándar"
  1991. #: apt-pkg/pkgcache.cc:239
  1992. msgid "optional"
  1993. msgstr "opcional"
  1994. #: apt-pkg/pkgcache.cc:239
  1995. msgid "extra"
  1996. msgstr "extra"
  1997. #: apt-pkg/depcache.cc:123 apt-pkg/depcache.cc:152
  1998. msgid "Building dependency tree"
  1999. msgstr "Creando árbol de dependencies"
  2000. #: apt-pkg/depcache.cc:124
  2001. msgid "Candidate versions"
  2002. msgstr "Versiones candidates"
  2003. #: apt-pkg/depcache.cc:153
  2004. msgid "Dependency generation"
  2005. msgstr "Xeneración de dependencies"
  2006. #: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197
  2007. msgid "Reading state information"
  2008. msgstr "Lleendo información d'estáu"
  2009. #: apt-pkg/depcache.cc:223
  2010. #, c-format
  2011. msgid "Failed to open StateFile %s"
  2012. msgstr "Nun se pudo abrir el ficheru d'estáu %s"
  2013. #: apt-pkg/depcache.cc:229
  2014. #, c-format
  2015. msgid "Failed to write temporary StateFile %s"
  2016. msgstr "Falló la escritura del ficheru temporal d'estáu %s"
  2017. #: apt-pkg/tagfile.cc:102
  2018. #, c-format
  2019. msgid "Unable to parse package file %s (1)"
  2020. msgstr "Nun se pudo tratar el ficheru de paquetes %s (1)"
  2021. #: apt-pkg/tagfile.cc:189
  2022. #, c-format
  2023. msgid "Unable to parse package file %s (2)"
  2024. msgstr "Nun se pudo tratar el ficheru de paquetes %s (2)"
  2025. #: apt-pkg/sourcelist.cc:90
  2026. #, c-format
  2027. msgid "Malformed line %lu in source list %s (URI)"
  2028. msgstr "Llinia %lu mal formada na llista d'oríxenes %s (URI)"
  2029. #: apt-pkg/sourcelist.cc:92
  2030. #, c-format
  2031. msgid "Malformed line %lu in source list %s (dist)"
  2032. msgstr "Llinia %lu mal formada na llista d'oríxenes %s (dist)"
  2033. #: apt-pkg/sourcelist.cc:95
  2034. #, c-format
  2035. msgid "Malformed line %lu in source list %s (URI parse)"
  2036. msgstr "Llinia %lu mal formada na llista d'oríxenes %s (analís d'URI)"
  2037. #: apt-pkg/sourcelist.cc:101
  2038. #, c-format
  2039. msgid "Malformed line %lu in source list %s (absolute dist)"
  2040. msgstr "Llinia %lu mal formada na llista d'oríxenes %s (dist absoluta)"
  2041. #: apt-pkg/sourcelist.cc:108
  2042. #, c-format
  2043. msgid "Malformed line %lu in source list %s (dist parse)"
  2044. msgstr "Llinia %lu mal formada na llista d'oríxenes %s (analís de dist)"
  2045. #: apt-pkg/sourcelist.cc:206
  2046. #, c-format
  2047. msgid "Opening %s"
  2048. msgstr "Abriendo %s"
  2049. #: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445
  2050. #, c-format
  2051. msgid "Line %u too long in source list %s."
  2052. msgstr "Llinia %u demasiao llarga na llista d'orígenes %s."
  2053. #: apt-pkg/sourcelist.cc:243
  2054. #, c-format
  2055. msgid "Malformed line %u in source list %s (type)"
  2056. msgstr "Llinia %u mal formada na llista d'oríxenes %s (triba)"
  2057. #: apt-pkg/sourcelist.cc:247
  2058. #, c-format
  2059. msgid "Type '%s' is not known on line %u in source list %s"
  2060. msgstr "Triba '%s' desconocida na llinia %u de la llista d'oríxenes %s"
  2061. #: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258
  2062. #, c-format
  2063. msgid "Malformed line %u in source list %s (vendor id)"
  2064. msgstr "Llinia %u mal formada na llista d'oríxenes %s (id del proveedor)"
  2065. #: apt-pkg/packagemanager.cc:321 apt-pkg/packagemanager.cc:576
  2066. #, c-format
  2067. msgid ""
  2068. "Could not perform immediate configuration on '%s'.Please see man 5 apt.conf "
  2069. "under APT::Immediate-Configure for details. (%d)"
  2070. msgstr ""
  2071. #: apt-pkg/packagemanager.cc:437
  2072. #, c-format
  2073. msgid ""
  2074. "This installation run will require temporarily removing the essential "
  2075. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2076. "you really want to do it, activate the APT::Force-LoopBreak option."
  2077. msgstr ""
  2078. "Esta execución d'instalación va requerir desaniciar temporalmente'l paquete "
  2079. "esencial %s por un cote de Conflictos/Pre-Dependencies. Esto normalmente ye "
  2080. "malo, pero si daveres quies facelo, activa la opción APT::Force-LoopBreak."
  2081. #: apt-pkg/packagemanager.cc:475
  2082. #, c-format
  2083. msgid ""
  2084. "Could not perform immediate configuration on already unpacked '%s'.Please "
  2085. "see man 5 apt.conf under APT::Immediate-Configure for details."
  2086. msgstr ""
  2087. #: apt-pkg/pkgrecords.cc:32
  2088. #, c-format
  2089. msgid "Index file type '%s' is not supported"
  2090. msgstr "La triba de ficheru d'indiz '%s' nun ta sofitada"
  2091. #: apt-pkg/algorithms.cc:248
  2092. #, c-format
  2093. msgid ""
  2094. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2095. msgstr ""
  2096. "El paquete %s necesita reinstalase, pero nun s'alcuentra un archivu pa el."
  2097. #: apt-pkg/algorithms.cc:1138
  2098. msgid ""
  2099. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2100. "held packages."
  2101. msgstr ""
  2102. "Error, pkgProblemResolver::Resolve xeneró frañaures, esto puede ser pola mor "
  2103. "de paquetes reteníos."
  2104. #: apt-pkg/algorithms.cc:1140
  2105. msgid "Unable to correct problems, you have held broken packages."
  2106. msgstr "Nun pueden iguase los problemes; tienes paquetes frañaos retenidos."
  2107. #: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417
  2108. msgid ""
  2109. "Some index files failed to download, they have been ignored, or old ones "
  2110. "used instead."
  2111. msgstr ""
  2112. "Dellos ficheros d'indiz nun pudieron descargase; ignoraronse o usaronse los "
  2113. "antiguos nel so llugar."
  2114. #: apt-pkg/acquire.cc:60
  2115. #, c-format
  2116. msgid "Lists directory %spartial is missing."
  2117. msgstr "Falta'l direutoriu de llistes %spartial."
  2118. #: apt-pkg/acquire.cc:64
  2119. #, c-format
  2120. msgid "Archive directory %spartial is missing."
  2121. msgstr "Falt'l direutoriu d'archivos %spartial."
  2122. #. only show the ETA if it makes sense
  2123. #. two days
  2124. #: apt-pkg/acquire.cc:826
  2125. #, c-format
  2126. msgid "Retrieving file %li of %li (%s remaining)"
  2127. msgstr "Descargando ficheru %li de %li (falten %s)"
  2128. #: apt-pkg/acquire.cc:828
  2129. #, c-format
  2130. msgid "Retrieving file %li of %li"
  2131. msgstr "Descargando ficheru %li de %li"
  2132. #: apt-pkg/acquire-worker.cc:110
  2133. #, c-format
  2134. msgid "The method driver %s could not be found."
  2135. msgstr "Nun pudo alncontrase'l controlador de métodu %s."
  2136. #: apt-pkg/acquire-worker.cc:159
  2137. #, c-format
  2138. msgid "Method %s did not start correctly"
  2139. msgstr "El métodu %s nun entamó correchamente"
  2140. #: apt-pkg/acquire-worker.cc:413
  2141. #, c-format
  2142. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  2143. msgstr "Por favor, introduz el discu '%s' nel preséu '%s' y calca Intro."
  2144. #: apt-pkg/init.cc:132
  2145. #, c-format
  2146. msgid "Packaging system '%s' is not supported"
  2147. msgstr "El sistema d'empaquetáu '%s' nun ta sofitáu"
  2148. #: apt-pkg/init.cc:148
  2149. msgid "Unable to determine a suitable packaging system type"
  2150. msgstr "Nun pudo determinase una triba de sistema d'empaquetáu afayadiza"
  2151. #: apt-pkg/clean.cc:56
  2152. #, c-format
  2153. msgid "Unable to stat %s."
  2154. msgstr "Nun pudo lleese %s."
  2155. #: apt-pkg/srcrecords.cc:44
  2156. msgid "You must put some 'source' URIs in your sources.list"
  2157. msgstr "Has de poner delles URIs 'fonte' nel ficheru sources.list"
  2158. #: apt-pkg/cachefile.cc:71
  2159. msgid "The package lists or status file could not be parsed or opened."
  2160. msgstr ""
  2161. "Nun pudieron analizase o abrise les llistes de paquetes o el ficheru d'estáu."
  2162. #: apt-pkg/cachefile.cc:75
  2163. msgid "You may want to run apt-get update to correct these problems"
  2164. msgstr "Has d'executar apt-get update pa iguar estos problemes"
  2165. #: apt-pkg/policy.cc:347
  2166. #, fuzzy, c-format
  2167. msgid "Invalid record in the preferences file %s, no Package header"
  2168. msgstr ""
  2169. "Rexistru inválidu nel ficheru de preferencies, nun hai cabecera Paquete"
  2170. #: apt-pkg/policy.cc:369
  2171. #, c-format
  2172. msgid "Did not understand pin type %s"
  2173. msgstr "Nun s'entiende'l tipu de pin %s"
  2174. #: apt-pkg/policy.cc:377
  2175. msgid "No priority (or zero) specified for pin"
  2176. msgstr "Nun hai prioridá (o ye cero) conseñada pa pin"
  2177. #: apt-pkg/pkgcachegen.cc:74
  2178. msgid "Cache has an incompatible versioning system"
  2179. msgstr "La caché tien un sistema de versiones incompatible"
  2180. #: apt-pkg/pkgcachegen.cc:117
  2181. #, c-format
  2182. msgid "Error occurred while processing %s (NewPackage)"
  2183. msgstr "Hebo un error al procesar %s (NewPackage)"
  2184. #: apt-pkg/pkgcachegen.cc:132
  2185. #, c-format
  2186. msgid "Error occurred while processing %s (UsePackage1)"
  2187. msgstr "Hebo un error al procesar %s (UsePackage1)"
  2188. #: apt-pkg/pkgcachegen.cc:166
  2189. #, c-format
  2190. msgid "Error occurred while processing %s (NewFileDesc1)"
  2191. msgstr "Hebo un error al procesar %s (NewFileDesc1)"
  2192. #: apt-pkg/pkgcachegen.cc:191
  2193. #, c-format
  2194. msgid "Error occurred while processing %s (UsePackage2)"
  2195. msgstr "Hebo un error al procesar %s (UsePackage2)"
  2196. #: apt-pkg/pkgcachegen.cc:195
  2197. #, c-format
  2198. msgid "Error occurred while processing %s (NewFileVer1)"
  2199. msgstr "Hebo un error al procesar %s (NewFileVer1)"
  2200. #: apt-pkg/pkgcachegen.cc:226
  2201. #, c-format
  2202. msgid "Error occurred while processing %s (NewVersion1)"
  2203. msgstr "Hebo un error al procesar %s (NewVersion1)"
  2204. #: apt-pkg/pkgcachegen.cc:230
  2205. #, c-format
  2206. msgid "Error occurred while processing %s (UsePackage3)"
  2207. msgstr "Hebo un error al procesar %s (UsePackage3)"
  2208. #: apt-pkg/pkgcachegen.cc:234
  2209. #, c-format
  2210. msgid "Error occurred while processing %s (NewVersion2)"
  2211. msgstr "Hebo un error al procesar %s (NewVersion2)"
  2212. #: apt-pkg/pkgcachegen.cc:258
  2213. #, c-format
  2214. msgid "Error occurred while processing %s (NewFileDesc2)"
  2215. msgstr "Hebo un error al procesar %s (NewFileDesc2)"
  2216. #: apt-pkg/pkgcachegen.cc:264
  2217. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2218. msgstr ""
  2219. "Coime, perpasaste'l númberu de nomes de paquete qu'esti APT ye a remanar."
  2220. #: apt-pkg/pkgcachegen.cc:267
  2221. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2222. msgstr "Vaya, perpasaste'l númberu de versiones coles que puede esti APT."
  2223. #: apt-pkg/pkgcachegen.cc:270
  2224. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2225. msgstr "Coime, perpasaste'l númberu de descripciones qu'esti APT ye a remanar."
  2226. #: apt-pkg/pkgcachegen.cc:273
  2227. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2228. msgstr "Vaya, perpasaste'l númberu de dependencies coles que puede esti APT."
  2229. #: apt-pkg/pkgcachegen.cc:301
  2230. #, c-format
  2231. msgid "Error occurred while processing %s (FindPkg)"
  2232. msgstr "Hebo un error al procesar %s (FindPkg)"
  2233. #: apt-pkg/pkgcachegen.cc:314
  2234. #, c-format
  2235. msgid "Error occurred while processing %s (CollectFileProvides)"
  2236. msgstr "Hebo un error al procesar %s (CollectFileProvides)"
  2237. #: apt-pkg/pkgcachegen.cc:320
  2238. #, c-format
  2239. msgid "Package %s %s was not found while processing file dependencies"
  2240. msgstr "Al procesar dependencies de ficheros nun s'alcontró el paquete %s %s"
  2241. #: apt-pkg/pkgcachegen.cc:693
  2242. #, c-format
  2243. msgid "Couldn't stat source package list %s"
  2244. msgstr "Nun se puede lleer la llista de paquetes d'oríxenes %s"
  2245. #: apt-pkg/pkgcachegen.cc:778
  2246. msgid "Collecting File Provides"
  2247. msgstr "Recoyendo ficheros qu'apurren"
  2248. #: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914
  2249. msgid "IO Error saving source cache"
  2250. msgstr "Fallu de E/S al grabar caché d'oríxenes"
  2251. #: apt-pkg/acquire-item.cc:128
  2252. #, c-format
  2253. msgid "rename failed, %s (%s -> %s)."
  2254. msgstr "falló'l cambiu de nome, %s (%s -> %s)."
  2255. #: apt-pkg/acquire-item.cc:396
  2256. msgid "MD5Sum mismatch"
  2257. msgstr "La suma MD5 nun concasa"
  2258. #: apt-pkg/acquire-item.cc:657 apt-pkg/acquire-item.cc:1419
  2259. msgid "Hash Sum mismatch"
  2260. msgstr "La suma hash nun concasa"
  2261. #: apt-pkg/acquire-item.cc:1114
  2262. msgid "There is no public key available for the following key IDs:\n"
  2263. msgstr "Nun hai clave pública denguna disponible pa les IDs de clave darréu:\n"
  2264. #: apt-pkg/acquire-item.cc:1224
  2265. #, c-format
  2266. msgid ""
  2267. "I wasn't able to locate a file for the %s package. This might mean you need "
  2268. "to manually fix this package. (due to missing arch)"
  2269. msgstr ""
  2270. "Nun pudo alcontrase un ficheru pal paquete %s. Esto puede significar que "
  2271. "necesites iguar manualmente esti paquete (por faltar una arquitectura)"
  2272. #: apt-pkg/acquire-item.cc:1283
  2273. #, c-format
  2274. msgid ""
  2275. "I wasn't able to locate file for the %s package. This might mean you need to "
  2276. "manually fix this package."
  2277. msgstr ""
  2278. "Nun pudo alcontrase un ficheru pal paquete %s. Esto puede significar que "
  2279. "necesites iguar manualmente esti paquete"
  2280. #: apt-pkg/acquire-item.cc:1324
  2281. #, c-format
  2282. msgid ""
  2283. "The package index files are corrupted. No Filename: field for package %s."
  2284. msgstr ""
  2285. "Los ficheros d'indiz de paquetes tan corrompíos. Nun hai campu Filename: pal "
  2286. "paquete %s."
  2287. #: apt-pkg/acquire-item.cc:1411
  2288. msgid "Size mismatch"
  2289. msgstr "El tamañu nun concasa"
  2290. #: apt-pkg/indexrecords.cc:40
  2291. #, fuzzy, c-format
  2292. msgid "Unable to parse Release file %s"
  2293. msgstr "Nun se pudo tratar el ficheru de paquetes %s (1)"
  2294. #: apt-pkg/indexrecords.cc:47
  2295. #, fuzzy, c-format
  2296. msgid "No sections in Release file %s"
  2297. msgstr "Nota, escoyendo %s nel llugar de %s\n"
  2298. #: apt-pkg/indexrecords.cc:81
  2299. #, c-format
  2300. msgid "No Hash entry in Release file %s"
  2301. msgstr ""
  2302. #: apt-pkg/vendorlist.cc:66
  2303. #, c-format
  2304. msgid "Vendor block %s contains no fingerprint"
  2305. msgstr "El bloque de proveedor %s nun contién una buelga dixital"
  2306. #: apt-pkg/cdrom.cc:525
  2307. #, c-format
  2308. msgid ""
  2309. "Using CD-ROM mount point %s\n"
  2310. "Mounting CD-ROM\n"
  2311. msgstr ""
  2312. "Usando el puntu de montaxe de CD-ROM %s\n"
  2313. "Montando el CD-ROM\n"
  2314. #: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622
  2315. msgid "Identifying.. "
  2316. msgstr "Identificando.. "
  2317. #: apt-pkg/cdrom.cc:559
  2318. #, c-format
  2319. msgid "Stored label: %s\n"
  2320. msgstr "Etiqueta guardada: %s\n"
  2321. #: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836
  2322. msgid "Unmounting CD-ROM...\n"
  2323. msgstr "Desmontando l CD-ROM...\n"
  2324. #: apt-pkg/cdrom.cc:585
  2325. #, c-format
  2326. msgid "Using CD-ROM mount point %s\n"
  2327. msgstr "Usando el puntu de montaxe de CD-ROM %s\n"
  2328. #: apt-pkg/cdrom.cc:603
  2329. msgid "Unmounting CD-ROM\n"
  2330. msgstr "Desmontando'l CD-ROM\n"
  2331. #: apt-pkg/cdrom.cc:607
  2332. msgid "Waiting for disc...\n"
  2333. msgstr "Esperando'l discu...\n"
  2334. #. Mount the new CDROM
  2335. #: apt-pkg/cdrom.cc:615
  2336. msgid "Mounting CD-ROM...\n"
  2337. msgstr "Montando'l CD-ROM...\n"
  2338. #: apt-pkg/cdrom.cc:633
  2339. msgid "Scanning disc for index files..\n"
  2340. msgstr "Buscando nel discu ficheros d'índices...\n"
  2341. #: apt-pkg/cdrom.cc:673
  2342. #, c-format
  2343. msgid ""
  2344. "Found %zu package indexes, %zu source indexes, %zu translation indexes and %"
  2345. "zu signatures\n"
  2346. msgstr ""
  2347. "Atopáu %zu indices de paquete, %zu indices de fonte, %zu indices de torna y %"
  2348. "zu firmes\n"
  2349. #: apt-pkg/cdrom.cc:684
  2350. msgid ""
  2351. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2352. "wrong architecture?"
  2353. msgstr ""
  2354. #: apt-pkg/cdrom.cc:710
  2355. #, c-format
  2356. msgid "Found label '%s'\n"
  2357. msgstr "Atopóse la etiqueta: '%s'\n"
  2358. #: apt-pkg/cdrom.cc:739
  2359. msgid "That is not a valid name, try again.\n"
  2360. msgstr "Esi nun ye un nome válidu; inténtalo otra vuelta.\n"
  2361. #: apt-pkg/cdrom.cc:755
  2362. #, c-format
  2363. msgid ""
  2364. "This disc is called: \n"
  2365. "'%s'\n"
  2366. msgstr ""
  2367. "Esti discu llámase: \n"
  2368. "'%s'\n"
  2369. #: apt-pkg/cdrom.cc:759
  2370. msgid "Copying package lists..."
  2371. msgstr "Copiando les llistes de paquetes..."
  2372. #: apt-pkg/cdrom.cc:785
  2373. msgid "Writing new source list\n"
  2374. msgstr "Escribiendo llista nueva d'oríxenes\n"
  2375. #: apt-pkg/cdrom.cc:794
  2376. msgid "Source list entries for this disc are:\n"
  2377. msgstr "Les entraes de la llista d'oríxenes pa esti discu son:\n"
  2378. #: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835
  2379. #, c-format
  2380. msgid "Wrote %i records.\n"
  2381. msgstr "%i rexistros escritos.\n"
  2382. #: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837
  2383. #, c-format
  2384. msgid "Wrote %i records with %i missing files.\n"
  2385. msgstr "%i rexistros escritos con %i ficheros de menos.\n"
  2386. #: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840
  2387. #, c-format
  2388. msgid "Wrote %i records with %i mismatched files\n"
  2389. msgstr "%i rexistros escritos con %i ficheros mal empareyaos\n"
  2390. #: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843
  2391. #, c-format
  2392. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2393. msgstr ""
  2394. "Escribiéronse %i rexistros con %i ficheros perdíos y %i ficheros que nun "
  2395. "concasen\n"
  2396. #: apt-pkg/deb/dpkgpm.cc:49
  2397. #, c-format
  2398. msgid "Installing %s"
  2399. msgstr "Instalando %s"
  2400. #: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660
  2401. #, c-format
  2402. msgid "Configuring %s"
  2403. msgstr "Configurando %s"
  2404. #: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667
  2405. #, c-format
  2406. msgid "Removing %s"
  2407. msgstr "Desinstalando %s"
  2408. #: apt-pkg/deb/dpkgpm.cc:52
  2409. #, c-format
  2410. msgid "Running post-installation trigger %s"
  2411. msgstr "Executando activador de post-instalación de %s"
  2412. #: apt-pkg/deb/dpkgpm.cc:557
  2413. #, c-format
  2414. msgid "Directory '%s' missing"
  2415. msgstr "Falta'l direutoriu '%s'."
  2416. #: apt-pkg/deb/dpkgpm.cc:653
  2417. #, c-format
  2418. msgid "Preparing %s"
  2419. msgstr "Preparando %s"
  2420. #: apt-pkg/deb/dpkgpm.cc:654
  2421. #, c-format
  2422. msgid "Unpacking %s"
  2423. msgstr "Desempaquetando %s"
  2424. #: apt-pkg/deb/dpkgpm.cc:659
  2425. #, c-format
  2426. msgid "Preparing to configure %s"
  2427. msgstr "Preparándose pa configurar %s"
  2428. #: apt-pkg/deb/dpkgpm.cc:661
  2429. #, c-format
  2430. msgid "Installed %s"
  2431. msgstr "%s instaláu"
  2432. #: apt-pkg/deb/dpkgpm.cc:666
  2433. #, c-format
  2434. msgid "Preparing for removal of %s"
  2435. msgstr "Preparándose pa desinstalar %s"
  2436. #: apt-pkg/deb/dpkgpm.cc:668
  2437. #, c-format
  2438. msgid "Removed %s"
  2439. msgstr "%s desinstaláu"
  2440. #: apt-pkg/deb/dpkgpm.cc:673
  2441. #, c-format
  2442. msgid "Preparing to completely remove %s"
  2443. msgstr "Preparándose pa desinstalar dafechu %s"
  2444. #: apt-pkg/deb/dpkgpm.cc:674
  2445. #, c-format
  2446. msgid "Completely removed %s"
  2447. msgstr "Desinstalóse dafechu %s"
  2448. #: apt-pkg/deb/dpkgpm.cc:878
  2449. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2450. msgstr ""
  2451. "Nun puede escribise nel rexistru, falló openpty() (¿/dev/pts nun ta "
  2452. "montáu?)\n"
  2453. #: apt-pkg/deb/dpkgpm.cc:907
  2454. msgid "Running dpkg"
  2455. msgstr ""
  2456. #: apt-pkg/deb/debsystem.cc:70
  2457. #, c-format
  2458. msgid ""
  2459. "Unable to lock the administration directory (%s), is another process using "
  2460. "it?"
  2461. msgstr ""
  2462. #: apt-pkg/deb/debsystem.cc:73
  2463. #, fuzzy, c-format
  2464. msgid "Unable to lock the administration directory (%s), are you root?"
  2465. msgstr "Nun pudo bloquiase'l direutoriu de llista"
  2466. #: apt-pkg/deb/debsystem.cc:82
  2467. msgid ""
  2468. "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct "
  2469. "the problem. "
  2470. msgstr ""
  2471. #: apt-pkg/deb/debsystem.cc:100
  2472. msgid "Not locked"
  2473. msgstr "Non bloquiáu"
  2474. #: methods/rred.cc:465
  2475. #, c-format
  2476. msgid ""
  2477. "Could not patch %s with mmap and with file operation usage - the patch seems "
  2478. "to be corrupt."
  2479. msgstr ""
  2480. #: methods/rred.cc:470
  2481. #, c-format
  2482. msgid ""
  2483. "Could not patch %s with mmap (but no mmap specific fail) - the patch seems "
  2484. "to be corrupt."
  2485. msgstr ""
  2486. #: methods/rsh.cc:330
  2487. msgid "Connection closed prematurely"
  2488. msgstr "Conexón encaboxada prematuramente"
  2489. #~ msgid "No source package '%s' picking '%s' instead\n"
  2490. #~ msgstr "Nenguna fonte de paquetes'% s' esbillada '% s' ehí\n"
  2491. #~ msgid "Could not patch file"
  2492. #~ msgstr "Nun fui quien a parchiar el ficheru"
  2493. #~ msgid "%4i %s\n"
  2494. #~ msgstr "%4i %s\n"
  2495. #~ msgid "Processing triggers for %s"
  2496. #~ msgstr "Procesando disparadores pa %s"