ca.po 121 KB

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