ca.po 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078
  1. # Catalan translation of APT.
  2. # Copyright © 2002, 2003, 2004, 2005, 2006, 2008, 2009 Software in the Public Interest, Inc.
  3. # Antoni Bella Perez <bella5@teleline.es>, 2002, 2003.
  4. # Matt Bonner <mateubonet@yahoo.com>, 2003.
  5. # Jordi Mallach <jordi@debian.org>, 2004, 2005, 2006, 2008, 2009.
  6. #
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: apt 0.7.22\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2009-08-27 19:43+0200\n"
  12. "PO-Revision-Date: 2009-06-06 02:17+0200\n"
  13. "Last-Translator: Jordi Mallach <jordi@debian.org>\n"
  14. "Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. #: cmdline/apt-cache.cc:141
  19. #, c-format
  20. msgid "Package %s version %s has an unmet dep:\n"
  21. msgstr "El paquet %s versió %s té una dependència sense satisfer:\n"
  22. #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644
  23. #: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021
  24. #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575
  25. #, c-format
  26. msgid "Unable to locate package %s"
  27. msgstr "No s'ha trobat el paquet %s"
  28. #: cmdline/apt-cache.cc:245
  29. msgid "Total package names: "
  30. msgstr "Nombre total de paquets: "
  31. #: cmdline/apt-cache.cc:285
  32. msgid " Normal packages: "
  33. msgstr " Paquets normals: "
  34. #: cmdline/apt-cache.cc:286
  35. msgid " Pure virtual packages: "
  36. msgstr " Paquets virtuals purs: "
  37. #: cmdline/apt-cache.cc:287
  38. msgid " Single virtual packages: "
  39. msgstr " Paquets virtuals únics: "
  40. #: cmdline/apt-cache.cc:288
  41. msgid " Mixed virtual packages: "
  42. msgstr " Paquets virtuals mixtes: "
  43. #: cmdline/apt-cache.cc:289
  44. msgid " Missing: "
  45. msgstr " Falten: "
  46. #: cmdline/apt-cache.cc:291
  47. msgid "Total distinct versions: "
  48. msgstr "Total de versions diferents: "
  49. #: cmdline/apt-cache.cc:293
  50. msgid "Total distinct descriptions: "
  51. msgstr "Total de descripcions diferents: "
  52. #: cmdline/apt-cache.cc:295
  53. msgid "Total dependencies: "
  54. msgstr "Total de dependències: "
  55. #: cmdline/apt-cache.cc:298
  56. msgid "Total ver/file relations: "
  57. msgstr "Total de relacions versió/fitxer: "
  58. #: cmdline/apt-cache.cc:300
  59. msgid "Total Desc/File relations: "
  60. msgstr "Total de relacions descripció/fitxer: "
  61. #: cmdline/apt-cache.cc:302
  62. msgid "Total Provides mappings: "
  63. msgstr "Total dels mapes aportats: "
  64. #: cmdline/apt-cache.cc:314
  65. msgid "Total globbed strings: "
  66. msgstr "Total de cadenes globals: "
  67. #: cmdline/apt-cache.cc:328
  68. msgid "Total dependency version space: "
  69. msgstr "Total de l'espai per a dependències de versió: "
  70. #: cmdline/apt-cache.cc:333
  71. msgid "Total slack space: "
  72. msgstr "Total de l'espai desperdiciat: "
  73. #: cmdline/apt-cache.cc:341
  74. msgid "Total space accounted for: "
  75. msgstr "Total de l'espai atribuït a: "
  76. #: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221
  77. #, c-format
  78. msgid "Package file %s is out of sync."
  79. msgstr "El fitxer %s del paquet està desincronitzat."
  80. #: cmdline/apt-cache.cc:1297
  81. msgid "You must give exactly one pattern"
  82. msgstr "Heu de donar exactament un patró"
  83. #: cmdline/apt-cache.cc:1451
  84. msgid "No packages found"
  85. msgstr "No s'han trobat paquets"
  86. #: cmdline/apt-cache.cc:1528
  87. msgid "Package files:"
  88. msgstr "Fitxers de paquets:"
  89. #: cmdline/apt-cache.cc:1535 cmdline/apt-cache.cc:1622
  90. msgid "Cache is out of sync, can't x-ref a package file"
  91. msgstr ""
  92. "Memòria cau no sincronitzada, no es pot fer x-ref a un fitxer del paquet"
  93. #. Show any packages have explicit pins
  94. #: cmdline/apt-cache.cc:1549
  95. msgid "Pinned packages:"
  96. msgstr "Paquets etiquetats:"
  97. #: cmdline/apt-cache.cc:1561 cmdline/apt-cache.cc:1602
  98. msgid "(not found)"
  99. msgstr "(no trobat)"
  100. #. Installed version
  101. #: cmdline/apt-cache.cc:1582
  102. msgid " Installed: "
  103. msgstr " Instal·lat: "
  104. #: cmdline/apt-cache.cc:1584 cmdline/apt-cache.cc:1592
  105. msgid "(none)"
  106. msgstr "(cap)"
  107. #. Candidate Version
  108. #: cmdline/apt-cache.cc:1589
  109. msgid " Candidate: "
  110. msgstr " Candidat: "
  111. #: cmdline/apt-cache.cc:1599
  112. msgid " Package pin: "
  113. msgstr " Etiqueta del paquet: "
  114. #. Show the priority tables
  115. #: cmdline/apt-cache.cc:1608
  116. msgid " Version table:"
  117. msgstr " Taula de versió:"
  118. #: cmdline/apt-cache.cc:1623
  119. #, c-format
  120. msgid " %4i %s\n"
  121. msgstr " %4i %s\n"
  122. #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70
  123. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
  124. #: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144
  125. #, c-format
  126. msgid "%s %s for %s compiled on %s %s\n"
  127. msgstr "%s %s per a %s compilat el %s %s\n"
  128. #: cmdline/apt-cache.cc:1725
  129. msgid ""
  130. "Usage: apt-cache [options] command\n"
  131. " apt-cache [options] add file1 [file2 ...]\n"
  132. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  133. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  134. "\n"
  135. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  136. "cache files, and query information from them\n"
  137. "\n"
  138. "Commands:\n"
  139. " add - Add a package file to the source cache\n"
  140. " gencaches - Build both the package and source cache\n"
  141. " showpkg - Show some general information for a single package\n"
  142. " showsrc - Show source records\n"
  143. " stats - Show some basic statistics\n"
  144. " dump - Show the entire file in a terse form\n"
  145. " dumpavail - Print an available file to stdout\n"
  146. " unmet - Show unmet dependencies\n"
  147. " search - Search the package list for a regex pattern\n"
  148. " show - Show a readable record for the package\n"
  149. " depends - Show raw dependency information for a package\n"
  150. " rdepends - Show reverse dependency information for a package\n"
  151. " pkgnames - List the names of all packages in the system\n"
  152. " dotty - Generate package graphs for GraphViz\n"
  153. " xvcg - Generate package graphs for xvcg\n"
  154. " policy - Show policy settings\n"
  155. "\n"
  156. "Options:\n"
  157. " -h This help text.\n"
  158. " -p=? The package cache.\n"
  159. " -s=? The source cache.\n"
  160. " -q Disable progress indicator.\n"
  161. " -i Show only important deps for the unmet command.\n"
  162. " -c=? Read this configuration file\n"
  163. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  164. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  165. msgstr ""
  166. "Forma d'ús: apt-cache [opcions] ordre\n"
  167. " apt-cache [opcions] add fitxer1 [fitxer2 ...]\n"
  168. " apt-cache [opcions] showpkg paquet1 [paquet2 ...]\n"
  169. " apt-cache [opcions] showsrc paquet1 [paquet2 ...]\n"
  170. "\n"
  171. "apt-cache és una eina usada per a manipular fitxers binaris en\n"
  172. "el cau d'APT, i així poder consultar-ne la informació\n"
  173. "\n"
  174. "Ordres:\n"
  175. " add - Afegeix un fitxer de paquet a la memòria cau de les fonts\n"
  176. " gencaches - Crea la memòria cau de tots dos, paquet i font\n"
  177. " showpkg - Mostra alguna informació general d'un sol paquet\n"
  178. " showsrc - Mostra un registre de les fonts\n"
  179. " stats - Mostra algunes estadístiques bàsiques\n"
  180. " dump - Mostra el fitxer sencer en un format concís\n"
  181. " dumpavail - Genera un registre llegible a stdout\n"
  182. " unmet - Mostra dependències sense satisfer\n"
  183. " search - Cerca en la llista de paquets per un patró d'expressió regular\n"
  184. " show - Mostra un registre llegible pel paquet\n"
  185. " depends - Mostra informació de dependències (en cru) d'un paquet\n"
  186. " rdepends - Mostra informació de dependències enrere d'un paquet\n"
  187. " pkgnames - Llista els noms de tots els paquets del sistema\n"
  188. " dotty - Genera gràfiques del paquet per a GraphViz\n"
  189. " xvcg - Genera gràfiques del paquet per a xvcg\n"
  190. " policy - Mostra la configuració de política\n"
  191. "\n"
  192. "Opcions:\n"
  193. " -h Aquest text d'ajuda.\n"
  194. " -p=? La memòria cau de paquets.\n"
  195. " -s=? La memòria cau de la font.\n"
  196. " -q Inhabilita l'indicatiu de progres.\n"
  197. " -i Només mostra dependències importants d'una ordre inadequada.\n"
  198. " -c=? Llegeix aquest fitxer de configuració\n"
  199. " -o=? Estableix una opció de conf arbitrària, p.ex. -o dir::cache=/tmp\n"
  200. "Consulteu les pàgines del manual apt-cache(8) i apt.conf(5) per a més "
  201. "informació.\n"
  202. #: cmdline/apt-cdrom.cc:77
  203. msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
  204. msgstr "Doneu un nom per a aquest disc, com per exemple «Debian 2.1r1 Disc 1»"
  205. #: cmdline/apt-cdrom.cc:92
  206. msgid "Please insert a Disc in the drive and press enter"
  207. msgstr "Inseriu un disc en la unitat i premeu Intro"
  208. #: cmdline/apt-cdrom.cc:114
  209. msgid "Repeat this process for the rest of the CDs in your set."
  210. msgstr "Repetiu aquest procés per a la resta de CD del vostre joc."
  211. #: cmdline/apt-config.cc:41
  212. msgid "Arguments not in pairs"
  213. msgstr "Els arguments no són en parells"
  214. #: cmdline/apt-config.cc:76
  215. msgid ""
  216. "Usage: apt-config [options] command\n"
  217. "\n"
  218. "apt-config is a simple tool to read the APT config file\n"
  219. "\n"
  220. "Commands:\n"
  221. " shell - Shell mode\n"
  222. " dump - Show the configuration\n"
  223. "\n"
  224. "Options:\n"
  225. " -h This help text.\n"
  226. " -c=? Read this configuration file\n"
  227. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  228. msgstr ""
  229. "Forma d'ús: apt-config [opcions] ordre\n"
  230. "\n"
  231. "apt-config és una simple eina per a llegir el fitxer de configuració d'APT\n"
  232. "\n"
  233. "Ordres:\n"
  234. " shell - Mode shell\n"
  235. " dump - Mostra la configuració\n"
  236. "\n"
  237. "Opcions:\n"
  238. " -h Aquest text d'ajuda.\n"
  239. " -c=? Llegeix aquest fitxer de configuració\n"
  240. " -o=? Estableix una opció de conf arbitrària, p.ex. -o dir::cache=/tmp\n"
  241. #: cmdline/apt-extracttemplates.cc:98
  242. #, c-format
  243. msgid "%s not a valid DEB package."
  244. msgstr "%s no és un paquet DEB vàlid."
  245. #: cmdline/apt-extracttemplates.cc:232
  246. msgid ""
  247. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  248. "\n"
  249. "apt-extracttemplates is a tool to extract config and template info\n"
  250. "from debian packages\n"
  251. "\n"
  252. "Options:\n"
  253. " -h This help text\n"
  254. " -t Set the temp dir\n"
  255. " -c=? Read this configuration file\n"
  256. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  257. msgstr ""
  258. "Forma d'ús: apt-extracttemplates fitxer1 [fitxer2 ...]\n"
  259. "\n"
  260. "apt-extracttemplates és una eina per a extreure informació de\n"
  261. "configuració i plantilles dels paquets debian\n"
  262. "\n"
  263. "Opcions:\n"
  264. " -h Aquest text d'ajuda.\n"
  265. " -t Estableix el directori temporal\n"
  266. " -c=? Llegeix aquest fitxer de configuració\n"
  267. " -o=? Estableix una opció de conf arbitrària, p.e. -o dir::cache=/tmp\n"
  268. #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830
  269. #, c-format
  270. msgid "Unable to write to %s"
  271. msgstr "No es pot escriure en %s"
  272. #: cmdline/apt-extracttemplates.cc:310
  273. msgid "Cannot get debconf version. Is debconf installed?"
  274. msgstr "No es pot determinar la versió de debconf. Està instal·lat debconf?"
  275. #: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
  276. msgid "Package extension list is too long"
  277. msgstr "La llista de les extensions dels paquets és massa llarga"
  278. #: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
  279. #: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
  280. #: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
  281. #, c-format
  282. msgid "Error processing directory %s"
  283. msgstr "S'ha produït un error en processar el directori %s"
  284. #: ftparchive/apt-ftparchive.cc:251
  285. msgid "Source extension list is too long"
  286. msgstr "La llista d'extensions de les fonts és massa llarga"
  287. #: ftparchive/apt-ftparchive.cc:368
  288. msgid "Error writing header to contents file"
  289. msgstr "S'ha produït un error en escriure la capçalera al fitxer de continguts"
  290. #: ftparchive/apt-ftparchive.cc:398
  291. #, c-format
  292. msgid "Error processing contents %s"
  293. msgstr "S'ha produït un error en processar el fitxer de continguts %s"
  294. #: ftparchive/apt-ftparchive.cc:553
  295. msgid ""
  296. "Usage: apt-ftparchive [options] command\n"
  297. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  298. " sources srcpath [overridefile [pathprefix]]\n"
  299. " contents path\n"
  300. " release path\n"
  301. " generate config [groups]\n"
  302. " clean config\n"
  303. "\n"
  304. "apt-ftparchive generates index files for Debian archives. It supports\n"
  305. "many styles of generation from fully automated to functional replacements\n"
  306. "for dpkg-scanpackages and dpkg-scansources\n"
  307. "\n"
  308. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  309. "Package file contains the contents of all the control fields from\n"
  310. "each package as well as the MD5 hash and filesize. An override file\n"
  311. "is supported to force the value of Priority and Section.\n"
  312. "\n"
  313. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  314. "The --source-override option can be used to specify a src override file\n"
  315. "\n"
  316. "The 'packages' and 'sources' command should be run in the root of the\n"
  317. "tree. BinaryPath should point to the base of the recursive search and \n"
  318. "override file should contain the override flags. Pathprefix is\n"
  319. "appended to the filename fields if present. Example usage from the \n"
  320. "Debian archive:\n"
  321. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  322. " dists/potato/main/binary-i386/Packages\n"
  323. "\n"
  324. "Options:\n"
  325. " -h This help text\n"
  326. " --md5 Control MD5 generation\n"
  327. " -s=? Source override file\n"
  328. " -q Quiet\n"
  329. " -d=? Select the optional caching database\n"
  330. " --no-delink Enable delinking debug mode\n"
  331. " --contents Control contents file generation\n"
  332. " -c=? Read this configuration file\n"
  333. " -o=? Set an arbitrary configuration option"
  334. msgstr ""
  335. "Forma d'ús: apt-ftparchive [opcions] ordre\n"
  336. "Ordres: packages camí_binaris [fitxer_substitucions prefix_camí]]\n"
  337. " sources camí_fonts [fitxer_substitucions [prefix_camí]]\n"
  338. " contents camí\n"
  339. " release camí\n"
  340. " generate config [grups]\n"
  341. " clean config\n"
  342. "\n"
  343. "apt-ftparchive genera fitxers d'índex per als arxius de Debian.\n"
  344. "Gestiona molts estils per a generar-los, des dels completament automàtics\n"
  345. "als substituts funcionals per dpkg-scanpackages i dpkg-scansources.\n"
  346. "\n"
  347. "apt-ftparchive genera fitxers Package des d'un arbre de .deb. El\n"
  348. "fitxer Package conté tots els camps de control de cada paquet així com\n"
  349. "la suma MD5 i la mida del fitxer. Es suporten els fitxers de substitució\n"
  350. "per a forçar el valor de Prioritat i Secció.\n"
  351. "\n"
  352. "D'un mode semblant, apt-ftparchive genera fitxers Sources des d'un arbre\n"
  353. "de .dsc. Es pot utilitzar l'opció --source-override per a especificar un\n"
  354. "fitxer de substitucions de src.\n"
  355. "\n"
  356. "L'ordre «packages» i «sources» hauria d'executar-se en l'arrel de\n"
  357. "l'arbre. CamíBinaris hauria de ser el punt base de la recerca recursiva\n"
  358. "i el fitxer de substitucions hauria de contenir senyaladors de substitució.\n"
  359. "Prefixcamí s'afegeix als camps del nom de fitxer si està present.\n"
  360. "Exemple d'ús a l'arxiu de Debian:\n"
  361. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  362. " dists/potato/main/binary-i386/Packages\n"
  363. "\n"
  364. "Opcions:\n"
  365. " -h Aquest text d'ajuda\n"
  366. " --md5 Generació del control MD5\n"
  367. " -s=? Fitxer de substitucions per a fonts\n"
  368. " -q Silenciós\n"
  369. " -d=? Selecciona la base de dades de memòria cau opcional\n"
  370. " --no-delink Habilita el mode de depuració delink\n"
  371. " --contents Genera el fitxer amb els continguts de control\n"
  372. " -c=? Llegeix aquest fitxer de configuració\n"
  373. " -o=? Estableix una opció de configuració arbitrària"
  374. #: ftparchive/apt-ftparchive.cc:759
  375. msgid "No selections matched"
  376. msgstr "No s'ha trobat cap selecció"
  377. #: ftparchive/apt-ftparchive.cc:832
  378. #, c-format
  379. msgid "Some files are missing in the package file group `%s'"
  380. msgstr "No es troben alguns fitxers dins del grup de fitxers del paquet `%s'"
  381. #: ftparchive/cachedb.cc:43
  382. #, c-format
  383. msgid "DB was corrupted, file renamed to %s.old"
  384. msgstr "La base de dades està corrompuda, fitxer renomenat a %s.old"
  385. #: ftparchive/cachedb.cc:61
  386. #, c-format
  387. msgid "DB is old, attempting to upgrade %s"
  388. msgstr "La BD és vella, s'està intentant actualitzar %s"
  389. #: ftparchive/cachedb.cc:72
  390. msgid ""
  391. "DB format is invalid. If you upgraded from a older version of apt, please "
  392. "remove and re-create the database."
  393. msgstr ""
  394. "El format de la base de dades és invàlid. Si heu actualitzat des d'una "
  395. "versió més antiga de l'apt, suprimiu i torneu a crear la base de dades."
  396. #: ftparchive/cachedb.cc:77
  397. #, c-format
  398. msgid "Unable to open DB file %s: %s"
  399. msgstr "No es pot obrir el fitxer de DB %s: %s"
  400. #: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
  401. #: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
  402. #, c-format
  403. msgid "Failed to stat %s"
  404. msgstr "No es pot determinar l'estat de %s"
  405. #: ftparchive/cachedb.cc:238
  406. msgid "Archive has no control record"
  407. msgstr "Arxiu sense registre de control"
  408. #: ftparchive/cachedb.cc:444
  409. msgid "Unable to get a cursor"
  410. msgstr "No es pot aconseguir un cursor"
  411. #: ftparchive/writer.cc:76
  412. #, c-format
  413. msgid "W: Unable to read directory %s\n"
  414. msgstr "A: No es pot llegir el directori %s\n"
  415. #: ftparchive/writer.cc:81
  416. #, c-format
  417. msgid "W: Unable to stat %s\n"
  418. msgstr "A: No es pot veure l'estat %s\n"
  419. #: ftparchive/writer.cc:132
  420. msgid "E: "
  421. msgstr "E: "
  422. #: ftparchive/writer.cc:134
  423. msgid "W: "
  424. msgstr "A: "
  425. #: ftparchive/writer.cc:141
  426. msgid "E: Errors apply to file "
  427. msgstr "E: Els errors s'apliquen al fitxer "
  428. #: ftparchive/writer.cc:158 ftparchive/writer.cc:188
  429. #, c-format
  430. msgid "Failed to resolve %s"
  431. msgstr "No s'ha pogut resoldre %s"
  432. #: ftparchive/writer.cc:170
  433. msgid "Tree walking failed"
  434. msgstr "L'arbre està fallant"
  435. #: ftparchive/writer.cc:195
  436. #, c-format
  437. msgid "Failed to open %s"
  438. msgstr "No s'ha pogut obrir %s"
  439. #: ftparchive/writer.cc:254
  440. #, c-format
  441. msgid " DeLink %s [%s]\n"
  442. msgstr " DeLink %s [%s]\n"
  443. #: ftparchive/writer.cc:262
  444. #, c-format
  445. msgid "Failed to readlink %s"
  446. msgstr "No s'ha pogut llegir l'enllaç %s"
  447. #: ftparchive/writer.cc:266
  448. #, c-format
  449. msgid "Failed to unlink %s"
  450. msgstr "No s'ha pogut alliberar %s"
  451. #: ftparchive/writer.cc:273
  452. #, c-format
  453. msgid "*** Failed to link %s to %s"
  454. msgstr "*** No s'ha pogut enllaçar %s a %s"
  455. #: ftparchive/writer.cc:283
  456. #, c-format
  457. msgid " DeLink limit of %sB hit.\n"
  458. msgstr " DeLink s'ha arribat al límit de %sB.\n"
  459. #: ftparchive/writer.cc:387
  460. msgid "Archive had no package field"
  461. msgstr "Arxiu sense el camp paquet"
  462. #: ftparchive/writer.cc:395 ftparchive/writer.cc:610
  463. #, c-format
  464. msgid " %s has no override entry\n"
  465. msgstr " %s no té una entrada dominant\n"
  466. #: ftparchive/writer.cc:440 ftparchive/writer.cc:698
  467. #, c-format
  468. msgid " %s maintainer is %s not %s\n"
  469. msgstr " el mantenidor de %s és %s, no %s\n"
  470. #: ftparchive/writer.cc:620
  471. #, c-format
  472. msgid " %s has no source override entry\n"
  473. msgstr " %s no té una entrada dominant de font\n"
  474. #: ftparchive/writer.cc:624
  475. #, c-format
  476. msgid " %s has no binary override entry either\n"
  477. msgstr " %s no té una entrada dominant de binari\n"
  478. #: ftparchive/contents.cc:321
  479. #, c-format
  480. msgid "Internal error, could not locate member %s"
  481. msgstr "Error intern, no s'ha pogut localitzar al membre %s"
  482. #: ftparchive/contents.cc:358 ftparchive/contents.cc:389
  483. msgid "realloc - Failed to allocate memory"
  484. msgstr "realloc - No s'ha pogut assignar espai en memòria"
  485. #: ftparchive/override.cc:34 ftparchive/override.cc:142
  486. #, c-format
  487. msgid "Unable to open %s"
  488. msgstr "No es pot obrir %s"
  489. #: ftparchive/override.cc:60 ftparchive/override.cc:166
  490. #, c-format
  491. msgid "Malformed override %s line %lu #1"
  492. msgstr "Línia predominant %s línia malformada %lu núm 1"
  493. #: ftparchive/override.cc:74 ftparchive/override.cc:178
  494. #, c-format
  495. msgid "Malformed override %s line %lu #2"
  496. msgstr "Línia predominant %s línia malformada %lu núm 2"
  497. #: ftparchive/override.cc:88 ftparchive/override.cc:191
  498. #, c-format
  499. msgid "Malformed override %s line %lu #3"
  500. msgstr "Línia predominant %s línia malformada %lu núm 3"
  501. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  502. #, c-format
  503. msgid "Failed to read the override file %s"
  504. msgstr "No s'ha pogut llegir la línia predominant del fitxer %s"
  505. #: ftparchive/multicompress.cc:72
  506. #, c-format
  507. msgid "Unknown compression algorithm '%s'"
  508. msgstr "Algorisme de compressió desconegut '%s'"
  509. #: ftparchive/multicompress.cc:102
  510. #, c-format
  511. msgid "Compressed output %s needs a compression set"
  512. msgstr "La sortida comprimida %s necessita un joc de compressió"
  513. #: ftparchive/multicompress.cc:169 methods/rsh.cc:91
  514. msgid "Failed to create IPC pipe to subprocess"
  515. msgstr "No s'ha pogut crear el conducte IPC al subprocés"
  516. #: ftparchive/multicompress.cc:195
  517. msgid "Failed to create FILE*"
  518. msgstr "No s'ha pogut crear FILE*"
  519. #: ftparchive/multicompress.cc:198
  520. msgid "Failed to fork"
  521. msgstr "No s'ha pogut bifurcar"
  522. #: ftparchive/multicompress.cc:212
  523. msgid "Compress child"
  524. msgstr "Comprimeix el fil"
  525. #: ftparchive/multicompress.cc:235
  526. #, c-format
  527. msgid "Internal error, failed to create %s"
  528. msgstr "S'ha produït un error intern, no s'ha pogut crear %s"
  529. #: ftparchive/multicompress.cc:286
  530. msgid "Failed to create subprocess IPC"
  531. msgstr "No s'ha pogut crear el subprocés IPC"
  532. #: ftparchive/multicompress.cc:321
  533. msgid "Failed to exec compressor "
  534. msgstr "No s'ha pogut executar el compressor "
  535. #: ftparchive/multicompress.cc:360
  536. msgid "decompressor"
  537. msgstr "decompressor"
  538. #: ftparchive/multicompress.cc:403
  539. msgid "IO to subprocess/file failed"
  540. msgstr "Ha fallat l'E/S del subprocés sobre el fitxer"
  541. #: ftparchive/multicompress.cc:455
  542. msgid "Failed to read while computing MD5"
  543. msgstr "No s'ha pogut llegir mentre es calculava la suma MD5"
  544. #: ftparchive/multicompress.cc:472
  545. #, c-format
  546. msgid "Problem unlinking %s"
  547. msgstr "S'ha trobat un problema treient l'enllaç %s"
  548. #: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
  549. #, c-format
  550. msgid "Failed to rename %s to %s"
  551. msgstr "No s'ha pogut canviar el nom de %s a %s"
  552. #: cmdline/apt-get.cc:127
  553. msgid "Y"
  554. msgstr "S"
  555. #: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695
  556. #, c-format
  557. msgid "Regex compilation error - %s"
  558. msgstr "S'ha produït un error de compilació de l'expressió regular - %s"
  559. #: cmdline/apt-get.cc:244
  560. msgid "The following packages have unmet dependencies:"
  561. msgstr "Els següents paquets tenen dependències sense satisfer:"
  562. #: cmdline/apt-get.cc:334
  563. #, c-format
  564. msgid "but %s is installed"
  565. msgstr "però està instal·lat %s"
  566. #: cmdline/apt-get.cc:336
  567. #, c-format
  568. msgid "but %s is to be installed"
  569. msgstr "però s'instal·larà %s"
  570. #: cmdline/apt-get.cc:343
  571. msgid "but it is not installable"
  572. msgstr "però no és instal·lable"
  573. #: cmdline/apt-get.cc:345
  574. msgid "but it is a virtual package"
  575. msgstr "però és un paquet virtual"
  576. #: cmdline/apt-get.cc:348
  577. msgid "but it is not installed"
  578. msgstr "però no està instal·lat"
  579. #: cmdline/apt-get.cc:348
  580. msgid "but it is not going to be installed"
  581. msgstr "però no serà instal·lat"
  582. #: cmdline/apt-get.cc:353
  583. msgid " or"
  584. msgstr " o"
  585. #: cmdline/apt-get.cc:382
  586. msgid "The following NEW packages will be installed:"
  587. msgstr "S'instal·laran els paquets NOUS següents:"
  588. #: cmdline/apt-get.cc:408
  589. msgid "The following packages will be REMOVED:"
  590. msgstr "Es SUPRIMIRAN els paquets següents:"
  591. #: cmdline/apt-get.cc:430
  592. msgid "The following packages have been kept back:"
  593. msgstr "S'han mantingut els paquets següents:"
  594. #: cmdline/apt-get.cc:451
  595. msgid "The following packages will be upgraded:"
  596. msgstr "S'actualitzaran els paquets següents:"
  597. #: cmdline/apt-get.cc:472
  598. msgid "The following packages will be DOWNGRADED:"
  599. msgstr "Es DESACTUALITZARAN els paquets següents:"
  600. #: cmdline/apt-get.cc:492
  601. msgid "The following held packages will be changed:"
  602. msgstr "Es canviaran els paquets retinguts següents:"
  603. #: cmdline/apt-get.cc:545
  604. #, c-format
  605. msgid "%s (due to %s) "
  606. msgstr "%s (per %s) "
  607. #: cmdline/apt-get.cc:553
  608. msgid ""
  609. "WARNING: The following essential packages will be removed.\n"
  610. "This should NOT be done unless you know exactly what you are doing!"
  611. msgstr ""
  612. "AVÍS: Es suprimiran els paquets essencials següents.\n"
  613. "Això NO s'ha de fer a menys que sapigueu exactament el que esteu fent!"
  614. #: cmdline/apt-get.cc:584
  615. #, c-format
  616. msgid "%lu upgraded, %lu newly installed, "
  617. msgstr "%lu actualitzats, %lu nous a instal·lar, "
  618. #: cmdline/apt-get.cc:588
  619. #, c-format
  620. msgid "%lu reinstalled, "
  621. msgstr "%lu reinstal·lats, "
  622. #: cmdline/apt-get.cc:590
  623. #, c-format
  624. msgid "%lu downgraded, "
  625. msgstr "%lu desactualitzats, "
  626. #: cmdline/apt-get.cc:592
  627. #, c-format
  628. msgid "%lu to remove and %lu not upgraded.\n"
  629. msgstr "%lu a suprimir i %lu no actualitzats.\n"
  630. #: cmdline/apt-get.cc:596
  631. #, c-format
  632. msgid "%lu not fully installed or removed.\n"
  633. msgstr "%lu no instal·lats o suprimits completament.\n"
  634. #: cmdline/apt-get.cc:669
  635. msgid "Correcting dependencies..."
  636. msgstr "S'estan corregint les dependències..."
  637. #: cmdline/apt-get.cc:672
  638. msgid " failed."
  639. msgstr " ha fallat."
  640. #: cmdline/apt-get.cc:675
  641. msgid "Unable to correct dependencies"
  642. msgstr "No es poden corregir les dependències"
  643. #: cmdline/apt-get.cc:678
  644. msgid "Unable to minimize the upgrade set"
  645. msgstr "No es pot minimitzar el joc de versions revisades"
  646. #: cmdline/apt-get.cc:680
  647. msgid " Done"
  648. msgstr " Fet"
  649. #: cmdline/apt-get.cc:684
  650. msgid "You might want to run `apt-get -f install' to correct these."
  651. msgstr "Potser voldreu executar `apt-get -f install' per a corregir-ho."
  652. #: cmdline/apt-get.cc:687
  653. msgid "Unmet dependencies. Try using -f."
  654. msgstr "Dependències sense satisfer. Proveu-ho emprant -f."
  655. #: cmdline/apt-get.cc:712
  656. msgid "WARNING: The following packages cannot be authenticated!"
  657. msgstr "AVÍS: No es poden autenticar els següents paquets!"
  658. #: cmdline/apt-get.cc:716
  659. msgid "Authentication warning overridden.\n"
  660. msgstr "S'ha descartat l'avís d'autenticació.\n"
  661. #: cmdline/apt-get.cc:723
  662. msgid "Install these packages without verification [y/N]? "
  663. msgstr "Voleu instal·lar aquests paquets sense verificar-los [s/N]? "
  664. #: cmdline/apt-get.cc:725
  665. msgid "Some packages could not be authenticated"
  666. msgstr "No s'ha pogut autenticar alguns paquets"
  667. #: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886
  668. msgid "There are problems and -y was used without --force-yes"
  669. msgstr "Hi ha problemes i s'ha emprat -y sense --force-yes"
  670. #: cmdline/apt-get.cc:775
  671. msgid "Internal error, InstallPackages was called with broken packages!"
  672. msgstr ""
  673. "S'ha produït un error intern, s'ha cridat a InstallPackages amb paquets "
  674. "trencats!"
  675. #: cmdline/apt-get.cc:784
  676. msgid "Packages need to be removed but remove is disabled."
  677. msgstr ""
  678. "Els paquets necessiten ser suprimits però s'ha inhabilitat la supressió."
  679. #: cmdline/apt-get.cc:795
  680. msgid "Internal error, Ordering didn't finish"
  681. msgstr "S'ha produït un error intern, l'ordenació no ha acabat"
  682. #: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070
  683. msgid "Unable to lock the download directory"
  684. msgstr "No és possible blocar el directori de descàrrega"
  685. #: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367
  686. #: apt-pkg/cachefile.cc:65
  687. msgid "The list of sources could not be read."
  688. msgstr "No s'ha pogut llegir la llista de les fonts."
  689. #: cmdline/apt-get.cc:836
  690. msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  691. msgstr ""
  692. "Què estrany... les mides no coincideixen, informeu a apt@packages.debian.org"
  693. #: cmdline/apt-get.cc:841
  694. #, c-format
  695. msgid "Need to get %sB/%sB of archives.\n"
  696. msgstr "Es necessita obtenir %sB/%sB d'arxius.\n"
  697. #: cmdline/apt-get.cc:844
  698. #, c-format
  699. msgid "Need to get %sB of archives.\n"
  700. msgstr "Es necessita obtenir %sB d'arxius.\n"
  701. #: cmdline/apt-get.cc:849
  702. #, c-format
  703. msgid "After this operation, %sB of additional disk space will be used.\n"
  704. msgstr ""
  705. "Després d'aquesta operació s'empraran %sB d'espai en disc addicional.\n"
  706. #: cmdline/apt-get.cc:852
  707. #, c-format
  708. msgid "After this operation, %sB disk space will be freed.\n"
  709. msgstr "Després d'aquesta operació s'alliberaran %sB d'espai en disc.\n"
  710. #: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213
  711. #, c-format
  712. msgid "Couldn't determine free space in %s"
  713. msgstr "No s'ha pogut determinar l'espai lliure en %s"
  714. #: cmdline/apt-get.cc:876
  715. #, c-format
  716. msgid "You don't have enough free space in %s."
  717. msgstr "No teniu prou espai lliure en %s."
  718. #: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912
  719. msgid "Trivial Only specified but this is not a trivial operation."
  720. msgstr "Es va especificar Trivial Only però aquesta operació no és trivial."
  721. #: cmdline/apt-get.cc:894
  722. msgid "Yes, do as I say!"
  723. msgstr "Sí, fes el que et dic!"
  724. #: cmdline/apt-get.cc:896
  725. #, c-format
  726. msgid ""
  727. "You are about to do something potentially harmful.\n"
  728. "To continue type in the phrase '%s'\n"
  729. " ?] "
  730. msgstr ""
  731. "Esteu a punt de fer quelcom potencialment nociu.\n"
  732. "Per a continuar escriviu la frase «%s»\n"
  733. " ?] "
  734. #: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921
  735. msgid "Abort."
  736. msgstr "Avortat."
  737. #: cmdline/apt-get.cc:917
  738. msgid "Do you want to continue [Y/n]? "
  739. msgstr "Voleu continuar [S/n]? "
  740. #: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389
  741. #, c-format
  742. msgid "Failed to fetch %s %s\n"
  743. msgstr "No s'ha pogut obtenir %s %s\n"
  744. #: cmdline/apt-get.cc:1007
  745. msgid "Some files failed to download"
  746. msgstr "Alguns fitxers no s'han pogut baixar"
  747. #: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273
  748. msgid "Download complete and in download only mode"
  749. msgstr "Descàrrega completa i en mode de només descàrrega"
  750. #: cmdline/apt-get.cc:1014
  751. msgid ""
  752. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  753. "missing?"
  754. msgstr ""
  755. "No es poden baixar alguns arxius, proveu a executar apt-get update o "
  756. "intenteu-ho amb --fix-missing."
  757. #: cmdline/apt-get.cc:1018
  758. msgid "--fix-missing and media swapping is not currently supported"
  759. msgstr "--fix-missing i els medi intercanviables actualment no estan suportats"
  760. #: cmdline/apt-get.cc:1023
  761. msgid "Unable to correct missing packages."
  762. msgstr "No es poden corregir els paquets que falten."
  763. #: cmdline/apt-get.cc:1024
  764. msgid "Aborting install."
  765. msgstr "S'està avortant la instal·lació."
  766. #: cmdline/apt-get.cc:1058
  767. #, c-format
  768. msgid "Note, selecting %s instead of %s\n"
  769. msgstr "Nota: s'està seleccionant %s en comptes de %s\n"
  770. #: cmdline/apt-get.cc:1068
  771. #, c-format
  772. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  773. msgstr ""
  774. "S'està ometent %s, ja està instal·lat i l'actualització no està establerta.\n"
  775. #: cmdline/apt-get.cc:1086
  776. #, c-format
  777. msgid "Package %s is not installed, so not removed\n"
  778. msgstr "El paquet %s no està instal·lat, així doncs no es suprimirà\n"
  779. #: cmdline/apt-get.cc:1097
  780. #, c-format
  781. msgid "Package %s is a virtual package provided by:\n"
  782. msgstr "El paquet %s és un paquet virtual proveït per:\n"
  783. #: cmdline/apt-get.cc:1109
  784. msgid " [Installed]"
  785. msgstr " [Instal·lat]"
  786. #: cmdline/apt-get.cc:1114
  787. msgid "You should explicitly select one to install."
  788. msgstr "Necessiteu seleccionar-ne un explícitament per a instal·lar-lo."
  789. #: cmdline/apt-get.cc:1119
  790. #, c-format
  791. msgid ""
  792. "Package %s is not available, but is referred to by another package.\n"
  793. "This may mean that the package is missing, has been obsoleted, or\n"
  794. "is only available from another source\n"
  795. msgstr ""
  796. "El paquet %s no té versió disponible, però un altre paquet\n"
  797. "en fa referència. Això normalment vol dir que el paquet falta,\n"
  798. "s'ha tornat obsolet o només és disponible des d'una altra font.\n"
  799. #: cmdline/apt-get.cc:1138
  800. msgid "However the following packages replace it:"
  801. msgstr "Tot i que els següents paquets el reemplacen:"
  802. #: cmdline/apt-get.cc:1141
  803. #, c-format
  804. msgid "Package %s has no installation candidate"
  805. msgstr "El paquet %s no té candidat d'instal·lació"
  806. #: cmdline/apt-get.cc:1161
  807. #, c-format
  808. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  809. msgstr "No es possible la reinstal·lació del paquet %s, no es pot baixar.\n"
  810. #: cmdline/apt-get.cc:1169
  811. #, c-format
  812. msgid "%s is already the newest version.\n"
  813. msgstr "%s ja es troba en la versió més recent.\n"
  814. #: cmdline/apt-get.cc:1198
  815. #, c-format
  816. msgid "Release '%s' for '%s' was not found"
  817. msgstr "No s'ha trobat la versió puntual «%s» per a «%s»"
  818. #: cmdline/apt-get.cc:1200
  819. #, c-format
  820. msgid "Version '%s' for '%s' was not found"
  821. msgstr "No s'ha trobat la versió «%s» per a «%s»"
  822. #: cmdline/apt-get.cc:1206
  823. #, c-format
  824. msgid "Selected version %s (%s) for %s\n"
  825. msgstr "Versió seleccionada %s (%s) per a %s\n"
  826. #: cmdline/apt-get.cc:1323
  827. #, c-format
  828. msgid "No source package '%s' picking '%s' instead\n"
  829. msgstr "No hi ha cap paquet font «%s», es selecciona «%s» en el seu lloc\n"
  830. #: cmdline/apt-get.cc:1360
  831. msgid "The update command takes no arguments"
  832. msgstr "L'ordre update no pren arguments"
  833. #: cmdline/apt-get.cc:1373
  834. msgid "Unable to lock the list directory"
  835. msgstr "No es pot blocar el directori de la llista"
  836. #: cmdline/apt-get.cc:1429
  837. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  838. msgstr ""
  839. "Es suposa que no hauriem de suprimir coses, no es pot iniciar el supressor "
  840. "automàtic"
  841. #: cmdline/apt-get.cc:1478
  842. msgid ""
  843. "The following packages were automatically installed and are no longer "
  844. "required:"
  845. msgstr ""
  846. "Els paquets següents s'instal·laren automàticament i ja no són necessaris:"
  847. #: cmdline/apt-get.cc:1480
  848. #, fuzzy, c-format
  849. msgid "%lu packages were automatically installed and are no longer required.\n"
  850. msgstr ""
  851. "Els paquets següents s'instal·laren automàticament i ja no són necessaris:"
  852. #: cmdline/apt-get.cc:1481
  853. msgid "Use 'apt-get autoremove' to remove them."
  854. msgstr "Empreu «apt-get autoremove» per a suprimir-los."
  855. #: cmdline/apt-get.cc:1486
  856. msgid ""
  857. "Hmm, seems like the AutoRemover destroyed something which really\n"
  858. "shouldn't happen. Please file a bug report against apt."
  859. msgstr ""
  860. "Sembla que el supressor automàtic ha destruït alguna cosa que no deuria. Si "
  861. "us plau, envieu un informe d'error per a l'apt."
  862. #.
  863. #. if (Packages == 1)
  864. #. {
  865. #. c1out << endl;
  866. #. c1out <<
  867. #. _("Since you only requested a single operation it is extremely likely that\n"
  868. #. "the package is simply not installable and a bug report against\n"
  869. #. "that package should be filed.") << endl;
  870. #. }
  871. #.
  872. #: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779
  873. msgid "The following information may help to resolve the situation:"
  874. msgstr "La informació següent pot ajudar-vos a resoldre la situació:"
  875. #: cmdline/apt-get.cc:1493
  876. msgid "Internal Error, AutoRemover broke stuff"
  877. msgstr "S'ha produït un error intern, el supressor automàtic ha trencat coses"
  878. #: cmdline/apt-get.cc:1512
  879. msgid "Internal error, AllUpgrade broke stuff"
  880. msgstr "Error intern, AllUpgrade ha trencat coses"
  881. #: cmdline/apt-get.cc:1567
  882. #, c-format
  883. msgid "Couldn't find task %s"
  884. msgstr "No s'ha pogut trobar la tasca %s"
  885. #: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718
  886. #, c-format
  887. msgid "Couldn't find package %s"
  888. msgstr "No s'ha pogut trobar el paquet %s"
  889. #: cmdline/apt-get.cc:1705
  890. #, c-format
  891. msgid "Note, selecting %s for regex '%s'\n"
  892. msgstr "Nota: s'està seleccionant %s per a l'expressió regular '%s'\n"
  893. #: cmdline/apt-get.cc:1736
  894. #, c-format
  895. msgid "%s set to manually installed.\n"
  896. msgstr "S'ha marcat %s com instal·lat manualment.\n"
  897. #: cmdline/apt-get.cc:1749
  898. msgid "You might want to run `apt-get -f install' to correct these:"
  899. msgstr "Potser voldreu executar `apt-get -f install' per a corregir-ho:"
  900. #: cmdline/apt-get.cc:1752
  901. msgid ""
  902. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  903. "solution)."
  904. msgstr ""
  905. "Dependències insatisfetes. Intenteu 'apt-get -f install' sense paquets (o "
  906. "especifiqueu una solució)."
  907. #: cmdline/apt-get.cc:1764
  908. msgid ""
  909. "Some packages could not be installed. This may mean that you have\n"
  910. "requested an impossible situation or if you are using the unstable\n"
  911. "distribution that some required packages have not yet been created\n"
  912. "or been moved out of Incoming."
  913. msgstr ""
  914. "No s'han pogut instal·lar alguns paquets. Això pot ser degut a que vàreu\n"
  915. "requerir una situació imposible o a que esteu emprant la distribució\n"
  916. "unstable i alguns paquets requerits encara no han estat creats o bé\n"
  917. "encara no els hi han afegit."
  918. #: cmdline/apt-get.cc:1782
  919. msgid "Broken packages"
  920. msgstr "Paquets trencats"
  921. #: cmdline/apt-get.cc:1811
  922. msgid "The following extra packages will be installed:"
  923. msgstr "S'instal·laran els següents paquets extres:"
  924. #: cmdline/apt-get.cc:1900
  925. msgid "Suggested packages:"
  926. msgstr "Paquets suggerits:"
  927. #: cmdline/apt-get.cc:1901
  928. msgid "Recommended packages:"
  929. msgstr "Paquets recomanats:"
  930. #: cmdline/apt-get.cc:1930
  931. msgid "Calculating upgrade... "
  932. msgstr "S'està calculant l'actualització... "
  933. #: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112
  934. msgid "Failed"
  935. msgstr "Ha fallat"
  936. #: cmdline/apt-get.cc:1938
  937. msgid "Done"
  938. msgstr "Fet"
  939. #: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013
  940. msgid "Internal error, problem resolver broke stuff"
  941. msgstr ""
  942. "S'ha produït un error intern, el solucionador de problemes ha trencat coses"
  943. #: cmdline/apt-get.cc:2113
  944. msgid "Must specify at least one package to fetch source for"
  945. msgstr "Haureu d'especificar un paquet de codi font per a baixar"
  946. #: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385
  947. #, c-format
  948. msgid "Unable to find a source package for %s"
  949. msgstr "No es pot trobar un paquet de fonts per a %s"
  950. #: cmdline/apt-get.cc:2192
  951. #, c-format
  952. msgid "Skipping already downloaded file '%s'\n"
  953. msgstr "S'està ometent el fitxer ja baixat «%s»\n"
  954. #: cmdline/apt-get.cc:2223
  955. #, c-format
  956. msgid "You don't have enough free space in %s"
  957. msgstr "No teniu prou espai lliure en %s"
  958. #: cmdline/apt-get.cc:2229
  959. #, c-format
  960. msgid "Need to get %sB/%sB of source archives.\n"
  961. msgstr "Es necessita baixar %sB/%sB d'arxius font.\n"
  962. #: cmdline/apt-get.cc:2232
  963. #, c-format
  964. msgid "Need to get %sB of source archives.\n"
  965. msgstr "Es necessita baixar %sB d'arxius font.\n"
  966. #: cmdline/apt-get.cc:2238
  967. #, c-format
  968. msgid "Fetch source %s\n"
  969. msgstr "Obté el font %s\n"
  970. #: cmdline/apt-get.cc:2269
  971. msgid "Failed to fetch some archives."
  972. msgstr "No s'ha pogut baixar alguns arxius."
  973. #: cmdline/apt-get.cc:2297
  974. #, c-format
  975. msgid "Skipping unpack of already unpacked source in %s\n"
  976. msgstr ""
  977. "S'està ometent el desempaquetament de les fonts que ja ho estan en %s\n"
  978. #: cmdline/apt-get.cc:2309
  979. #, c-format
  980. msgid "Unpack command '%s' failed.\n"
  981. msgstr "L'ordre de desempaquetar «%s» ha fallat.\n"
  982. #: cmdline/apt-get.cc:2310
  983. #, c-format
  984. msgid "Check if the 'dpkg-dev' package is installed.\n"
  985. msgstr "Comproveu si el paquet «dpkgdev» està instal·lat.\n"
  986. #: cmdline/apt-get.cc:2327
  987. #, c-format
  988. msgid "Build command '%s' failed.\n"
  989. msgstr "L'ordre de construir «%s» ha fallat.\n"
  990. #: cmdline/apt-get.cc:2346
  991. msgid "Child process failed"
  992. msgstr "Ha fallat el procés fill"
  993. #: cmdline/apt-get.cc:2362
  994. msgid "Must specify at least one package to check builddeps for"
  995. msgstr ""
  996. "S'ha d'especificar un paquet per a verificar les dependències de construcció "
  997. "per a"
  998. #: cmdline/apt-get.cc:2390
  999. #, c-format
  1000. msgid "Unable to get build-dependency information for %s"
  1001. msgstr ""
  1002. "No es pot obtenir informació sobre les dependències de construcció per a %s"
  1003. #: cmdline/apt-get.cc:2410
  1004. #, c-format
  1005. msgid "%s has no build depends.\n"
  1006. msgstr "%s no té dependències de construcció.\n"
  1007. #: cmdline/apt-get.cc:2462
  1008. #, c-format
  1009. msgid ""
  1010. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  1011. "found"
  1012. msgstr ""
  1013. "La dependència %s en %s no es pot satisfer per que no es pot trobar el "
  1014. "paquet %s"
  1015. #: cmdline/apt-get.cc:2515
  1016. #, c-format
  1017. msgid ""
  1018. "%s dependency for %s cannot be satisfied because no available versions of "
  1019. "package %s can satisfy version requirements"
  1020. msgstr ""
  1021. "La dependència %s per a %s no es pot satisfer per que cap versió del paquet %"
  1022. "s pot satisfer els requeriments de versions"
  1023. #: cmdline/apt-get.cc:2551
  1024. #, c-format
  1025. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  1026. msgstr ""
  1027. "No s'ha pogut satisfer la dependència %s per a %s: El paquet instal·lat %s "
  1028. "és massa nou"
  1029. #: cmdline/apt-get.cc:2578
  1030. #, c-format
  1031. msgid "Failed to satisfy %s dependency for %s: %s"
  1032. msgstr "No s'ha pogut satisfer la dependència %s per a %s: %s"
  1033. #: cmdline/apt-get.cc:2594
  1034. #, c-format
  1035. msgid "Build-dependencies for %s could not be satisfied."
  1036. msgstr "No s'han pogut satisfer les dependències de construcció per a %s"
  1037. #: cmdline/apt-get.cc:2599
  1038. msgid "Failed to process build dependencies"
  1039. msgstr "No es poden processar les dependències de construcció"
  1040. #: cmdline/apt-get.cc:2631
  1041. msgid "Supported modules:"
  1042. msgstr "Mòduls suportats:"
  1043. #: cmdline/apt-get.cc:2672
  1044. #, fuzzy
  1045. msgid ""
  1046. "Usage: apt-get [options] command\n"
  1047. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1048. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1049. "\n"
  1050. "apt-get is a simple command line interface for downloading and\n"
  1051. "installing packages. The most frequently used commands are update\n"
  1052. "and install.\n"
  1053. "\n"
  1054. "Commands:\n"
  1055. " update - Retrieve new lists of packages\n"
  1056. " upgrade - Perform an upgrade\n"
  1057. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  1058. " remove - Remove packages\n"
  1059. " autoremove - Remove automatically all unused packages\n"
  1060. " purge - Remove packages and config files\n"
  1061. " source - Download source archives\n"
  1062. " build-dep - Configure build-dependencies for source packages\n"
  1063. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  1064. " dselect-upgrade - Follow dselect selections\n"
  1065. " clean - Erase downloaded archive files\n"
  1066. " autoclean - Erase old downloaded archive files\n"
  1067. " check - Verify that there are no broken dependencies\n"
  1068. "\n"
  1069. "Options:\n"
  1070. " -h This help text.\n"
  1071. " -q Loggable output - no progress indicator\n"
  1072. " -qq No output except for errors\n"
  1073. " -d Download only - do NOT install or unpack archives\n"
  1074. " -s No-act. Perform ordering simulation\n"
  1075. " -y Assume Yes to all queries and do not prompt\n"
  1076. " -f Attempt to correct a system with broken dependencies in place\n"
  1077. " -m Attempt to continue if archives are unlocatable\n"
  1078. " -u Show a list of upgraded packages as well\n"
  1079. " -b Build the source package after fetching it\n"
  1080. " -V Show verbose version numbers\n"
  1081. " -c=? Read this configuration file\n"
  1082. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1083. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  1084. "pages for more information and options.\n"
  1085. " This APT has Super Cow Powers.\n"
  1086. msgstr ""
  1087. "Forma d'ús: apt-get [opcions] ordre\n"
  1088. " apt-get [opcions] install|remove paq1 [paq2 ...]\n"
  1089. " apt-get [opcions] source paq1 [paq2 ...]\n"
  1090. "\n"
  1091. "apt-get és una simple interfície de línia d'ordres per a\n"
  1092. "baixar i instal·lar paquets. Les ordres més freqüents\n"
  1093. "són update i install.\n"
  1094. "\n"
  1095. "Ordres:\n"
  1096. " update - Obté llistes noves dels paquets\n"
  1097. " upgrade - Realitza una actualització\n"
  1098. " install - Instal·la nous paquets (el paquet és libc6 no libc6.deb)\n"
  1099. " remove - Suprimeix paquets\n"
  1100. " autoremove - Suprimeix automàticament tots els paquets en desús\n"
  1101. " purge - Suprimeix i purga paquets\n"
  1102. " source - Baixa arxius font\n"
  1103. " build-dep - Configura dependències de construcció pels paquets font\n"
  1104. " dist-upgrade - Actualitza la distribució, vegeu apt-get(8)\n"
  1105. " dselect-upgrade - Segueix les seleccions del dselect\n"
  1106. " clean - Esborra els fitxers d'arxiu baixats\n"
  1107. " autoclean - Esborra els fitxers d'arxiu antics baixats\n"
  1108. " check - Verifica que no hi hagi dependències trencades\n"
  1109. "\n"
  1110. "Opcions:\n"
  1111. " -h Aquest text d'ajuda.\n"
  1112. " -q Sortida enregistrable - sense indicador de progrés\n"
  1113. " -qq Sense sortida, llevat dels errors\n"
  1114. " -d Només baixa - NO instal·les o desempaquetes arxius\n"
  1115. " -s No actues. Realitza les ordres en mode de simulació\n"
  1116. " -y Assumeix que Sí per a totes les preguntes, sense interrupcions\n"
  1117. " -f Intenta corregir un sistema amb dependències trencades\n"
  1118. " -m Intenta continuar si no es treben els arxius\n"
  1119. " -u Mostra també una llista dels paquets actualitzats\n"
  1120. " -b Construeix el paquet font després de baixar-lo\n"
  1121. " -V Mostra els números de versió detallats\n"
  1122. " -c=? Llegeix aquest fitxer de configuració\n"
  1123. " -o=? Estableix una opció de configuració arbitrària, p.ex.\n"
  1124. " -o dir::cache=/tmp\n"
  1125. "Vegeu els manuals apt-get(8), sources.list(5) i apt.conf(5)\n"
  1126. "per a obtenir més informació i opcions.\n"
  1127. " Aquest APT té superpoders bovins\n"
  1128. #: cmdline/apt-get.cc:2839
  1129. msgid ""
  1130. "NOTE: This is only a simulation!\n"
  1131. " apt-get needs root privileges for real execution.\n"
  1132. " Keep also in mind that locking is deactivated,\n"
  1133. " so don't depend on the relevance to the real current situation!"
  1134. msgstr ""
  1135. #: cmdline/acqprogress.cc:55
  1136. msgid "Hit "
  1137. msgstr "Obj "
  1138. #: cmdline/acqprogress.cc:79
  1139. msgid "Get:"
  1140. msgstr "Bai:"
  1141. #: cmdline/acqprogress.cc:110
  1142. msgid "Ign "
  1143. msgstr "Ign "
  1144. #: cmdline/acqprogress.cc:114
  1145. msgid "Err "
  1146. msgstr "Err "
  1147. #: cmdline/acqprogress.cc:135
  1148. #, c-format
  1149. msgid "Fetched %sB in %s (%sB/s)\n"
  1150. msgstr "%sB baixats en %s (%sB/s)\n"
  1151. #: cmdline/acqprogress.cc:225
  1152. #, c-format
  1153. msgid " [Working]"
  1154. msgstr " [Treballant]"
  1155. #: cmdline/acqprogress.cc:271
  1156. #, c-format
  1157. msgid ""
  1158. "Media change: please insert the disc labeled\n"
  1159. " '%s'\n"
  1160. "in the drive '%s' and press enter\n"
  1161. msgstr ""
  1162. "Canvi de medi: inseriu el disc amb l'etiqueta\n"
  1163. " «%s»\n"
  1164. "en la unitat «%s» i premeu Intro\n"
  1165. #: cmdline/apt-sortpkgs.cc:86
  1166. msgid "Unknown package record!"
  1167. msgstr "Registre del paquet desconegut!"
  1168. #: cmdline/apt-sortpkgs.cc:150
  1169. msgid ""
  1170. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1171. "\n"
  1172. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1173. "to indicate what kind of file it is.\n"
  1174. "\n"
  1175. "Options:\n"
  1176. " -h This help text\n"
  1177. " -s Use source file sorting\n"
  1178. " -c=? Read this configuration file\n"
  1179. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1180. msgstr ""
  1181. "Forma d'ús: apt-sortpkgs [opcions] fitxer1 [fitxer2 ...]\n"
  1182. "\n"
  1183. "apt-sortpkgs és una simple eina per a ordenar fitxers de paquets.\n"
  1184. "L'opció -s s'usa per a indicar quin tipus de fitxer és.\n"
  1185. "\n"
  1186. "Opcions:\n"
  1187. " -h Aquest text d'ajuda.\n"
  1188. " -s Empra l'ordenació de fitxers font\n"
  1189. " -c=? Llegeix aquest fitxer de configuració\n"
  1190. " -o=? Estableix una opció de configuració, p.ex: -o dir::cache=/tmp\n"
  1191. #: dselect/install:32
  1192. msgid "Bad default setting!"
  1193. msgstr "Paràmetre establert incorrecte!"
  1194. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
  1195. #: dselect/install:105 dselect/update:45
  1196. msgid "Press enter to continue."
  1197. msgstr "Premeu Intro per a continuar."
  1198. #: dselect/install:91
  1199. msgid "Do you want to erase any previously downloaded .deb files?"
  1200. msgstr "Voleu suprimir els paquets .deb baixats prèviament?"
  1201. #: dselect/install:101
  1202. msgid "Some errors occurred while unpacking. I'm going to configure the"
  1203. msgstr "S'han produït alguns errors en desempaquetar. Es configuraran"
  1204. #: dselect/install:102
  1205. msgid "packages that were installed. This may result in duplicate errors"
  1206. msgstr ""
  1207. "els paquets que s'han instal·lat. Això pot resultar en errors duplicats"
  1208. #: dselect/install:103
  1209. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1210. msgstr ""
  1211. "o errors causats per dependències sense satisfer. Això està bé, només els "
  1212. "errors"
  1213. #: dselect/install:104
  1214. msgid ""
  1215. "above this message are important. Please fix them and run [I]nstall again"
  1216. msgstr ""
  1217. "anteriors a aquest missatge són importants. Arregleu-los i torneu a executar "
  1218. "[I]nstal·la una altra vegada"
  1219. #: dselect/update:30
  1220. msgid "Merging available information"
  1221. msgstr "S'està fusionant la informació disponible"
  1222. #: apt-inst/contrib/extracttar.cc:114
  1223. msgid "Failed to create pipes"
  1224. msgstr "No es poden crear els conductes"
  1225. #: apt-inst/contrib/extracttar.cc:141
  1226. msgid "Failed to exec gzip "
  1227. msgstr "No es pot executar el gzip "
  1228. #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
  1229. msgid "Corrupted archive"
  1230. msgstr "Arxiu corromput"
  1231. #: apt-inst/contrib/extracttar.cc:193
  1232. msgid "Tar checksum failed, archive corrupted"
  1233. msgstr "La suma de comprovació de tar ha fallat, arxiu corromput"
  1234. #: apt-inst/contrib/extracttar.cc:296
  1235. #, c-format
  1236. msgid "Unknown TAR header type %u, member %s"
  1237. msgstr "Capçalera TAR desconeguda del tipus %u, membre %s"
  1238. #: apt-inst/contrib/arfile.cc:70
  1239. msgid "Invalid archive signature"
  1240. msgstr "Signatura de l'arxiu no vàlida"
  1241. #: apt-inst/contrib/arfile.cc:78
  1242. msgid "Error reading archive member header"
  1243. msgstr "S'ha produït un error en llegir la capçalera del membre de l'arxiu"
  1244. #: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
  1245. msgid "Invalid archive member header"
  1246. msgstr "La capçalera del membre de l'arxiu no és vàlida"
  1247. #: apt-inst/contrib/arfile.cc:128
  1248. msgid "Archive is too short"
  1249. msgstr "L'arxiu és massa petit"
  1250. #: apt-inst/contrib/arfile.cc:132
  1251. msgid "Failed to read the archive headers"
  1252. msgstr "Ha fallat la lectura de les capçaleres de l'arxiu"
  1253. #: apt-inst/filelist.cc:380
  1254. msgid "DropNode called on still linked node"
  1255. msgstr "DropNode crida a un node que encara està enllaçat"
  1256. #: apt-inst/filelist.cc:412
  1257. msgid "Failed to locate the hash element!"
  1258. msgstr "No s'ha trobat l'element diseminat!"
  1259. #: apt-inst/filelist.cc:459
  1260. msgid "Failed to allocate diversion"
  1261. msgstr "No s'ha pogut assignar la desviació"
  1262. #: apt-inst/filelist.cc:464
  1263. msgid "Internal error in AddDiversion"
  1264. msgstr "S'ha produït un error intern en AddDiversion"
  1265. #: apt-inst/filelist.cc:477
  1266. #, c-format
  1267. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1268. msgstr "S'està intentant sobreescriure una desviació, %s -> %s i %s/%s"
  1269. #: apt-inst/filelist.cc:506
  1270. #, c-format
  1271. msgid "Double add of diversion %s -> %s"
  1272. msgstr "Afegit doble d'una desviació %s -> %s"
  1273. #: apt-inst/filelist.cc:549
  1274. #, c-format
  1275. msgid "Duplicate conf file %s/%s"
  1276. msgstr "Fitxer de conf. duplicat %s/%s"
  1277. #: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
  1278. #, c-format
  1279. msgid "Failed to write file %s"
  1280. msgstr "No s'ha pogut escriure el fitxer %s"
  1281. #: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
  1282. #, c-format
  1283. msgid "Failed to close file %s"
  1284. msgstr "Ha fallat el tancament del fitxer %s"
  1285. #: apt-inst/extract.cc:93 apt-inst/extract.cc:164
  1286. #, c-format
  1287. msgid "The path %s is too long"
  1288. msgstr "La ruta %s és massa llarga"
  1289. #: apt-inst/extract.cc:124
  1290. #, c-format
  1291. msgid "Unpacking %s more than once"
  1292. msgstr "S'està desempaquetant %s més d'una vegada"
  1293. #: apt-inst/extract.cc:134
  1294. #, c-format
  1295. msgid "The directory %s is diverted"
  1296. msgstr "El directori %s està desviat"
  1297. #: apt-inst/extract.cc:144
  1298. #, c-format
  1299. msgid "The package is trying to write to the diversion target %s/%s"
  1300. msgstr "El paquet està intentant escriure en l'objectiu desviat %s/%s"
  1301. #: apt-inst/extract.cc:154 apt-inst/extract.cc:297
  1302. msgid "The diversion path is too long"
  1303. msgstr "La ruta de desviació és massa llarga"
  1304. #: apt-inst/extract.cc:240
  1305. #, c-format
  1306. msgid "The directory %s is being replaced by a non-directory"
  1307. msgstr "El directori %s està sent reemplaçat per un no-directori"
  1308. #: apt-inst/extract.cc:280
  1309. msgid "Failed to locate node in its hash bucket"
  1310. msgstr "No s'ha trobat el node dins de la taula"
  1311. #: apt-inst/extract.cc:284
  1312. msgid "The path is too long"
  1313. msgstr "La ruta és massa llarga"
  1314. #: apt-inst/extract.cc:414
  1315. #, c-format
  1316. msgid "Overwrite package match with no version for %s"
  1317. msgstr "S'està sobreescrivint el corresponent paquet sense versió per a %s"
  1318. #: apt-inst/extract.cc:431
  1319. #, c-format
  1320. msgid "File %s/%s overwrites the one in the package %s"
  1321. msgstr "El fitxer %s/%s sobreescriu al que està en el paquet %s"
  1322. #. Only warn if there are no sources.list.d.
  1323. #. Only warn if there is no sources.list file.
  1324. #: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:822
  1325. #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166
  1326. #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419
  1327. #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33
  1328. #: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287
  1329. #, c-format
  1330. msgid "Unable to read %s"
  1331. msgstr "No es pot llegir %s"
  1332. #: apt-inst/extract.cc:491
  1333. #, c-format
  1334. msgid "Unable to stat %s"
  1335. msgstr "No es pot veure l'estat de %s"
  1336. #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
  1337. #, c-format
  1338. msgid "Failed to remove %s"
  1339. msgstr "No es pot suprimir %s"
  1340. #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
  1341. #, c-format
  1342. msgid "Unable to create %s"
  1343. msgstr "No es pot crear %s"
  1344. #: apt-inst/deb/dpkgdb.cc:114
  1345. #, c-format
  1346. msgid "Failed to stat %sinfo"
  1347. msgstr "No s'ha pogut fer «stat» de %sinfo"
  1348. #: apt-inst/deb/dpkgdb.cc:119
  1349. msgid "The info and temp directories need to be on the same filesystem"
  1350. msgstr ""
  1351. "La info i els directoris temp necessiten estar en el mateix sistema de "
  1352. "fitxers"
  1353. #. Build the status cache
  1354. #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763
  1355. #: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837
  1356. #: apt-pkg/pkgcachegen.cc:961
  1357. msgid "Reading package lists"
  1358. msgstr "S'està llegint la llista de paquets"
  1359. #: apt-inst/deb/dpkgdb.cc:176
  1360. #, c-format
  1361. msgid "Failed to change to the admin dir %sinfo"
  1362. msgstr "No s'ha pogut canviar al directori d'administració %sinfo"
  1363. #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
  1364. #: apt-inst/deb/dpkgdb.cc:444
  1365. msgid "Internal error getting a package name"
  1366. msgstr "S'ha produït un error intern en obtenir un nom de paquet"
  1367. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
  1368. msgid "Reading file listing"
  1369. msgstr "S'està llegint el llistat de fitxers"
  1370. #: apt-inst/deb/dpkgdb.cc:212
  1371. #, c-format
  1372. msgid ""
  1373. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1374. "then make it empty and immediately re-install the same version of the "
  1375. "package!"
  1376. msgstr ""
  1377. "No s'ha pogut obrir la llista del fitxer «%sinfo/%s». Si no podeu restaurar "
  1378. "aquest fitxer, creeu-lo buit i torneu a instal·lar immediatament la mateixa "
  1379. "versió del paquet!"
  1380. #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
  1381. #, c-format
  1382. msgid "Failed reading the list file %sinfo/%s"
  1383. msgstr "No s'ha pogut llegir la llista del fitxer %sinfo/%s"
  1384. #: apt-inst/deb/dpkgdb.cc:262
  1385. msgid "Internal error getting a node"
  1386. msgstr "S'ha produït un error en obtenir un node"
  1387. #: apt-inst/deb/dpkgdb.cc:305
  1388. #, c-format
  1389. msgid "Failed to open the diversions file %sdiversions"
  1390. msgstr "S'ha produït un error en obrir el fitxer de desviació %sdiversions"
  1391. #: apt-inst/deb/dpkgdb.cc:320
  1392. msgid "The diversion file is corrupted"
  1393. msgstr "El fitxer de desviació està corrupte"
  1394. #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
  1395. #: apt-inst/deb/dpkgdb.cc:337
  1396. #, c-format
  1397. msgid "Invalid line in the diversion file: %s"
  1398. msgstr "Línia no vàlida al fitxer de desviació: %s"
  1399. #: apt-inst/deb/dpkgdb.cc:358
  1400. msgid "Internal error adding a diversion"
  1401. msgstr "S'ha produït un error intern en afegir una desviació"
  1402. #: apt-inst/deb/dpkgdb.cc:379
  1403. msgid "The pkg cache must be initialized first"
  1404. msgstr "Primer s'ha d'inicialitzar la memòria cau d'aquest paquet"
  1405. #: apt-inst/deb/dpkgdb.cc:439
  1406. #, c-format
  1407. msgid "Failed to find a Package: header, offset %lu"
  1408. msgstr "No s'ha trobat una capçalera Package:, desplaçament %lu"
  1409. #: apt-inst/deb/dpkgdb.cc:461
  1410. #, c-format
  1411. msgid "Bad ConfFile section in the status file. Offset %lu"
  1412. msgstr "Secció ConfFile dolenta al fitxer d'estat. Desplaçament %lu"
  1413. #: apt-inst/deb/dpkgdb.cc:466
  1414. #, c-format
  1415. msgid "Error parsing MD5. Offset %lu"
  1416. msgstr "S'ha produït un error en analitzar la suma MD5. Desplaçament %lu"
  1417. #: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
  1418. #, c-format
  1419. msgid "This is not a valid DEB archive, missing '%s' member"
  1420. msgstr "Aquest no és un arxiu DEB vàlid, falta el membre «%s»"
  1421. #: apt-inst/deb/debfile.cc:50
  1422. #, c-format
  1423. msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  1424. msgstr "Aquest no és un arxiu DEB vàlid, li manca el membre «%s», «%s» o «%s»"
  1425. #: apt-inst/deb/debfile.cc:110
  1426. #, c-format
  1427. msgid "Couldn't change to %s"
  1428. msgstr "No s'ha pogut canviar a %s"
  1429. #: apt-inst/deb/debfile.cc:140
  1430. msgid "Internal error, could not locate member"
  1431. msgstr "S'ha produït un error intern, no s'ha trobat el membre"
  1432. #: apt-inst/deb/debfile.cc:173
  1433. msgid "Failed to locate a valid control file"
  1434. msgstr "No s'ha trobat un fitxer de control vàlid"
  1435. #: apt-inst/deb/debfile.cc:258
  1436. msgid "Unparsable control file"
  1437. msgstr "El fitxer de control no es pot analitzar"
  1438. #: methods/cdrom.cc:200
  1439. #, c-format
  1440. msgid "Unable to read the cdrom database %s"
  1441. msgstr "No es pot llegir la base de dades del cdrom %s"
  1442. #: methods/cdrom.cc:209
  1443. msgid ""
  1444. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1445. "cannot be used to add new CD-ROMs"
  1446. msgstr ""
  1447. "Si us plau, useu apt-cdrom per a que aquest CD sigui reconegut per APT. No "
  1448. "pot emprar-se apt-get update per afegir-ne de nous"
  1449. #: methods/cdrom.cc:219
  1450. msgid "Wrong CD-ROM"
  1451. msgstr "CD erroni"
  1452. #: methods/cdrom.cc:245
  1453. #, c-format
  1454. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1455. msgstr "No es pot muntar el CD-ROM en %s, potser estigui encara en ús."
  1456. #: methods/cdrom.cc:250
  1457. msgid "Disk not found."
  1458. msgstr "No s'ha trobat el disc"
  1459. #: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264
  1460. msgid "File not found"
  1461. msgstr "Fitxer no trobat"
  1462. #: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
  1463. #: methods/rred.cc:234 methods/rred.cc:243
  1464. msgid "Failed to stat"
  1465. msgstr "L'estat ha fallat"
  1466. #: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
  1467. msgid "Failed to set modification time"
  1468. msgstr "No s'ha pogut establir el temps de modificació"
  1469. #: methods/file.cc:44
  1470. msgid "Invalid URI, local URIS must not start with //"
  1471. msgstr "URI no vàlid, els URI locals no han de començar per //"
  1472. #. Login must be before getpeername otherwise dante won't work.
  1473. #: methods/ftp.cc:167
  1474. msgid "Logging in"
  1475. msgstr "S'està accedint a"
  1476. #: methods/ftp.cc:173
  1477. msgid "Unable to determine the peer name"
  1478. msgstr "No es pot determinar el nom de la màquina distant"
  1479. #: methods/ftp.cc:178
  1480. msgid "Unable to determine the local name"
  1481. msgstr "No es pot determinar el nom local"
  1482. #: methods/ftp.cc:209 methods/ftp.cc:237
  1483. #, c-format
  1484. msgid "The server refused the connection and said: %s"
  1485. msgstr "El servidor ha rebutjat la nostra connexió i ha dit: %s"
  1486. #: methods/ftp.cc:215
  1487. #, c-format
  1488. msgid "USER failed, server said: %s"
  1489. msgstr "USER ha fallat, el servidor ha dit: %s"
  1490. #: methods/ftp.cc:222
  1491. #, c-format
  1492. msgid "PASS failed, server said: %s"
  1493. msgstr "PASS ha fallat, el servidor ha dit: %s"
  1494. #: methods/ftp.cc:242
  1495. msgid ""
  1496. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1497. "is empty."
  1498. msgstr ""
  1499. "S'ha especificat un servidor intermediari però no un script d'accés, "
  1500. "Acquire::ftp::ProxyLogin està buit."
  1501. #: methods/ftp.cc:270
  1502. #, c-format
  1503. msgid "Login script command '%s' failed, server said: %s"
  1504. msgstr "L'ordre '%s' de l'script d'accés ha fallat, el servidor ha dit: %s"
  1505. #: methods/ftp.cc:296
  1506. #, c-format
  1507. msgid "TYPE failed, server said: %s"
  1508. msgstr "TYPE ha fallat, el servidor ha dit: %s"
  1509. #: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226
  1510. msgid "Connection timeout"
  1511. msgstr "Temps de connexió finalitzat"
  1512. #: methods/ftp.cc:340
  1513. msgid "Server closed the connection"
  1514. msgstr "El servidor ha tancat la connexió"
  1515. #: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190
  1516. msgid "Read error"
  1517. msgstr "Error de lectura"
  1518. #: methods/ftp.cc:350 methods/rsh.cc:197
  1519. msgid "A response overflowed the buffer."
  1520. msgstr "Una resposta ha desbordat la memòria temporal."
  1521. #: methods/ftp.cc:367 methods/ftp.cc:379
  1522. msgid "Protocol corruption"
  1523. msgstr "Protocol corromput"
  1524. #: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232
  1525. msgid "Write error"
  1526. msgstr "Error d'escriptura"
  1527. #: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734
  1528. msgid "Could not create a socket"
  1529. msgstr "No s'ha pogut crear un sòcol"
  1530. #: methods/ftp.cc:703
  1531. msgid "Could not connect data socket, connection timed out"
  1532. msgstr "No s'ha pogut connectar amb el sòcol de dades, connexió finalitzada"
  1533. #: methods/ftp.cc:709
  1534. msgid "Could not connect passive socket."
  1535. msgstr "No s'ha pogut connectar amb el sòcol passiu."
  1536. #: methods/ftp.cc:727
  1537. msgid "getaddrinfo was unable to get a listening socket"
  1538. msgstr "gettaddrinfo no es pot obtenir un sòcol que escolte"
  1539. # abastar? huh? jm
  1540. #: methods/ftp.cc:741
  1541. msgid "Could not bind a socket"
  1542. msgstr "No s'ha pogut abastar un connector"
  1543. #: methods/ftp.cc:745
  1544. msgid "Could not listen on the socket"
  1545. msgstr "No s'ha pogut escoltar sobre el sòcol"
  1546. #: methods/ftp.cc:752
  1547. msgid "Could not determine the socket's name"
  1548. msgstr "No s'ha pogut determinar el nom del sòcol"
  1549. #: methods/ftp.cc:784
  1550. msgid "Unable to send PORT command"
  1551. msgstr "No es pot enviar l'ordre PORT"
  1552. #: methods/ftp.cc:794
  1553. #, c-format
  1554. msgid "Unknown address family %u (AF_*)"
  1555. msgstr "La família d'adreces %u és desconeguda (AF_*)"
  1556. #: methods/ftp.cc:803
  1557. #, c-format
  1558. msgid "EPRT failed, server said: %s"
  1559. msgstr "EPRT ha fallat, el servidor ha dit: %s"
  1560. #: methods/ftp.cc:823
  1561. msgid "Data socket connect timed out"
  1562. msgstr "S'ha esgotat el temps de connexió al sòcol de dades"
  1563. #: methods/ftp.cc:830
  1564. msgid "Unable to accept connection"
  1565. msgstr "No es pot acceptar la connexió"
  1566. #: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303
  1567. msgid "Problem hashing file"
  1568. msgstr "Problema escollint el fitxer"
  1569. #: methods/ftp.cc:882
  1570. #, c-format
  1571. msgid "Unable to fetch file, server said '%s'"
  1572. msgstr "No és possible reprendre el fitxer, el servidor ha dit '%s'"
  1573. #: methods/ftp.cc:897 methods/rsh.cc:322
  1574. msgid "Data socket timed out"
  1575. msgstr "S'ha esgotat el temps d'espera per al sòcol de dades"
  1576. #: methods/ftp.cc:927
  1577. #, c-format
  1578. msgid "Data transfer failed, server said '%s'"
  1579. msgstr "Ha fallat la transferència de dades, el servidor ha dit '%s'"
  1580. #. Get the files information
  1581. #: methods/ftp.cc:1002
  1582. msgid "Query"
  1583. msgstr "Consulta"
  1584. #: methods/ftp.cc:1114
  1585. msgid "Unable to invoke "
  1586. msgstr "No es pot invocar"
  1587. #: methods/connect.cc:70
  1588. #, c-format
  1589. msgid "Connecting to %s (%s)"
  1590. msgstr "S'està connectant amb %s (%s)"
  1591. #: methods/connect.cc:81
  1592. #, c-format
  1593. msgid "[IP: %s %s]"
  1594. msgstr "[IP: %s %s]"
  1595. #: methods/connect.cc:90
  1596. #, c-format
  1597. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1598. msgstr "No s'ha pogut crear un sòcol per a %s (f=%u t=%u p=%u)"
  1599. #: methods/connect.cc:96
  1600. #, c-format
  1601. msgid "Cannot initiate the connection to %s:%s (%s)."
  1602. msgstr "No es pot iniciar la connexió amb %s:%s (%s)."
  1603. #: methods/connect.cc:104
  1604. #, c-format
  1605. msgid "Could not connect to %s:%s (%s), connection timed out"
  1606. msgstr "No s'ha pogut connectar amb %s:%s (%s), temps de connexió excedit"
  1607. #: methods/connect.cc:119
  1608. #, c-format
  1609. msgid "Could not connect to %s:%s (%s)."
  1610. msgstr "No s'ha pogut connectar amb %s:%s (%s)."
  1611. #. We say this mainly because the pause here is for the
  1612. #. ssh connection that is still going
  1613. #: methods/connect.cc:147 methods/rsh.cc:425
  1614. #, c-format
  1615. msgid "Connecting to %s"
  1616. msgstr "S'està connectant amb %s"
  1617. #: methods/connect.cc:165 methods/connect.cc:184
  1618. #, c-format
  1619. msgid "Could not resolve '%s'"
  1620. msgstr "No s'ha pogut resoldre '%s'"
  1621. #: methods/connect.cc:190
  1622. #, c-format
  1623. msgid "Temporary failure resolving '%s'"
  1624. msgstr "S'ha produït un error temporal en resoldre '%s'"
  1625. #: methods/connect.cc:193
  1626. #, c-format
  1627. msgid "Something wicked happened resolving '%s:%s' (%i)"
  1628. msgstr "Ha passat alguna cosa estranya en resoldre «%s:%s» (%i)"
  1629. #: methods/connect.cc:240
  1630. #, c-format
  1631. msgid "Unable to connect to %s %s:"
  1632. msgstr "No es pot connectar amb %s %s:"
  1633. #: methods/gpgv.cc:71
  1634. #, c-format
  1635. msgid "Couldn't access keyring: '%s'"
  1636. msgstr "No s'ha pogut accedir a l'anell de claus: «%s»"
  1637. #: methods/gpgv.cc:107
  1638. msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  1639. msgstr ""
  1640. "E: La llista d'arguments d'Acquire::gpgv::Options és massa llarga. S'està "
  1641. "sortint."
  1642. #: methods/gpgv.cc:223
  1643. msgid ""
  1644. "Internal error: Good signature, but could not determine key fingerprint?!"
  1645. msgstr ""
  1646. "Error intern: La signatura és correcta, però no s'ha pogut determinar "
  1647. "l'emprempta digital de la clau!"
  1648. #: methods/gpgv.cc:228
  1649. msgid "At least one invalid signature was encountered."
  1650. msgstr "S'ha trobat almenys una signatura invàlida."
  1651. #: methods/gpgv.cc:232
  1652. #, c-format
  1653. msgid "Could not execute '%s' to verify signature (is gpgv installed?)"
  1654. msgstr ""
  1655. "No s'ha pogut executar «%s» per a verificar la signatura (està instal·lat el "
  1656. "gpgv?)"
  1657. #: methods/gpgv.cc:237
  1658. msgid "Unknown error executing gpgv"
  1659. msgstr "S'ha produït un error desconegut en executar el gpgv"
  1660. #: methods/gpgv.cc:271 methods/gpgv.cc:278
  1661. msgid "The following signatures were invalid:\n"
  1662. msgstr "Les signatures següents són invàlides:\n"
  1663. #: methods/gpgv.cc:285
  1664. msgid ""
  1665. "The following signatures couldn't be verified because the public key is not "
  1666. "available:\n"
  1667. msgstr ""
  1668. "Les signatures següents no s'han pogut verificar perquè la clau pública no "
  1669. "està disponible:\n"
  1670. #: methods/gzip.cc:64
  1671. #, c-format
  1672. msgid "Couldn't open pipe for %s"
  1673. msgstr "No s'ha pogut obrir un conducte per a %s"
  1674. #: methods/gzip.cc:109
  1675. #, c-format
  1676. msgid "Read error from %s process"
  1677. msgstr "S'ha produït un error en llegir des del procés %s"
  1678. #: methods/http.cc:384
  1679. msgid "Waiting for headers"
  1680. msgstr "S'estan esperant les capçaleres"
  1681. #: methods/http.cc:530
  1682. #, c-format
  1683. msgid "Got a single header line over %u chars"
  1684. msgstr "S'ha obtingut una capçalera d'una sola línea de més de %u caràcters"
  1685. #: methods/http.cc:538
  1686. msgid "Bad header line"
  1687. msgstr "Línia de capçalera incorrecta"
  1688. #: methods/http.cc:557 methods/http.cc:564
  1689. msgid "The HTTP server sent an invalid reply header"
  1690. msgstr "El servidor HTTP ha enviat una capçalera de resposta no vàlida"
  1691. #: methods/http.cc:593
  1692. msgid "The HTTP server sent an invalid Content-Length header"
  1693. msgstr "El servidor HTTP ha enviat una capçalera de Content-Length no vàlida"
  1694. #: methods/http.cc:608
  1695. msgid "The HTTP server sent an invalid Content-Range header"
  1696. msgstr "El servidor HTTP ha enviat una capçalera de Content-Range no vàlida"
  1697. #: methods/http.cc:610
  1698. msgid "This HTTP server has broken range support"
  1699. msgstr "Aquest servidor HTTP té el suport d'abast trencat"
  1700. #: methods/http.cc:634
  1701. msgid "Unknown date format"
  1702. msgstr "Format de la data desconegut"
  1703. #: methods/http.cc:787
  1704. msgid "Select failed"
  1705. msgstr "Ha fallat la selecció"
  1706. #: methods/http.cc:792
  1707. msgid "Connection timed out"
  1708. msgstr "Connexió finalitzada"
  1709. #: methods/http.cc:815
  1710. msgid "Error writing to output file"
  1711. msgstr "S'ha produït un error en escriure al fitxer de sortida"
  1712. #: methods/http.cc:846
  1713. msgid "Error writing to file"
  1714. msgstr "S'ha produït un error en escriure al fitxer"
  1715. #: methods/http.cc:874
  1716. msgid "Error writing to the file"
  1717. msgstr "S'ha produït un error en escriure al fitxer"
  1718. #: methods/http.cc:888
  1719. msgid "Error reading from server. Remote end closed connection"
  1720. msgstr ""
  1721. "S'ha produït un error en llegir, el servidor remot ha tancat la connexió"
  1722. #: methods/http.cc:890
  1723. msgid "Error reading from server"
  1724. msgstr "S'ha produït un error en llegir des del servidor"
  1725. #: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215
  1726. msgid "Failed to truncate file"
  1727. msgstr "No s'ha pogut truncar el fitxer %s"
  1728. #: methods/http.cc:1146
  1729. msgid "Bad header data"
  1730. msgstr "Capçalera de dades no vàlida"
  1731. #: methods/http.cc:1163 methods/http.cc:1218
  1732. msgid "Connection failed"
  1733. msgstr "Ha fallat la connexió"
  1734. #: methods/http.cc:1310
  1735. msgid "Internal error"
  1736. msgstr "Error intern"
  1737. #: apt-pkg/contrib/mmap.cc:76
  1738. msgid "Can't mmap an empty file"
  1739. msgstr "No es pot transferir un fitxer buit a memòria"
  1740. #: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187
  1741. #, c-format
  1742. msgid "Couldn't make mmap of %lu bytes"
  1743. msgstr "No s'ha pogut crear un mapa de memòria de %lu octets"
  1744. #: apt-pkg/contrib/mmap.cc:234
  1745. #, c-format
  1746. msgid ""
  1747. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. "
  1748. "Current value: %lu. (man 5 apt.conf)"
  1749. msgstr ""
  1750. "No hi ha espai per al «Dynamic MMap». Incrementeu la mida d'APT::Cache-Limit. "
  1751. "Valor actual: %lu. (man 5 apt.conf)"
  1752. #. d means days, h means hours, min means minutes, s means seconds
  1753. #: apt-pkg/contrib/strutl.cc:335
  1754. #, c-format
  1755. msgid "%lid %lih %limin %lis"
  1756. msgstr "%lid %lih %limin %lis"
  1757. #. h means hours, min means minutes, s means seconds
  1758. #: apt-pkg/contrib/strutl.cc:342
  1759. #, c-format
  1760. msgid "%lih %limin %lis"
  1761. msgstr "%lih %limin %lis"
  1762. #. min means minutes, s means seconds
  1763. #: apt-pkg/contrib/strutl.cc:349
  1764. #, fuzzy, c-format
  1765. msgid "%limin %lis"
  1766. msgstr "limin %lis"
  1767. #. s means seconds
  1768. #: apt-pkg/contrib/strutl.cc:354
  1769. #, c-format
  1770. msgid "%lis"
  1771. msgstr "%lis"
  1772. #: apt-pkg/contrib/strutl.cc:1029
  1773. #, c-format
  1774. msgid "Selection %s not found"
  1775. msgstr "No s'ha trobat la selecció %s"
  1776. #: apt-pkg/contrib/configuration.cc:439
  1777. #, c-format
  1778. msgid "Unrecognized type abbreviation: '%c'"
  1779. msgstr "Abreujament de tipus no reconegut: «%c»"
  1780. #: apt-pkg/contrib/configuration.cc:497
  1781. #, c-format
  1782. msgid "Opening configuration file %s"
  1783. msgstr "S'està obrint el fitxer de configuració %s"
  1784. #: apt-pkg/contrib/configuration.cc:663
  1785. #, c-format
  1786. msgid "Syntax error %s:%u: Block starts with no name."
  1787. msgstr "Error sintàctic %s:%u: No comença el camp amb un nom."
  1788. #: apt-pkg/contrib/configuration.cc:682
  1789. #, c-format
  1790. msgid "Syntax error %s:%u: Malformed tag"
  1791. msgstr "Error sintàctic %s:%u: Etiqueta malformada"
  1792. #: apt-pkg/contrib/configuration.cc:699
  1793. #, c-format
  1794. msgid "Syntax error %s:%u: Extra junk after value"
  1795. msgstr "Error sintàctic %s:%u Text extra després del valor"
  1796. #: apt-pkg/contrib/configuration.cc:739
  1797. #, c-format
  1798. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1799. msgstr "Error sintàctic %s:%u: Es permeten directrius només al nivell més alt"
  1800. #: apt-pkg/contrib/configuration.cc:746
  1801. #, c-format
  1802. msgid "Syntax error %s:%u: Too many nested includes"
  1803. msgstr "Error sintàctic %s:%u: Hi ha masses fitxers include niats"
  1804. #: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755
  1805. #, c-format
  1806. msgid "Syntax error %s:%u: Included from here"
  1807. msgstr "Error sintàctic %s:%u: Inclusió des d'aquí"
  1808. #: apt-pkg/contrib/configuration.cc:759
  1809. #, c-format
  1810. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1811. msgstr "Error sintàctic %s:%u: Directriu no suportada «%s»"
  1812. #: apt-pkg/contrib/configuration.cc:810
  1813. #, c-format
  1814. msgid "Syntax error %s:%u: Extra junk at end of file"
  1815. msgstr "Error sintàctic %s:%u: Text extra al final del fitxer"
  1816. #: apt-pkg/contrib/progress.cc:153
  1817. #, c-format
  1818. msgid "%c%s... Error!"
  1819. msgstr "%c%s... Error!"
  1820. #: apt-pkg/contrib/progress.cc:155
  1821. #, c-format
  1822. msgid "%c%s... Done"
  1823. msgstr "%c%s... Fet"
  1824. #: apt-pkg/contrib/cmndline.cc:77
  1825. #, c-format
  1826. msgid "Command line option '%c' [from %s] is not known."
  1827. msgstr "L'opció de la línia d'ordres «%c» [de %s] és desconeguda."
  1828. #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
  1829. #: apt-pkg/contrib/cmndline.cc:119
  1830. #, c-format
  1831. msgid "Command line option %s is not understood"
  1832. msgstr "No s'entén l'opció de la línia d'ordres %s"
  1833. #: apt-pkg/contrib/cmndline.cc:124
  1834. #, c-format
  1835. msgid "Command line option %s is not boolean"
  1836. msgstr "No és lògica l'opció de la línia d'ordres %s"
  1837. #: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
  1838. #, c-format
  1839. msgid "Option %s requires an argument."
  1840. msgstr "L'opció de la línia d'ordres %s precisa un paràmetre."
  1841. #: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
  1842. #, c-format
  1843. msgid "Option %s: Configuration item specification must have an =<val>."
  1844. msgstr "Opció %s: Paràmetre de configuració ha de ser en la forma =<val>"
  1845. #: apt-pkg/contrib/cmndline.cc:234
  1846. #, c-format
  1847. msgid "Option %s requires an integer argument, not '%s'"
  1848. msgstr "L'opció %s precisa un paràmetre numèric, no '%s'"
  1849. #: apt-pkg/contrib/cmndline.cc:265
  1850. #, c-format
  1851. msgid "Option '%s' is too long"
  1852. msgstr "L'opció '%s' és massa llarga"
  1853. #: apt-pkg/contrib/cmndline.cc:298
  1854. #, c-format
  1855. msgid "Sense %s is not understood, try true or false."
  1856. msgstr "El sentit %s no s'entén, proveu «true» (vertader) o «false» (fals)."
  1857. #: apt-pkg/contrib/cmndline.cc:348
  1858. #, c-format
  1859. msgid "Invalid operation %s"
  1860. msgstr "Operació no vàlida %s"
  1861. #: apt-pkg/contrib/cdromutl.cc:52
  1862. #, c-format
  1863. msgid "Unable to stat the mount point %s"
  1864. msgstr "No es pot obtenir informació del punt de muntatge %s"
  1865. #: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187
  1866. #: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39
  1867. #, c-format
  1868. msgid "Unable to change to %s"
  1869. msgstr "No es pot canviar a %s"
  1870. #: apt-pkg/contrib/cdromutl.cc:195
  1871. msgid "Failed to stat the cdrom"
  1872. msgstr "No s'ha pogut fer «stat» del cdrom"
  1873. #: apt-pkg/contrib/fileutl.cc:149
  1874. #, c-format
  1875. msgid "Not using locking for read only lock file %s"
  1876. msgstr ""
  1877. "No s'empren blocats per a llegir el fitxer de blocat de sols lectura %s"
  1878. #: apt-pkg/contrib/fileutl.cc:154
  1879. #, c-format
  1880. msgid "Could not open lock file %s"
  1881. msgstr "No es pot resoldre el fitxer de blocat %s"
  1882. #: apt-pkg/contrib/fileutl.cc:172
  1883. #, c-format
  1884. msgid "Not using locking for nfs mounted lock file %s"
  1885. msgstr "No s'empren blocats per al fitxer de blocat %s de muntar nfs"
  1886. #: apt-pkg/contrib/fileutl.cc:176
  1887. #, c-format
  1888. msgid "Could not get lock %s"
  1889. msgstr "No s'ha pogut blocar %s"
  1890. #: apt-pkg/contrib/fileutl.cc:444
  1891. #, c-format
  1892. msgid "Waited for %s but it wasn't there"
  1893. msgstr "Esperava %s però no hi era"
  1894. #: apt-pkg/contrib/fileutl.cc:456
  1895. #, c-format
  1896. msgid "Sub-process %s received a segmentation fault."
  1897. msgstr "Sub-procés %s ha rebut una violació de segment."
  1898. #: apt-pkg/contrib/fileutl.cc:458
  1899. #, fuzzy, c-format
  1900. msgid "Sub-process %s received signal %u."
  1901. msgstr "Sub-procés %s ha rebut una violació de segment."
  1902. #: apt-pkg/contrib/fileutl.cc:462
  1903. #, c-format
  1904. msgid "Sub-process %s returned an error code (%u)"
  1905. msgstr "Sub-procés %s ha retornat un codi d'error (%u)"
  1906. #: apt-pkg/contrib/fileutl.cc:464
  1907. #, c-format
  1908. msgid "Sub-process %s exited unexpectedly"
  1909. msgstr "El sub-procés %s ha sortit inesperadament"
  1910. #: apt-pkg/contrib/fileutl.cc:508
  1911. #, c-format
  1912. msgid "Could not open file %s"
  1913. msgstr "No s'ha pogut obrir el fitxer %s"
  1914. #: apt-pkg/contrib/fileutl.cc:564
  1915. #, c-format
  1916. msgid "read, still have %lu to read but none left"
  1917. msgstr "llegits, falten %lu per llegir, però no queda res"
  1918. #: apt-pkg/contrib/fileutl.cc:594
  1919. #, c-format
  1920. msgid "write, still have %lu to write but couldn't"
  1921. msgstr "escrits, falten %lu per escriure però no s'ha pogut"
  1922. #: apt-pkg/contrib/fileutl.cc:669
  1923. msgid "Problem closing the file"
  1924. msgstr "Ha hagut un problema en tancar el fitxer"
  1925. #: apt-pkg/contrib/fileutl.cc:675
  1926. msgid "Problem unlinking the file"
  1927. msgstr "Ha hagut un problema en desenllaçar el fitxer"
  1928. #: apt-pkg/contrib/fileutl.cc:686
  1929. msgid "Problem syncing the file"
  1930. msgstr "Ha hagut un problema en sincronitzar el fitxer"
  1931. #: apt-pkg/pkgcache.cc:133
  1932. msgid "Empty package cache"
  1933. msgstr "Memòria cau de paquets és buida"
  1934. #: apt-pkg/pkgcache.cc:139
  1935. msgid "The package cache file is corrupted"
  1936. msgstr "El fitxer de memòria cau de paquets està corromput"
  1937. #: apt-pkg/pkgcache.cc:144
  1938. msgid "The package cache file is an incompatible version"
  1939. msgstr "El fitxer de memòria cau de paquets és una versió incompatible"
  1940. #: apt-pkg/pkgcache.cc:149
  1941. #, c-format
  1942. msgid "This APT does not support the versioning system '%s'"
  1943. msgstr "Aquest APT no suporta el sistema de versions «%s»"
  1944. #: apt-pkg/pkgcache.cc:154
  1945. msgid "The package cache was built for a different architecture"
  1946. msgstr "La memòria cau de paquets fou creada per a una arquitectura diferent"
  1947. #: apt-pkg/pkgcache.cc:225
  1948. msgid "Depends"
  1949. msgstr "Depèn"
  1950. #: apt-pkg/pkgcache.cc:225
  1951. msgid "PreDepends"
  1952. msgstr "Predepèn"
  1953. #: apt-pkg/pkgcache.cc:225
  1954. msgid "Suggests"
  1955. msgstr "Suggereix"
  1956. #: apt-pkg/pkgcache.cc:226
  1957. msgid "Recommends"
  1958. msgstr "Recomana"
  1959. #: apt-pkg/pkgcache.cc:226
  1960. msgid "Conflicts"
  1961. msgstr "Entra en conflicte"
  1962. #: apt-pkg/pkgcache.cc:226
  1963. msgid "Replaces"
  1964. msgstr "Reemplaça"
  1965. #: apt-pkg/pkgcache.cc:227
  1966. msgid "Obsoletes"
  1967. msgstr "Fa obsolet"
  1968. #: apt-pkg/pkgcache.cc:227
  1969. msgid "Breaks"
  1970. msgstr "Trenca"
  1971. #: apt-pkg/pkgcache.cc:227
  1972. msgid "Enhances"
  1973. msgstr ""
  1974. #: apt-pkg/pkgcache.cc:238
  1975. msgid "important"
  1976. msgstr "important"
  1977. #: apt-pkg/pkgcache.cc:238
  1978. msgid "required"
  1979. msgstr "requerit"
  1980. #: apt-pkg/pkgcache.cc:238
  1981. msgid "standard"
  1982. msgstr "estàndard"
  1983. #: apt-pkg/pkgcache.cc:239
  1984. msgid "optional"
  1985. msgstr "opcional"
  1986. #: apt-pkg/pkgcache.cc:239
  1987. msgid "extra"
  1988. msgstr "extra"
  1989. #: apt-pkg/depcache.cc:123 apt-pkg/depcache.cc:152
  1990. msgid "Building dependency tree"
  1991. msgstr "S'està construint l'arbre de dependències"
  1992. #: apt-pkg/depcache.cc:124
  1993. msgid "Candidate versions"
  1994. msgstr "Versions candidates"
  1995. #: apt-pkg/depcache.cc:153
  1996. msgid "Dependency generation"
  1997. msgstr "Dependències que genera"
  1998. #: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197
  1999. msgid "Reading state information"
  2000. msgstr "S'està llegint la informació de l'estat"
  2001. #: apt-pkg/depcache.cc:223
  2002. #, c-format
  2003. msgid "Failed to open StateFile %s"
  2004. msgstr "No s'ha pogut obrir el fitxer d'estat %s"
  2005. #: apt-pkg/depcache.cc:229
  2006. #, c-format
  2007. msgid "Failed to write temporary StateFile %s"
  2008. msgstr "No s'ha pogut escriure el fitxer d'estat temporal %s"
  2009. #: apt-pkg/tagfile.cc:102
  2010. #, c-format
  2011. msgid "Unable to parse package file %s (1)"
  2012. msgstr "No es pot analitzar el fitxer del paquet %s (1)"
  2013. #: apt-pkg/tagfile.cc:189
  2014. #, c-format
  2015. msgid "Unable to parse package file %s (2)"
  2016. msgstr "No es pot analitzar el fitxer del paquet %s (2)"
  2017. #: apt-pkg/sourcelist.cc:90
  2018. #, c-format
  2019. msgid "Malformed line %lu in source list %s (URI)"
  2020. msgstr "Línia %lu malformada en la llista de fonts %s (URI)"
  2021. #: apt-pkg/sourcelist.cc:92
  2022. #, c-format
  2023. msgid "Malformed line %lu in source list %s (dist)"
  2024. msgstr "Línia %lu malformada en la llista de fonts %s (dist)"
  2025. #: apt-pkg/sourcelist.cc:95
  2026. #, c-format
  2027. msgid "Malformed line %lu in source list %s (URI parse)"
  2028. msgstr "Línia %lu malformada en la llista de fonts %s (analitzant URI)"
  2029. #: apt-pkg/sourcelist.cc:101
  2030. #, c-format
  2031. msgid "Malformed line %lu in source list %s (absolute dist)"
  2032. msgstr "Línia %lu malformada en la llista de fonts %s (dist absoluta)"
  2033. #: apt-pkg/sourcelist.cc:108
  2034. #, c-format
  2035. msgid "Malformed line %lu in source list %s (dist parse)"
  2036. msgstr "Línia %lu malformada en la llista de fonts %s (analitzant dist)"
  2037. #: apt-pkg/sourcelist.cc:206
  2038. #, c-format
  2039. msgid "Opening %s"
  2040. msgstr "S'està obrint %s"
  2041. #: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445
  2042. #, c-format
  2043. msgid "Line %u too long in source list %s."
  2044. msgstr "La línia %u és massa llarga en la llista de fonts %s."
  2045. #: apt-pkg/sourcelist.cc:243
  2046. #, c-format
  2047. msgid "Malformed line %u in source list %s (type)"
  2048. msgstr "La línia %u és malformada en la llista de fonts %s (tipus)"
  2049. #: apt-pkg/sourcelist.cc:247
  2050. #, c-format
  2051. msgid "Type '%s' is not known on line %u in source list %s"
  2052. msgstr "El tipus «%s» no és conegut en la línia %u de la llista de fonts %s"
  2053. #: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258
  2054. #, c-format
  2055. msgid "Malformed line %u in source list %s (vendor id)"
  2056. msgstr "La línia %u és malformada en la llista de fonts %s (id del proveïdor)"
  2057. #: apt-pkg/packagemanager.cc:426
  2058. #, c-format
  2059. msgid ""
  2060. "This installation run will require temporarily removing the essential "
  2061. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2062. "you really want to do it, activate the APT::Force-LoopBreak option."
  2063. msgstr ""
  2064. "Aquesta instal·lació requereix suprimir temporalment el paquet essencial %s "
  2065. "per qüestió d'un bucle de Conflictes/Pre-dependències. Això sol ser una cosa "
  2066. "dolenta, però si realment desitgeu fer-la, activeu l'opció APT::Force-"
  2067. "LoopBreak."
  2068. #: apt-pkg/pkgrecords.cc:32
  2069. #, c-format
  2070. msgid "Index file type '%s' is not supported"
  2071. msgstr "El tipus de fitxer índex «%s» no està suportat"
  2072. #: apt-pkg/algorithms.cc:248
  2073. #, c-format
  2074. msgid ""
  2075. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2076. msgstr ""
  2077. "El paquet %s necessita ser reinstal·lat, però no se li pot trobar un arxiu."
  2078. #: apt-pkg/algorithms.cc:1138
  2079. msgid ""
  2080. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2081. "held packages."
  2082. msgstr ""
  2083. "Error, pkgProblemResolver::Resolve ha generat pauses, això pot haver estat "
  2084. "causat per paquets retinguts."
  2085. #: apt-pkg/algorithms.cc:1140
  2086. msgid "Unable to correct problems, you have held broken packages."
  2087. msgstr ""
  2088. "No es poden corregir els problemes, teniu paquets retinguts que estan "
  2089. "trencats."
  2090. #: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417
  2091. msgid ""
  2092. "Some index files failed to download, they have been ignored, or old ones "
  2093. "used instead."
  2094. msgstr ""
  2095. "No es poden baixar alguns fitxers índex, s'han ignorat o en el seu lloc "
  2096. "s'han emprat els antics."
  2097. #: apt-pkg/acquire.cc:60
  2098. #, c-format
  2099. msgid "Lists directory %spartial is missing."
  2100. msgstr "Falta el directori de llistes %spartial."
  2101. #: apt-pkg/acquire.cc:64
  2102. #, c-format
  2103. msgid "Archive directory %spartial is missing."
  2104. msgstr "Falta el directori d'arxiu %spartial."
  2105. #. only show the ETA if it makes sense
  2106. #. two days
  2107. #: apt-pkg/acquire.cc:826
  2108. #, c-format
  2109. msgid "Retrieving file %li of %li (%s remaining)"
  2110. msgstr "S'està obtenint el fitxer %li de %li (falten %s)"
  2111. #: apt-pkg/acquire.cc:828
  2112. #, c-format
  2113. msgid "Retrieving file %li of %li"
  2114. msgstr "S'està obtenint el fitxer %li de %li"
  2115. #: apt-pkg/acquire-worker.cc:110
  2116. #, c-format
  2117. msgid "The method driver %s could not be found."
  2118. msgstr "No s'ha pogut trobar el mètode de control %s."
  2119. #: apt-pkg/acquire-worker.cc:159
  2120. #, c-format
  2121. msgid "Method %s did not start correctly"
  2122. msgstr "El mètode %s no s'ha iniciat correctament"
  2123. #: apt-pkg/acquire-worker.cc:413
  2124. #, c-format
  2125. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  2126. msgstr "Inseriu el disc amb l'etiqueta: «%s» en la unitat «%s» i premeu Intro."
  2127. #: apt-pkg/init.cc:132
  2128. #, c-format
  2129. msgid "Packaging system '%s' is not supported"
  2130. msgstr "El sistema d'empaquetament «%s» no està suportat"
  2131. #: apt-pkg/init.cc:148
  2132. msgid "Unable to determine a suitable packaging system type"
  2133. msgstr "No es pot determinar un tipus de sistema d'empaquetament adequat."
  2134. #: apt-pkg/clean.cc:56
  2135. #, c-format
  2136. msgid "Unable to stat %s."
  2137. msgstr "No es pot veure l'estat de %s."
  2138. #: apt-pkg/srcrecords.cc:44
  2139. msgid "You must put some 'source' URIs in your sources.list"
  2140. msgstr "Heu de posar algunes URI 'font' en el vostre sources.list"
  2141. #: apt-pkg/cachefile.cc:71
  2142. msgid "The package lists or status file could not be parsed or opened."
  2143. msgstr ""
  2144. "No s'han pogut analitzar o obrir les llistes de paquets o el fitxer d'estat."
  2145. #: apt-pkg/cachefile.cc:75
  2146. msgid "You may want to run apt-get update to correct these problems"
  2147. msgstr ""
  2148. "Potser voldreu executar apt-get update per a corregir aquests problemes"
  2149. #: apt-pkg/policy.cc:347
  2150. #, fuzzy, c-format
  2151. msgid "Invalid record in the preferences file %s, no Package header"
  2152. msgstr "Registre no vàlid al fitxer de preferències, paquet sense capçalera"
  2153. #: apt-pkg/policy.cc:369
  2154. #, c-format
  2155. msgid "Did not understand pin type %s"
  2156. msgstr "No s'ha entès el pin de tipus %s"
  2157. #: apt-pkg/policy.cc:377
  2158. msgid "No priority (or zero) specified for pin"
  2159. msgstr "No hi ha prioritat especificada per al pin (o és zero)"
  2160. #: apt-pkg/pkgcachegen.cc:74
  2161. msgid "Cache has an incompatible versioning system"
  2162. msgstr "La memòria cau té un sistema de versions incompatible"
  2163. #: apt-pkg/pkgcachegen.cc:117
  2164. #, c-format
  2165. msgid "Error occurred while processing %s (NewPackage)"
  2166. msgstr "S'ha produït un error durant el processament de %s (NewPackage)"
  2167. #: apt-pkg/pkgcachegen.cc:132
  2168. #, c-format
  2169. msgid "Error occurred while processing %s (UsePackage1)"
  2170. msgstr "S'ha produït un error durant el processament de %s (UsePackage1)"
  2171. #: apt-pkg/pkgcachegen.cc:166
  2172. #, c-format
  2173. msgid "Error occurred while processing %s (NewFileDesc1)"
  2174. msgstr "S'ha produït un error durant el processament de %s (NewFileDesc1)"
  2175. #: apt-pkg/pkgcachegen.cc:191
  2176. #, c-format
  2177. msgid "Error occurred while processing %s (UsePackage2)"
  2178. msgstr "S'ha produït un error durant el processament de %s (UsePackage2)"
  2179. #: apt-pkg/pkgcachegen.cc:195
  2180. #, c-format
  2181. msgid "Error occurred while processing %s (NewFileVer1)"
  2182. msgstr "S'ha produït un error durant el processament de %s (NewFileVer1)"
  2183. #: apt-pkg/pkgcachegen.cc:226
  2184. #, c-format
  2185. msgid "Error occurred while processing %s (NewVersion1)"
  2186. msgstr "S'ha produït un error durant el processament de %s (NewVersion1)"
  2187. #: apt-pkg/pkgcachegen.cc:230
  2188. #, c-format
  2189. msgid "Error occurred while processing %s (UsePackage3)"
  2190. msgstr "S'ha produït un error durant el processament de %s (UsePackage3)"
  2191. #: apt-pkg/pkgcachegen.cc:234
  2192. #, c-format
  2193. msgid "Error occurred while processing %s (NewVersion2)"
  2194. msgstr "S'ha produït un error durant el processament de %s (NewVersion2)"
  2195. #: apt-pkg/pkgcachegen.cc:258
  2196. #, c-format
  2197. msgid "Error occurred while processing %s (NewFileDesc2)"
  2198. msgstr "S'ha produït un error durant el processament de %s (NewFileDesc2)"
  2199. #: apt-pkg/pkgcachegen.cc:264
  2200. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2201. msgstr ""
  2202. "Uau, heu excedit el nombre de paquets que aquest APT és capaç de gestionar."
  2203. #: apt-pkg/pkgcachegen.cc:267
  2204. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2205. msgstr ""
  2206. "Uau, heu excedit el nombre de versions que aquest APT és capaç de gestionar."
  2207. #: apt-pkg/pkgcachegen.cc:270
  2208. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2209. msgstr ""
  2210. "Uau, heu excedit el nombre de descripcions que aquest APT és capaç de "
  2211. "gestionar. "
  2212. #: apt-pkg/pkgcachegen.cc:273
  2213. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2214. msgstr ""
  2215. "Uau, heu excedit el nombre de dependències que aquest APT és capaç de "
  2216. "gestionar."
  2217. #: apt-pkg/pkgcachegen.cc:301
  2218. #, c-format
  2219. msgid "Error occurred while processing %s (FindPkg)"
  2220. msgstr "S'ha produït un error durant el processament de %s (FindPkg)"
  2221. #: apt-pkg/pkgcachegen.cc:314
  2222. #, c-format
  2223. msgid "Error occurred while processing %s (CollectFileProvides)"
  2224. msgstr ""
  2225. "S'ha produït un error durant el processament de %s (CollectFileProvides)"
  2226. #: apt-pkg/pkgcachegen.cc:320
  2227. #, c-format
  2228. msgid "Package %s %s was not found while processing file dependencies"
  2229. msgstr ""
  2230. "No s'ha trobat el paquet %s %s en processar les dependències del fitxer"
  2231. #: apt-pkg/pkgcachegen.cc:693
  2232. #, c-format
  2233. msgid "Couldn't stat source package list %s"
  2234. msgstr "No s'ha pogut llegir la llista de paquets font %s"
  2235. #: apt-pkg/pkgcachegen.cc:778
  2236. msgid "Collecting File Provides"
  2237. msgstr "S'estan recollint els fitxers que proveeixen"
  2238. #: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914
  2239. msgid "IO Error saving source cache"
  2240. msgstr "Error d'E/S en desar la memòria cau de la font"
  2241. #: apt-pkg/acquire-item.cc:128
  2242. #, c-format
  2243. msgid "rename failed, %s (%s -> %s)."
  2244. msgstr "no s'ha pogut canviar el nom, %s (%s -> %s)."
  2245. #: apt-pkg/acquire-item.cc:395
  2246. msgid "MD5Sum mismatch"
  2247. msgstr "La suma MD5 no concorda"
  2248. #: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411
  2249. msgid "Hash Sum mismatch"
  2250. msgstr "La suma resum no concorda"
  2251. #: apt-pkg/acquire-item.cc:1106
  2252. msgid "There is no public key available for the following key IDs:\n"
  2253. msgstr "No hi ha cap clau pública disponible per als següents ID de clau:\n"
  2254. #: apt-pkg/acquire-item.cc:1216
  2255. #, c-format
  2256. msgid ""
  2257. "I wasn't able to locate a file for the %s package. This might mean you need "
  2258. "to manually fix this package. (due to missing arch)"
  2259. msgstr ""
  2260. "No ha estat possible localitzar un fitxer pel paquet %s. Això podria "
  2261. "significar que haureu d'arreglar aquest paquet manualment (segons "
  2262. "arquitectura)."
  2263. #: apt-pkg/acquire-item.cc:1275
  2264. #, c-format
  2265. msgid ""
  2266. "I wasn't able to locate file for the %s package. This might mean you need to "
  2267. "manually fix this package."
  2268. msgstr ""
  2269. "No s'ha trobat un fitxer pel paquet %s. Això podria significar que haureu "
  2270. "d'arreglar aquest paquet manualment."
  2271. #: apt-pkg/acquire-item.cc:1316
  2272. #, c-format
  2273. msgid ""
  2274. "The package index files are corrupted. No Filename: field for package %s."
  2275. msgstr ""
  2276. "L'índex dels fitxers en el paquet està corromput. Fitxer no existent: camp "
  2277. "per al paquet %s."
  2278. #: apt-pkg/acquire-item.cc:1403
  2279. msgid "Size mismatch"
  2280. msgstr "La mida no concorda"
  2281. #: apt-pkg/indexrecords.cc:40
  2282. #, c-format
  2283. msgid "Unable to parse Release file %s"
  2284. msgstr "No es pot analitzar el fitxer Release %s"
  2285. #: apt-pkg/indexrecords.cc:47
  2286. #, c-format
  2287. msgid "No sections in Release file %s"
  2288. msgstr "No hi ha seccions al fitxer Release %s"
  2289. #: apt-pkg/indexrecords.cc:81
  2290. #, c-format
  2291. msgid "No Hash entry in Release file %s"
  2292. msgstr "No hi ha una entrada Hash al fitxer Release %s"
  2293. #: apt-pkg/vendorlist.cc:66
  2294. #, c-format
  2295. msgid "Vendor block %s contains no fingerprint"
  2296. msgstr "El camp del proveïdor %s no té una empremta digital"
  2297. #: apt-pkg/cdrom.cc:525
  2298. #, c-format
  2299. msgid ""
  2300. "Using CD-ROM mount point %s\n"
  2301. "Mounting CD-ROM\n"
  2302. msgstr ""
  2303. "S'està utilitzant el punt de muntatge de CD-ROM %s\n"
  2304. "S'està muntant el CD-ROM\n"
  2305. #: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622
  2306. msgid "Identifying.. "
  2307. msgstr "S'està identificant..."
  2308. #: apt-pkg/cdrom.cc:559
  2309. #, c-format
  2310. msgid "Stored label: %s\n"
  2311. msgstr "S'ha emmagatzemat l'etiqueta: %s\n"
  2312. #: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836
  2313. msgid "Unmounting CD-ROM...\n"
  2314. msgstr "S'esta desmuntant el CD-ROM...\n"
  2315. #: apt-pkg/cdrom.cc:585
  2316. #, c-format
  2317. msgid "Using CD-ROM mount point %s\n"
  2318. msgstr "S'està utilitzant el punt de muntatge de CD-ROM %s\n"
  2319. #: apt-pkg/cdrom.cc:603
  2320. msgid "Unmounting CD-ROM\n"
  2321. msgstr "S'està desmuntant el CD-ROM\n"
  2322. #: apt-pkg/cdrom.cc:607
  2323. msgid "Waiting for disc...\n"
  2324. msgstr "S'està esperant al disc...\n"
  2325. #. Mount the new CDROM
  2326. #: apt-pkg/cdrom.cc:615
  2327. msgid "Mounting CD-ROM...\n"
  2328. msgstr "S'està muntant el CD-ROM...\n"
  2329. #: apt-pkg/cdrom.cc:633
  2330. msgid "Scanning disc for index files..\n"
  2331. msgstr "S'està analitzant el disc per a fitxers d'índex...\n"
  2332. #: apt-pkg/cdrom.cc:673
  2333. #, c-format
  2334. msgid ""
  2335. "Found %zu package indexes, %zu source indexes, %zu translation indexes and %"
  2336. "zu signatures\n"
  2337. msgstr ""
  2338. "S'han trobat %zu índexos de paquets, %zu índexos de fonts, %zu indexos de "
  2339. "traduccions i %zu signatures\n"
  2340. #: apt-pkg/cdrom.cc:684
  2341. msgid ""
  2342. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2343. "wrong architecture?"
  2344. msgstr ""
  2345. #: apt-pkg/cdrom.cc:710
  2346. #, c-format
  2347. msgid "Found label '%s'\n"
  2348. msgstr "S'ha trobat l'etiqueta «%s»\n"
  2349. #: apt-pkg/cdrom.cc:739
  2350. msgid "That is not a valid name, try again.\n"
  2351. msgstr "Aquest no és un nom vàlid, torneu-ho a provar.\n"
  2352. #: apt-pkg/cdrom.cc:755
  2353. #, c-format
  2354. msgid ""
  2355. "This disc is called: \n"
  2356. "'%s'\n"
  2357. msgstr ""
  2358. "El disc es diu:\n"
  2359. "«%s»\n"
  2360. #: apt-pkg/cdrom.cc:759
  2361. msgid "Copying package lists..."
  2362. msgstr "S'estan copiant les llistes de paquets..."
  2363. #: apt-pkg/cdrom.cc:785
  2364. msgid "Writing new source list\n"
  2365. msgstr "S'està escrivint una nova llista de fonts\n"
  2366. #: apt-pkg/cdrom.cc:794
  2367. msgid "Source list entries for this disc are:\n"
  2368. msgstr "Les entrades de la llista de fonts per a aquest disc són:\n"
  2369. #: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835
  2370. #, c-format
  2371. msgid "Wrote %i records.\n"
  2372. msgstr "S'han escrit %i registres.\n"
  2373. #: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837
  2374. #, c-format
  2375. msgid "Wrote %i records with %i missing files.\n"
  2376. msgstr "S'han escrit %i registres, on falten %i fitxers.\n"
  2377. #: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840
  2378. #, c-format
  2379. msgid "Wrote %i records with %i mismatched files\n"
  2380. msgstr "S'han escrit %i registres, on hi ha %i fitxers no coincidents\n"
  2381. #: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843
  2382. #, c-format
  2383. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2384. msgstr ""
  2385. "S'han escrit %i registres, on falten %i fitxers i hi ha %i fitxers no "
  2386. "coincidents\n"
  2387. #: apt-pkg/deb/dpkgpm.cc:49
  2388. #, c-format
  2389. msgid "Installing %s"
  2390. msgstr "S'està instal·lant %s"
  2391. #: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642
  2392. #, c-format
  2393. msgid "Configuring %s"
  2394. msgstr "S'està configurant el paquet %s"
  2395. #: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649
  2396. #, c-format
  2397. msgid "Removing %s"
  2398. msgstr "S'està suprimint el paquet %s"
  2399. #: apt-pkg/deb/dpkgpm.cc:52
  2400. #, c-format
  2401. msgid "Running post-installation trigger %s"
  2402. msgstr "S'està executant l'activador de postinstal·lació %s"
  2403. #: apt-pkg/deb/dpkgpm.cc:546
  2404. #, c-format
  2405. msgid "Directory '%s' missing"
  2406. msgstr "Manca el directori «%s»"
  2407. #: apt-pkg/deb/dpkgpm.cc:635
  2408. #, c-format
  2409. msgid "Preparing %s"
  2410. msgstr "S'està preparant el paquet %s"
  2411. #: apt-pkg/deb/dpkgpm.cc:636
  2412. #, c-format
  2413. msgid "Unpacking %s"
  2414. msgstr "S'està desempaquetant %s"
  2415. #: apt-pkg/deb/dpkgpm.cc:641
  2416. #, c-format
  2417. msgid "Preparing to configure %s"
  2418. msgstr "S'està preparant per a configurar el paquet %s"
  2419. #: apt-pkg/deb/dpkgpm.cc:643
  2420. #, c-format
  2421. msgid "Installed %s"
  2422. msgstr "S'ha instal·lat el paquet %s"
  2423. #: apt-pkg/deb/dpkgpm.cc:648
  2424. #, c-format
  2425. msgid "Preparing for removal of %s"
  2426. msgstr "S'està preparant per a la supressió del paquet %s"
  2427. #: apt-pkg/deb/dpkgpm.cc:650
  2428. #, c-format
  2429. msgid "Removed %s"
  2430. msgstr "S'ha suprimit el paquet %s"
  2431. #: apt-pkg/deb/dpkgpm.cc:655
  2432. #, c-format
  2433. msgid "Preparing to completely remove %s"
  2434. msgstr "S'està preparant per a suprimir completament el paquet %s"
  2435. #: apt-pkg/deb/dpkgpm.cc:656
  2436. #, c-format
  2437. msgid "Completely removed %s"
  2438. msgstr "S'ha suprimit completament el paquet %s"
  2439. #: apt-pkg/deb/dpkgpm.cc:820
  2440. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2441. msgstr ""
  2442. "No es pot escriure el registre, ha fallat openpty() (no s'ha muntat /dev/"
  2443. "pts?)\n"
  2444. #: apt-pkg/deb/dpkgpm.cc:848
  2445. msgid "Running dpkg"
  2446. msgstr ""
  2447. #: apt-pkg/deb/debsystem.cc:70
  2448. #, c-format
  2449. msgid ""
  2450. "Unable to lock the administration directory (%s), is another process using "
  2451. "it?"
  2452. msgstr ""
  2453. #: apt-pkg/deb/debsystem.cc:73
  2454. #, fuzzy, c-format
  2455. msgid "Unable to lock the administration directory (%s), are you root?"
  2456. msgstr "No es pot blocar el directori de la llista"
  2457. #: apt-pkg/deb/debsystem.cc:82
  2458. msgid ""
  2459. "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct "
  2460. "the problem. "
  2461. msgstr ""
  2462. #: apt-pkg/deb/debsystem.cc:100
  2463. msgid "Not locked"
  2464. msgstr "No blocat"
  2465. #: methods/rred.cc:219
  2466. msgid "Could not patch file"
  2467. msgstr "No s'ha pogut aplicar el pedaç al fitxer"
  2468. #: methods/rsh.cc:330
  2469. msgid "Connection closed prematurely"
  2470. msgstr "La connexió s'ha tancat prematurament"
  2471. #~ msgid "%4i %s\n"
  2472. #~ msgstr "%4i %s\n"
  2473. #~ msgid "Processing triggers for %s"
  2474. #~ msgstr "S'estan processant els activadors per al paquet %s"
  2475. #~ msgid "Dynamic MMap ran out of room"
  2476. #~ msgstr "L'MMap dinàmic s'ha quedat sense espai"
  2477. #~ msgid "Release file expired, ignoring %s (valid until %s)"
  2478. #~ msgstr "El fitxer Release ha caducat, s'està ignorant %s (vàlid fins a %s)"
  2479. #~ msgid "Conflicting distribution: %s (expected %s but got %s)"
  2480. #~ msgstr "Distribució en conflicte: %s (s'esperava %s però s'ha obtingut %s)"
  2481. #~ msgid ""
  2482. #~ "Since you only requested a single operation it is extremely likely that\n"
  2483. #~ "the package is simply not installable and a bug report against\n"
  2484. #~ "that package should be filed."
  2485. #~ msgstr ""
  2486. #~ "Degut a que només heu requerit una única operació, serà molt\n"
  2487. #~ "probable que el paquet no sigui instal·lable i que s'hagi d'emetre\n"
  2488. #~ "un informe d'error en contra d'aquest per a arxivar-lo."
  2489. #~ msgid "File date has changed %s"
  2490. #~ msgstr "La data del fitxer ha canviat %s"
  2491. #~ msgid "Reading file list"
  2492. #~ msgstr "S'està llegint la llista de fitxers"
  2493. #~ msgid "Could not execute "
  2494. #~ msgstr "No s'ha pogut executar "
  2495. #~ msgid "Preparing for remove with config %s"
  2496. #~ msgstr "S'està preparant per a suprimir amb la configuració %s"
  2497. #~ msgid "Removed with config %s"
  2498. #~ msgstr "S'ha suprimit amb la configuració %s"
  2499. #~ msgid "Unknown vendor ID '%s' in line %u of source list %s"
  2500. #~ msgstr ""
  2501. #~ "ID del proveïdor '%s' desconeguda en la línia %u de la llista de fonts %s"
  2502. #~ msgid ""
  2503. #~ "Some broken packages were found while trying to process build-"
  2504. #~ "dependencies for %s.\n"
  2505. #~ "You might want to run `apt-get -f install' to correct these."
  2506. #~ msgstr ""
  2507. #~ "S'han trobat alguns paquets trencats mentre es processaven les\n"
  2508. #~ "dependències de construcció per a %s.\n"
  2509. #~ "Potser voldreu executar `apt-get -f install' per a corregir-ho."