ca.po 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784
  1. # Catalan translation of APT.
  2. # Copyright © 2002, 2003, 2004, 2005 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.
  6. #
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: apt 0.6\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2006-01-04 18:51+0100\n"
  12. "PO-Revision-Date: 2005-07-19 01:31+0200\n"
  13. "Last-Translator: Jordi Mallach <jordi@debian.org>\n"
  14. "Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. #: cmdline/apt-cache.cc:135
  19. #, c-format
  20. msgid "Package %s version %s has an unmet dep:\n"
  21. msgstr "El paquet %s versió %s té una dependència sense satisfer:\n"
  22. #: cmdline/apt-cache.cc:175 cmdline/apt-cache.cc:527 cmdline/apt-cache.cc:615
  23. #: cmdline/apt-cache.cc:771 cmdline/apt-cache.cc:989 cmdline/apt-cache.cc:1357
  24. #: cmdline/apt-cache.cc:1508
  25. #, c-format
  26. msgid "Unable to locate package %s"
  27. msgstr "No s'ha trobat el paquet %s"
  28. #: cmdline/apt-cache.cc:232
  29. msgid "Total package names : "
  30. msgstr "Nombre total de paquets: "
  31. #: cmdline/apt-cache.cc:272
  32. msgid " Normal packages: "
  33. msgstr " Paquets normals: "
  34. #: cmdline/apt-cache.cc:273
  35. msgid " Pure virtual packages: "
  36. msgstr " Paquets virtuals purs: "
  37. #: cmdline/apt-cache.cc:274
  38. msgid " Single virtual packages: "
  39. msgstr " Paquets virtuals únics: "
  40. #: cmdline/apt-cache.cc:275
  41. msgid " Mixed virtual packages: "
  42. msgstr " Paquets virtuals mixtes: "
  43. #: cmdline/apt-cache.cc:276
  44. msgid " Missing: "
  45. msgstr " Falten: "
  46. #: cmdline/apt-cache.cc:278
  47. msgid "Total distinct versions: "
  48. msgstr "Total de versions diferents: "
  49. #: cmdline/apt-cache.cc:280
  50. msgid "Total dependencies: "
  51. msgstr "Total de dependències: "
  52. #: cmdline/apt-cache.cc:283
  53. msgid "Total ver/file relations: "
  54. msgstr "Total de relacions versió/fitxer: "
  55. #: cmdline/apt-cache.cc:285
  56. msgid "Total Provides mappings: "
  57. msgstr "Total dels mapes aportats: "
  58. #: cmdline/apt-cache.cc:297
  59. msgid "Total globbed strings: "
  60. msgstr "Total de cadenes globals: "
  61. #: cmdline/apt-cache.cc:311
  62. msgid "Total dependency version space: "
  63. msgstr "Total de l'espai per a dependències de versió: "
  64. #: cmdline/apt-cache.cc:316
  65. msgid "Total slack space: "
  66. msgstr "Total de l'espai desperdiciat: "
  67. #: cmdline/apt-cache.cc:324
  68. msgid "Total space accounted for: "
  69. msgstr "Total de l'espai atribuit a: "
  70. #: cmdline/apt-cache.cc:446 cmdline/apt-cache.cc:1189
  71. #, c-format
  72. msgid "Package file %s is out of sync."
  73. msgstr "El fitxer %s del paquet està desincronitzat."
  74. #: cmdline/apt-cache.cc:1231
  75. msgid "You must give exactly one pattern"
  76. msgstr "Heu de donar exactament un patró"
  77. #: cmdline/apt-cache.cc:1385
  78. msgid "No packages found"
  79. msgstr "No s'han trobat paquets"
  80. #: cmdline/apt-cache.cc:1462
  81. msgid "Package files:"
  82. msgstr "Fitxers de paquets:"
  83. #: cmdline/apt-cache.cc:1469 cmdline/apt-cache.cc:1555
  84. msgid "Cache is out of sync, can't x-ref a package file"
  85. msgstr ""
  86. "Memòria cau no sincronitzada, no es pot fer x-ref a un fitxer del paquet"
  87. #: cmdline/apt-cache.cc:1470
  88. #, c-format
  89. msgid "%4i %s\n"
  90. msgstr "%4i %s\n"
  91. #. Show any packages have explicit pins
  92. #: cmdline/apt-cache.cc:1482
  93. msgid "Pinned packages:"
  94. msgstr "Paquets etiquetats:"
  95. #: cmdline/apt-cache.cc:1494 cmdline/apt-cache.cc:1535
  96. msgid "(not found)"
  97. msgstr "(no trobat)"
  98. #. Installed version
  99. #: cmdline/apt-cache.cc:1515
  100. msgid " Installed: "
  101. msgstr " Instal·lat: "
  102. #: cmdline/apt-cache.cc:1517 cmdline/apt-cache.cc:1525
  103. msgid "(none)"
  104. msgstr "(cap)"
  105. #. Candidate Version
  106. #: cmdline/apt-cache.cc:1522
  107. msgid " Candidate: "
  108. msgstr " Candidat: "
  109. #: cmdline/apt-cache.cc:1532
  110. msgid " Package pin: "
  111. msgstr " Etiqueta del paquet: "
  112. #. Show the priority tables
  113. #: cmdline/apt-cache.cc:1541
  114. msgid " Version table:"
  115. msgstr " Taula de versió:"
  116. #: cmdline/apt-cache.cc:1556
  117. #, c-format
  118. msgid " %4i %s\n"
  119. msgstr " %4i %s\n"
  120. #: cmdline/apt-cache.cc:1651 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
  121. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:550
  122. #: cmdline/apt-get.cc:2378 cmdline/apt-sortpkgs.cc:144
  123. #, c-format
  124. msgid "%s %s for %s %s compiled on %s %s\n"
  125. msgstr "%s %s per a %s %s compilat el %s %s\n"
  126. #: cmdline/apt-cache.cc:1658
  127. msgid ""
  128. "Usage: apt-cache [options] command\n"
  129. " apt-cache [options] add file1 [file2 ...]\n"
  130. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  131. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  132. "\n"
  133. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  134. "cache files, and query information from them\n"
  135. "\n"
  136. "Commands:\n"
  137. " add - Add a package file to the source cache\n"
  138. " gencaches - Build both the package and source cache\n"
  139. " showpkg - Show some general information for a single package\n"
  140. " showsrc - Show source records\n"
  141. " stats - Show some basic statistics\n"
  142. " dump - Show the entire file in a terse form\n"
  143. " dumpavail - Print an available file to stdout\n"
  144. " unmet - Show unmet dependencies\n"
  145. " search - Search the package list for a regex pattern\n"
  146. " show - Show a readable record for the package\n"
  147. " depends - Show raw dependency information for a package\n"
  148. " rdepends - Show reverse dependency information for a package\n"
  149. " pkgnames - List the names of all packages\n"
  150. " dotty - Generate package graphs for GraphVis\n"
  151. " xvcg - Generate package graphs for xvcg\n"
  152. " policy - Show policy settings\n"
  153. "\n"
  154. "Options:\n"
  155. " -h This help text.\n"
  156. " -p=? The package cache.\n"
  157. " -s=? The source cache.\n"
  158. " -q Disable progress indicator.\n"
  159. " -i Show only important deps for the unmet command.\n"
  160. " -c=? Read this configuration file\n"
  161. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  162. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  163. msgstr ""
  164. "Ús: apt-cache [opcions] ordre\n"
  165. " apt-cache [opcions] add fitxer1 [fitxer2 ...]\n"
  166. " apt-cache [opcions] showpkg paquet1 [paquet2 ...]\n"
  167. " apt-cache [opcions] showsrc paquet1 [paquet2 ...]\n"
  168. "\n"
  169. "apt-cache és una eina usada per a manipular fitxers binaris en\n"
  170. "el cau de APT, i així poder consultar-ne la informació\n"
  171. "\n"
  172. "Ordres:\n"
  173. " add - Afegeix un fitxer de paquet a la memòria cau de les fonts\n"
  174. " gencaches - Crea la memòria cau de tots dos, paquet i font\n"
  175. " showpkg - Mostra alguna informació general d'un sol paquet\n"
  176. " showsrc - Mostra un registre de les fonts\n"
  177. " stats - Mostra algunes estadístiques bàsiques\n"
  178. " dump - Mostra el fitxer sencer en un format concís\n"
  179. " dumpavail - Genera un registre llegible a stdout\n"
  180. " unmet - Mostra dependències sense satisfer\n"
  181. " search - Cerca en la llista de paquets per un patró d'expressió regular\n"
  182. " show - Mostra un registre llegible pel paquet\n"
  183. " depends - Mostra informació de dependències (en cru) d'un paquet\n"
  184. " rdepends - Mostra informació de dependències enrere d'un paquet\n"
  185. " pkgnames - Llista els noms de tots els paquets\n"
  186. " dotty - Genera gràfiques del paquet per a GraphVis\n"
  187. " xvcg - Genera gràfiques del paquet per a xvcg\n"
  188. " policy - Mostra configuració de política\n"
  189. "\n"
  190. "Opcions:\n"
  191. " -h Aquest text d'ajuda.\n"
  192. " -p=? La memòria cau de paquets.\n"
  193. " -s=? La memòria cau de la font.\n"
  194. " -q Inhabilita l'indicatiu de progres.\n"
  195. " -i Sols mostra dependències importants d'una ordre inadequada.\n"
  196. " -c=? Llegeix aquest fitxer de configuració\n"
  197. " -o=? Estableix una opció de conf arbitrària, p.ex. -o dir::cache=/tmp\n"
  198. "Consulteu les pàgines del manual apt-cache(8) i apt.conf(5) per a més "
  199. "informació.\n"
  200. #: cmdline/apt-cdrom.cc:78
  201. msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
  202. msgstr ""
  203. #: cmdline/apt-cdrom.cc:93
  204. #, fuzzy
  205. msgid "Please insert a Disc in the drive and press enter"
  206. msgstr ""
  207. "El medi ha canviat: Si us plau, inseriu el disc amb l'etiqueta\n"
  208. " '%s'\n"
  209. "en la unitat de '%s' i premeu Intro\n"
  210. #: cmdline/apt-cdrom.cc:117
  211. msgid "Repeat this process for the rest of the CDs in your set."
  212. msgstr ""
  213. #: cmdline/apt-config.cc:41
  214. msgid "Arguments not in pairs"
  215. msgstr "Els arguments no són en parells"
  216. #: cmdline/apt-config.cc:76
  217. msgid ""
  218. "Usage: apt-config [options] command\n"
  219. "\n"
  220. "apt-config is a simple tool to read the APT config file\n"
  221. "\n"
  222. "Commands:\n"
  223. " shell - Shell mode\n"
  224. " dump - Show the configuration\n"
  225. "\n"
  226. "Options:\n"
  227. " -h This help text.\n"
  228. " -c=? Read this configuration file\n"
  229. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  230. msgstr ""
  231. "Ús: apt-config [opcions] ordre\n"
  232. "\n"
  233. "apt-config és una simple eina per a llegir el fitxer de configuració d'APT\n"
  234. "\n"
  235. "Ordres:\n"
  236. " shell - Mode shell\n"
  237. " dump - Mostra la configuració\n"
  238. "\n"
  239. "Opcions:\n"
  240. " -h Aquest text d'ajuda.\n"
  241. " -c=? Llegeix aquest fitxer de configuració\n"
  242. " -o=? Estableix una opció de conf arbitrària, p.ex. -o dir::cache=/tmp\n"
  243. #: cmdline/apt-extracttemplates.cc:98
  244. #, c-format
  245. msgid "%s not a valid DEB package."
  246. msgstr "%s no és un paquet DEB vàlid."
  247. #: cmdline/apt-extracttemplates.cc:232
  248. msgid ""
  249. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  250. "\n"
  251. "apt-extracttemplates is a tool to extract config and template info\n"
  252. "from debian packages\n"
  253. "\n"
  254. "Options:\n"
  255. " -h This help text\n"
  256. " -t Set the temp dir\n"
  257. " -c=? Read this configuration file\n"
  258. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  259. msgstr ""
  260. "Ús: apt-extracttemplates fitxer1 [fitxer2 ...]\n"
  261. "\n"
  262. "apt-extracttemplates és una eina per a extreure informació de\n"
  263. "configuració i plantilles dels paquets debian\n"
  264. "\n"
  265. "Opcions:\n"
  266. " -h Aquest text d'ajuda.\n"
  267. " -t Estableix el directori temporal\n"
  268. " -c=? Llegeix aquest fitxer de configuració\n"
  269. " -o=? Estableix una opció de conf arbitrària, p.e. -o dir::cache=/tmp\n"
  270. #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:710
  271. #, c-format
  272. msgid "Unable to write to %s"
  273. msgstr "No es pot escriure en %s"
  274. #: cmdline/apt-extracttemplates.cc:310
  275. msgid "Cannot get debconf version. Is debconf installed?"
  276. msgstr "No es pot determinar la versió de debconf. Està instal·lat debconf?"
  277. #: ftparchive/apt-ftparchive.cc:167 ftparchive/apt-ftparchive.cc:341
  278. msgid "Package extension list is too long"
  279. msgstr "La llista de les extensions dels paquets és massa llarga"
  280. #: ftparchive/apt-ftparchive.cc:169 ftparchive/apt-ftparchive.cc:183
  281. #: ftparchive/apt-ftparchive.cc:206 ftparchive/apt-ftparchive.cc:256
  282. #: ftparchive/apt-ftparchive.cc:270 ftparchive/apt-ftparchive.cc:292
  283. #, c-format
  284. msgid "Error processing directory %s"
  285. msgstr "S'ha produït un error en processar el directori %s"
  286. #: ftparchive/apt-ftparchive.cc:254
  287. msgid "Source extension list is too long"
  288. msgstr "La llista d'extensions de les fonts és massa llarga"
  289. #: ftparchive/apt-ftparchive.cc:371
  290. msgid "Error writing header to contents file"
  291. msgstr "S'ha produït un error en escriure la capçalera al fitxer de continguts"
  292. #: ftparchive/apt-ftparchive.cc:401
  293. #, c-format
  294. msgid "Error processing contents %s"
  295. msgstr "S'ha produït un error en processar el fitxer de continguts %s"
  296. #: ftparchive/apt-ftparchive.cc:556
  297. msgid ""
  298. "Usage: apt-ftparchive [options] command\n"
  299. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  300. " sources srcpath [overridefile [pathprefix]]\n"
  301. " contents path\n"
  302. " release path\n"
  303. " generate config [groups]\n"
  304. " clean config\n"
  305. "\n"
  306. "apt-ftparchive generates index files for Debian archives. It supports\n"
  307. "many styles of generation from fully automated to functional replacements\n"
  308. "for dpkg-scanpackages and dpkg-scansources\n"
  309. "\n"
  310. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  311. "Package file contains the contents of all the control fields from\n"
  312. "each package as well as the MD5 hash and filesize. An override file\n"
  313. "is supported to force the value of Priority and Section.\n"
  314. "\n"
  315. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  316. "The --source-override option can be used to specify a src override file\n"
  317. "\n"
  318. "The 'packages' and 'sources' command should be run in the root of the\n"
  319. "tree. BinaryPath should point to the base of the recursive search and \n"
  320. "override file should contain the override flags. Pathprefix is\n"
  321. "appended to the filename fields if present. Example usage from the \n"
  322. "Debian archive:\n"
  323. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  324. " dists/potato/main/binary-i386/Packages\n"
  325. "\n"
  326. "Options:\n"
  327. " -h This help text\n"
  328. " --md5 Control MD5 generation\n"
  329. " -s=? Source override file\n"
  330. " -q Quiet\n"
  331. " -d=? Select the optional caching database\n"
  332. " --no-delink Enable delinking debug mode\n"
  333. " --contents Control contents file generation\n"
  334. " -c=? Read this configuration file\n"
  335. " -o=? Set an arbitrary configuration option"
  336. msgstr ""
  337. "Forma d'ús: apt-ftparchive [opcions] ordre\n"
  338. "Ordres: packages camí_binaris [fitxer_substitucions prefix_camí]]\n"
  339. " sources camí_fonts [fitxer_substitucions [prefix_camí]]\n"
  340. " contents camí\n"
  341. " release camí\n"
  342. " generate config [grups]\n"
  343. " clean config\n"
  344. "\n"
  345. "apt-ftparchive genera fitxers d'índex per als arxius de Debian.\n"
  346. "Gestiona molts estils per a generar-los, des dels completament automàtics\n"
  347. "als substituts funcionals per dpkg-scanpackages i dpkg-scansources.\n"
  348. "\n"
  349. "apt-ftparchive genera fitxers Package des d'un arbre de .deb. El\n"
  350. "fitxer Package conté tots els camps de control de cada paquet així com\n"
  351. "la suma MD5 i la mida del fitxer. Es suporten els fitxers de substitució\n"
  352. "per a forçar el valor de Prioritat i Secció.\n"
  353. "\n"
  354. "D'un mode semblant, apt-ftparchive genera fitxers Sources des d'un arbre\n"
  355. "de .dsc. Es pot utilitzar l'opció --source-override per a especificar un\n"
  356. "fitxer de substitucions de src.\n"
  357. "\n"
  358. "L'ordre «packages» i «sources» hauria d'executar-se en l'arrel de\n"
  359. "l'arbre. CamíBinaris hauria de ser el punt base de la recerca recursiva\n"
  360. "i el fitxer de substitucions hauria de contenir senyaladors de substitució.\n"
  361. "Prefixcamí s'afegeix als camps del nom de fitxer si està present.\n"
  362. "Exemple d'ús a l'arxiu de Debian:\n"
  363. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  364. " dists/potato/main/binary-i386/Packages\n"
  365. "\n"
  366. "Opcions:\n"
  367. " -h Aquest text d'ajuda\n"
  368. " --md5 Generació del control MD5\n"
  369. " -s=? Fitxer de substitucions per a fonts\n"
  370. " -q Silenciós\n"
  371. " -d=? Selecciona la base de dades de memòria cau opcional\n"
  372. " --no-delink Habilita el mode de depuració delink\n"
  373. " --contents Genera el fitxer amb els continguts de control\n"
  374. " -c=? Llegeix aquest fitxer de configuració\n"
  375. " -o=? Estableix una opció de configuració arbitrària"
  376. #: ftparchive/apt-ftparchive.cc:762
  377. msgid "No selections matched"
  378. msgstr "No s'ha trobat cap selecció"
  379. #: ftparchive/apt-ftparchive.cc:835
  380. #, c-format
  381. msgid "Some files are missing in the package file group `%s'"
  382. msgstr "No es troben alguns fitxers dins del grup de fitxers del paquet `%s'"
  383. #: ftparchive/cachedb.cc:45
  384. #, c-format
  385. msgid "DB was corrupted, file renamed to %s.old"
  386. msgstr "La base de dades està corrompuda, fitxer renomenat a %s.old"
  387. #: ftparchive/cachedb.cc:63
  388. #, c-format
  389. msgid "DB is old, attempting to upgrade %s"
  390. msgstr "La BD és vella, s'està intentant actualitzar %s"
  391. #: ftparchive/cachedb.cc:73
  392. #, c-format
  393. msgid "Unable to open DB file %s: %s"
  394. msgstr "No es pot obrir el fitxer de DB %s: %s"
  395. #: ftparchive/cachedb.cc:114
  396. #, c-format
  397. msgid "File date has changed %s"
  398. msgstr "La data del fitxer ha canviat %s"
  399. #: ftparchive/cachedb.cc:155
  400. msgid "Archive has no control record"
  401. msgstr "Arxiu sense registre de control"
  402. #: ftparchive/cachedb.cc:267
  403. msgid "Unable to get a cursor"
  404. msgstr "No es pot aconseguir un cursor"
  405. #: ftparchive/writer.cc:78
  406. #, c-format
  407. msgid "W: Unable to read directory %s\n"
  408. msgstr "A: No es pot llegir el directori %s\n"
  409. #: ftparchive/writer.cc:83
  410. #, c-format
  411. msgid "W: Unable to stat %s\n"
  412. msgstr "A: No es pot veure l'estat %s\n"
  413. #: ftparchive/writer.cc:125
  414. msgid "E: "
  415. msgstr "E: "
  416. #: ftparchive/writer.cc:127
  417. msgid "W: "
  418. msgstr "A: "
  419. #: ftparchive/writer.cc:134
  420. msgid "E: Errors apply to file "
  421. msgstr "E: Els errors s'apliquen al fitxer "
  422. #: ftparchive/writer.cc:151 ftparchive/writer.cc:181
  423. #, c-format
  424. msgid "Failed to resolve %s"
  425. msgstr "No s'ha pogut resoldre %s"
  426. #: ftparchive/writer.cc:163
  427. msgid "Tree walking failed"
  428. msgstr "L'arbre està fallant"
  429. #: ftparchive/writer.cc:188
  430. #, c-format
  431. msgid "Failed to open %s"
  432. msgstr "No s'ha pogut obrir %s"
  433. #: ftparchive/writer.cc:245
  434. #, c-format
  435. msgid " DeLink %s [%s]\n"
  436. msgstr " DeLink %s [%s]\n"
  437. #: ftparchive/writer.cc:253
  438. #, c-format
  439. msgid "Failed to readlink %s"
  440. msgstr "No s'ha pogut llegir l'enllaç %s"
  441. #: ftparchive/writer.cc:257
  442. #, c-format
  443. msgid "Failed to unlink %s"
  444. msgstr "No s'ha pogut alliberar %s"
  445. #: ftparchive/writer.cc:264
  446. #, c-format
  447. msgid "*** Failed to link %s to %s"
  448. msgstr "*** No s'ha pogut enllaçar %s a %s"
  449. #: ftparchive/writer.cc:274
  450. #, c-format
  451. msgid " DeLink limit of %sB hit.\n"
  452. msgstr " DeLink s'ha arribat al límit de %sB.\n"
  453. #: ftparchive/writer.cc:358 apt-inst/extract.cc:181 apt-inst/extract.cc:193
  454. #: apt-inst/extract.cc:210 apt-inst/deb/dpkgdb.cc:121 methods/gpgv.cc:256
  455. #, c-format
  456. msgid "Failed to stat %s"
  457. msgstr "No es pot determinar l'estat de %s"
  458. #: ftparchive/writer.cc:386
  459. msgid "Archive had no package field"
  460. msgstr "Arxiu sense el camp paquet"
  461. #: ftparchive/writer.cc:394 ftparchive/writer.cc:603
  462. #, c-format
  463. msgid " %s has no override entry\n"
  464. msgstr " %s no té una entrada dominant\n"
  465. #: ftparchive/writer.cc:437 ftparchive/writer.cc:689
  466. #, c-format
  467. msgid " %s maintainer is %s not %s\n"
  468. msgstr " el mantenidor de %s és %s, no %s\n"
  469. #: ftparchive/contents.cc:317
  470. #, c-format
  471. msgid "Internal error, could not locate member %s"
  472. msgstr "Error intern, no s'ha pogut localitzar al membre %s"
  473. #: ftparchive/contents.cc:353 ftparchive/contents.cc:384
  474. msgid "realloc - Failed to allocate memory"
  475. msgstr "realloc - No s'ha pogut assignar espai en memòria"
  476. #: ftparchive/override.cc:38 ftparchive/override.cc:146
  477. #, c-format
  478. msgid "Unable to open %s"
  479. msgstr "No es pot obrir %s"
  480. #: ftparchive/override.cc:64 ftparchive/override.cc:170
  481. #, c-format
  482. msgid "Malformed override %s line %lu #1"
  483. msgstr "Línia predominant %s línia malformada %lu núm 1"
  484. #: ftparchive/override.cc:78 ftparchive/override.cc:182
  485. #, c-format
  486. msgid "Malformed override %s line %lu #2"
  487. msgstr "Línia predominant %s línia malformada %lu núm 2"
  488. #: ftparchive/override.cc:92 ftparchive/override.cc:195
  489. #, c-format
  490. msgid "Malformed override %s line %lu #3"
  491. msgstr "Línia predominant %s línia malformada %lu núm 3"
  492. #: ftparchive/override.cc:131 ftparchive/override.cc:205
  493. #, c-format
  494. msgid "Failed to read the override file %s"
  495. msgstr "No s'ha pogut llegir la línia predominant del fitxer %s"
  496. #: ftparchive/multicompress.cc:75
  497. #, c-format
  498. msgid "Unknown compression algorithm '%s'"
  499. msgstr "Algorisme de compressió desconegut '%s'"
  500. #: ftparchive/multicompress.cc:105
  501. #, c-format
  502. msgid "Compressed output %s needs a compression set"
  503. msgstr "L'eixida comprimida %s necessita un joc de compressió"
  504. #: ftparchive/multicompress.cc:172 methods/rsh.cc:91
  505. msgid "Failed to create IPC pipe to subprocess"
  506. msgstr "No s'ha pogut crear el conducte IPC al subprocés"
  507. #: ftparchive/multicompress.cc:198
  508. msgid "Failed to create FILE*"
  509. msgstr "No s'ha pogut crear FILE*"
  510. #: ftparchive/multicompress.cc:201
  511. msgid "Failed to fork"
  512. msgstr "No s'ha pogut bifurcar"
  513. #: ftparchive/multicompress.cc:215
  514. msgid "Compress child"
  515. msgstr "Comprimeix el fil"
  516. #: ftparchive/multicompress.cc:238
  517. #, c-format
  518. msgid "Internal error, failed to create %s"
  519. msgstr "S'ha produït un error intern, no s'ha pogut crear %s"
  520. #: ftparchive/multicompress.cc:289
  521. msgid "Failed to create subprocess IPC"
  522. msgstr "No s'ha pogut crear el subprocés IPC"
  523. #: ftparchive/multicompress.cc:324
  524. msgid "Failed to exec compressor "
  525. msgstr "No s'ha pogut executar el compressor "
  526. #: ftparchive/multicompress.cc:363
  527. msgid "decompressor"
  528. msgstr "decompressor"
  529. #: ftparchive/multicompress.cc:406
  530. msgid "IO to subprocess/file failed"
  531. msgstr "Ha fallat l'E/S del subprocés sobre el fitxer"
  532. #: ftparchive/multicompress.cc:458
  533. msgid "Failed to read while computing MD5"
  534. msgstr "No s'ha pogut llegir mentre es calculava la suma MD5"
  535. #: ftparchive/multicompress.cc:475
  536. #, c-format
  537. msgid "Problem unlinking %s"
  538. msgstr "S'ha trobat un problema treient l'enllaç %s"
  539. #: ftparchive/multicompress.cc:490 apt-inst/extract.cc:188
  540. #, c-format
  541. msgid "Failed to rename %s to %s"
  542. msgstr "No s'ha pogut canviar el nom de %s a %s"
  543. #: cmdline/apt-get.cc:120
  544. msgid "Y"
  545. msgstr "S"
  546. #: cmdline/apt-get.cc:142 cmdline/apt-get.cc:1515
  547. #, c-format
  548. msgid "Regex compilation error - %s"
  549. msgstr "S'ha produït un error de compilació de l'expressió regular - %s"
  550. #: cmdline/apt-get.cc:237
  551. msgid "The following packages have unmet dependencies:"
  552. msgstr "Els següents paquets tenen dependències sense satisfer:"
  553. #: cmdline/apt-get.cc:327
  554. #, c-format
  555. msgid "but %s is installed"
  556. msgstr "però està instal·lat %s"
  557. #: cmdline/apt-get.cc:329
  558. #, c-format
  559. msgid "but %s is to be installed"
  560. msgstr "però s'instal·larà %s"
  561. #: cmdline/apt-get.cc:336
  562. msgid "but it is not installable"
  563. msgstr "però no és instal·lable"
  564. #: cmdline/apt-get.cc:338
  565. msgid "but it is a virtual package"
  566. msgstr "però és un paquet virtual"
  567. #: cmdline/apt-get.cc:341
  568. msgid "but it is not installed"
  569. msgstr "però no està instal·lat"
  570. #: cmdline/apt-get.cc:341
  571. msgid "but it is not going to be installed"
  572. msgstr "però no serà instal·lat"
  573. #: cmdline/apt-get.cc:346
  574. msgid " or"
  575. msgstr " o"
  576. #: cmdline/apt-get.cc:375
  577. msgid "The following NEW packages will be installed:"
  578. msgstr "S'instal·laran els següents paquets NOUS:"
  579. #: cmdline/apt-get.cc:401
  580. msgid "The following packages will be REMOVED:"
  581. msgstr "S'ELIMINARAN els següents paquets:"
  582. #: cmdline/apt-get.cc:423
  583. msgid "The following packages have been kept back:"
  584. msgstr "S'han mantingut els següents paquets:"
  585. #: cmdline/apt-get.cc:444
  586. msgid "The following packages will be upgraded:"
  587. msgstr "S'actualitzaran els següents paquets:"
  588. #: cmdline/apt-get.cc:465
  589. msgid "The following packages will be DOWNGRADED:"
  590. msgstr "Es DESACTUALITZARAN els següents paquets:"
  591. #: cmdline/apt-get.cc:485
  592. msgid "The following held packages will be changed:"
  593. msgstr "Es canviaran els següents paquets mantinguts:"
  594. #: cmdline/apt-get.cc:538
  595. #, c-format
  596. msgid "%s (due to %s) "
  597. msgstr "%s (per %s) "
  598. #: cmdline/apt-get.cc:546
  599. msgid ""
  600. "WARNING: The following essential packages will be removed.\n"
  601. "This should NOT be done unless you know exactly what you are doing!"
  602. msgstr ""
  603. "AVÍS: Els següents paquets essencials seran eliminats.\n"
  604. "Això NO s'ha de fer a menys que sapigueu exactament el que esteu fent!"
  605. #: cmdline/apt-get.cc:577
  606. #, c-format
  607. msgid "%lu upgraded, %lu newly installed, "
  608. msgstr "%lu actualitzats, %lu nous a instal·lar, "
  609. #: cmdline/apt-get.cc:581
  610. #, c-format
  611. msgid "%lu reinstalled, "
  612. msgstr "%lu reinstal·lats, "
  613. #: cmdline/apt-get.cc:583
  614. #, c-format
  615. msgid "%lu downgraded, "
  616. msgstr "%lu desactualitzats, "
  617. #: cmdline/apt-get.cc:585
  618. #, c-format
  619. msgid "%lu to remove and %lu not upgraded.\n"
  620. msgstr "%lu a eliminar i %lu no actualitzats.\n"
  621. #: cmdline/apt-get.cc:589
  622. #, c-format
  623. msgid "%lu not fully installed or removed.\n"
  624. msgstr "%lu no instal·lats o eliminats completament.\n"
  625. #: cmdline/apt-get.cc:649
  626. msgid "Correcting dependencies..."
  627. msgstr "S'estan corregint les dependències..."
  628. #: cmdline/apt-get.cc:652
  629. msgid " failed."
  630. msgstr " ha fallat."
  631. #: cmdline/apt-get.cc:655
  632. msgid "Unable to correct dependencies"
  633. msgstr "No es poden corregir les dependències"
  634. #: cmdline/apt-get.cc:658
  635. msgid "Unable to minimize the upgrade set"
  636. msgstr "No es pot minimitzar el joc de versions revisades"
  637. #: cmdline/apt-get.cc:660
  638. msgid " Done"
  639. msgstr " Fet"
  640. #: cmdline/apt-get.cc:664
  641. msgid "You might want to run `apt-get -f install' to correct these."
  642. msgstr "Potser voldreu executar `apt-get -f install' per a corregir-ho."
  643. #: cmdline/apt-get.cc:667
  644. msgid "Unmet dependencies. Try using -f."
  645. msgstr "Dependències sense satisfer. Proveu-ho usant -f."
  646. #: cmdline/apt-get.cc:689
  647. msgid "WARNING: The following packages cannot be authenticated!"
  648. msgstr "AVÍS: No es poden autenticar els següents paquets!"
  649. #: cmdline/apt-get.cc:693
  650. msgid "Authentication warning overridden.\n"
  651. msgstr "S'ha descartat l'avís d'autenticació.\n"
  652. #: cmdline/apt-get.cc:700
  653. msgid "Install these packages without verification [y/N]? "
  654. msgstr "Voleu instal·lar aquests paquets sense verificar-los [s/N]? "
  655. #: cmdline/apt-get.cc:702
  656. msgid "Some packages could not be authenticated"
  657. msgstr "No s'ha pogut autenticar alguns paquets"
  658. #: cmdline/apt-get.cc:711 cmdline/apt-get.cc:858
  659. msgid "There are problems and -y was used without --force-yes"
  660. msgstr "Hi ha problemes i s'ha usat -y sense --force-yes"
  661. #: cmdline/apt-get.cc:755
  662. msgid "Internal error, InstallPackages was called with broken packages!"
  663. msgstr ""
  664. "S'ha produït un error intern, s'ha cridat a InstallPackages amb paquets "
  665. "trencats!"
  666. #: cmdline/apt-get.cc:764
  667. msgid "Packages need to be removed but remove is disabled."
  668. msgstr "Els paquets necessiten ser eliminats però Remove està inhabilitat."
  669. #: cmdline/apt-get.cc:775
  670. msgid "Internal error, Ordering didn't finish"
  671. msgstr "S'ha produït un error intern, l'ordenació no ha acabat"
  672. #: cmdline/apt-get.cc:791 cmdline/apt-get.cc:1809 cmdline/apt-get.cc:1842
  673. msgid "Unable to lock the download directory"
  674. msgstr "No és possible blocar el directori de descàrrega"
  675. #: cmdline/apt-get.cc:801 cmdline/apt-get.cc:1890 cmdline/apt-get.cc:2126
  676. #: apt-pkg/cachefile.cc:67
  677. msgid "The list of sources could not be read."
  678. msgstr "No s'ha pogut llegir la llista de les fonts."
  679. #: cmdline/apt-get.cc:816
  680. msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  681. msgstr ""
  682. "Què estrany... les mides no coincideixen, informeu a apt@packages.debian.org"
  683. #: cmdline/apt-get.cc:821
  684. #, c-format
  685. msgid "Need to get %sB/%sB of archives.\n"
  686. msgstr "Es necessita obtenir %sB/%sB d'arxius.\n"
  687. #: cmdline/apt-get.cc:824
  688. #, c-format
  689. msgid "Need to get %sB of archives.\n"
  690. msgstr "Es necessita obtenir %sB d'arxius.\n"
  691. #: cmdline/apt-get.cc:829
  692. #, c-format
  693. msgid "After unpacking %sB of additional disk space will be used.\n"
  694. msgstr "Després de desempaquetar s'usaran %sB d'espai en disc addicional.\n"
  695. #: cmdline/apt-get.cc:832
  696. #, c-format
  697. msgid "After unpacking %sB disk space will be freed.\n"
  698. msgstr "Després de desempaquetar s'alliberaran %sB d'espai en disc.\n"
  699. #: cmdline/apt-get.cc:846 cmdline/apt-get.cc:1980
  700. #, c-format
  701. msgid "Couldn't determine free space in %s"
  702. msgstr "No s'ha pogut determinar l'espai lliure en %s"
  703. #: cmdline/apt-get.cc:849
  704. #, c-format
  705. msgid "You don't have enough free space in %s."
  706. msgstr "No teniu prou espai lliure en %s."
  707. #: cmdline/apt-get.cc:864 cmdline/apt-get.cc:884
  708. msgid "Trivial Only specified but this is not a trivial operation."
  709. msgstr "Es va especificar Trivial Only però aquesta operació no és trivial."
  710. #: cmdline/apt-get.cc:866
  711. msgid "Yes, do as I say!"
  712. msgstr "Sí, fes el que et dic!"
  713. #: cmdline/apt-get.cc:868
  714. #, c-format
  715. msgid ""
  716. "You are about to do something potentially harmful.\n"
  717. "To continue type in the phrase '%s'\n"
  718. " ?] "
  719. msgstr ""
  720. "Esteu a punt de fer quelcom potencialment nociu.\n"
  721. "Per a continuar escriviu la frase «%s»\n"
  722. " ?] "
  723. #: cmdline/apt-get.cc:874 cmdline/apt-get.cc:893
  724. msgid "Abort."
  725. msgstr "Avortat."
  726. #: cmdline/apt-get.cc:889
  727. msgid "Do you want to continue [Y/n]? "
  728. msgstr "Voleu continuar [S/n]? "
  729. #: cmdline/apt-get.cc:961 cmdline/apt-get.cc:1365 cmdline/apt-get.cc:2023
  730. #, c-format
  731. msgid "Failed to fetch %s %s\n"
  732. msgstr "No s'ha pogut obtenir %s %s\n"
  733. #: cmdline/apt-get.cc:979
  734. msgid "Some files failed to download"
  735. msgstr "Alguns fitxers no s'han pogut descarregar"
  736. #: cmdline/apt-get.cc:980 cmdline/apt-get.cc:2032
  737. msgid "Download complete and in download only mode"
  738. msgstr "Descàrrega completa i en mode de només descàrrega"
  739. #: cmdline/apt-get.cc:986
  740. msgid ""
  741. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  742. "missing?"
  743. msgstr ""
  744. "No es poden descarregar alguns arxius, potser executant apt-get update o "
  745. "intenteu-ho amb --fix-missing."
  746. #: cmdline/apt-get.cc:990
  747. msgid "--fix-missing and media swapping is not currently supported"
  748. msgstr "--fix-missing i medi d'intercanvi actualment no estan suportats"
  749. #: cmdline/apt-get.cc:995
  750. msgid "Unable to correct missing packages."
  751. msgstr "No es poden corregir els paquets que falten."
  752. #: cmdline/apt-get.cc:996
  753. msgid "Aborting install."
  754. msgstr "S'està avortant la instal·lació."
  755. #: cmdline/apt-get.cc:1030
  756. #, c-format
  757. msgid "Note, selecting %s instead of %s\n"
  758. msgstr "Nota: s'està seleccionant %s en comptes de %s\n"
  759. #: cmdline/apt-get.cc:1040
  760. #, c-format
  761. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  762. msgstr ""
  763. "S'està ometent %s, ja està instal·lat i l'actualització no està establerta.\n"
  764. #: cmdline/apt-get.cc:1058
  765. #, c-format
  766. msgid "Package %s is not installed, so not removed\n"
  767. msgstr "El paquet %s no està instal·lat, així que no s'eliminarà\n"
  768. #: cmdline/apt-get.cc:1069
  769. #, c-format
  770. msgid "Package %s is a virtual package provided by:\n"
  771. msgstr "El paquet %s és un paquet virtual proveït per:\n"
  772. #: cmdline/apt-get.cc:1081
  773. msgid " [Installed]"
  774. msgstr " [Instal·lat]"
  775. #: cmdline/apt-get.cc:1086
  776. msgid "You should explicitly select one to install."
  777. msgstr "Necessiteu seleccionar-ne un explícitament per a instal·lar-lo."
  778. #: cmdline/apt-get.cc:1091
  779. #, c-format
  780. msgid ""
  781. "Package %s is not available, but is referred to by another package.\n"
  782. "This may mean that the package is missing, has been obsoleted, or\n"
  783. "is only available from another source\n"
  784. msgstr ""
  785. "El paquet %s no té versió disponible, però un altre paquet\n"
  786. "en fa referència. Això normalment vol dir que el paquet falta,\n"
  787. "s'ha tornat obsolet o només és disponible des d'una altra font.\n"
  788. #: cmdline/apt-get.cc:1110
  789. msgid "However the following packages replace it:"
  790. msgstr "Tot i que els següents paquets el reemplacen:"
  791. #: cmdline/apt-get.cc:1113
  792. #, c-format
  793. msgid "Package %s has no installation candidate"
  794. msgstr "El paquet %s no té candidat d'instal·lació"
  795. #: cmdline/apt-get.cc:1133
  796. #, c-format
  797. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  798. msgstr ""
  799. "No es possible la reinstal·lació del paquet %s, no es pot descarregar.\n"
  800. #: cmdline/apt-get.cc:1141
  801. #, c-format
  802. msgid "%s is already the newest version.\n"
  803. msgstr "%s ja es troba en la versió més recent.\n"
  804. #: cmdline/apt-get.cc:1168
  805. #, c-format
  806. msgid "Release '%s' for '%s' was not found"
  807. msgstr "No s'ha trobat la versió puntual «%s» per a «%s»"
  808. #: cmdline/apt-get.cc:1170
  809. #, c-format
  810. msgid "Version '%s' for '%s' was not found"
  811. msgstr "No s'ha trobat la versió «%s» per a «%s»"
  812. #: cmdline/apt-get.cc:1176
  813. #, c-format
  814. msgid "Selected version %s (%s) for %s\n"
  815. msgstr "Versió seleccionada %s (%s) per a %s\n"
  816. #: cmdline/apt-get.cc:1313
  817. msgid "The update command takes no arguments"
  818. msgstr "L'ordre update no pren arguments"
  819. #: cmdline/apt-get.cc:1326 cmdline/apt-get.cc:1420
  820. msgid "Unable to lock the list directory"
  821. msgstr "No es pot blocar el directori de la llista"
  822. #: cmdline/apt-get.cc:1384
  823. msgid ""
  824. "Some index files failed to download, they have been ignored, or old ones "
  825. "used instead."
  826. msgstr ""
  827. "No es poden descarregar alguns fitxers índex, s'han ignorat o en el seu lloc "
  828. "s'han usat els antics."
  829. #: cmdline/apt-get.cc:1403
  830. msgid "Internal error, AllUpgrade broke stuff"
  831. msgstr "Error intern, AllUpgrade ha trencat coses"
  832. #: cmdline/apt-get.cc:1502 cmdline/apt-get.cc:1538
  833. #, c-format
  834. msgid "Couldn't find package %s"
  835. msgstr "No s'ha pogut trobar el paquet %s"
  836. #: cmdline/apt-get.cc:1525
  837. #, c-format
  838. msgid "Note, selecting %s for regex '%s'\n"
  839. msgstr "Nota: s'està seleccionant %s per a l'expressió regular '%s'\n"
  840. #: cmdline/apt-get.cc:1555
  841. msgid "You might want to run `apt-get -f install' to correct these:"
  842. msgstr "Potser voldreu executar `apt-get -f install' per a corregir-ho:"
  843. #: cmdline/apt-get.cc:1558
  844. msgid ""
  845. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  846. "solution)."
  847. msgstr ""
  848. "Dependències insatisfetes. Intenteu 'apt-get -f install' sense paquets (o "
  849. "especifiqueu una solució)."
  850. #: cmdline/apt-get.cc:1570
  851. msgid ""
  852. "Some packages could not be installed. This may mean that you have\n"
  853. "requested an impossible situation or if you are using the unstable\n"
  854. "distribution that some required packages have not yet been created\n"
  855. "or been moved out of Incoming."
  856. msgstr ""
  857. "No s'han pogut instal·lar alguns paquets. Això pot ser degut a que vàreu\n"
  858. "requerir una situació imposible o a que esteu usant la distribució\n"
  859. "unstable i alguns paquets requerits encara no han estat creats o bé\n"
  860. "encara no els hi han afegit."
  861. #: cmdline/apt-get.cc:1578
  862. msgid ""
  863. "Since you only requested a single operation it is extremely likely that\n"
  864. "the package is simply not installable and a bug report against\n"
  865. "that package should be filed."
  866. msgstr ""
  867. "Degut a que sols heu requerit una única operació, serà molt\n"
  868. "probable que el paquet no sigui instal·lable i que s'hagi d'emetre\n"
  869. "un informe d'error en contra d'aquest per a arxivar-lo."
  870. #: cmdline/apt-get.cc:1583
  871. msgid "The following information may help to resolve the situation:"
  872. msgstr "La següent informació pot ajudar-vos a resoldre la situació:"
  873. #: cmdline/apt-get.cc:1586
  874. msgid "Broken packages"
  875. msgstr "Paquets trencats"
  876. #: cmdline/apt-get.cc:1612
  877. msgid "The following extra packages will be installed:"
  878. msgstr "S'instal·laran els següents paquets extres:"
  879. #: cmdline/apt-get.cc:1683
  880. msgid "Suggested packages:"
  881. msgstr "Paquets suggerits:"
  882. #: cmdline/apt-get.cc:1684
  883. msgid "Recommended packages:"
  884. msgstr "Paquets recomanats:"
  885. #: cmdline/apt-get.cc:1704
  886. msgid "Calculating upgrade... "
  887. msgstr "S'està calculant l'actualització... "
  888. #: cmdline/apt-get.cc:1707 methods/ftp.cc:702 methods/connect.cc:101
  889. msgid "Failed"
  890. msgstr "Ha fallat"
  891. #: cmdline/apt-get.cc:1712
  892. msgid "Done"
  893. msgstr "Fet"
  894. #: cmdline/apt-get.cc:1777 cmdline/apt-get.cc:1785
  895. msgid "Internal error, problem resolver broke stuff"
  896. msgstr ""
  897. "S'ha produït un error intern, el solucionador de problemes ha trencat coses"
  898. #: cmdline/apt-get.cc:1885
  899. msgid "Must specify at least one package to fetch source for"
  900. msgstr "Haureu d'especificar un paquet de codi font per a descarregar"
  901. #: cmdline/apt-get.cc:1915 cmdline/apt-get.cc:2144
  902. #, c-format
  903. msgid "Unable to find a source package for %s"
  904. msgstr "No es pot trobar un paquet de fonts per a %s"
  905. #: cmdline/apt-get.cc:1959
  906. #, fuzzy, c-format
  907. msgid "Skiping already downloaded file '%s'\n"
  908. msgstr ""
  909. "S'està ometent el desempaquetament de les fonts que ja ho estan en %s\n"
  910. #: cmdline/apt-get.cc:1983
  911. #, c-format
  912. msgid "You don't have enough free space in %s"
  913. msgstr "No teniu prou espai lliure en %s"
  914. #: cmdline/apt-get.cc:1988
  915. #, c-format
  916. msgid "Need to get %sB/%sB of source archives.\n"
  917. msgstr "Es necessita descarregar %sB/%sB d'arxius font.\n"
  918. #: cmdline/apt-get.cc:1991
  919. #, c-format
  920. msgid "Need to get %sB of source archives.\n"
  921. msgstr "Es necessita descarregar %sB d'arxius font.\n"
  922. #: cmdline/apt-get.cc:1997
  923. #, c-format
  924. msgid "Fetch source %s\n"
  925. msgstr "Font descarregada %s\n"
  926. #: cmdline/apt-get.cc:2028
  927. msgid "Failed to fetch some archives."
  928. msgstr "No s'ha pogut descarregar alguns arxius."
  929. #: cmdline/apt-get.cc:2056
  930. #, c-format
  931. msgid "Skipping unpack of already unpacked source in %s\n"
  932. msgstr ""
  933. "S'està ometent el desempaquetament de les fonts que ja ho estan en %s\n"
  934. #: cmdline/apt-get.cc:2068
  935. #, c-format
  936. msgid "Unpack command '%s' failed.\n"
  937. msgstr "L'ordre de desempaquetar «%s» ha fallat.\n"
  938. #: cmdline/apt-get.cc:2069
  939. #, c-format
  940. msgid "Check if the 'dpkg-dev' package is installed.\n"
  941. msgstr ""
  942. #: cmdline/apt-get.cc:2086
  943. #, c-format
  944. msgid "Build command '%s' failed.\n"
  945. msgstr "L'ordre de construir «%s» ha fallat.\n"
  946. #: cmdline/apt-get.cc:2105
  947. msgid "Child process failed"
  948. msgstr "Ha fallat el procés fill"
  949. #: cmdline/apt-get.cc:2121
  950. msgid "Must specify at least one package to check builddeps for"
  951. msgstr ""
  952. "S'ha d'especificar un paquet per a verificar les dependències de construcció "
  953. "per a"
  954. #: cmdline/apt-get.cc:2149
  955. #, c-format
  956. msgid "Unable to get build-dependency information for %s"
  957. msgstr ""
  958. "No es pot obtenir informació sobre les dependències de construcció per a %s"
  959. #: cmdline/apt-get.cc:2169
  960. #, c-format
  961. msgid "%s has no build depends.\n"
  962. msgstr "%s no té dependències de construcció.\n"
  963. #: cmdline/apt-get.cc:2221
  964. #, c-format
  965. msgid ""
  966. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  967. "found"
  968. msgstr ""
  969. "La dependència %s en %s no es pot satisfer per que no es pot trobar el "
  970. "paquet %s"
  971. #: cmdline/apt-get.cc:2273
  972. #, c-format
  973. msgid ""
  974. "%s dependency for %s cannot be satisfied because no available versions of "
  975. "package %s can satisfy version requirements"
  976. msgstr ""
  977. "La dependència %s per a %s no es pot satisfer per que cap versió del paquet %"
  978. "s pot satisfer els requeriments de versions"
  979. #: cmdline/apt-get.cc:2308
  980. #, c-format
  981. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  982. msgstr ""
  983. "No s'ha pogut satisfer la dependència %s per a %s: El paquet instal·lat %s "
  984. "és massa nou"
  985. #: cmdline/apt-get.cc:2333
  986. #, c-format
  987. msgid "Failed to satisfy %s dependency for %s: %s"
  988. msgstr "No s'ha pogut satisfer la dependència %s per a %s: %s"
  989. #: cmdline/apt-get.cc:2347
  990. #, c-format
  991. msgid "Build-dependencies for %s could not be satisfied."
  992. msgstr "No s'han pogut satisfer les dependències de construcció per a %s"
  993. #: cmdline/apt-get.cc:2351
  994. msgid "Failed to process build dependencies"
  995. msgstr "No es poden processar les dependències de construcció"
  996. #: cmdline/apt-get.cc:2383
  997. msgid "Supported modules:"
  998. msgstr "Mòduls suportats:"
  999. #: cmdline/apt-get.cc:2424
  1000. msgid ""
  1001. "Usage: apt-get [options] command\n"
  1002. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1003. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1004. "\n"
  1005. "apt-get is a simple command line interface for downloading and\n"
  1006. "installing packages. The most frequently used commands are update\n"
  1007. "and install.\n"
  1008. "\n"
  1009. "Commands:\n"
  1010. " update - Retrieve new lists of packages\n"
  1011. " upgrade - Perform an upgrade\n"
  1012. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  1013. " remove - Remove packages\n"
  1014. " source - Download source archives\n"
  1015. " build-dep - Configure build-dependencies for source packages\n"
  1016. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  1017. " dselect-upgrade - Follow dselect selections\n"
  1018. " clean - Erase downloaded archive files\n"
  1019. " autoclean - Erase old downloaded archive files\n"
  1020. " check - Verify that there are no broken dependencies\n"
  1021. "\n"
  1022. "Options:\n"
  1023. " -h This help text.\n"
  1024. " -q Loggable output - no progress indicator\n"
  1025. " -qq No output except for errors\n"
  1026. " -d Download only - do NOT install or unpack archives\n"
  1027. " -s No-act. Perform ordering simulation\n"
  1028. " -y Assume Yes to all queries and do not prompt\n"
  1029. " -f Attempt to continue if the integrity check fails\n"
  1030. " -m Attempt to continue if archives are unlocatable\n"
  1031. " -u Show a list of upgraded packages as well\n"
  1032. " -b Build the source package after fetching it\n"
  1033. " -V Show verbose version numbers\n"
  1034. " -c=? Read this configuration file\n"
  1035. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1036. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  1037. "pages for more information and options.\n"
  1038. " This APT has Super Cow Powers.\n"
  1039. msgstr ""
  1040. "Forma d'ús: apt-get [opcions] ordre\n"
  1041. " apt-get [opcions] install|remove paq1 [paq2 ...]\n"
  1042. " apt-get [opcions] source paq1 [paq2 ...]\n"
  1043. "\n"
  1044. "apt-get és una simple interfície de línia d'ordres per a\n"
  1045. "descarregar i instal·lar paquets. Les ordres més freqüents\n"
  1046. "són update i install.\n"
  1047. "\n"
  1048. "Ordres:\n"
  1049. " update - Descarrega llistes noves dels paquets\n"
  1050. " upgrade - Realitza una actualització\n"
  1051. " install - Instal·la nous paquets (el paquet serà libc6 no libc6.deb)\n"
  1052. " remove - Elimina paquets\n"
  1053. " source - Descarrega arxius font\n"
  1054. " build-dep - Configura dependències de construcció pels paquets font\n"
  1055. " dist-upgrade - Actualitza la distribució, mireu apt-get(8)\n"
  1056. " dselect-upgrade - Segueix les seleccions de dselect\n"
  1057. " clean - Esborra els fitxers arxiu descarregats\n"
  1058. " autoclean - Esborra els fitxers arxiu descarregats antics\n"
  1059. " check - Verifica que no hi hagi dependències sense satisfer\n"
  1060. "\n"
  1061. "Opcions:\n"
  1062. " -h Aquest text d'ajuda.\n"
  1063. " -q Eixida a la bitàcola - sense indicatiu de progrés\n"
  1064. " -qq Sense eixida, excepte els errors\n"
  1065. " -d Sols descarrega - NO instal·la o desempaqueta arxius\n"
  1066. " -s No actua. Realitza les ordres en mode de simulació\n"
  1067. " -y Assumeix que Sí per a totes les preguntes, fa que no es pregunti\n"
  1068. " -f Intenta seguir si la comprovació d'integritat falla\n"
  1069. " -m Intenta seguir si no es localitzen els arxius\n"
  1070. " -u Mostra una llista dels paquets actualitzats també\n"
  1071. " -b Construeix des del paquet font després de descarregar-lo\n"
  1072. " -V Mostra els números de versió detallada\n"
  1073. " -c=? Llegeix aquest fitxer de configuració\n"
  1074. " -o=? Estableix una opció de configuració arbitrària, p.ex.\n"
  1075. " -o dir::cache=/tmp\n"
  1076. "Consulteu el manual apt-get(8), sources.list(5) i apt.conf(5)\n"
  1077. "per a més informació i opcions\n"
  1078. " Aquest APT té tots els Poders de Super Vaca.\n"
  1079. #: cmdline/acqprogress.cc:55
  1080. msgid "Hit "
  1081. msgstr "Obj "
  1082. #: cmdline/acqprogress.cc:79
  1083. msgid "Get:"
  1084. msgstr "Des:"
  1085. #: cmdline/acqprogress.cc:110
  1086. msgid "Ign "
  1087. msgstr "Ign "
  1088. #: cmdline/acqprogress.cc:114
  1089. msgid "Err "
  1090. msgstr "Err "
  1091. #: cmdline/acqprogress.cc:135
  1092. #, c-format
  1093. msgid "Fetched %sB in %s (%sB/s)\n"
  1094. msgstr "%sB descarregats en %s (%sB/s)\n"
  1095. #: cmdline/acqprogress.cc:225
  1096. #, c-format
  1097. msgid " [Working]"
  1098. msgstr " [Treballant]"
  1099. #: cmdline/acqprogress.cc:271
  1100. #, c-format
  1101. msgid ""
  1102. "Media change: please insert the disc labeled\n"
  1103. " '%s'\n"
  1104. "in the drive '%s' and press enter\n"
  1105. msgstr ""
  1106. "El medi ha canviat: Si us plau, inseriu el disc amb l'etiqueta\n"
  1107. " '%s'\n"
  1108. "en la unitat de '%s' i premeu Intro\n"
  1109. #: cmdline/apt-sortpkgs.cc:86
  1110. msgid "Unknown package record!"
  1111. msgstr "Registre del paquet desconegut!"
  1112. #: cmdline/apt-sortpkgs.cc:150
  1113. msgid ""
  1114. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1115. "\n"
  1116. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1117. "to indicate what kind of file it is.\n"
  1118. "\n"
  1119. "Options:\n"
  1120. " -h This help text\n"
  1121. " -s Use source file sorting\n"
  1122. " -c=? Read this configuration file\n"
  1123. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1124. msgstr ""
  1125. "Ús: apt-sortpkgs [opcions] fitxer1 [fitxer2 ...]\n"
  1126. "\n"
  1127. "apt-sortpkgs és una simple eina per a ordenar fitxers de paquets.\n"
  1128. "L'opció -s s'usa per a indicar quin tipus de fitxer és.\n"
  1129. "\n"
  1130. "Opcions:\n"
  1131. " -h Aquest text d'ajuda.\n"
  1132. " -s Usar l'ordenació de fitxers font\n"
  1133. " -c=? Llegeix aquest fitxer de configuració\n"
  1134. " -o=? Estableix una opció de configuració, p.ex: -o dir::cache=/tmp\n"
  1135. #: dselect/install:32
  1136. msgid "Bad default setting!"
  1137. msgstr "Paràmetre establert incorrecte!"
  1138. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
  1139. #: dselect/install:104 dselect/update:45
  1140. msgid "Press enter to continue."
  1141. msgstr "Premeu Intro per a continuar."
  1142. #: dselect/install:100
  1143. msgid "Some errors occurred while unpacking. I'm going to configure the"
  1144. msgstr "Alguns errors al desempaquetar. Puc configurar"
  1145. #: dselect/install:101
  1146. msgid "packages that were installed. This may result in duplicate errors"
  1147. msgstr ""
  1148. "els paquets que estan instal·lats. Això pot resultar en errors duplicacats"
  1149. #: dselect/install:102
  1150. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1151. msgstr ""
  1152. "o errors causats per dependències sense satisfer. Aquest està bé, sols els "
  1153. "errors"
  1154. #: dselect/install:103
  1155. msgid ""
  1156. "above this message are important. Please fix them and run [I]nstall again"
  1157. msgstr ""
  1158. "són importants abans d'aquest missatge. Si us plau, arregleu-los i torneu a "
  1159. "executar [I]nstall una altra vegada"
  1160. #: dselect/update:30
  1161. msgid "Merging available information"
  1162. msgstr "S'està fusionant la informació disponible"
  1163. #: apt-inst/contrib/extracttar.cc:117
  1164. msgid "Failed to create pipes"
  1165. msgstr "No es poden crear els conductes"
  1166. #: apt-inst/contrib/extracttar.cc:143
  1167. msgid "Failed to exec gzip "
  1168. msgstr "No es pot executar el gzip "
  1169. #: apt-inst/contrib/extracttar.cc:180 apt-inst/contrib/extracttar.cc:206
  1170. msgid "Corrupted archive"
  1171. msgstr "Arxiu corromput"
  1172. #: apt-inst/contrib/extracttar.cc:195
  1173. msgid "Tar checksum failed, archive corrupted"
  1174. msgstr "La suma de comprovació de tar ha fallat, arxiu corromput"
  1175. #: apt-inst/contrib/extracttar.cc:298
  1176. #, c-format
  1177. msgid "Unknown TAR header type %u, member %s"
  1178. msgstr "Capçalera TAR desconeguda del tipus %u, membre %s"
  1179. #: apt-inst/contrib/arfile.cc:73
  1180. msgid "Invalid archive signature"
  1181. msgstr "Signatura de l'arxiu no vàlida"
  1182. #: apt-inst/contrib/arfile.cc:81
  1183. msgid "Error reading archive member header"
  1184. msgstr "Error llegint la capçalera del membre de l'arxiu"
  1185. #: apt-inst/contrib/arfile.cc:93 apt-inst/contrib/arfile.cc:105
  1186. msgid "Invalid archive member header"
  1187. msgstr "Capçalera del membre de l'arxiu no vàlida"
  1188. #: apt-inst/contrib/arfile.cc:131
  1189. msgid "Archive is too short"
  1190. msgstr "L'arxiu és massa petit"
  1191. #: apt-inst/contrib/arfile.cc:135
  1192. msgid "Failed to read the archive headers"
  1193. msgstr "Ha fallat la lectura de les capçaleres de l'arxiu"
  1194. #: apt-inst/filelist.cc:384
  1195. msgid "DropNode called on still linked node"
  1196. msgstr "DropNode crida a un node que encara està enllaçat"
  1197. #: apt-inst/filelist.cc:416
  1198. msgid "Failed to locate the hash element!"
  1199. msgstr "No s'ha trobat l'element diseminat!"
  1200. #: apt-inst/filelist.cc:463
  1201. msgid "Failed to allocate diversion"
  1202. msgstr "No s'ha pogut assignar la desviació"
  1203. #: apt-inst/filelist.cc:468
  1204. msgid "Internal error in AddDiversion"
  1205. msgstr "S'ha produït un error intern en AddDiversion"
  1206. #: apt-inst/filelist.cc:481
  1207. #, c-format
  1208. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1209. msgstr "S'està intentant sobreescriure una desviació, %s -> %s i %s/%s"
  1210. #: apt-inst/filelist.cc:510
  1211. #, c-format
  1212. msgid "Double add of diversion %s -> %s"
  1213. msgstr "Afegit doble d'una desviació %s -> %s"
  1214. #: apt-inst/filelist.cc:553
  1215. #, c-format
  1216. msgid "Duplicate conf file %s/%s"
  1217. msgstr "Fitxer de conf. duplicat %s/%s"
  1218. #: apt-inst/dirstream.cc:45 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:53
  1219. #, c-format
  1220. msgid "Failed to write file %s"
  1221. msgstr "No s'ha pogut escriure el fitxer %s"
  1222. #: apt-inst/dirstream.cc:96 apt-inst/dirstream.cc:104
  1223. #, c-format
  1224. msgid "Failed to close file %s"
  1225. msgstr "Ha fallat el tancament del fitxer %s"
  1226. #: apt-inst/extract.cc:96 apt-inst/extract.cc:167
  1227. #, c-format
  1228. msgid "The path %s is too long"
  1229. msgstr "La ruta %s és massa llarga"
  1230. #: apt-inst/extract.cc:127
  1231. #, c-format
  1232. msgid "Unpacking %s more than once"
  1233. msgstr "S'està desempaquetant %s més d'una vegada"
  1234. #: apt-inst/extract.cc:137
  1235. #, c-format
  1236. msgid "The directory %s is diverted"
  1237. msgstr "El directori %s està desviat"
  1238. #: apt-inst/extract.cc:147
  1239. #, c-format
  1240. msgid "The package is trying to write to the diversion target %s/%s"
  1241. msgstr "El paquet està intentant escriure en l'objectiu desviat %s/%s"
  1242. #: apt-inst/extract.cc:157 apt-inst/extract.cc:300
  1243. msgid "The diversion path is too long"
  1244. msgstr "La ruta de desviació és massa llarga"
  1245. #: apt-inst/extract.cc:243
  1246. #, c-format
  1247. msgid "The directory %s is being replaced by a non-directory"
  1248. msgstr "El directori %s està sent reemplaçat per un no-directori"
  1249. #: apt-inst/extract.cc:283
  1250. msgid "Failed to locate node in its hash bucket"
  1251. msgstr "No s'ha trobat el node dins de la taula"
  1252. #: apt-inst/extract.cc:287
  1253. msgid "The path is too long"
  1254. msgstr "La ruta és massa llarga"
  1255. #: apt-inst/extract.cc:417
  1256. #, c-format
  1257. msgid "Overwrite package match with no version for %s"
  1258. msgstr "S'està sobreescrivint el corresponent paquet sense versió per a %s"
  1259. #: apt-inst/extract.cc:434
  1260. #, c-format
  1261. msgid "File %s/%s overwrites the one in the package %s"
  1262. msgstr "El fitxer %s/%s sobreescriu al que està en el paquet %s"
  1263. #: apt-inst/extract.cc:467 apt-pkg/contrib/configuration.cc:750
  1264. #: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/sourcelist.cc:324
  1265. #: apt-pkg/acquire.cc:421 apt-pkg/clean.cc:38
  1266. #, c-format
  1267. msgid "Unable to read %s"
  1268. msgstr "No es pot llegir %s"
  1269. #: apt-inst/extract.cc:494
  1270. #, c-format
  1271. msgid "Unable to stat %s"
  1272. msgstr "No es pot veure l'estat de %s"
  1273. #: apt-inst/deb/dpkgdb.cc:55 apt-inst/deb/dpkgdb.cc:61
  1274. #, c-format
  1275. msgid "Failed to remove %s"
  1276. msgstr "No es pot eliminar %s"
  1277. #: apt-inst/deb/dpkgdb.cc:110 apt-inst/deb/dpkgdb.cc:112
  1278. #, c-format
  1279. msgid "Unable to create %s"
  1280. msgstr "No es pot crear %s"
  1281. #: apt-inst/deb/dpkgdb.cc:118
  1282. #, c-format
  1283. msgid "Failed to stat %sinfo"
  1284. msgstr "No s'ha pogut fer «stat» de %sinfo"
  1285. #: apt-inst/deb/dpkgdb.cc:123
  1286. msgid "The info and temp directories need to be on the same filesystem"
  1287. msgstr ""
  1288. "La info i els directoris temp necessiten estar en el mateix sistema de "
  1289. "fitxers"
  1290. #. Build the status cache
  1291. #: apt-inst/deb/dpkgdb.cc:139 apt-pkg/pkgcachegen.cc:643
  1292. #: apt-pkg/pkgcachegen.cc:712 apt-pkg/pkgcachegen.cc:717
  1293. #: apt-pkg/pkgcachegen.cc:840
  1294. msgid "Reading package lists"
  1295. msgstr "S'està llegint la llista de paquets"
  1296. #: apt-inst/deb/dpkgdb.cc:180
  1297. #, c-format
  1298. msgid "Failed to change to the admin dir %sinfo"
  1299. msgstr "No s'ha pogut canviar al directori d'admininstració %sinfo"
  1300. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:355
  1301. #: apt-inst/deb/dpkgdb.cc:448
  1302. msgid "Internal error getting a package name"
  1303. msgstr "S'ha produït un error intern en obtenir un nom de paquet"
  1304. #: apt-inst/deb/dpkgdb.cc:205
  1305. msgid "Reading file listing"
  1306. msgstr "S'està llegint el llistat de fitxers"
  1307. #: apt-inst/deb/dpkgdb.cc:216
  1308. #, c-format
  1309. msgid ""
  1310. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1311. "then make it empty and immediately re-install the same version of the "
  1312. "package!"
  1313. msgstr ""
  1314. "No s'ha pogut obrir la llista del fitxer «%sinfo/%s». Si no podeu restaurar "
  1315. "aquest fitxer, creeu-lo buit i torneu a instal·lar immediatament la mateixa "
  1316. "versió del paquet!"
  1317. #: apt-inst/deb/dpkgdb.cc:229 apt-inst/deb/dpkgdb.cc:242
  1318. #, c-format
  1319. msgid "Failed reading the list file %sinfo/%s"
  1320. msgstr "No s'ha pogut llegir la llista del fitxer %sinfo/%s"
  1321. #: apt-inst/deb/dpkgdb.cc:266
  1322. msgid "Internal error getting a node"
  1323. msgstr "S'ha produït un error en obtenir un node"
  1324. #: apt-inst/deb/dpkgdb.cc:309
  1325. #, c-format
  1326. msgid "Failed to open the diversions file %sdiversions"
  1327. msgstr "S'ha produït un error en obrir el fitxer de desviació %sdiversions"
  1328. #: apt-inst/deb/dpkgdb.cc:324
  1329. msgid "The diversion file is corrupted"
  1330. msgstr "El fitxer de desviació està corrupte"
  1331. #: apt-inst/deb/dpkgdb.cc:331 apt-inst/deb/dpkgdb.cc:336
  1332. #: apt-inst/deb/dpkgdb.cc:341
  1333. #, c-format
  1334. msgid "Invalid line in the diversion file: %s"
  1335. msgstr "Línia no vàlida en el fitxer de desviació: %s"
  1336. #: apt-inst/deb/dpkgdb.cc:362
  1337. msgid "Internal error adding a diversion"
  1338. msgstr "S'ha produït un error intern en afegir una desviació"
  1339. #: apt-inst/deb/dpkgdb.cc:383
  1340. msgid "The pkg cache must be initialized first"
  1341. msgstr "Primer s'ha d'inicialitzar la memòria cau d'aquest paquet"
  1342. #: apt-inst/deb/dpkgdb.cc:386
  1343. msgid "Reading file list"
  1344. msgstr "S'està llegint la llista de fitxers"
  1345. #: apt-inst/deb/dpkgdb.cc:443
  1346. #, c-format
  1347. msgid "Failed to find a Package: header, offset %lu"
  1348. msgstr "No s'ha trobat una capçalera Package:, desplaçament %lu"
  1349. #: apt-inst/deb/dpkgdb.cc:465
  1350. #, c-format
  1351. msgid "Bad ConfFile section in the status file. Offset %lu"
  1352. msgstr "Secció ConfFile dolenta en el fitxer d'estat. Desplaçament %lu"
  1353. #: apt-inst/deb/dpkgdb.cc:470
  1354. #, c-format
  1355. msgid "Error parsing MD5. Offset %lu"
  1356. msgstr "S'ha produït un error en analitzar la suma MD5. Desplaçament %lu"
  1357. #: apt-inst/deb/debfile.cc:42 apt-inst/deb/debfile.cc:47
  1358. #, c-format
  1359. msgid "This is not a valid DEB archive, missing '%s' member"
  1360. msgstr "Aquest no és un arxiu DEB vàlid, falta el membre «%s»"
  1361. #: apt-inst/deb/debfile.cc:52
  1362. #, c-format
  1363. msgid "This is not a valid DEB archive, it has no '%s' or '%s' member"
  1364. msgstr "Aquest no és un arxiu DEB vàlid, falten els membres «%s» o «%s»"
  1365. #: apt-inst/deb/debfile.cc:112
  1366. #, c-format
  1367. msgid "Couldn't change to %s"
  1368. msgstr "No s'ha pogut canviar a %s"
  1369. #: apt-inst/deb/debfile.cc:138
  1370. msgid "Internal error, could not locate member"
  1371. msgstr "S'ha produït un error intern, no s'ha trobat el membre"
  1372. #: apt-inst/deb/debfile.cc:171
  1373. msgid "Failed to locate a valid control file"
  1374. msgstr "No s'ha trobat un fitxer de control vàlid"
  1375. #: apt-inst/deb/debfile.cc:256
  1376. msgid "Unparsable control file"
  1377. msgstr "El fitxer de control no es pot analitzar"
  1378. #: methods/cdrom.cc:114
  1379. #, c-format
  1380. msgid "Unable to read the cdrom database %s"
  1381. msgstr "No es pot llegir la base de dades del cdrom %s"
  1382. #: methods/cdrom.cc:123
  1383. msgid ""
  1384. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1385. "cannot be used to add new CD-ROMs"
  1386. msgstr ""
  1387. "Si us plau, useu apt-cdrom per a que aquest CD sigui reconegut per APT. No "
  1388. "pot usar-se apt-get update per afegir-ne de nous"
  1389. #: methods/cdrom.cc:131
  1390. msgid "Wrong CD-ROM"
  1391. msgstr "CD erroni"
  1392. #: methods/cdrom.cc:164
  1393. #, c-format
  1394. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1395. msgstr "No es pot muntar el CD-ROM en %s, potser estigui encara en ús."
  1396. #: methods/cdrom.cc:169
  1397. #, fuzzy
  1398. msgid "Disk not found."
  1399. msgstr "Fitxer no trobat"
  1400. #: methods/cdrom.cc:177 methods/file.cc:79 methods/rsh.cc:264
  1401. msgid "File not found"
  1402. msgstr "Fitxer no trobat"
  1403. #: methods/copy.cc:42 methods/gpgv.cc:265 methods/gzip.cc:133
  1404. #: methods/gzip.cc:142
  1405. msgid "Failed to stat"
  1406. msgstr "L'estat ha fallat"
  1407. #: methods/copy.cc:79 methods/gpgv.cc:262 methods/gzip.cc:139
  1408. msgid "Failed to set modification time"
  1409. msgstr "No s'ha pogut establir el temps de modificació"
  1410. #: methods/file.cc:44
  1411. msgid "Invalid URI, local URIS must not start with //"
  1412. msgstr "URI no vàlid, els URI locals no han de començar per //"
  1413. #. Login must be before getpeername otherwise dante won't work.
  1414. #: methods/ftp.cc:162
  1415. msgid "Logging in"
  1416. msgstr "S'està accedint a"
  1417. #: methods/ftp.cc:168
  1418. msgid "Unable to determine the peer name"
  1419. msgstr "No es pot determinar el nom de la màquina distant"
  1420. #: methods/ftp.cc:173
  1421. msgid "Unable to determine the local name"
  1422. msgstr "No es pot determinar el nom local"
  1423. #: methods/ftp.cc:204 methods/ftp.cc:232
  1424. #, c-format
  1425. msgid "The server refused the connection and said: %s"
  1426. msgstr "El servidor ha rebutjat la nostra connexió i ha dit: %s"
  1427. #: methods/ftp.cc:210
  1428. #, c-format
  1429. msgid "USER failed, server said: %s"
  1430. msgstr "USER ha fallat, el servidor ha dit: %s"
  1431. #: methods/ftp.cc:217
  1432. #, c-format
  1433. msgid "PASS failed, server said: %s"
  1434. msgstr "PASS ha fallat, el servidor ha dit: %s"
  1435. #: methods/ftp.cc:237
  1436. msgid ""
  1437. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1438. "is empty."
  1439. msgstr ""
  1440. "S'ha especificat un servidor intermediari però no un script d'accés, "
  1441. "Acquire::ftp::ProxyLogin està buit."
  1442. #: methods/ftp.cc:265
  1443. #, c-format
  1444. msgid "Login script command '%s' failed, server said: %s"
  1445. msgstr "L'ordre '%s' de l'script d'accés ha fallat, el servidor ha dit: %s"
  1446. #: methods/ftp.cc:291
  1447. #, c-format
  1448. msgid "TYPE failed, server said: %s"
  1449. msgstr "TYPE ha fallat, el servidor ha dit: %s"
  1450. #: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
  1451. msgid "Connection timeout"
  1452. msgstr "Temps de connexió finalitzat"
  1453. #: methods/ftp.cc:335
  1454. msgid "Server closed the connection"
  1455. msgstr "El servidor ha tancat la connexió"
  1456. #: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
  1457. msgid "Read error"
  1458. msgstr "Error de lectura"
  1459. #: methods/ftp.cc:345 methods/rsh.cc:197
  1460. msgid "A response overflowed the buffer."
  1461. msgstr "Una resposta ha desbordat la memòria temporal."
  1462. #: methods/ftp.cc:362 methods/ftp.cc:374
  1463. msgid "Protocol corruption"
  1464. msgstr "Protocol corrumput"
  1465. #: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
  1466. msgid "Write error"
  1467. msgstr "Error d'escriptura"
  1468. #: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
  1469. msgid "Could not create a socket"
  1470. msgstr "No s'ha pogut crear un sòcol"
  1471. #: methods/ftp.cc:698
  1472. msgid "Could not connect data socket, connection timed out"
  1473. msgstr "No s'ha pogut connectar amb el sòcol de dades, connexió finalitzada"
  1474. #: methods/ftp.cc:704
  1475. msgid "Could not connect passive socket."
  1476. msgstr "No s'ha pogut connectar amb el sòcol passiu."
  1477. #: methods/ftp.cc:722
  1478. msgid "getaddrinfo was unable to get a listening socket"
  1479. msgstr "gettaddrinfo no es pot obtenir un sòcol que escolte"
  1480. # abastar? huh? jm
  1481. #: methods/ftp.cc:736
  1482. msgid "Could not bind a socket"
  1483. msgstr "No s'ha pogut abastar un connector"
  1484. #: methods/ftp.cc:740
  1485. msgid "Could not listen on the socket"
  1486. msgstr "No s'ha pogut escoltar sobre el sòcol"
  1487. #: methods/ftp.cc:747
  1488. msgid "Could not determine the socket's name"
  1489. msgstr "No s'ha pogut determinar el nom del sòcol"
  1490. #: methods/ftp.cc:779
  1491. msgid "Unable to send PORT command"
  1492. msgstr "No es pot enviar l'ordre PORT"
  1493. #: methods/ftp.cc:789
  1494. #, c-format
  1495. msgid "Unknown address family %u (AF_*)"
  1496. msgstr "La família d'adreces %u és desconeguda (AF_*)"
  1497. #: methods/ftp.cc:798
  1498. #, c-format
  1499. msgid "EPRT failed, server said: %s"
  1500. msgstr "EPRT ha fallat, el servidor ha dit: %s"
  1501. #: methods/ftp.cc:818
  1502. msgid "Data socket connect timed out"
  1503. msgstr "S'ha esgotat el temps de connexió al sòcol de dades"
  1504. #: methods/ftp.cc:825
  1505. msgid "Unable to accept connection"
  1506. msgstr "No es pot acceptar la connexió"
  1507. #: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
  1508. msgid "Problem hashing file"
  1509. msgstr "Problema escollint el fitxer"
  1510. #: methods/ftp.cc:877
  1511. #, c-format
  1512. msgid "Unable to fetch file, server said '%s'"
  1513. msgstr "No és possible reprendre el fitxer, el servidor ha dit '%s'"
  1514. #: methods/ftp.cc:892 methods/rsh.cc:322
  1515. msgid "Data socket timed out"
  1516. msgstr "S'ha esgotat el temps d'espera per al sòcol de dades"
  1517. #: methods/ftp.cc:922
  1518. #, c-format
  1519. msgid "Data transfer failed, server said '%s'"
  1520. msgstr "Ha fallat la transferència de dades, el servidor ha dit '%s'"
  1521. #. Get the files information
  1522. #: methods/ftp.cc:997
  1523. msgid "Query"
  1524. msgstr "Consulta"
  1525. #: methods/ftp.cc:1106
  1526. msgid "Unable to invoke "
  1527. msgstr "No es pot invocar"
  1528. #: methods/connect.cc:64
  1529. #, c-format
  1530. msgid "Connecting to %s (%s)"
  1531. msgstr "S'està connectant amb %s (%s)"
  1532. #: methods/connect.cc:71
  1533. #, c-format
  1534. msgid "[IP: %s %s]"
  1535. msgstr "[IP: %s %s]"
  1536. #: methods/connect.cc:80
  1537. #, c-format
  1538. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1539. msgstr "No s'ha pogut crear un sòcol per a %s (f=%u t=%u p=%u)"
  1540. #: methods/connect.cc:86
  1541. #, c-format
  1542. msgid "Cannot initiate the connection to %s:%s (%s)."
  1543. msgstr "No es pot iniciar la connexió amb %s:%s (%s)."
  1544. #: methods/connect.cc:93
  1545. #, c-format
  1546. msgid "Could not connect to %s:%s (%s), connection timed out"
  1547. msgstr "No s'ha pogut connectar amb %s:%s (%s), temps de connexió excedit"
  1548. #: methods/connect.cc:106
  1549. #, c-format
  1550. msgid "Could not connect to %s:%s (%s)."
  1551. msgstr "No s'ha pogut connectar amb %s:%s (%s)."
  1552. #. We say this mainly because the pause here is for the
  1553. #. ssh connection that is still going
  1554. #: methods/connect.cc:134 methods/rsh.cc:425
  1555. #, c-format
  1556. msgid "Connecting to %s"
  1557. msgstr "S'està connectant amb %s"
  1558. #: methods/connect.cc:165
  1559. #, c-format
  1560. msgid "Could not resolve '%s'"
  1561. msgstr "No s'ha pogut resoldre '%s'"
  1562. #: methods/connect.cc:171
  1563. #, c-format
  1564. msgid "Temporary failure resolving '%s'"
  1565. msgstr "S'ha produït un error temporal en resoldre '%s'"
  1566. #: methods/connect.cc:174
  1567. #, c-format
  1568. msgid "Something wicked happened resolving '%s:%s' (%i)"
  1569. msgstr "Ha passat alguna cosa estranya en resoldre '%s:%s' (%i)"
  1570. #: methods/connect.cc:221
  1571. #, c-format
  1572. msgid "Unable to connect to %s %s:"
  1573. msgstr "No es pot connectar amb %s %s:"
  1574. #: methods/gpgv.cc:92
  1575. msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  1576. msgstr ""
  1577. "E: La llista d'arguments d'Acquire::gpgv::Options és massa llarga. S'està "
  1578. "sortint."
  1579. #: methods/gpgv.cc:191
  1580. msgid ""
  1581. "Internal error: Good signature, but could not determine key fingerprint?!"
  1582. msgstr ""
  1583. "Error intern: La signatura és correcta, però no s'ha pogut determinar "
  1584. "l'emprempta digital de la clau!"
  1585. #: methods/gpgv.cc:196
  1586. msgid "At least one invalid signature was encountered."
  1587. msgstr "S'ha trobat almenys una signatura invàlida."
  1588. #. FIXME String concatenation considered harmful.
  1589. #: methods/gpgv.cc:201
  1590. msgid "Could not execute "
  1591. msgstr "No s'ha pogut executar "
  1592. #: methods/gpgv.cc:202
  1593. msgid " to verify signature (is gnupg installed?)"
  1594. msgstr " per a verificar la signatura (està instal·lat el gnupg?)"
  1595. #: methods/gpgv.cc:206
  1596. msgid "Unknown error executing gpgv"
  1597. msgstr "S'ha produït un error desconegut en executar el gpgv"
  1598. #: methods/gpgv.cc:237
  1599. msgid "The following signatures were invalid:\n"
  1600. msgstr "Les següents signatures són invàlides:\n"
  1601. #: methods/gpgv.cc:244
  1602. msgid ""
  1603. "The following signatures couldn't be verified because the public key is not "
  1604. "available:\n"
  1605. msgstr ""
  1606. "Les següents signatures no s'han pogut verificar perquè la clau pública no "
  1607. "està disponible:\n"
  1608. #: methods/gzip.cc:57
  1609. #, c-format
  1610. msgid "Couldn't open pipe for %s"
  1611. msgstr "No s'ha pogut obrir un conducte per a %s"
  1612. #: methods/gzip.cc:102
  1613. #, c-format
  1614. msgid "Read error from %s process"
  1615. msgstr "Error llegint des del procés %s"
  1616. #: methods/http.cc:381
  1617. msgid "Waiting for headers"
  1618. msgstr "S'estan esperant les capçaleres"
  1619. #: methods/http.cc:527
  1620. #, c-format
  1621. msgid "Got a single header line over %u chars"
  1622. msgstr "S'ha aconseguit una sola línia de capçalera més de %u caràcters"
  1623. #: methods/http.cc:535
  1624. msgid "Bad header line"
  1625. msgstr "Línia de capçalera incorrecta"
  1626. #: methods/http.cc:554 methods/http.cc:561
  1627. msgid "The HTTP server sent an invalid reply header"
  1628. msgstr "El servidor http ha enviat una capçalera de resposta no vàlida"
  1629. #: methods/http.cc:590
  1630. msgid "The HTTP server sent an invalid Content-Length header"
  1631. msgstr "El servidor http ha enviat una capçalera de Content-Length no vàlida"
  1632. #: methods/http.cc:605
  1633. msgid "The HTTP server sent an invalid Content-Range header"
  1634. msgstr "El servidor http ha enviat una capçalera de Content-Range no vàlida"
  1635. #: methods/http.cc:607
  1636. msgid "This HTTP server has broken range support"
  1637. msgstr "Aquest servidor http té el suport d'abast trencat"
  1638. #: methods/http.cc:631
  1639. msgid "Unknown date format"
  1640. msgstr "Format de la data desconegut"
  1641. #: methods/http.cc:778
  1642. msgid "Select failed"
  1643. msgstr "Ha fallat la selecció"
  1644. #: methods/http.cc:783
  1645. msgid "Connection timed out"
  1646. msgstr "Connexió finalitzada"
  1647. #: methods/http.cc:806
  1648. msgid "Error writing to output file"
  1649. msgstr "Error escrivint en el fitxer d'eixida"
  1650. #: methods/http.cc:837
  1651. msgid "Error writing to file"
  1652. msgstr "Error escrivint en el fitxer"
  1653. #: methods/http.cc:865
  1654. msgid "Error writing to the file"
  1655. msgstr "Error escrivint en el fitxer"
  1656. #: methods/http.cc:879
  1657. msgid "Error reading from server. Remote end closed connection"
  1658. msgstr "Error llegint, el servidor remot ha tancat la connexió"
  1659. #: methods/http.cc:881
  1660. msgid "Error reading from server"
  1661. msgstr "Error llegint des del servidor"
  1662. #: methods/http.cc:1112
  1663. msgid "Bad header data"
  1664. msgstr "Capçalera de dades no vàlida"
  1665. #: methods/http.cc:1129
  1666. msgid "Connection failed"
  1667. msgstr "Ha fallat la connexió"
  1668. #: methods/http.cc:1220
  1669. msgid "Internal error"
  1670. msgstr "Error intern"
  1671. #: apt-pkg/contrib/mmap.cc:82
  1672. msgid "Can't mmap an empty file"
  1673. msgstr "No es pot transferir un fitxer buit a memòria"
  1674. #: apt-pkg/contrib/mmap.cc:87
  1675. #, c-format
  1676. msgid "Couldn't make mmap of %lu bytes"
  1677. msgstr "No s'ha pogut crear un mapa de memòria de %lu octets"
  1678. #: apt-pkg/contrib/strutl.cc:938
  1679. #, c-format
  1680. msgid "Selection %s not found"
  1681. msgstr "No s'ha trobat la selecció %s"
  1682. #: apt-pkg/contrib/configuration.cc:436
  1683. #, c-format
  1684. msgid "Unrecognized type abbreviation: '%c'"
  1685. msgstr "Abreujament de tipus no reconegut: '%c'"
  1686. #: apt-pkg/contrib/configuration.cc:494
  1687. #, c-format
  1688. msgid "Opening configuration file %s"
  1689. msgstr "S'està obrint el fitxer de configuració %s"
  1690. #: apt-pkg/contrib/configuration.cc:512
  1691. #, c-format
  1692. msgid "Line %d too long (max %d)"
  1693. msgstr "Línia %d massa llarga (màx %d)"
  1694. #: apt-pkg/contrib/configuration.cc:608
  1695. #, c-format
  1696. msgid "Syntax error %s:%u: Block starts with no name."
  1697. msgstr "Error sintàctic %s:%u: No comença el camp amb un nom."
  1698. #: apt-pkg/contrib/configuration.cc:627
  1699. #, c-format
  1700. msgid "Syntax error %s:%u: Malformed tag"
  1701. msgstr "Error sintàctic %s:%u: Etiqueta malformada"
  1702. #: apt-pkg/contrib/configuration.cc:644
  1703. #, c-format
  1704. msgid "Syntax error %s:%u: Extra junk after value"
  1705. msgstr "Error sintàctic %s:%u Text extra després del valor"
  1706. #: apt-pkg/contrib/configuration.cc:684
  1707. #, c-format
  1708. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1709. msgstr "Error sintàctic %s:%u: Es permeten directrius només al nivell més alt"
  1710. #: apt-pkg/contrib/configuration.cc:691
  1711. #, c-format
  1712. msgid "Syntax error %s:%u: Too many nested includes"
  1713. msgstr "Error sintàctic %s:%u: Hi ha masses fitxers include aniuats"
  1714. #: apt-pkg/contrib/configuration.cc:695 apt-pkg/contrib/configuration.cc:700
  1715. #, c-format
  1716. msgid "Syntax error %s:%u: Included from here"
  1717. msgstr "Error sintàctic %s:%u: Inclusió des d'aqui"
  1718. #: apt-pkg/contrib/configuration.cc:704
  1719. #, c-format
  1720. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1721. msgstr "Error sintàctic %s:%u: Directriu no suportada '%s'"
  1722. #: apt-pkg/contrib/configuration.cc:738
  1723. #, c-format
  1724. msgid "Syntax error %s:%u: Extra junk at end of file"
  1725. msgstr "Error sintàctic %s:%u: Text extra al final del fitxer"
  1726. #: apt-pkg/contrib/progress.cc:154
  1727. #, c-format
  1728. msgid "%c%s... Error!"
  1729. msgstr "%c%s... Error!"
  1730. #: apt-pkg/contrib/progress.cc:156
  1731. #, c-format
  1732. msgid "%c%s... Done"
  1733. msgstr "%c%s... Fet"
  1734. #: apt-pkg/contrib/cmndline.cc:80
  1735. #, c-format
  1736. msgid "Command line option '%c' [from %s] is not known."
  1737. msgstr "L'opció de la línia d'ordres '%c' [de %s] és desconeguda."
  1738. #: apt-pkg/contrib/cmndline.cc:106 apt-pkg/contrib/cmndline.cc:114
  1739. #: apt-pkg/contrib/cmndline.cc:122
  1740. #, c-format
  1741. msgid "Command line option %s is not understood"
  1742. msgstr "No s'entén l'opció de la línia d'ordres %s"
  1743. #: apt-pkg/contrib/cmndline.cc:127
  1744. #, c-format
  1745. msgid "Command line option %s is not boolean"
  1746. msgstr "No és lògica l'opció de la línia d'ordres %s"
  1747. #: apt-pkg/contrib/cmndline.cc:166 apt-pkg/contrib/cmndline.cc:187
  1748. #, c-format
  1749. msgid "Option %s requires an argument."
  1750. msgstr "L'opció de la línia d'ordres %s precisa un paràmetre."
  1751. #: apt-pkg/contrib/cmndline.cc:201 apt-pkg/contrib/cmndline.cc:207
  1752. #, c-format
  1753. msgid "Option %s: Configuration item specification must have an =<val>."
  1754. msgstr "Opció %s: Paràmetre de configuració ha de ser en la forma =<val>"
  1755. #: apt-pkg/contrib/cmndline.cc:237
  1756. #, c-format
  1757. msgid "Option %s requires an integer argument, not '%s'"
  1758. msgstr "L'opció %s precisa un paràmetre numèric, no '%s'"
  1759. #: apt-pkg/contrib/cmndline.cc:268
  1760. #, c-format
  1761. msgid "Option '%s' is too long"
  1762. msgstr "L'opció '%s' és massa llarga"
  1763. #: apt-pkg/contrib/cmndline.cc:301
  1764. #, c-format
  1765. msgid "Sense %s is not understood, try true or false."
  1766. msgstr "El sentit %s no s'entén, proveu 'true' (vertader) o 'false' (fals)."
  1767. #: apt-pkg/contrib/cmndline.cc:351
  1768. #, c-format
  1769. msgid "Invalid operation %s"
  1770. msgstr "Operació no vàlida %s"
  1771. #: apt-pkg/contrib/cdromutl.cc:55
  1772. #, c-format
  1773. msgid "Unable to stat the mount point %s"
  1774. msgstr "No es pot obtenir informació del punt de muntatge %s"
  1775. #: apt-pkg/contrib/cdromutl.cc:149 apt-pkg/acquire.cc:427 apt-pkg/clean.cc:44
  1776. #, c-format
  1777. msgid "Unable to change to %s"
  1778. msgstr "No es pot canviar a %s"
  1779. #: apt-pkg/contrib/cdromutl.cc:190
  1780. msgid "Failed to stat the cdrom"
  1781. msgstr "No s'ha pogut fer «stat» del cdrom"
  1782. #: apt-pkg/contrib/fileutl.cc:82
  1783. #, c-format
  1784. msgid "Not using locking for read only lock file %s"
  1785. msgstr "No s'usen blocats per a llegir el fitxer de blocat de sols lectura %s"
  1786. #: apt-pkg/contrib/fileutl.cc:87
  1787. #, c-format
  1788. msgid "Could not open lock file %s"
  1789. msgstr "No es pot resoldre el fixter de blocat %s"
  1790. #: apt-pkg/contrib/fileutl.cc:105
  1791. #, c-format
  1792. msgid "Not using locking for nfs mounted lock file %s"
  1793. msgstr "No s'usen blocats per al fitxer de blocat %s de muntar nfs"
  1794. #: apt-pkg/contrib/fileutl.cc:109
  1795. #, c-format
  1796. msgid "Could not get lock %s"
  1797. msgstr "No s'ha pogut blocar %s"
  1798. #: apt-pkg/contrib/fileutl.cc:377
  1799. #, c-format
  1800. msgid "Waited for %s but it wasn't there"
  1801. msgstr "Esperava %s però no hi era"
  1802. #: apt-pkg/contrib/fileutl.cc:387
  1803. #, c-format
  1804. msgid "Sub-process %s received a segmentation fault."
  1805. msgstr "Sub-procés %s ha rebut una violació de segment."
  1806. #: apt-pkg/contrib/fileutl.cc:390
  1807. #, c-format
  1808. msgid "Sub-process %s returned an error code (%u)"
  1809. msgstr "Sub-procés %s ha retornat un codi d'error (%u)"
  1810. #: apt-pkg/contrib/fileutl.cc:392
  1811. #, c-format
  1812. msgid "Sub-process %s exited unexpectedly"
  1813. msgstr "Sub-procés %s ha eixit inesperadament"
  1814. #: apt-pkg/contrib/fileutl.cc:436
  1815. #, c-format
  1816. msgid "Could not open file %s"
  1817. msgstr "No s'ha pogut obrir el fitxer %s"
  1818. #: apt-pkg/contrib/fileutl.cc:492
  1819. #, c-format
  1820. msgid "read, still have %lu to read but none left"
  1821. msgstr "llegits, falten %lu per llegir, però no queda res"
  1822. #: apt-pkg/contrib/fileutl.cc:522
  1823. #, c-format
  1824. msgid "write, still have %lu to write but couldn't"
  1825. msgstr "escrits, falten %lu per escriure però no s'ha pogut"
  1826. #: apt-pkg/contrib/fileutl.cc:597
  1827. msgid "Problem closing the file"
  1828. msgstr "Ha hagut un problema en tancar el fitxer"
  1829. #: apt-pkg/contrib/fileutl.cc:603
  1830. msgid "Problem unlinking the file"
  1831. msgstr "Ha hagut un problema en desenllaçar el fitxer"
  1832. #: apt-pkg/contrib/fileutl.cc:614
  1833. msgid "Problem syncing the file"
  1834. msgstr "Ha hagut un problema en sincronitzar el fitxer"
  1835. #: apt-pkg/pkgcache.cc:126
  1836. msgid "Empty package cache"
  1837. msgstr "Memòria cau de paquets és buida"
  1838. #: apt-pkg/pkgcache.cc:132
  1839. msgid "The package cache file is corrupted"
  1840. msgstr "El fitxer de memòria cau de paquets està corromput"
  1841. #: apt-pkg/pkgcache.cc:137
  1842. msgid "The package cache file is an incompatible version"
  1843. msgstr "El fitxer de memòria cau de paquets és una versió incompatible"
  1844. #: apt-pkg/pkgcache.cc:142
  1845. #, c-format
  1846. msgid "This APT does not support the versioning system '%s'"
  1847. msgstr "Aquest APT no suporta el sistema de versions '%s'"
  1848. #: apt-pkg/pkgcache.cc:147
  1849. msgid "The package cache was built for a different architecture"
  1850. msgstr "La memòria cau de paquets fou creada per a una arquitectura diferent"
  1851. #: apt-pkg/pkgcache.cc:218
  1852. msgid "Depends"
  1853. msgstr "Depén"
  1854. #: apt-pkg/pkgcache.cc:218
  1855. msgid "PreDepends"
  1856. msgstr "Predepén"
  1857. #: apt-pkg/pkgcache.cc:218
  1858. msgid "Suggests"
  1859. msgstr "Suggereix"
  1860. #: apt-pkg/pkgcache.cc:219
  1861. msgid "Recommends"
  1862. msgstr "Recomana"
  1863. #: apt-pkg/pkgcache.cc:219
  1864. msgid "Conflicts"
  1865. msgstr "Entra en conflicte"
  1866. #: apt-pkg/pkgcache.cc:219
  1867. msgid "Replaces"
  1868. msgstr "Reemplaça"
  1869. #: apt-pkg/pkgcache.cc:220
  1870. msgid "Obsoletes"
  1871. msgstr "Fa obsolet"
  1872. #: apt-pkg/pkgcache.cc:231
  1873. msgid "important"
  1874. msgstr "important"
  1875. #: apt-pkg/pkgcache.cc:231
  1876. msgid "required"
  1877. msgstr "requerit"
  1878. #: apt-pkg/pkgcache.cc:231
  1879. msgid "standard"
  1880. msgstr "estàndard"
  1881. #: apt-pkg/pkgcache.cc:232
  1882. msgid "optional"
  1883. msgstr "opcional"
  1884. #: apt-pkg/pkgcache.cc:232
  1885. msgid "extra"
  1886. msgstr "extra"
  1887. #: apt-pkg/depcache.cc:60 apt-pkg/depcache.cc:89
  1888. msgid "Building dependency tree"
  1889. msgstr "S'està construint l'arbre de dependències"
  1890. #: apt-pkg/depcache.cc:61
  1891. msgid "Candidate versions"
  1892. msgstr "Versions candidates"
  1893. #: apt-pkg/depcache.cc:90
  1894. msgid "Dependency generation"
  1895. msgstr "Dependències que genera"
  1896. #: apt-pkg/tagfile.cc:73
  1897. #, c-format
  1898. msgid "Unable to parse package file %s (1)"
  1899. msgstr "No es pot analitzar el fitxer del paquet %s (1)"
  1900. #: apt-pkg/tagfile.cc:160
  1901. #, c-format
  1902. msgid "Unable to parse package file %s (2)"
  1903. msgstr "No es pot analitzar el fitxer del paquet %s (2)"
  1904. #: apt-pkg/sourcelist.cc:94
  1905. #, c-format
  1906. msgid "Malformed line %lu in source list %s (URI)"
  1907. msgstr "Línia %lu malformada en la llista de fonts %s (URI)"
  1908. #: apt-pkg/sourcelist.cc:96
  1909. #, c-format
  1910. msgid "Malformed line %lu in source list %s (dist)"
  1911. msgstr "Línia %lu malformada en la llista de fonts %s (dist)"
  1912. #: apt-pkg/sourcelist.cc:99
  1913. #, c-format
  1914. msgid "Malformed line %lu in source list %s (URI parse)"
  1915. msgstr "Línia %lu malformada en la llista de fonts %s (analitzant URI)"
  1916. #: apt-pkg/sourcelist.cc:105
  1917. #, c-format
  1918. msgid "Malformed line %lu in source list %s (absolute dist)"
  1919. msgstr "Línia %lu malformada en la llista de fonts %s (dist absoluta)"
  1920. #: apt-pkg/sourcelist.cc:112
  1921. #, c-format
  1922. msgid "Malformed line %lu in source list %s (dist parse)"
  1923. msgstr "Línia %lu malformada en la llista de fonts %s (analitzant dist)"
  1924. #: apt-pkg/sourcelist.cc:203
  1925. #, c-format
  1926. msgid "Opening %s"
  1927. msgstr "S'està obrint %s"
  1928. #: apt-pkg/sourcelist.cc:220 apt-pkg/cdrom.cc:426
  1929. #, c-format
  1930. msgid "Line %u too long in source list %s."
  1931. msgstr "La línia %u és massa llarga en la llista de fonts %s."
  1932. #: apt-pkg/sourcelist.cc:240
  1933. #, c-format
  1934. msgid "Malformed line %u in source list %s (type)"
  1935. msgstr "La línia %u és malformada en la llista de fonts %s (tipus)"
  1936. #: apt-pkg/sourcelist.cc:244
  1937. #, fuzzy, c-format
  1938. msgid "Type '%s' is not known on line %u in source list %s"
  1939. msgstr "El tipus «%s» no és conegut en la línia %u de la llista de fonts %s"
  1940. #: apt-pkg/sourcelist.cc:252 apt-pkg/sourcelist.cc:255
  1941. #, c-format
  1942. msgid "Malformed line %u in source list %s (vendor id)"
  1943. msgstr "La línia %u és malformada en la llista de fonts %s (id del proveïdor)"
  1944. #: apt-pkg/packagemanager.cc:402
  1945. #, c-format
  1946. msgid ""
  1947. "This installation run will require temporarily removing the essential "
  1948. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  1949. "you really want to do it, activate the APT::Force-LoopBreak option."
  1950. msgstr ""
  1951. "Aquesta instal·lació requereix eliminar temporalment el paquet essencial %s "
  1952. "per qüestió d'un bucle de Conflictes/Pre-dependències. Això sol ser una cosa "
  1953. "dolenta, però si realment desitgeu fer-la, activeu l'opció APT::Force-"
  1954. "LoopBreak."
  1955. #: apt-pkg/pkgrecords.cc:37
  1956. #, c-format
  1957. msgid "Index file type '%s' is not supported"
  1958. msgstr "El tipus de fitxer índex '%s', no està suportat"
  1959. #: apt-pkg/algorithms.cc:241
  1960. #, c-format
  1961. msgid ""
  1962. "The package %s needs to be reinstalled, but I can't find an archive for it."
  1963. msgstr ""
  1964. "El paquet %s necessita ser reinstal·lat, però no se li pot trobar un arxiu."
  1965. #: apt-pkg/algorithms.cc:1059
  1966. msgid ""
  1967. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  1968. "held packages."
  1969. msgstr ""
  1970. "Error, pkgProblemResolver::Resolve ha generat pauses, això pot haver estat "
  1971. "causat per paquets mantinguts."
  1972. #: apt-pkg/algorithms.cc:1061
  1973. msgid "Unable to correct problems, you have held broken packages."
  1974. msgstr ""
  1975. "No es poden corregir els problemes, teniu paquets mantinguts que estan "
  1976. "trencats."
  1977. #: apt-pkg/acquire.cc:62
  1978. #, c-format
  1979. msgid "Lists directory %spartial is missing."
  1980. msgstr "Falta el directori de llistes %spartial."
  1981. #: apt-pkg/acquire.cc:66
  1982. #, c-format
  1983. msgid "Archive directory %spartial is missing."
  1984. msgstr "Falta el directori d'arxiu %spartial."
  1985. #: apt-pkg/acquire.cc:821
  1986. #, c-format
  1987. msgid "Downloading file %li of %li (%s remaining)"
  1988. msgstr ""
  1989. #: apt-pkg/acquire-worker.cc:113
  1990. #, c-format
  1991. msgid "The method driver %s could not be found."
  1992. msgstr "No s'ha pogut trobar el mètode de control %s."
  1993. #: apt-pkg/acquire-worker.cc:162
  1994. #, c-format
  1995. msgid "Method %s did not start correctly"
  1996. msgstr "El mètode %s no s'ha iniciat correctament"
  1997. #: apt-pkg/acquire-worker.cc:377
  1998. #, fuzzy, c-format
  1999. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  2000. msgstr ""
  2001. "El medi ha canviat: Si us plau, inseriu el disc amb l'etiqueta\n"
  2002. " '%s'\n"
  2003. "en la unitat de '%s' i premeu Intro\n"
  2004. #: apt-pkg/init.cc:120
  2005. #, c-format
  2006. msgid "Packaging system '%s' is not supported"
  2007. msgstr "El sistema d'empaquetament '%s' no està suportat."
  2008. #: apt-pkg/init.cc:136
  2009. msgid "Unable to determine a suitable packaging system type"
  2010. msgstr "No es pot determinar un tipus de sistema d'empaquetament adequat."
  2011. #: apt-pkg/clean.cc:61
  2012. #, c-format
  2013. msgid "Unable to stat %s."
  2014. msgstr "No es pot veure l'estat de %s."
  2015. #: apt-pkg/srcrecords.cc:48
  2016. msgid "You must put some 'source' URIs in your sources.list"
  2017. msgstr "Heu de posar algunes URI 'font' en el vostre sources.list"
  2018. #: apt-pkg/cachefile.cc:73
  2019. msgid "The package lists or status file could not be parsed or opened."
  2020. msgstr ""
  2021. "No s'han pogut analitzar o obrir les llistes de paquets o el fitxer d'estat."
  2022. #: apt-pkg/cachefile.cc:77
  2023. msgid "You may want to run apt-get update to correct these problems"
  2024. msgstr ""
  2025. "Potser voldreu executar apt-get update per a corregir aquests problemes"
  2026. #: apt-pkg/policy.cc:269
  2027. msgid "Invalid record in the preferences file, no Package header"
  2028. msgstr "Registre no vàlid en el fitxer de preferències, paquet sense capçalera"
  2029. #: apt-pkg/policy.cc:291
  2030. #, c-format
  2031. msgid "Did not understand pin type %s"
  2032. msgstr "No s'ha entès el pin de tipus %s"
  2033. #: apt-pkg/policy.cc:299
  2034. msgid "No priority (or zero) specified for pin"
  2035. msgstr "No hi ha prioritat especificada per al pin (o és zero)"
  2036. #: apt-pkg/pkgcachegen.cc:74
  2037. msgid "Cache has an incompatible versioning system"
  2038. msgstr "La memòria cau té un sistema de versions incompatible"
  2039. #: apt-pkg/pkgcachegen.cc:117
  2040. #, c-format
  2041. msgid "Error occurred while processing %s (NewPackage)"
  2042. msgstr "S'ha produït un error durant el processament de %s (NewPackage)"
  2043. #: apt-pkg/pkgcachegen.cc:129
  2044. #, c-format
  2045. msgid "Error occurred while processing %s (UsePackage1)"
  2046. msgstr "S'ha produït un error durant el processament de %s (UsePackage1)"
  2047. #: apt-pkg/pkgcachegen.cc:150
  2048. #, c-format
  2049. msgid "Error occurred while processing %s (UsePackage2)"
  2050. msgstr "S'ha produït un error durant el processament de %s (UsePackage2)"
  2051. #: apt-pkg/pkgcachegen.cc:154
  2052. #, c-format
  2053. msgid "Error occurred while processing %s (NewFileVer1)"
  2054. msgstr "S'ha produït un error durant el processament de %s (NewFileVer1)"
  2055. #: apt-pkg/pkgcachegen.cc:184
  2056. #, c-format
  2057. msgid "Error occurred while processing %s (NewVersion1)"
  2058. msgstr "S'ha produït un error durant el processament de %s (NewVersion1)"
  2059. #: apt-pkg/pkgcachegen.cc:188
  2060. #, c-format
  2061. msgid "Error occurred while processing %s (UsePackage3)"
  2062. msgstr "S'ha produït un error durant el processament de %s (UsePackage3)"
  2063. #: apt-pkg/pkgcachegen.cc:192
  2064. #, c-format
  2065. msgid "Error occurred while processing %s (NewVersion2)"
  2066. msgstr "S'ha produït un error durant el processament de %s (NewVersion2)"
  2067. #: apt-pkg/pkgcachegen.cc:207
  2068. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2069. msgstr "Uau, heu excedit el nombre de paquets dels que aquest APT és capaç."
  2070. #: apt-pkg/pkgcachegen.cc:210
  2071. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2072. msgstr ""
  2073. "Uau, heu excedit el nombre de versions de les que aquest APT és capaç. "
  2074. #: apt-pkg/pkgcachegen.cc:213
  2075. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2076. msgstr ""
  2077. "Uau, heu excedit el nombre de dependències de les que aquest APT és capaç."
  2078. #: apt-pkg/pkgcachegen.cc:241
  2079. #, c-format
  2080. msgid "Error occurred while processing %s (FindPkg)"
  2081. msgstr "S'ha produït un error durant el processament de %s (FindPkg)"
  2082. #: apt-pkg/pkgcachegen.cc:254
  2083. #, c-format
  2084. msgid "Error occurred while processing %s (CollectFileProvides)"
  2085. msgstr ""
  2086. "S'ha produït un error durant el processament de %s (CollectFileProvides)"
  2087. #: apt-pkg/pkgcachegen.cc:260
  2088. #, c-format
  2089. msgid "Package %s %s was not found while processing file dependencies"
  2090. msgstr ""
  2091. "No s'ha trobat el paquet %s %s en processar les dependències del fitxer"
  2092. #: apt-pkg/pkgcachegen.cc:574
  2093. #, c-format
  2094. msgid "Couldn't stat source package list %s"
  2095. msgstr "No s'ha pogut llegir la llista de paquets font %s"
  2096. #: apt-pkg/pkgcachegen.cc:658
  2097. msgid "Collecting File Provides"
  2098. msgstr "S'estan recollint els fitxers que proveeixen"
  2099. #: apt-pkg/pkgcachegen.cc:785 apt-pkg/pkgcachegen.cc:792
  2100. msgid "IO Error saving source cache"
  2101. msgstr "Error d'E/S en desar la memòria cau de la font"
  2102. #: apt-pkg/acquire-item.cc:126
  2103. #, c-format
  2104. msgid "rename failed, %s (%s -> %s)."
  2105. msgstr "no s'ha pogut canviar el nom, %s (%s -> %s)."
  2106. #: apt-pkg/acquire-item.cc:236 apt-pkg/acquire-item.cc:911
  2107. msgid "MD5Sum mismatch"
  2108. msgstr "Suma MD5 diferent"
  2109. #: apt-pkg/acquire-item.cc:719
  2110. #, c-format
  2111. msgid ""
  2112. "I wasn't able to locate a file for the %s package. This might mean you need "
  2113. "to manually fix this package. (due to missing arch)"
  2114. msgstr ""
  2115. "No ha estat possible localitzar un fitxer pel paquet %s. Això podria "
  2116. "significar que haureu d'arreglar aquest paquet manualment (segons "
  2117. "arquitectura)."
  2118. #: apt-pkg/acquire-item.cc:778
  2119. #, c-format
  2120. msgid ""
  2121. "I wasn't able to locate file for the %s package. This might mean you need to "
  2122. "manually fix this package."
  2123. msgstr ""
  2124. "No ha estat possible localitzar un fitxer pel paquet %s. Això podria "
  2125. "significar que haureu d'arreglar aquest paquet manualment."
  2126. #: apt-pkg/acquire-item.cc:814
  2127. #, c-format
  2128. msgid ""
  2129. "The package index files are corrupted. No Filename: field for package %s."
  2130. msgstr ""
  2131. "L'índex dels fitxers en el paquet està corromput. Fitxer no existent: camp "
  2132. "per al paquet %s."
  2133. #: apt-pkg/acquire-item.cc:901
  2134. msgid "Size mismatch"
  2135. msgstr "Mida diferent"
  2136. #: apt-pkg/vendorlist.cc:66
  2137. #, c-format
  2138. msgid "Vendor block %s contains no fingerprint"
  2139. msgstr "El camp del proveïdor %s no té una empremta digital"
  2140. #: apt-pkg/cdrom.cc:507
  2141. #, c-format
  2142. msgid ""
  2143. "Using CD-ROM mount point %s\n"
  2144. "Mounting CD-ROM\n"
  2145. msgstr ""
  2146. "S'està utilitzant el punt de muntatge de CD-ROM %s\n"
  2147. "S'està muntant el CD-ROM\n"
  2148. #: apt-pkg/cdrom.cc:516 apt-pkg/cdrom.cc:598
  2149. msgid "Identifying.. "
  2150. msgstr "S'està identificant..."
  2151. #: apt-pkg/cdrom.cc:541
  2152. #, c-format
  2153. msgid "Stored label: %s \n"
  2154. msgstr "S'ha emmagatzemat l'etiqueta: %s\n"
  2155. #: apt-pkg/cdrom.cc:561
  2156. #, c-format
  2157. msgid "Using CD-ROM mount point %s\n"
  2158. msgstr "S'està utilitzant el punt de muntatge de CD-ROM %s\n"
  2159. #: apt-pkg/cdrom.cc:579
  2160. msgid "Unmounting CD-ROM\n"
  2161. msgstr "S'està desmuntant el CD-ROM\n"
  2162. #: apt-pkg/cdrom.cc:583
  2163. msgid "Waiting for disc...\n"
  2164. msgstr "S'està esperant al disc...\n"
  2165. #. Mount the new CDROM
  2166. #: apt-pkg/cdrom.cc:591
  2167. msgid "Mounting CD-ROM...\n"
  2168. msgstr "S'està muntant el CD-ROM...\n"
  2169. #: apt-pkg/cdrom.cc:609
  2170. msgid "Scanning disc for index files..\n"
  2171. msgstr "S'està analitzant el disc per a fitxers d'índex...\n"
  2172. #: apt-pkg/cdrom.cc:647
  2173. #, c-format
  2174. msgid "Found %i package indexes, %i source indexes and %i signatures\n"
  2175. msgstr "S'han trobat %i índex de paquets, %i índex de fonts i %i signatures\n"
  2176. #: apt-pkg/cdrom.cc:710
  2177. msgid "That is not a valid name, try again.\n"
  2178. msgstr "Aquest no és un nom vàlid, torneu-ho a provar.\n"
  2179. #: apt-pkg/cdrom.cc:726
  2180. #, c-format
  2181. msgid ""
  2182. "This disc is called: \n"
  2183. "'%s'\n"
  2184. msgstr ""
  2185. "El disc es diu:\n"
  2186. "«%s»\n"
  2187. #: apt-pkg/cdrom.cc:730
  2188. msgid "Copying package lists..."
  2189. msgstr "S'estan copiant les llistes de paquets..."
  2190. #: apt-pkg/cdrom.cc:754
  2191. msgid "Writing new source list\n"
  2192. msgstr "S'està escrivint una nova llista de fonts\n"
  2193. #: apt-pkg/cdrom.cc:763
  2194. msgid "Source list entries for this disc are:\n"
  2195. msgstr "Les entrades de la llista de fonts per a aquest disc són:\n"
  2196. #: apt-pkg/cdrom.cc:803
  2197. msgid "Unmounting CD-ROM..."
  2198. msgstr "S'esta desmuntant el CD-ROM..."
  2199. #: apt-pkg/indexcopy.cc:261
  2200. #, c-format
  2201. msgid "Wrote %i records.\n"
  2202. msgstr "S'han escrit %i registres.\n"
  2203. #: apt-pkg/indexcopy.cc:263
  2204. #, c-format
  2205. msgid "Wrote %i records with %i missing files.\n"
  2206. msgstr "S'han escrit %i registres, on falten %i fitxers.\n"
  2207. #: apt-pkg/indexcopy.cc:266
  2208. #, c-format
  2209. msgid "Wrote %i records with %i mismatched files\n"
  2210. msgstr "S'han escrit %i registres, on hi ha %i fitxers no coincidents\n"
  2211. #: apt-pkg/indexcopy.cc:269
  2212. #, c-format
  2213. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2214. msgstr ""
  2215. "S'han escrit %i registres, on falten %i fitxers i hi ha %i fitxers no "
  2216. "coincidents\n"
  2217. #: apt-pkg/deb/dpkgpm.cc:358
  2218. #, fuzzy, c-format
  2219. msgid "Preparing %s"
  2220. msgstr "S'està obrint %s"
  2221. #: apt-pkg/deb/dpkgpm.cc:359
  2222. #, fuzzy, c-format
  2223. msgid "Unpacking %s"
  2224. msgstr "S'està obrint %s"
  2225. #: apt-pkg/deb/dpkgpm.cc:364
  2226. #, fuzzy, c-format
  2227. msgid "Preparing to configure %s"
  2228. msgstr "S'està obrint el fitxer de configuració %s"
  2229. #: apt-pkg/deb/dpkgpm.cc:365
  2230. #, fuzzy, c-format
  2231. msgid "Configuring %s"
  2232. msgstr "S'està connectant amb %s"
  2233. #: apt-pkg/deb/dpkgpm.cc:366
  2234. #, fuzzy, c-format
  2235. msgid "Installed %s"
  2236. msgstr " Instal·lat: "
  2237. #: apt-pkg/deb/dpkgpm.cc:371
  2238. #, c-format
  2239. msgid "Preparing for removal of %s"
  2240. msgstr ""
  2241. #: apt-pkg/deb/dpkgpm.cc:372
  2242. #, fuzzy, c-format
  2243. msgid "Removing %s"
  2244. msgstr "S'està obrint %s"
  2245. #: apt-pkg/deb/dpkgpm.cc:373
  2246. #, fuzzy, c-format
  2247. msgid "Removed %s"
  2248. msgstr "Recomana"
  2249. #: apt-pkg/deb/dpkgpm.cc:378
  2250. #, c-format
  2251. msgid "Preparing for remove with config %s"
  2252. msgstr ""
  2253. #: apt-pkg/deb/dpkgpm.cc:379
  2254. #, c-format
  2255. msgid "Removed with config %s"
  2256. msgstr ""
  2257. #: methods/rsh.cc:330
  2258. msgid "Connection closed prematurely"
  2259. msgstr "La connexió s'ha tancat prematurament"
  2260. #~ msgid "Unknown vendor ID '%s' in line %u of source list %s"
  2261. #~ msgstr ""
  2262. #~ "ID del proveïdor '%s' desconeguda en la línia %u de la llista de fonts %s"
  2263. #~ msgid ""
  2264. #~ "Some broken packages were found while trying to process build-"
  2265. #~ "dependencies for %s.\n"
  2266. #~ "You might want to run `apt-get -f install' to correct these."
  2267. #~ msgstr ""
  2268. #~ "S'han trobat alguns paquets trencats mentre es processaven les\n"
  2269. #~ "dependències de construcció per a %s.\n"
  2270. #~ "Potser voldreu executar `apt-get -f install' per a corregir-ho."