ca.po 127 KB

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