ca.po 130 KB

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