ca.po 90 KB

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