ca.po 108 KB

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