ast.po 89 KB

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