ca.po 124 KB

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