ca.po 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183
  1. # Catalan translation of dpkg-dev.
  2. # Copyright © 2006, 2010 Software in the Public Interest, Inc.
  3. # This file is distributed under the same license as the dpkg package.
  4. # Jordi Mallach <jordi@debian.org>, 2006, 2010.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: dpkg 1.15.8.6\n"
  9. "Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
  10. "POT-Creation-Date: 2012-04-27 10:06+0200\n"
  11. "PO-Revision-Date: 2010-10-24 18:10+0200\n"
  12. "Last-Translator: Jordi Mallach <jordi@debian.org>\n"
  13. "Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
  14. "Language: ca\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Plural-Forms: nplurals=2; plural=n!=1;\n"
  19. #: scripts/dpkg-architecture.pl:37 scripts/dpkg-buildflags.pl:31
  20. #: scripts/dpkg-buildpackage.pl:43 scripts/dpkg-checkbuilddeps.pl:37
  21. #: scripts/dpkg-distaddfile.pl:36 scripts/dpkg-genchanges.pl:99
  22. #: scripts/dpkg-gencontrol.pl:60 scripts/dpkg-gensymbols.pl:51
  23. #: scripts/dpkg-mergechangelogs.pl:53 scripts/dpkg-name.pl:46
  24. #: scripts/dpkg-parsechangelog.pl:34 scripts/dpkg-scanpackages.pl:60
  25. #: scripts/dpkg-scansources.pl:78 scripts/dpkg-shlibdeps.pl:540
  26. #: scripts/dpkg-source.pl:455 scripts/changelog/debian.pl:37
  27. #, perl-format
  28. msgid "Debian %s version %s.\n"
  29. msgstr "Debian %s versió %s.\n"
  30. #: scripts/dpkg-architecture.pl:39 scripts/dpkg-buildflags.pl:33
  31. #: scripts/dpkg-buildpackage.pl:45 scripts/dpkg-distaddfile.pl:38
  32. #: scripts/dpkg-genchanges.pl:101 scripts/dpkg-gencontrol.pl:62
  33. #: scripts/dpkg-gensymbols.pl:53 scripts/dpkg-parsechangelog.pl:36
  34. #: scripts/dpkg-shlibdeps.pl:542 scripts/dpkg-source.pl:457
  35. #: scripts/changelog/debian.pl:39
  36. msgid ""
  37. "\n"
  38. "This is free software; see the GNU General Public License version 2 or\n"
  39. "later for copying conditions. There is NO warranty.\n"
  40. msgstr ""
  41. "\n"
  42. "Aquest és programari lliure; vegeu la Llicència Pública General GNU versió 2 "
  43. "o posterior per a les condicions de còpia. NO hi ha garantia.\n"
  44. #: scripts/dpkg-architecture.pl:47
  45. #, perl-format
  46. msgid ""
  47. "Usage: %s [<option> ...] [<action>]\n"
  48. "\n"
  49. "Options:\n"
  50. " -a<debian-arch> set current Debian architecture.\n"
  51. " -t<gnu-system> set current GNU system type.\n"
  52. " -L list valid architectures.\n"
  53. " -f force flag (override variables set in environment).\n"
  54. "\n"
  55. "Actions:\n"
  56. " -l list variables (default).\n"
  57. " -e<debian-arch> compare with current Debian architecture.\n"
  58. " -i<arch-alias> check if current Debian architecture is <arch-alias>.\n"
  59. " -q<variable> prints only the value of <variable>.\n"
  60. " -s print command to set environment variables.\n"
  61. " -u print command to unset environment variables.\n"
  62. " -c <command> set environment and run the command in it.\n"
  63. " --help show this help message.\n"
  64. " --version show the version.\n"
  65. msgstr ""
  66. #: scripts/dpkg-architecture.pl:147
  67. #, perl-format
  68. msgid "%s is not a supported variable name"
  69. msgstr "%s no és un nom de variable gestionat"
  70. #: scripts/dpkg-architecture.pl:165 scripts/dpkg-buildflags.pl:90
  71. #: scripts/dpkg-distaddfile.pl:68 scripts/dpkg-genchanges.pl:193
  72. #: scripts/dpkg-gencontrol.pl:133 scripts/dpkg-gensymbols.pl:142
  73. #: scripts/dpkg-parsechangelog.pl:112 scripts/dpkg-shlibdeps.pl:124
  74. #, perl-format
  75. msgid "unknown option `%s'"
  76. msgstr "l'opció «%s» és desconeguda"
  77. #: scripts/dpkg-architecture.pl:199
  78. #, perl-format
  79. msgid "unknown Debian architecture %s, you must specify GNU system type, too"
  80. msgstr ""
  81. #: scripts/dpkg-architecture.pl:206
  82. #, perl-format
  83. msgid "unknown GNU system type %s, you must specify Debian architecture, too"
  84. msgstr ""
  85. #: scripts/dpkg-architecture.pl:213
  86. #, perl-format
  87. msgid "unknown default GNU system type for Debian architecture %s"
  88. msgstr ""
  89. #: scripts/dpkg-architecture.pl:216
  90. #, perl-format
  91. msgid ""
  92. "Default GNU system type %s for Debian arch %s does not match specified GNU "
  93. "system type %s"
  94. msgstr ""
  95. #: scripts/dpkg-architecture.pl:249
  96. #, fuzzy, perl-format
  97. #| msgid "Specified GNU system type %s does not match gcc system type %s."
  98. msgid ""
  99. "specified GNU system type %s does not match gcc system type %s, try setting "
  100. "a correct CC environment variable"
  101. msgstr ""
  102. "El tipus de sistema GNU %s especificat no correspon amb el tipus de sistema "
  103. "del gcc %s."
  104. #: scripts/dpkg-buildflags.pl:41
  105. #, perl-format
  106. msgid ""
  107. "Usage: %s [<action>]\n"
  108. "\n"
  109. "Actions:\n"
  110. " --get <flag> output the requested flag to stdout.\n"
  111. " --origin <flag> output the origin of the flag to stdout:\n"
  112. " value is one of vendor, system, user, env.\n"
  113. " --query-features <area>\n"
  114. " output the status of features for the given area.\n"
  115. " --list output a list of the flags supported by the current "
  116. "vendor.\n"
  117. " --export=(sh|make|configure)\n"
  118. " output something convenient to import the\n"
  119. " compilation flags in a shell script, in make,\n"
  120. " or on a ./configure command line.\n"
  121. " --dump output all compilation flags with their values\n"
  122. " --help show this help message.\n"
  123. " --version show the version.\n"
  124. msgstr ""
  125. #: scripts/dpkg-buildflags.pl:65 scripts/dpkg-buildflags.pl:71
  126. #: scripts/dpkg-buildflags.pl:76 scripts/dpkg-buildflags.pl:80
  127. #, perl-format
  128. msgid "two commands specified: --%s and --%s"
  129. msgstr "s'ha especificat dos ordres: --%s i --%s"
  130. #: scripts/dpkg-buildflags.pl:69
  131. #, perl-format
  132. msgid "%s needs a parameter"
  133. msgstr "%s requereix un paràmetre"
  134. #: scripts/dpkg-buildpackage.pl:52
  135. #, perl-format
  136. msgid ""
  137. "\n"
  138. "Usage: %s [<options> ...]\n"
  139. "\n"
  140. "Options:\n"
  141. " -r<gain-root-command>\n"
  142. " command to gain root privileges (default is fakeroot).\n"
  143. " -R<rules> rules file to execute (default is debian/rules).\n"
  144. " -p<sign-command>\n"
  145. " -d do not check build dependencies and conflicts.\n"
  146. " -D check build dependencies and conflicts.\n"
  147. " -T<target> call debian/rules <target> with the proper environment\n"
  148. " --as-root ensure -T calls the target with root rights\n"
  149. " -j[<number>] specify jobs to run simultaneously } passed to debian/"
  150. "rules\n"
  151. " -k<keyid> the key to use for signing.\n"
  152. " -sgpg the sign-command is called like GPG.\n"
  153. " -spgp the sign-command is called like PGP.\n"
  154. " -us unsigned source.\n"
  155. " -uc unsigned changes.\n"
  156. " -a<arch> Debian architecture we build for (implies -d).\n"
  157. " -b binary-only, do not build source. } also passed to\n"
  158. " -B binary-only, no arch-indep files. } dpkg-genchanges\n"
  159. " -A binary-only, only arch-indep files. }\n"
  160. " -S source only, no binary files. }\n"
  161. " -F normal full build (binaries and sources).\n"
  162. " -t<system> set GNU system type. } passed to dpkg-"
  163. "architecture\n"
  164. " -v<version> changes since version <version>. }\n"
  165. " -m<maint> maintainer for package is <maint>. }\n"
  166. " -e<maint> maintainer for release is <maint>. } only passed\n"
  167. " -C<descfile> changes are described in <descfile>. } to dpkg-genchanges\n"
  168. " -si (default) src includes orig if new upstream. }\n"
  169. " -sa uploaded src always includes orig. }\n"
  170. " -sd uploaded src is diff and .dsc only. }\n"
  171. " -sn force Debian native source format. }\n"
  172. " -s[sAkurKUR] see dpkg-source for explanation. } only passed\n"
  173. " -z<level> compression level of source } to dpkg-source\n"
  174. " -Z<compressor> compression to use for source }\n"
  175. " -nc do not clean source tree (implies -b).\n"
  176. " -tc clean source tree when finished.\n"
  177. " -ap add pause before starting signature process.\n"
  178. " -i[<regex>] ignore diffs of files matching regex. } only passed\n"
  179. " -I[<pattern>] filter out files when building tarballs. } to dpkg-source\n"
  180. " --source-option=<opt>\n"
  181. "\t\t pass option <opt> to dpkg-source\n"
  182. " --changes-option=<opt>\n"
  183. "\t\t pass option <opt> to dpkg-genchanges\n"
  184. " --admindir=<directory>\n"
  185. " change the administrative directory.\n"
  186. " -h, --help show this help message.\n"
  187. " --version show the version.\n"
  188. msgstr ""
  189. #: scripts/dpkg-buildpackage.pl:203 scripts/dpkg-buildpackage.pl:210
  190. #: scripts/dpkg-buildpackage.pl:217 scripts/dpkg-buildpackage.pl:224
  191. #: scripts/dpkg-buildpackage.pl:229 scripts/dpkg-genchanges.pl:142
  192. #: scripts/dpkg-genchanges.pl:145 scripts/dpkg-genchanges.pl:149
  193. #: scripts/dpkg-genchanges.pl:153
  194. #, perl-format
  195. msgid "cannot combine %s and %s"
  196. msgstr "no es pot combinar %s amb %s"
  197. #: scripts/dpkg-buildpackage.pl:242 scripts/dpkg-source.pl:202
  198. msgid "-E and -W are deprecated, they are without effect"
  199. msgstr ""
  200. #: scripts/dpkg-buildpackage.pl:246
  201. #, perl-format
  202. msgid "unknown option or argument %s"
  203. msgstr "l'opció o argument %s és desconeguda"
  204. #: scripts/dpkg-buildpackage.pl:256
  205. msgid "using a gain-root-command while being root"
  206. msgstr ""
  207. #: scripts/dpkg-buildpackage.pl:262
  208. msgid ""
  209. "fakeroot not found, either install the fakeroot\n"
  210. "package, specify a command with the -r option, or run this as root"
  211. msgstr ""
  212. #: scripts/dpkg-buildpackage.pl:266
  213. #, perl-format
  214. msgid "gain-root-commmand '%s' not found"
  215. msgstr ""
  216. #: scripts/dpkg-buildpackage.pl:285
  217. msgid "unknown sign command, assuming pgp style interface"
  218. msgstr ""
  219. #: scripts/dpkg-buildpackage.pl:288
  220. msgid "PGP support is deprecated (see README.feature-removal-schedule)"
  221. msgstr ""
  222. #: scripts/dpkg-buildpackage.pl:307
  223. msgid "source package"
  224. msgstr "paquet font"
  225. #: scripts/dpkg-buildpackage.pl:308
  226. msgid "source version"
  227. msgstr "versió del font"
  228. #: scripts/dpkg-buildpackage.pl:318
  229. msgid "source changed by"
  230. msgstr "font canviat per"
  231. #: scripts/dpkg-buildpackage.pl:340
  232. msgid "host architecture"
  233. msgstr "arquitectura de l'amfitrió"
  234. #: scripts/dpkg-buildpackage.pl:351
  235. msgid "debian/rules is not executable: fixing that."
  236. msgstr "debian/rules no és executable: s'està corregint això."
  237. #: scripts/dpkg-buildpackage.pl:370
  238. msgid "Build dependencies/conflicts unsatisfied; aborting."
  239. msgstr "Dependències/conflictes de construcció no satisfetes; s'està avortant."
  240. #: scripts/dpkg-buildpackage.pl:371
  241. msgid "(Use -d flag to override.)"
  242. msgstr "(Empreu el senyalador -d flag per a ometre-ho.)"
  243. #: scripts/dpkg-buildpackage.pl:374
  244. msgid "This is currently a non-fatal warning with -S, but"
  245. msgstr "Açò és actualment només un avís amb -S, però"
  246. #: scripts/dpkg-buildpackage.pl:375
  247. msgid "will probably become fatal in the future."
  248. msgstr "probablement serà fatal en el futur."
  249. #: scripts/dpkg-buildpackage.pl:397
  250. msgid ""
  251. "it is a bad idea to generate a source package without cleaning up first, it "
  252. "might contain undesired files."
  253. msgstr ""
  254. "no és bona idea generar un paquet font sense netejar-lo primer, podria "
  255. "contenir fitxers no desitjats."
  256. #: scripts/dpkg-buildpackage.pl:416
  257. #, perl-format
  258. msgid ""
  259. "%s must be updated to support the 'build-arch' and 'build-indep' targets (at "
  260. "least '%s' seems to be missing)"
  261. msgstr ""
  262. #: scripts/dpkg-buildpackage.pl:429
  263. msgid "Press the return key to start signing process\n"
  264. msgstr "Premeu la tecla de retorn per a començar el procés de signat\n"
  265. #: scripts/dpkg-buildpackage.pl:436
  266. msgid "Failed to sign .dsc and .changes file"
  267. msgstr "No s'ha pogut signar els fitxers .dsc i .changes"
  268. #: scripts/dpkg-buildpackage.pl:451 scripts/dpkg-buildpackage.pl:455
  269. #: scripts/dpkg-buildpackage.pl:468
  270. msgid "write changes file"
  271. msgstr "escriu un fitxer de canvis"
  272. #: scripts/dpkg-buildpackage.pl:467
  273. msgid "dpkg-genchanges"
  274. msgstr "dpkg-genchanges"
  275. #: scripts/dpkg-buildpackage.pl:476
  276. msgid "source only upload: Debian-native package"
  277. msgstr "pujada de només font: paquet nadiu de Debian"
  278. #: scripts/dpkg-buildpackage.pl:478
  279. msgid "source only, diff-only upload (original source NOT included)"
  280. msgstr "pujada de només font, només diff (NO s'inclou el codi font original)"
  281. #: scripts/dpkg-buildpackage.pl:480
  282. msgid "source only upload (original source is included)"
  283. msgstr "pujada de només font (s'inclou el codi font original)"
  284. #: scripts/dpkg-buildpackage.pl:483 scripts/dpkg-buildpackage.pl:491
  285. msgid "full upload (original source is included)"
  286. msgstr "pujada sencera (s'inclou el codi font original)"
  287. #: scripts/dpkg-buildpackage.pl:485
  288. msgid "binary only upload (no source included)"
  289. msgstr "pujada de només binaris (no s'inclou el codi font)"
  290. #: scripts/dpkg-buildpackage.pl:487
  291. msgid "full upload; Debian-native package (full source is included)"
  292. msgstr "pujada sencera; paquet nadiu de Debian (s'inclou el codi font sencer)"
  293. #: scripts/dpkg-buildpackage.pl:489
  294. msgid "binary and diff upload (original source NOT included)"
  295. msgstr "pujada de binaris i diff (NO s'inclou el codi font original)"
  296. #: scripts/dpkg-buildpackage.pl:496
  297. msgid "Failed to sign .changes file"
  298. msgstr "No s'ha pogut signar el fitxer .changes"
  299. #: scripts/dpkg-buildpackage.pl:515
  300. #, perl-format
  301. msgid "unable to determine %s"
  302. msgstr "no es pot determinar %s"
  303. #: scripts/dpkg-checkbuilddeps.pl:43
  304. #, perl-format
  305. msgid "Usage: %s [<option>...] [<control-file>]"
  306. msgstr "Forma d'ús: %s [<opció>…] [<fitxer-control>]"
  307. #: scripts/dpkg-checkbuilddeps.pl:45
  308. msgid ""
  309. "Options:\n"
  310. " -B binary-only, ignore -Indep.\n"
  311. " -d build-deps use given string as build dependencies instead of\n"
  312. " retrieving them from control file\n"
  313. " -c build-conf use given string for build conflicts instead of\n"
  314. " retrieving them from control file\n"
  315. " -a arch assume given host architecture\n"
  316. " --admindir=<directory>\n"
  317. " change the administrative directory.\n"
  318. " -h, --help show this help message.\n"
  319. " --version show the version."
  320. msgstr ""
  321. #: scripts/dpkg-checkbuilddeps.pl:57
  322. msgid ""
  323. "<control-file> is the control file to process (default: debian/control)."
  324. msgstr ""
  325. #: scripts/dpkg-checkbuilddeps.pl:111
  326. #, perl-format
  327. msgid "%s: Unmet build dependencies: "
  328. msgstr "%s: Dependències de construcció no satisfetes: "
  329. #: scripts/dpkg-checkbuilddeps.pl:115
  330. #, perl-format
  331. msgid "%s: Build conflicts: "
  332. msgstr "%s: Conflictes de construcció: "
  333. #: scripts/dpkg-checkbuilddeps.pl:126 scripts/dpkg-name.pl:96
  334. #: scripts/Dpkg/Arch.pm:144 scripts/Dpkg/Arch.pm:163 scripts/Dpkg/Arch.pm:194
  335. #: scripts/Dpkg/Arch.pm:208 scripts/Dpkg/Changelog/Parse.pm:142
  336. #: scripts/Dpkg/IPC.pm:247 scripts/Dpkg/Shlibs.pm:83
  337. #: scripts/Dpkg/Source/Package.pm:193
  338. #, perl-format
  339. msgid "cannot open %s"
  340. msgstr "no es pot obrir %s"
  341. #: scripts/dpkg-checkbuilddeps.pl:191 scripts/dpkg-source.pl:253
  342. #, perl-format
  343. msgid "error occurred while parsing %s"
  344. msgstr "s'ha produït un error en analitzar %s"
  345. #: scripts/dpkg-distaddfile.pl:46
  346. #, fuzzy, perl-format
  347. msgid ""
  348. "Usage: %s [<option>...] <filename> <section> <priority>\n"
  349. "\n"
  350. "Options:\n"
  351. " -f<fileslistfile> write files here instead of debian/files.\n"
  352. " -h, --help show this help message.\n"
  353. " --version show the version.\n"
  354. msgstr ""
  355. "Forma d'ús: %s [<opció> …] [--] [<nom directori>]\n"
  356. "\n"
  357. "Opcions:\n"
  358. " --unsafe Estableix algunes opcions addicionals que poden ser útils.\n"
  359. " Avís: aquesta opció pot espatllar fitxers en bon estat.\n"
  360. " --help Mostra aquest missatge d'ajuda.\n"
  361. " --version Mostra la versió.\n"
  362. #: scripts/dpkg-distaddfile.pl:72
  363. msgid "need exactly a filename, section and priority"
  364. msgstr ""
  365. #: scripts/dpkg-distaddfile.pl:76
  366. msgid "filename, section and priority may contain no whitespace"
  367. msgstr ""
  368. #: scripts/dpkg-distaddfile.pl:83 scripts/dpkg-gencontrol.pl:342
  369. #: scripts/dpkg-mergechangelogs.pl:127 scripts/dpkg-mergechangelogs.pl:129
  370. #: scripts/Dpkg/Compression/FileHandle.pm:385
  371. #: scripts/Dpkg/Interface/Storable.pm:115 scripts/Dpkg/IPC.pm:255
  372. #: scripts/Dpkg/IPC.pm:263 scripts/Dpkg/Source/Functions.pm:78
  373. #: scripts/Dpkg/Source/Package.pm:447 scripts/Dpkg/Source/Package.pm:550
  374. #: scripts/Dpkg/Source/Package/V2.pm:217 scripts/Dpkg/Source/Package/V2.pm:530
  375. #: scripts/Dpkg/Source/Package/V2.pm:605
  376. #: scripts/Dpkg/Source/Package/V3/quilt.pm:142
  377. #: scripts/Dpkg/Source/Package/V3/quilt.pm:151
  378. #: scripts/Dpkg/Source/Package/V3/quilt.pm:157
  379. #: scripts/Dpkg/Source/Package/V3/quilt.pm:226
  380. #: scripts/Dpkg/Source/Package/V3/quilt.pm:234
  381. #: scripts/Dpkg/Source/Package/V3/quilt.pm:341
  382. #: scripts/Dpkg/Source/Package/V3/quilt.pm:351
  383. #, perl-format
  384. msgid "cannot write %s"
  385. msgstr "no es pot escriure %s"
  386. #: scripts/dpkg-distaddfile.pl:88 scripts/dpkg-gencontrol.pl:347
  387. msgid "open new files list file"
  388. msgstr ""
  389. #: scripts/dpkg-distaddfile.pl:93 scripts/dpkg-gencontrol.pl:358
  390. msgid "copy old entry to new files list file"
  391. msgstr ""
  392. #: scripts/dpkg-distaddfile.pl:96 scripts/dpkg-gencontrol.pl:362
  393. #, fuzzy
  394. msgid "read old files list file"
  395. msgstr "no es pot eliminar la llista de fitxers antiga"
  396. #: scripts/dpkg-distaddfile.pl:99 scripts/dpkg-gencontrol.pl:372
  397. msgid "write new entry to new files list file"
  398. msgstr ""
  399. #: scripts/dpkg-distaddfile.pl:100 scripts/dpkg-gencontrol.pl:373
  400. #, fuzzy
  401. msgid "close new files list file"
  402. msgstr "no es pot tancar el fitxer d'activadors de fitxer nou «%.250s»"
  403. #: scripts/dpkg-distaddfile.pl:102 scripts/dpkg-gencontrol.pl:374
  404. #, fuzzy
  405. msgid "install new files list file"
  406. msgstr ""
  407. "no es pot instaŀlar el fitxer d'activadors de fitxer nou com a «%.250s»"
  408. #: scripts/dpkg-distaddfile.pl:105 scripts/dpkg-gencontrol.pl:377
  409. #: scripts/dpkg-gencontrol.pl:394 scripts/dpkg-shlibdeps.pl:530
  410. #: scripts/Dpkg/Interface/Storable.pm:91
  411. #: scripts/Dpkg/Interface/Storable.pm:119 scripts/Dpkg/Source/Patch.pm:290
  412. #: scripts/Dpkg/Source/Package/V2.pm:607
  413. #, perl-format
  414. msgid "cannot close %s"
  415. msgstr "no es pot tancar %s"
  416. #: scripts/dpkg-genchanges.pl:109
  417. #, perl-format
  418. msgid ""
  419. "Usage: %s [<option> ...]\n"
  420. "\n"
  421. "Options:\n"
  422. " -b binary-only build - no source files.\n"
  423. " -B arch-specific - no source or arch-indep files.\n"
  424. " -A only arch-indep - no source or arch-specific "
  425. "files.\n"
  426. " -S source-only upload.\n"
  427. " -c<controlfile> get control info from this file.\n"
  428. " -l<changelogfile> get per-version info from this file.\n"
  429. " -f<fileslistfile> get .deb files list from this file.\n"
  430. " -v<sinceversion> include all changes later than version.\n"
  431. " -C<changesdescription> use change description from this file.\n"
  432. " -m<maintainer> override control's maintainer value.\n"
  433. " -e<maintainer> override changelog's maintainer value.\n"
  434. " -u<uploadfilesdir> directory with files (default is `..').\n"
  435. " -si (default) src includes orig if new upstream.\n"
  436. " -sa source includes orig src.\n"
  437. " -sd source is diff and .dsc only.\n"
  438. " -q quiet - no informational messages on stderr.\n"
  439. " -F<changelogformat> force change log format.\n"
  440. " -V<name>=<value> set a substitution variable.\n"
  441. " -T<varlistfile> read variables here, not debian/substvars.\n"
  442. " -D<field>=<value> override or add a field and value.\n"
  443. " -U<field> remove a field.\n"
  444. " -h, --help show this help message.\n"
  445. " --version show the version.\n"
  446. msgstr ""
  447. #: scripts/dpkg-genchanges.pl:147
  448. #, perl-format
  449. msgid "%s: arch-specific upload - not including arch-independent packages"
  450. msgstr ""
  451. #: scripts/dpkg-genchanges.pl:151
  452. #, perl-format
  453. msgid "%s: arch-indep upload - not including arch-specific packages"
  454. msgstr ""
  455. #: scripts/dpkg-genchanges.pl:218
  456. #, perl-format
  457. msgid "the current version (%s) is earlier than the previous one (%s)"
  458. msgstr ""
  459. #: scripts/dpkg-genchanges.pl:225
  460. #, fuzzy
  461. msgid "cannot read files list file"
  462. msgstr "no es pot eliminar la llista de fitxers antiga"
  463. #: scripts/dpkg-genchanges.pl:229
  464. #, fuzzy, perl-format
  465. msgid "duplicate files list entry for package %s (line %d)"
  466. msgstr ""
  467. "no es pot fer «sync» sobre el fitxer de nlist de fitxers actualitzats del "
  468. "paquet %s"
  469. #: scripts/dpkg-genchanges.pl:237 scripts/dpkg-genchanges.pl:251
  470. #, fuzzy, perl-format
  471. msgid "duplicate files list entry for file %s (line %d)"
  472. msgstr ""
  473. "hi ha un fitxer d'activadors interessants duplicat per al fitxer «%.250s» i "
  474. "el paquet «%.250s»"
  475. #: scripts/dpkg-genchanges.pl:257
  476. #, perl-format
  477. msgid "badly formed line in files list file, line %d"
  478. msgstr ""
  479. #: scripts/dpkg-genchanges.pl:298
  480. #, fuzzy, perl-format
  481. msgid "package %s in control file but not in files list"
  482. msgstr "el paquet %s conté «list» com a fitxer d'informació"
  483. #: scripts/dpkg-genchanges.pl:342
  484. msgid "read changesdescription"
  485. msgstr ""
  486. #: scripts/dpkg-genchanges.pl:350
  487. #, fuzzy, perl-format
  488. msgid "package %s listed in files list but not in control info"
  489. msgstr "el paquet %s no és a la informació de control"
  490. #: scripts/dpkg-genchanges.pl:362
  491. #, perl-format
  492. msgid "missing Section for binary package %s; using '-'"
  493. msgstr ""
  494. #: scripts/dpkg-genchanges.pl:364
  495. #, fuzzy, perl-format
  496. msgid "package %s has section %s in control file but %s in files list"
  497. msgstr "el paquet %s conté «list» com a fitxer d'informació"
  498. #: scripts/dpkg-genchanges.pl:371
  499. #, perl-format
  500. msgid "missing Priority for binary package %s; using '-'"
  501. msgstr ""
  502. #: scripts/dpkg-genchanges.pl:373
  503. #, fuzzy, perl-format
  504. msgid "package %s has priority %s in control file but %s in files list"
  505. msgstr "el paquet %s no és a la informació de control"
  506. #: scripts/dpkg-genchanges.pl:385
  507. #, fuzzy
  508. msgid "missing Section for source files"
  509. msgstr "manca informació per al camp d'eixida %s"
  510. #: scripts/dpkg-genchanges.pl:390
  511. #, fuzzy
  512. msgid "missing Priority for source files"
  513. msgstr "manca informació per al camp d'eixida %s"
  514. #: scripts/dpkg-genchanges.pl:397 scripts/dpkg-source.pl:346
  515. #: scripts/Dpkg/Vendor.pm:76
  516. #, perl-format
  517. msgid "%s is empty"
  518. msgstr "%s és buit"
  519. #: scripts/dpkg-genchanges.pl:423
  520. msgid "not including original source code in upload"
  521. msgstr "no s'està incloent el codi font original a la pujada"
  522. #: scripts/dpkg-genchanges.pl:430
  523. msgid "ignoring -sd option for native Debian package"
  524. msgstr ""
  525. #: scripts/dpkg-genchanges.pl:432
  526. msgid "including full source code in upload"
  527. msgstr ""
  528. #: scripts/dpkg-genchanges.pl:435
  529. #, fuzzy
  530. msgid "binary-only upload - not including any source code"
  531. msgstr "pujada de només binaris (no s'inclou el codi font)"
  532. #: scripts/dpkg-genchanges.pl:439
  533. msgid "write original source message"
  534. msgstr ""
  535. #: scripts/dpkg-genchanges.pl:493 scripts/Dpkg/Source/Package.pm:532
  536. #, fuzzy, perl-format
  537. msgid "missing information for critical output field %s"
  538. msgstr "manca informació per al camp d'eixida %s"
  539. #: scripts/dpkg-genchanges.pl:498 scripts/dpkg-gencontrol.pl:276
  540. #: scripts/dpkg-gencontrol.pl:279 scripts/Dpkg/Source/Package.pm:537
  541. #, perl-format
  542. msgid "missing information for output field %s"
  543. msgstr "manca informació per al camp d'eixida %s"
  544. #: scripts/dpkg-gencontrol.pl:70
  545. #, perl-format
  546. msgid ""
  547. "Usage: %s [<option> ...]\n"
  548. "\n"
  549. "Options:\n"
  550. " -p<package> print control file for package.\n"
  551. " -c<controlfile> get control info from this file.\n"
  552. " -l<changelogfile> get per-version info from this file.\n"
  553. " -F<changelogformat> force change log format.\n"
  554. " -v<forceversion> set version of binary package.\n"
  555. " -f<fileslistfile> write files here instead of debian/files.\n"
  556. " -P<packagebuilddir> temporary build dir instead of debian/tmp.\n"
  557. " -n<filename> assume the package filename will be <filename>.\n"
  558. " -O write to stdout, not .../DEBIAN/control.\n"
  559. " -is, -ip, -isp, -ips deprecated, ignored for compatibility.\n"
  560. " -D<field>=<value> override or add a field and value.\n"
  561. " -U<field> remove a field.\n"
  562. " -V<name>=<value> set a substitution variable.\n"
  563. " -T<varlistfile> read variables here, not debian/substvars.\n"
  564. " -h, --help show this help message.\n"
  565. " --version show the version.\n"
  566. msgstr ""
  567. #: scripts/dpkg-gencontrol.pl:97 scripts/dpkg-gensymbols.pl:119
  568. #, perl-format
  569. msgid "Illegal package name `%s'"
  570. msgstr "El nom de paquet «%s» és il·legal"
  571. #: scripts/dpkg-gencontrol.pl:152
  572. #, perl-format
  573. msgid "package %s not in control info"
  574. msgstr "el paquet %s no és a la informació de control"
  575. #: scripts/dpkg-gencontrol.pl:156 scripts/dpkg-gensymbols.pl:160
  576. #, fuzzy
  577. #| msgid "package %s not in control info"
  578. msgid "no package stanza found in control info"
  579. msgstr "el paquet %s no és a la informació de control"
  580. #: scripts/dpkg-gencontrol.pl:158 scripts/dpkg-gensymbols.pl:162
  581. #, perl-format
  582. msgid "must specify package since control info has many (%s)"
  583. msgstr ""
  584. #: scripts/dpkg-gencontrol.pl:163
  585. #, perl-format
  586. msgid "package %s: "
  587. msgstr "paquet %s: "
  588. #: scripts/dpkg-gencontrol.pl:188
  589. #, perl-format
  590. msgid "`%s' is not a legal architecture string."
  591. msgid_plural "`%s' are not legal architecture strings."
  592. msgstr[0] "«%s» no és una cadena d'arquitectura vàlida."
  593. msgstr[1] "«%s» no són cadenes d'arquitectura vàlides"
  594. #: scripts/dpkg-gencontrol.pl:194
  595. #, perl-format
  596. msgid ""
  597. "current host architecture '%s' does not appear in package's architecture "
  598. "list (%s)"
  599. msgstr ""
  600. #: scripts/dpkg-gencontrol.pl:250
  601. #, perl-format
  602. msgid "%s field of package %s: "
  603. msgstr "camp %s del paquet %s: "
  604. #: scripts/dpkg-gencontrol.pl:254 scripts/dpkg-gencontrol.pl:262
  605. #, perl-format
  606. msgid "error occurred while parsing %s field: %s"
  607. msgstr "s'ha produït un error en analitzar el camp %s: %s"
  608. #: scripts/dpkg-gencontrol.pl:267
  609. #, perl-format
  610. msgid ""
  611. "the %s field contains an arch-specific dependency but the package is "
  612. "architecture all"
  613. msgstr ""
  614. #: scripts/dpkg-gencontrol.pl:291
  615. #, perl-format
  616. msgid "%s package with udeb specific field %s"
  617. msgstr "paquet %s amb camp específic d'udeb %s"
  618. #: scripts/dpkg-gencontrol.pl:304 scripts/dpkg-scansources.pl:313
  619. #: scripts/dpkg-shlibdeps.pl:836 scripts/Dpkg/Changelog/Parse.pm:138
  620. #: scripts/Dpkg/IPC.pm:229 scripts/Dpkg/Shlibs/Objdump.pm:181
  621. #, perl-format
  622. msgid "cannot fork for %s"
  623. msgstr "no es pot fer «fork» per a %s"
  624. #: scripts/dpkg-gencontrol.pl:307
  625. #, perl-format
  626. msgid "chdir for du to `%s'"
  627. msgstr "«chdir» per a du a «%s»"
  628. #: scripts/dpkg-gencontrol.pl:309 scripts/dpkg-shlibdeps.pl:843
  629. #: scripts/Dpkg/IPC.pm:271 scripts/Dpkg/Shlibs/Cppfilt.pm:50
  630. #, fuzzy, perl-format
  631. #| msgid "unable to execute c++filt"
  632. msgid "unable to execute %s"
  633. msgstr "no es pot executar el c++filt"
  634. #: scripts/dpkg-gencontrol.pl:316
  635. #, perl-format
  636. msgid "du in `%s'"
  637. msgstr "du en «%s»"
  638. #: scripts/dpkg-gencontrol.pl:318
  639. #, perl-format
  640. msgid "du gave unexpected output `%s'"
  641. msgstr ""
  642. #: scripts/dpkg-gencontrol.pl:360
  643. #, fuzzy
  644. msgid "close old files list file"
  645. msgstr "no es pot eliminar la llista de fitxers antiga"
  646. #: scripts/dpkg-gencontrol.pl:385
  647. #, fuzzy, perl-format
  648. msgid "cannot open new output control file `%s'"
  649. msgstr "no s'ha pogut obrir el nou fitxer de statoverride"
  650. #: scripts/dpkg-gencontrol.pl:396
  651. #, fuzzy, perl-format
  652. msgid "cannot install output control file `%s'"
  653. msgstr "fitxer de control binari %s"
  654. #: scripts/dpkg-gensymbols.pl:61
  655. #, perl-format
  656. msgid ""
  657. "Usage: %s [<option> ...]\n"
  658. "\n"
  659. "Options:\n"
  660. " -p<package> generate symbols file for package.\n"
  661. " -P<packagebuilddir> temporary build dir instead of debian/tmp.\n"
  662. " -e<library> explicitly list libraries to scan.\n"
  663. " -v<version> version of the packages (defaults to\n"
  664. " version extracted from debian/changelog).\n"
  665. " -c<level> compare generated symbols file with the\n"
  666. " reference template in the debian directory\n"
  667. " and fail if difference is too important\n"
  668. " (level goes from 0 for no check, to 4\n"
  669. " for all checks). By default checks at\n"
  670. " level 1.\n"
  671. " -q keep quiet and never emit any warnings or\n"
  672. " generate a diff between generated symbols\n"
  673. " file and the reference template.\n"
  674. " -I<file> force usage of <file> as reference symbols\n"
  675. " file instead of the default file.\n"
  676. " -O<file> write to <file>, not .../DEBIAN/symbols.\n"
  677. " -O write to stdout, not .../DEBIAN/symbols.\n"
  678. " -t write in template mode (tags are not\n"
  679. " processed and included in output).\n"
  680. " -V verbose output. Write deprecated symbols and\n"
  681. " pattern matching symbols as comments\n"
  682. " (in template mode only).\n"
  683. " -a<arch> assume <arch> as host architecture when "
  684. "processing\n"
  685. " symbol files.\n"
  686. " -d display debug information during work.\n"
  687. " -h, --help show this help message.\n"
  688. " --version show the version.\n"
  689. msgstr ""
  690. #: scripts/dpkg-gensymbols.pl:115
  691. #, fuzzy, perl-format
  692. msgid "pattern '%s' did not match any file"
  693. msgstr " %s (no és un fitxer normal)\n"
  694. #: scripts/dpkg-gensymbols.pl:198
  695. #, perl-format
  696. msgid "Can't read directory %s: %s"
  697. msgstr "No es pot llegir el directori %s: %s"
  698. #: scripts/dpkg-gensymbols.pl:213
  699. #, perl-format
  700. msgid "Objdump couldn't parse %s\n"
  701. msgstr "Objdump no ha pogut analitzar %s\n"
  702. #: scripts/dpkg-gensymbols.pl:231
  703. msgid "<standard output>"
  704. msgstr "<eixida estàndard>"
  705. #: scripts/dpkg-gensymbols.pl:259
  706. #, perl-format
  707. msgid "new libraries appeared in the symbols file: %s"
  708. msgstr ""
  709. #: scripts/dpkg-gensymbols.pl:264
  710. #, perl-format
  711. msgid "some libraries disappeared in the symbols file: %s"
  712. msgstr ""
  713. #: scripts/dpkg-gensymbols.pl:269
  714. #, perl-format
  715. msgid "some new symbols appeared in the symbols file: %s"
  716. msgstr ""
  717. #: scripts/dpkg-gensymbols.pl:270 scripts/dpkg-gensymbols.pl:275
  718. msgid "see diff output below"
  719. msgstr ""
  720. #: scripts/dpkg-gensymbols.pl:274
  721. #, perl-format
  722. msgid "some symbols or patterns disappeared in the symbols file: %s"
  723. msgstr ""
  724. #: scripts/dpkg-gensymbols.pl:295
  725. msgid "the generated symbols file is empty"
  726. msgstr ""
  727. #: scripts/dpkg-gensymbols.pl:297
  728. #, perl-format
  729. msgid "%s doesn't match completely %s"
  730. msgstr "%s no concorda completament amb %s"
  731. #: scripts/dpkg-gensymbols.pl:300
  732. #, perl-format
  733. msgid "no debian/symbols file used as basis for generating %s"
  734. msgstr ""
  735. #: scripts/dpkg-mergechangelogs.pl:56
  736. msgid ""
  737. "This is free software; see the GNU General Public License version 2 or\n"
  738. "later for copying conditions. There is NO warranty.\n"
  739. msgstr ""
  740. "Aquest és programari lliure; vegeu la Llicència Pública General GNU versió 2 "
  741. "o posterior per a les condicions de còpia. NO hi ha garantia.\n"
  742. #: scripts/dpkg-mergechangelogs.pl:63
  743. #, perl-format
  744. msgid ""
  745. "Usage: %s [<option> ...] <old> <new-a> <new-b> [<out>]\n"
  746. "\n"
  747. "Options:\n"
  748. " --merge-prereleases, -m merge pre-releases together, ignores everything\n"
  749. " after the last '~' in the version.\n"
  750. " --help, -h, -? show this help message.\n"
  751. " --version show the version.\n"
  752. msgstr ""
  753. "Forma d'ús: %s [<opció> …] <antic> <nou-a> <nou-b> [<eixida>]\n"
  754. "\n"
  755. "Opcions:\n"
  756. " --merge-prereleases, -m fusiona prellançaments, omet qualsevol cosa\n"
  757. " després de l'últim «~» a la versió.\n"
  758. " --help mostra aquest missatge d'ajuda.\n"
  759. " --version mostra la versió.\n"
  760. #: scripts/dpkg-name.pl:51
  761. #, perl-format
  762. msgid "Usage: %s [<option>...] <file>...\n"
  763. msgstr "Forma d'ús: %s [<opció>…] <fitxer>…\n"
  764. #: scripts/dpkg-name.pl:53
  765. msgid ""
  766. "\n"
  767. "Options:\n"
  768. " -a, --no-architecture no architecture part in filename.\n"
  769. " -o, --overwrite overwrite if file exists.\n"
  770. " -k, --symlink don't create a new file, but a symlink.\n"
  771. " -s, --subdir [dir] move file into subdir (use with care).\n"
  772. " -c, --create-dir create target dir if not there (use with care).\n"
  773. " -h, --help show this help message.\n"
  774. " -v, --version show the version.\n"
  775. "\n"
  776. "file.deb changes to <package>_<version>_<architecture>.<package_type>\n"
  777. "according to the 'underscores convention'.\n"
  778. msgstr ""
  779. #: scripts/dpkg-name.pl:75
  780. #, perl-format
  781. msgid "cannot find '%s'"
  782. msgstr "no s'ha trobat «%s»"
  783. #: scripts/dpkg-name.pl:98
  784. #, perl-format
  785. msgid "binary control file %s"
  786. msgstr "fitxer de control binari %s"
  787. #: scripts/dpkg-name.pl:111
  788. #, perl-format
  789. msgid "assuming architecture '%s' for '%s'"
  790. msgstr "s'està assumint l'arquitectura «%s» per a «%s»"
  791. #: scripts/dpkg-name.pl:133
  792. #, perl-format
  793. msgid "bad package control information for '%s'"
  794. msgstr "informació de control del paquet errònia per a «%s»"
  795. #: scripts/dpkg-name.pl:149
  796. #, perl-format
  797. msgid "assuming section '%s' for '%s'"
  798. msgstr "s'està assumint la secció «%s» per a «%s»"
  799. #: scripts/dpkg-name.pl:174
  800. #, perl-format
  801. msgid "no Package field found in '%s', skipping it"
  802. msgstr ""
  803. #: scripts/dpkg-name.pl:187
  804. #, perl-format
  805. msgid "created directory '%s'"
  806. msgstr "s'ha creat el directori «%s»"
  807. #: scripts/dpkg-name.pl:189
  808. #, perl-format
  809. msgid "cannot create directory '%s'"
  810. msgstr "no es pot crear el directori «%s»"
  811. #: scripts/dpkg-name.pl:192
  812. #, perl-format
  813. msgid "no such directory '%s', try --create-dir (-c) option"
  814. msgstr ""
  815. #: scripts/dpkg-name.pl:207
  816. #, perl-format
  817. msgid "skipping '%s'"
  818. msgstr "s'està ometent «%s»"
  819. #: scripts/dpkg-name.pl:209
  820. #, perl-format
  821. msgid "cannot move '%s' to existing file"
  822. msgstr "no es pot moure «%s» a un fitxer existent"
  823. #: scripts/dpkg-name.pl:211
  824. #, perl-format
  825. msgid "moved '%s' to '%s'"
  826. msgstr "s'ha mogut «%s» a «%s»"
  827. #: scripts/dpkg-name.pl:213
  828. msgid "mkdir can be used to create directory"
  829. msgstr "es pot emprar mkdir per a crear un directori"
  830. #: scripts/dpkg-name.pl:218
  831. msgid "need at least a filename"
  832. msgstr "es necessita almenys un directori"
  833. #: scripts/dpkg-parsechangelog.pl:44
  834. #, perl-format
  835. msgid ""
  836. "Usage: %s [<option> ...]\n"
  837. "\n"
  838. "Options:\n"
  839. " -l<changelogfile> get per-version info from this file.\n"
  840. " -F<changelogformat> force change log format.\n"
  841. " -L<libdir> look for change log parsers in <libdir>.\n"
  842. " -h, --help show this help message.\n"
  843. " --version show the version.\n"
  844. "\n"
  845. "parser options:\n"
  846. " --format <outputformat> see man page for list of available\n"
  847. " output formats, defaults to 'dpkg'\n"
  848. " for compatibility with dpkg-dev\n"
  849. " --since <version>, include all changes later than version\n"
  850. " -s<version>, -v<version>\n"
  851. " --until <version>, include all changes earlier than version\n"
  852. " -u<version>\n"
  853. " --from <version>, include all changes equal or later\n"
  854. " -f<version> than version\n"
  855. " --to <version>, -t<version> include all changes up to or equal\n"
  856. " than version\n"
  857. " --count <number>, include <number> entries from the top\n"
  858. " -c<number>, -n<number> (or the tail if <number> is lower than 0)\n"
  859. " --offset <number>, change the starting point for --count,\n"
  860. " -o<number> counted from the top (or the tail if\n"
  861. " <number> is lower than 0)\n"
  862. " --all include all changes\n"
  863. msgstr ""
  864. #: scripts/dpkg-parsechangelog.pl:116
  865. #, fuzzy
  866. #| msgid "%s takes no non-option arguments"
  867. msgid "takes no non-option arguments"
  868. msgstr "%s no accepta cap argument que no siguen opcions"
  869. #: scripts/dpkg-scanpackages.pl:66
  870. #, perl-format
  871. msgid ""
  872. "Usage: %s [<option> ...] <binarypath> [<overridefile> [<pathprefix>]] > "
  873. "Packages\n"
  874. "\n"
  875. "Options:\n"
  876. " -t, --type <type> scan for <type> packages (default is 'deb').\n"
  877. " -u, --udeb scan for udebs (obsolete alias for -tudeb).\n"
  878. " -a, --arch <arch> architecture to scan for.\n"
  879. " -m, --multiversion allow multiple versions of a single package.\n"
  880. " -e, --extra-override <file>\n"
  881. " use extra override file.\n"
  882. " -M, --medium <medium> add X-Medium field for dselect multicd access "
  883. "method\n"
  884. " -h, --help show this help message.\n"
  885. " --version show the version.\n"
  886. msgstr ""
  887. #: scripts/dpkg-scanpackages.pl:83
  888. msgid "-u, --udeb option is deprecated (see README.feature-removal-schedule)"
  889. msgstr ""
  890. #: scripts/dpkg-scanpackages.pl:112
  891. #, perl-format
  892. msgid " %s (package says %s, not %s)"
  893. msgstr ""
  894. #: scripts/dpkg-scanpackages.pl:120
  895. #, perl-format
  896. msgid "Unconditional maintainer override for %s"
  897. msgstr ""
  898. #: scripts/dpkg-scanpackages.pl:158 scripts/dpkg-scansources.pl:302
  899. msgid "one to three arguments expected"
  900. msgstr ""
  901. #: scripts/dpkg-scanpackages.pl:175
  902. #, perl-format
  903. msgid "Binary dir %s not found"
  904. msgstr "No s'ha trobat el dir binari %s"
  905. #: scripts/dpkg-scanpackages.pl:177
  906. #, fuzzy, perl-format
  907. msgid "Override file %s not found"
  908. msgstr "dpkg: %s no trobat.\n"
  909. #: scripts/dpkg-scanpackages.pl:183
  910. #, fuzzy, perl-format
  911. msgid "Couldn't open %s for reading"
  912. msgstr "no s'ha pogut obrir «%i» per a un flux"
  913. #: scripts/dpkg-scanpackages.pl:193
  914. #, perl-format
  915. msgid "couldn't parse control information from %s."
  916. msgstr "no s'ha pogut analitzar la informació de control de %s."
  917. #: scripts/dpkg-scanpackages.pl:196
  918. #, perl-format
  919. msgid "`dpkg-deb -I %s control' exited with %d, skipping package"
  920. msgstr ""
  921. #: scripts/dpkg-scanpackages.pl:202
  922. #, fuzzy, perl-format
  923. msgid "No Package field in control file of %s"
  924. msgstr "fitxer de control font %s"
  925. #: scripts/dpkg-scanpackages.pl:210
  926. #, perl-format
  927. msgid "Package %s (filename %s) is repeat but newer version;"
  928. msgstr ""
  929. #: scripts/dpkg-scanpackages.pl:212
  930. #, perl-format
  931. msgid "used that one and ignored data from %s!"
  932. msgstr ""
  933. #: scripts/dpkg-scanpackages.pl:216
  934. #, perl-format
  935. msgid "Package %s (filename %s) is repeat;"
  936. msgstr ""
  937. #: scripts/dpkg-scanpackages.pl:217
  938. #, perl-format
  939. msgid "ignored that one and using data from %s!"
  940. msgstr ""
  941. #: scripts/dpkg-scanpackages.pl:223
  942. #, perl-format
  943. msgid "Package %s (filename %s) has Filename field!"
  944. msgstr ""
  945. #: scripts/dpkg-scanpackages.pl:255
  946. #, fuzzy
  947. msgid "Failed when writing stdout"
  948. msgstr "s'ha produït un error en escriure la sortida estàndard: %s"
  949. #: scripts/dpkg-scanpackages.pl:259
  950. #, fuzzy
  951. msgid "Couldn't close stdout"
  952. msgstr "no s'ha pogut analitzar la data %s"
  953. #: scripts/dpkg-scanpackages.pl:262
  954. msgid "Packages in override file with incorrect old maintainer value:"
  955. msgstr ""
  956. #: scripts/dpkg-scanpackages.pl:266
  957. msgid "Packages specifying same maintainer as override file:"
  958. msgstr ""
  959. #: scripts/dpkg-scanpackages.pl:270
  960. msgid "Packages in archive but missing from override file:"
  961. msgstr ""
  962. #: scripts/dpkg-scanpackages.pl:274
  963. msgid "Packages in override file but not in archive:"
  964. msgstr ""
  965. #: scripts/dpkg-scanpackages.pl:278
  966. #, perl-format
  967. msgid "Wrote %s entries to output Packages file."
  968. msgstr ""
  969. #: scripts/dpkg-scansources.pl:84
  970. #, perl-format
  971. msgid ""
  972. "Usage: %s [<option> ...] <binarypath> [<overridefile> [<pathprefix>]] > "
  973. "Sources\n"
  974. "\n"
  975. "Options:\n"
  976. " -n, --no-sort don't sort by package before outputting.\n"
  977. " -e, --extra-override <file>\n"
  978. " use extra override file.\n"
  979. " -s, --source-override <file>\n"
  980. " use file for additional source overrides, "
  981. "default\n"
  982. " is regular override file with .src appended.\n"
  983. " --debug turn debugging on.\n"
  984. " --help show this help message.\n"
  985. " --version show the version.\n"
  986. "\n"
  987. "See the man page for the full documentation.\n"
  988. msgstr ""
  989. #: scripts/dpkg-scansources.pl:105
  990. #, fuzzy, perl-format
  991. msgid "error closing %s ($? %d, $! `%s')"
  992. msgstr "s'ha produït un error en tancar %s: ($? %d, $! «%s»)"
  993. #: scripts/dpkg-scansources.pl:121
  994. #, perl-format
  995. msgid "invalid override entry at line %d (%d fields)"
  996. msgstr ""
  997. #: scripts/dpkg-scansources.pl:127
  998. #, perl-format
  999. msgid "ignoring duplicate override entry for %s at line %d"
  1000. msgstr ""
  1001. #: scripts/dpkg-scansources.pl:132
  1002. #, perl-format
  1003. msgid "ignoring override entry for %s, invalid priority %s"
  1004. msgstr ""
  1005. #: scripts/dpkg-scansources.pl:186
  1006. #, perl-format
  1007. msgid "invalid source override entry at line %d (%d fields)"
  1008. msgstr ""
  1009. #: scripts/dpkg-scansources.pl:194
  1010. #, perl-format
  1011. msgid "ignoring duplicate source override entry for %s at line %d"
  1012. msgstr ""
  1013. #: scripts/dpkg-scansources.pl:244
  1014. #, perl-format
  1015. msgid "no binary packages specified in %s"
  1016. msgstr ""
  1017. #: scripts/dpkg-shlibdeps.pl:98
  1018. #, fuzzy, perl-format
  1019. msgid "administrative directory '%s' does not exist"
  1020. msgstr "el camí de l'alternativa %s no existeix."
  1021. #: scripts/dpkg-shlibdeps.pl:103
  1022. #, perl-format
  1023. msgid "unrecognised dependency field `%s'"
  1024. msgstr ""
  1025. #: scripts/dpkg-shlibdeps.pl:137
  1026. #, fuzzy
  1027. msgid "need at least one executable"
  1028. msgstr "es necessita almenys un directori"
  1029. #: scripts/dpkg-shlibdeps.pl:180
  1030. #, perl-format
  1031. msgid "couldn't find library %s needed by %s (ELF format: '%s'; RPATH: '%s')."
  1032. msgstr ""
  1033. #: scripts/dpkg-shlibdeps.pl:267
  1034. #, perl-format
  1035. msgid "%s has an unexpected SONAME (%s)"
  1036. msgstr ""
  1037. #: scripts/dpkg-shlibdeps.pl:288
  1038. #, perl-format
  1039. msgid "no dependency information found for %s (used by %s)."
  1040. msgstr ""
  1041. #: scripts/dpkg-shlibdeps.pl:319
  1042. msgid ""
  1043. "binaries to analyze should already be installed in their package's directory."
  1044. msgstr ""
  1045. #: scripts/dpkg-shlibdeps.pl:362
  1046. #, perl-format
  1047. msgid "symbol %s used by %s found in none of the libraries."
  1048. msgstr ""
  1049. #: scripts/dpkg-shlibdeps.pl:365
  1050. #, perl-format
  1051. msgid ""
  1052. "%s contains an unresolvable reference to symbol %s: it's probably a plugin."
  1053. msgstr ""
  1054. #: scripts/dpkg-shlibdeps.pl:387
  1055. #, perl-format
  1056. msgid "%d similar warning has been skipped (use -v to see it)."
  1057. msgid_plural ""
  1058. "%d other similar warnings have been skipped (use -v to see them all)."
  1059. msgstr[0] ""
  1060. msgstr[1] ""
  1061. #: scripts/dpkg-shlibdeps.pl:414
  1062. #, perl-format
  1063. msgid ""
  1064. "%s should not be linked against %s (it uses none of the library's symbols)."
  1065. msgstr ""
  1066. #: scripts/dpkg-shlibdeps.pl:427
  1067. #, perl-format
  1068. msgid ""
  1069. "package could avoid a useless dependency if %s was not linked against %s (it "
  1070. "uses none of the library's symbols)."
  1071. msgid_plural ""
  1072. "package could avoid a useless dependency if %s were not linked against %s "
  1073. "(they use none of the library's symbols)."
  1074. msgstr[0] ""
  1075. msgstr[1] ""
  1076. #: scripts/dpkg-shlibdeps.pl:438
  1077. msgid ""
  1078. "Note: libraries are not searched in other binary packages that do not have "
  1079. "any shlibs or symbols file.\n"
  1080. "To help dpkg-shlibdeps find private libraries, you might need to set "
  1081. "LD_LIBRARY_PATH."
  1082. msgstr ""
  1083. #: scripts/dpkg-shlibdeps.pl:441
  1084. msgid "Cannot continue due to the error above."
  1085. msgid_plural "Cannot continue due to the errors listed above."
  1086. msgstr[0] ""
  1087. msgstr[1] ""
  1088. #: scripts/dpkg-shlibdeps.pl:452
  1089. #, fuzzy, perl-format
  1090. msgid "open new substvars file `%s'"
  1091. msgstr "no es pot obrir el fitxer de dipòsit nou «%.250s»"
  1092. #: scripts/dpkg-shlibdeps.pl:455
  1093. #, fuzzy, perl-format
  1094. msgid "open old varlist file `%s' for reading"
  1095. msgstr ""
  1096. "s'ha produït un error en obrir per a lectura el fitxer d'informació del "
  1097. "paquet «%.255s»"
  1098. #: scripts/dpkg-shlibdeps.pl:458
  1099. #, fuzzy, perl-format
  1100. msgid "copy old entry to new varlist file `%s'"
  1101. msgstr "%s: no hi ha cap entrada per al fitxer «%s»"
  1102. #: scripts/dpkg-shlibdeps.pl:522
  1103. #, perl-format
  1104. msgid "invalid dependency got generated: %s"
  1105. msgstr ""
  1106. #: scripts/dpkg-shlibdeps.pl:532
  1107. #, fuzzy, perl-format
  1108. msgid "install new varlist file `%s'"
  1109. msgstr "instaŀla el nou diversions: %s"
  1110. #: scripts/dpkg-shlibdeps.pl:550
  1111. #, perl-format
  1112. msgid ""
  1113. "Usage: %s [<option> ...] <executable>|-e<executable> [<option> ...]\n"
  1114. "\n"
  1115. "Positional options (order is significant):\n"
  1116. " <executable> include dependencies for <executable>,\n"
  1117. " -e<executable> (use -e if <executable> starts with `-')\n"
  1118. " -d<dependencyfield> next executable(s) set shlibs:<dependencyfield>.\n"
  1119. "\n"
  1120. "Options:\n"
  1121. " -p<varnameprefix> set <varnameprefix>:* instead of shlibs:*.\n"
  1122. " -O print variable settings to stdout.\n"
  1123. " -L<localshlibsfile> shlibs override file, not debian/shlibs.local.\n"
  1124. " -T<varlistfile> update variables here, not debian/substvars.\n"
  1125. " -t<type> set package type (default is deb).\n"
  1126. " -x<package> exclude package from the generated dependencies.\n"
  1127. " -S<pkgbuilddir> search needed libraries in the given\n"
  1128. " package build directory first.\n"
  1129. " -v enable verbose mode (can be used multiple "
  1130. "times).\n"
  1131. " --ignore-missing-info don't fail if dependency information can't be "
  1132. "found.\n"
  1133. " --warnings=<value> define set of active warnings (see manual page).\n"
  1134. " --admindir=<directory> change the administrative directory.\n"
  1135. " -h, --help show this help message.\n"
  1136. " --version show the version.\n"
  1137. "\n"
  1138. "Dependency fields recognised are:\n"
  1139. " %s\n"
  1140. msgstr ""
  1141. #: scripts/dpkg-shlibdeps.pl:677
  1142. #, perl-format
  1143. msgid "Can't extract name and version from library name `%s'"
  1144. msgstr ""
  1145. #: scripts/dpkg-shlibdeps.pl:684
  1146. #, fuzzy, perl-format
  1147. msgid "unable to open shared libs info file `%s'"
  1148. msgstr ""
  1149. "no es pot obrir el fitxer d'informació de control dels activadors «%.250s»"
  1150. #: scripts/dpkg-shlibdeps.pl:690
  1151. #, fuzzy, perl-format
  1152. msgid "shared libs info file `%s' line %d: bad line `%s'"
  1153. msgstr "error d'anàlisi, al fitxer «%.255s» prop de la línia %d"
  1154. #: scripts/dpkg-shlibdeps.pl:749
  1155. #, perl-format
  1156. msgid "cannot open file %s"
  1157. msgstr "no es pot obrir el fitxer %s"
  1158. #: scripts/dpkg-shlibdeps.pl:783
  1159. #, perl-format
  1160. msgid ""
  1161. "$ORIGIN is used in RPATH of %s and the corresponding directory could not be "
  1162. "identified due to lack of DEBIAN sub-directory in the root of package's "
  1163. "build tree"
  1164. msgstr ""
  1165. #: scripts/dpkg-shlibdeps.pl:848
  1166. msgid "diversions involved - output may be incorrect"
  1167. msgstr ""
  1168. #: scripts/dpkg-shlibdeps.pl:850
  1169. #, fuzzy
  1170. msgid "write diversion info to stderr"
  1171. msgstr "escriu el diversions-new: %s"
  1172. #: scripts/dpkg-shlibdeps.pl:854
  1173. #, perl-format
  1174. msgid "unknown output from dpkg --search: '%s'"
  1175. msgstr ""
  1176. #: scripts/dpkg-source.pl:104
  1177. #, fuzzy, perl-format
  1178. msgid "%s needs a directory"
  1179. msgstr "--%s necessita un <directori> com a paràmetre"
  1180. #: scripts/dpkg-source.pl:110
  1181. #, perl-format
  1182. msgid "cannot stat directory %s"
  1183. msgstr "no es pot fer «stat» sobre el fitxer %s"
  1184. #: scripts/dpkg-source.pl:112
  1185. #, fuzzy, perl-format
  1186. msgid "directory argument %s is not a directory"
  1187. msgstr "el directori de control no és un directori"
  1188. #: scripts/dpkg-source.pl:117 scripts/Dpkg/Source/Package/V2.pm:476
  1189. #: scripts/Dpkg/Source/Package/V2.pm:478 scripts/Dpkg/Source/Package/V2.pm:480
  1190. #: scripts/Dpkg/Source/Package/V2.pm:482
  1191. #: scripts/Dpkg/Source/Package/V3/bzr.pm:111
  1192. #: scripts/Dpkg/Source/Package/V3/bzr.pm:134
  1193. #: scripts/Dpkg/Source/Package/V3/bzr.pm:198
  1194. #: scripts/Dpkg/Source/Package/V3/bzr.pm:204
  1195. #: scripts/Dpkg/Source/Package/V3/git.pm:104
  1196. #: scripts/Dpkg/Source/Package/V3/git.pm:143
  1197. #: scripts/Dpkg/Source/Package/V3/git.pm:155
  1198. #: scripts/Dpkg/Source/Package/V3/git.pm:174
  1199. #, fuzzy, perl-format
  1200. msgid "unable to chdir to `%s'"
  1201. msgstr "s'ha produït un error en canviar al directori «%.255s»"
  1202. #: scripts/dpkg-source.pl:135
  1203. #, fuzzy, perl-format
  1204. msgid "using options from %s: %s"
  1205. msgstr "S'està canviant el nom de l'enllaç %s de %s a %s."
  1206. #: scripts/dpkg-source.pl:150 scripts/Dpkg/Compression.pm:173
  1207. #, perl-format
  1208. msgid "%s is not a supported compression"
  1209. msgstr "%s no es una compressió implementada"
  1210. #: scripts/dpkg-source.pl:156 scripts/Dpkg/Compression.pm:202
  1211. #: scripts/Dpkg/Compression/Process.pm:86
  1212. #, perl-format
  1213. msgid "%s is not a compression level"
  1214. msgstr "%s no és un nivell de compressió"
  1215. #: scripts/dpkg-source.pl:214
  1216. msgid ""
  1217. "need a command (-x, -b, --before-build, --after-build, --print-format, --"
  1218. "commit)"
  1219. msgstr ""
  1220. #: scripts/dpkg-source.pl:238
  1221. #, perl-format
  1222. msgid "%s doesn't contain any information about the source package"
  1223. msgstr ""
  1224. #: scripts/dpkg-source.pl:283
  1225. #, perl-format
  1226. msgid "`%s' is not a legal architecture string"
  1227. msgstr "«%s» no és una cadena d'arquitectura vàlida"
  1228. #: scripts/dpkg-source.pl:286
  1229. #, perl-format
  1230. msgid "architecture %s only allowed on its own (list for package %s is `%s')"
  1231. msgstr ""
  1232. #: scripts/dpkg-source.pl:301
  1233. #, fuzzy, perl-format
  1234. msgid "%s doesn't list any binary package"
  1235. msgstr "El paquet «%s» no conté cap fitxer (!)\n"
  1236. #: scripts/dpkg-source.pl:343 scripts/Dpkg/BuildFlags.pm:284
  1237. #: scripts/Dpkg/Compression/FileHandle.pm:401
  1238. #: scripts/Dpkg/Interface/Storable.pm:87 scripts/Dpkg/Shlibs/Objdump.pm:122
  1239. #: scripts/Dpkg/Source/Package/V2.pm:277 scripts/Dpkg/Source/Package/V2.pm:425
  1240. #: scripts/Dpkg/Source/Package/V2.pm:561
  1241. #: scripts/Dpkg/Source/Package/V3/quilt.pm:112
  1242. #: scripts/Dpkg/Source/Package/V3/quilt.pm:286
  1243. #: scripts/Dpkg/Source/Package/V3/quilt.pm:348
  1244. #, perl-format
  1245. msgid "cannot read %s"
  1246. msgstr "no es pot llegir %s"
  1247. #: scripts/dpkg-source.pl:350
  1248. #, perl-format
  1249. msgid "no source format specified in %s, see dpkg-source(1)"
  1250. msgstr ""
  1251. #: scripts/dpkg-source.pl:378
  1252. #, perl-format
  1253. msgid "can't build with source format '%s': %s"
  1254. msgstr ""
  1255. #: scripts/dpkg-source.pl:381
  1256. #, perl-format
  1257. msgid "using source format `%s'"
  1258. msgstr ""
  1259. #: scripts/dpkg-source.pl:388 scripts/Dpkg/Source/Package/V1.pm:301
  1260. #: scripts/Dpkg/Source/Package/V1.pm:346 scripts/Dpkg/Source/Package/V2.pm:541
  1261. #: scripts/Dpkg/Source/Package/V3/bzr.pm:152
  1262. #: scripts/Dpkg/Source/Package/V3/native.pm:84
  1263. #, perl-format
  1264. msgid "building %s in %s"
  1265. msgstr "s'està construint %s a %s"
  1266. #: scripts/dpkg-source.pl:399
  1267. msgid "-x needs at least one argument, the .dsc"
  1268. msgstr "--x necessita almenys un argument, el .dsc"
  1269. #: scripts/dpkg-source.pl:402
  1270. msgid "-x takes no more than two arguments"
  1271. msgstr "-x no accepta més de dos arguments"
  1272. #: scripts/dpkg-source.pl:406
  1273. msgid "-x needs the .dsc file as first argument, not a directory"
  1274. msgstr "- necessita el fitxer .dsc com a primer argument, no un directori"
  1275. #: scripts/dpkg-source.pl:422
  1276. #, perl-format
  1277. msgid "unpack target exists: %s"
  1278. msgstr "la destinació del desempaquetament existeix: %s"
  1279. #: scripts/dpkg-source.pl:432
  1280. #, perl-format
  1281. msgid "%s doesn't contain a valid OpenPGP signature"
  1282. msgstr ""
  1283. #: scripts/dpkg-source.pl:434
  1284. #, perl-format
  1285. msgid "extracting unsigned source package (%s)"
  1286. msgstr "s'està extraient el paquet font sense signar (%s)"
  1287. #: scripts/dpkg-source.pl:441
  1288. #, perl-format
  1289. msgid "extracting %s in %s"
  1290. msgstr "s'està extraient %s des de %s"
  1291. #: scripts/dpkg-source.pl:449
  1292. msgid "only one of -x, -b or --print-format allowed, and only once"
  1293. msgstr ""
  1294. #: scripts/dpkg-source.pl:465
  1295. #, perl-format
  1296. msgid ""
  1297. "Usage: %s [<option> ...] <command>\n"
  1298. "\n"
  1299. "Commands:\n"
  1300. " -x <filename>.dsc [<output-dir>]\n"
  1301. " extract source package.\n"
  1302. " -b <dir> build source package.\n"
  1303. " --print-format <dir> print the source format that would be\n"
  1304. " used to build the source package.\n"
  1305. " --commit [<dir> [<patch-name>]]\n"
  1306. " store upstream changes in a new patch."
  1307. msgstr ""
  1308. #: scripts/dpkg-source.pl:476
  1309. #, perl-format
  1310. msgid ""
  1311. "Build options:\n"
  1312. " -c<controlfile> get control info from this file.\n"
  1313. " -l<changelogfile> get per-version info from this file.\n"
  1314. " -F<changelogformat> force change log format.\n"
  1315. " -V<name>=<value> set a substitution variable.\n"
  1316. " -T<varlistfile> read variables here.\n"
  1317. " -D<field>=<value> override or add a .dsc field and value.\n"
  1318. " -U<field> remove a field.\n"
  1319. " -q quiet mode.\n"
  1320. " -i[<regexp>] filter out files to ignore diffs of\n"
  1321. " (defaults to: '%s').\n"
  1322. " -I[<pattern>] filter out files when building tarballs\n"
  1323. " (defaults to: %s).\n"
  1324. " -Z<compression> select compression to use (defaults to '%s',\n"
  1325. " supported are: %s).\n"
  1326. " -z<level> compression level to use (defaults to '%d',\n"
  1327. " supported are: '1'-'9', 'best', 'fast')"
  1328. msgstr ""
  1329. #: scripts/dpkg-source.pl:494
  1330. msgid ""
  1331. "Extract options:\n"
  1332. " --no-copy don't copy .orig tarballs\n"
  1333. " --no-check don't check signature and checksums before "
  1334. "unpacking\n"
  1335. " --require-valid-signature abort if the package doesn't have a valid "
  1336. "signature"
  1337. msgstr ""
  1338. #: scripts/dpkg-source.pl:499
  1339. msgid ""
  1340. "General options:\n"
  1341. " -h, --help show this help message.\n"
  1342. " --version show the version."
  1343. msgstr ""
  1344. "Opcions generals:\n"
  1345. " -h, --help mostra aquest missatge d'ajuda.\n"
  1346. " --version mostra la versió."
  1347. #: scripts/dpkg-source.pl:503
  1348. msgid ""
  1349. "More options are available but they depend on the source package format.\n"
  1350. "See dpkg-source(1) for more info."
  1351. msgstr ""
  1352. #: scripts/changelog/debian.pl:47
  1353. #, perl-format
  1354. msgid ""
  1355. "Usage: %s [<option>...] [<changelogfile>]\n"
  1356. "\n"
  1357. "Options:\n"
  1358. " --help, -h print usage information\n"
  1359. " --version, -V print version information\n"
  1360. " --label, -l <file> name of the changelog file to\n"
  1361. " use in error messages\n"
  1362. " --file <file> changelog file to parse, defaults\n"
  1363. " to '-' (standard input)\n"
  1364. " --format <outputformat> see man page for list of available\n"
  1365. " output formats, defaults to 'dpkg'\n"
  1366. " for compatibility with dpkg-dev\n"
  1367. " --since, -s, -v <version> include all changes later than version\n"
  1368. " --until, -u <version> include all changes earlier than version\n"
  1369. " --from, -f <version> include all changes equal or later\n"
  1370. " than version\n"
  1371. " --to, -t <version> include all changes up to or equal\n"
  1372. " than version\n"
  1373. " --count, -c, -n <number> include <number> entries from the top\n"
  1374. " (or the tail if <number> is lower than 0)\n"
  1375. " --offset, -o <number> change the starting point for --count,\n"
  1376. " counted from the top (or the tail if\n"
  1377. " <number> is lower than 0)\n"
  1378. " --all include all changes\n"
  1379. msgstr ""
  1380. #: scripts/changelog/debian.pl:86
  1381. #, perl-format
  1382. msgid "output format %s not supported"
  1383. msgstr ""
  1384. #: scripts/changelog/debian.pl:111
  1385. #, perl-format
  1386. msgid "more than one file specified (%s and %s)"
  1387. msgstr "s'ha especificat més d'un fitxer (%s i %s)"
  1388. #: scripts/changelog/debian.pl:135 scripts/Dpkg/Interface/Storable.pm:84
  1389. msgid "<standard input>"
  1390. msgstr "<entrada estàndard>"
  1391. #: scripts/changelog/debian.pl:136
  1392. msgid "fatal error occurred while parsing input"
  1393. msgstr "s'ha produït un error fatal en analitzar l'entrada"
  1394. #: scripts/changelog/debian.pl:139
  1395. #, perl-format
  1396. msgid "fatal error occurred while parsing %s"
  1397. msgstr "s'ha produït un error fatal en analitzar %s"
  1398. #: scripts/Dpkg/Arch.pm:92
  1399. msgid ""
  1400. "Couldn't determine gcc system type, falling back to default (native "
  1401. "compilation)"
  1402. msgstr ""
  1403. #: scripts/Dpkg/Arch.pm:101
  1404. #, perl-format
  1405. msgid ""
  1406. "Unknown gcc system type %s, falling back to default (native compilation)"
  1407. msgstr ""
  1408. #: scripts/Dpkg/BuildFlags.pm:292
  1409. #, perl-format
  1410. msgid "line %d of %s mentions unknown flag %s"
  1411. msgstr ""
  1412. #: scripts/Dpkg/BuildFlags.pm:305
  1413. #, fuzzy, perl-format
  1414. msgid "line %d of %s is invalid, it has been ignored."
  1415. msgstr " %.250s està desempaquetat, però no ha estat configurat.\n"
  1416. #: scripts/Dpkg/BuildOptions.pm:94
  1417. #, perl-format
  1418. msgid "invalid flag in %s: %s"
  1419. msgstr "senyalador invàlid a %s: %s"
  1420. #: scripts/Dpkg/Compression/Process.pm:71
  1421. #, perl-format
  1422. msgid "%s is not a supported compression method"
  1423. msgstr ""
  1424. #: scripts/Dpkg/Compression/Process.pm:122
  1425. msgid "Dpkg::Compression::Process can only start one subprocess at a time"
  1426. msgstr ""
  1427. #: scripts/Dpkg/Changelog.pm:171 scripts/Dpkg/Changelog.pm:173
  1428. #: scripts/Dpkg/ErrorHandling.pm:59
  1429. msgid "warning"
  1430. msgstr "avís"
  1431. #: scripts/Dpkg/Changelog.pm:171
  1432. #, perl-format
  1433. msgid ""
  1434. "%s(l%s): %s\n"
  1435. "LINE: %s"
  1436. msgstr ""
  1437. #: scripts/Dpkg/Changelog.pm:173
  1438. #, perl-format
  1439. msgid "%s(l%s): %s"
  1440. msgstr ""
  1441. #: scripts/Dpkg/Changelog.pm:221
  1442. msgid "'offset' without 'count' has no effect"
  1443. msgstr ""
  1444. #: scripts/Dpkg/Changelog.pm:229
  1445. msgid "you can't combine 'count' or 'offset' with any other range option"
  1446. msgstr ""
  1447. #: scripts/Dpkg/Changelog.pm:237
  1448. msgid "you can only specify one of 'from' and 'since', using 'since'"
  1449. msgstr ""
  1450. #: scripts/Dpkg/Changelog.pm:242
  1451. msgid "you can only specify one of 'to' and 'until', using 'until'"
  1452. msgstr ""
  1453. #: scripts/Dpkg/Changelog.pm:254 scripts/Dpkg/Changelog.pm:270
  1454. #: scripts/Dpkg/Changelog.pm:286 scripts/Dpkg/Changelog.pm:302
  1455. #, perl-format
  1456. msgid "'%s' option specifies non-existing version"
  1457. msgstr ""
  1458. #: scripts/Dpkg/Changelog.pm:255 scripts/Dpkg/Changelog.pm:303
  1459. msgid "use newest entry that is earlier than the one specified"
  1460. msgstr ""
  1461. #: scripts/Dpkg/Changelog.pm:264
  1462. msgid "none found, starting from the oldest entry"
  1463. msgstr ""
  1464. #: scripts/Dpkg/Changelog.pm:271 scripts/Dpkg/Changelog.pm:287
  1465. msgid "use oldest entry that is later than the one specified"
  1466. msgstr ""
  1467. #: scripts/Dpkg/Changelog.pm:281 scripts/Dpkg/Changelog.pm:297
  1468. #: scripts/Dpkg/Changelog.pm:312
  1469. #, perl-format
  1470. msgid "no such entry found, ignoring '%s' parameter"
  1471. msgstr ""
  1472. #: scripts/Dpkg/Changelog.pm:318
  1473. msgid "'since' option specifies most recent version, ignoring"
  1474. msgstr ""
  1475. #: scripts/Dpkg/Changelog.pm:322
  1476. msgid "'until' option specifies oldest version, ignoring"
  1477. msgstr ""
  1478. #: scripts/Dpkg/Changelog/Debian.pm:54
  1479. msgid "first heading"
  1480. msgstr ""
  1481. #: scripts/Dpkg/Changelog/Debian.pm:55
  1482. msgid "next heading or eof"
  1483. msgstr ""
  1484. #: scripts/Dpkg/Changelog/Debian.pm:56
  1485. msgid "start of change data"
  1486. msgstr ""
  1487. #: scripts/Dpkg/Changelog/Debian.pm:57
  1488. msgid "more change data or trailer"
  1489. msgstr ""
  1490. #: scripts/Dpkg/Changelog/Debian.pm:89
  1491. #, perl-format
  1492. msgid "found start of entry where expected %s"
  1493. msgstr ""
  1494. #: scripts/Dpkg/Changelog/Debian.pm:126
  1495. msgid "badly formatted heading line"
  1496. msgstr ""
  1497. #: scripts/Dpkg/Changelog/Debian.pm:130
  1498. #, perl-format
  1499. msgid "found trailer where expected %s"
  1500. msgstr ""
  1501. #: scripts/Dpkg/Changelog/Debian.pm:140
  1502. #: scripts/Dpkg/Changelog/Entry/Debian.pm:153
  1503. msgid "badly formatted trailer line"
  1504. msgstr ""
  1505. #: scripts/Dpkg/Changelog/Debian.pm:143
  1506. #, perl-format
  1507. msgid "found change data where expected %s"
  1508. msgstr ""
  1509. #: scripts/Dpkg/Changelog/Debian.pm:165
  1510. #, perl-format
  1511. msgid "found blank line where expected %s"
  1512. msgstr ""
  1513. #: scripts/Dpkg/Changelog/Debian.pm:169
  1514. msgid "unrecognised line"
  1515. msgstr ""
  1516. #: scripts/Dpkg/Changelog/Debian.pm:180
  1517. #, perl-format
  1518. msgid "found eof where expected %s"
  1519. msgstr ""
  1520. #: scripts/Dpkg/Changelog/Entry/Debian.pm:122
  1521. #, perl-format
  1522. msgid "bad key-value after `;': `%s'"
  1523. msgstr ""
  1524. #: scripts/Dpkg/Changelog/Entry/Debian.pm:127
  1525. #, fuzzy, perl-format
  1526. msgid "repeated key-value %s"
  1527. msgstr "valor buit per a %s"
  1528. #: scripts/Dpkg/Changelog/Entry/Debian.pm:131
  1529. #, perl-format
  1530. msgid "badly formatted urgency value: %s"
  1531. msgstr ""
  1532. #: scripts/Dpkg/Changelog/Entry/Debian.pm:135
  1533. #, fuzzy, perl-format
  1534. msgid "unknown key-value %s"
  1535. msgstr "l'argument «%s» és desconegut"
  1536. #: scripts/Dpkg/Changelog/Entry/Debian.pm:140
  1537. #, perl-format
  1538. msgid "version '%s' is invalid: %s"
  1539. msgstr ""
  1540. #: scripts/Dpkg/Changelog/Entry/Debian.pm:143
  1541. msgid "the header doesn't match the expected regex"
  1542. msgstr ""
  1543. #: scripts/Dpkg/Changelog/Entry/Debian.pm:156
  1544. #, perl-format
  1545. msgid "couldn't parse date %s"
  1546. msgstr "no s'ha pogut analitzar la data %s"
  1547. #: scripts/Dpkg/Changelog/Entry/Debian.pm:159
  1548. msgid "the trailer doesn't match the expected regex"
  1549. msgstr ""
  1550. #: scripts/Dpkg/Changelog/Parse.pm:106
  1551. #, perl-format
  1552. msgid "tail of %s"
  1553. msgstr "cua de %s"
  1554. #: scripts/Dpkg/Changelog/Parse.pm:118
  1555. #, perl-format
  1556. msgid "format parser %s not executable"
  1557. msgstr ""
  1558. #: scripts/Dpkg/Changelog/Parse.pm:121
  1559. #, perl-format
  1560. msgid "changelog format %s is unknown"
  1561. msgstr ""
  1562. #: scripts/Dpkg/Changelog/Parse.pm:144
  1563. #, fuzzy, perl-format
  1564. msgid "cannot exec format parser: %s"
  1565. msgstr "no es pot crear el directori %s"
  1566. #: scripts/Dpkg/Changelog/Parse.pm:151
  1567. msgid "output of changelog parser"
  1568. msgstr ""
  1569. #: scripts/Dpkg/Changelog/Parse.pm:154
  1570. #, fuzzy, perl-format
  1571. msgid "changelog parser %s"
  1572. msgstr "no es pot obrir el directori %s"
  1573. #: scripts/Dpkg/Checksums.pm:170
  1574. #, fuzzy, perl-format
  1575. msgid "cannot fstat file %s"
  1576. msgstr "no es pot fer «stat» sobre el fitxer «%s»"
  1577. #: scripts/Dpkg/Checksums.pm:172
  1578. #, perl-format
  1579. msgid "File %s has size %u instead of expected %u"
  1580. msgstr ""
  1581. #: scripts/Dpkg/Checksums.pm:186
  1582. #, perl-format
  1583. msgid "File %s has checksum %s instead of expected %s (algorithm %s)"
  1584. msgstr ""
  1585. #: scripts/Dpkg/Checksums.pm:191
  1586. #, perl-format
  1587. msgid "checksum program gave bogus output `%s'"
  1588. msgstr ""
  1589. #: scripts/Dpkg/Checksums.pm:219
  1590. #, perl-format
  1591. msgid "invalid line in %s checksums string: %s"
  1592. msgstr ""
  1593. #: scripts/Dpkg/Checksums.pm:225
  1594. #, perl-format
  1595. msgid "Conflicting checksums `%s' and `%s' for file `%s'"
  1596. msgstr ""
  1597. #: scripts/Dpkg/Checksums.pm:229
  1598. #, perl-format
  1599. msgid "Conflicting file sizes `%u' and `%u' for file `%s'"
  1600. msgstr ""
  1601. #: scripts/Dpkg/Conf.pm:105
  1602. #, fuzzy, perl-format
  1603. msgid "short option not allowed in %s, line %d"
  1604. msgstr "no s'admeten alternatives («|») en el camp %s"
  1605. #: scripts/Dpkg/Conf.pm:119
  1606. #, perl-format
  1607. msgid "invalid syntax for option in %s, line %d"
  1608. msgstr ""
  1609. #: scripts/Dpkg/Control.pm:150
  1610. #, fuzzy
  1611. msgid "general section of control info file"
  1612. msgstr "no es pot eliminar el fitxer d'info. de control «%.250s»"
  1613. #: scripts/Dpkg/Control.pm:152
  1614. #, fuzzy
  1615. msgid "package's section of control info file"
  1616. msgstr "el paquet %s no és a la informació de control"
  1617. #: scripts/Dpkg/Control.pm:154
  1618. msgid "parsed version of changelog"
  1619. msgstr ""
  1620. #: scripts/Dpkg/Control.pm:156 scripts/Dpkg/Control.pm:158
  1621. #, fuzzy, perl-format
  1622. #| msgid "entry in dpkg's status file"
  1623. msgid "entry in repository's %s file"
  1624. msgstr "entrada al fitxer d'estat del dpkg"
  1625. #: scripts/Dpkg/Control.pm:160 scripts/Dpkg/Control.pm:164
  1626. #, perl-format
  1627. msgid "%s file"
  1628. msgstr "fitxer %s"
  1629. #: scripts/Dpkg/Control.pm:162
  1630. msgid "control info of a .deb package"
  1631. msgstr ""
  1632. #: scripts/Dpkg/Control.pm:166
  1633. msgid "vendor file"
  1634. msgstr "fitxer de venedor"
  1635. #: scripts/Dpkg/Control.pm:168
  1636. msgid "entry in dpkg's status file"
  1637. msgstr "entrada al fitxer d'estat del dpkg"
  1638. #: scripts/Dpkg/Control/Fields.pm:455
  1639. #, perl-format
  1640. msgid "unknown information field '%s' in input data in %s"
  1641. msgstr ""
  1642. #: scripts/Dpkg/Control/Fields.pm:456
  1643. msgid "control information"
  1644. msgstr "informació de control"
  1645. #: scripts/Dpkg/Control/Info.pm:103
  1646. msgid "first block lacks a source field"
  1647. msgstr ""
  1648. #: scripts/Dpkg/Control/Info.pm:110 scripts/Dpkg/Control/Info.pm:113
  1649. #, perl-format
  1650. msgid "block lacks the '%s' field"
  1651. msgstr ""
  1652. #: scripts/Dpkg/Control/Hash.pm:182
  1653. #, perl-format
  1654. msgid "duplicate field %s found"
  1655. msgstr "s'ha trobat un camp %s duplicat"
  1656. #: scripts/Dpkg/Control/Hash.pm:190
  1657. msgid "continued value line not in field"
  1658. msgstr ""
  1659. #: scripts/Dpkg/Control/Hash.pm:204
  1660. msgid "PGP signature not allowed here"
  1661. msgstr ""
  1662. #: scripts/Dpkg/Control/Hash.pm:211
  1663. msgid "expected PGP signature, found EOF after blank line"
  1664. msgstr ""
  1665. #: scripts/Dpkg/Control/Hash.pm:215
  1666. #, perl-format
  1667. msgid "expected PGP signature, found something else `%s'"
  1668. msgstr ""
  1669. #: scripts/Dpkg/Control/Hash.pm:223
  1670. msgid "unfinished PGP signature"
  1671. msgstr ""
  1672. #: scripts/Dpkg/Control/Hash.pm:229
  1673. msgid "line with unknown format (not field-colon-value)"
  1674. msgstr ""
  1675. #: scripts/Dpkg/Control/Hash.pm:326
  1676. #, fuzzy
  1677. msgid "write error on control data"
  1678. msgstr "s'ha produït un error d'escriptura en vsnprintf"
  1679. #: scripts/Dpkg/Deps.pm:297
  1680. #, perl-format
  1681. msgid "can't parse dependency %s"
  1682. msgstr "no s'ha pogut analitzar la dependència %s"
  1683. #: scripts/Dpkg/Deps.pm:324
  1684. msgid "an union dependency can only contain simple dependencies"
  1685. msgstr ""
  1686. #: scripts/Dpkg/ErrorHandling.pm:54
  1687. msgid "info"
  1688. msgstr "info"
  1689. #: scripts/Dpkg/ErrorHandling.pm:65 scripts/Dpkg/ErrorHandling.pm:70
  1690. #: scripts/Dpkg/ErrorHandling.pm:75
  1691. msgid "error"
  1692. msgstr "error"
  1693. #: scripts/Dpkg/ErrorHandling.pm:80
  1694. msgid "internal error"
  1695. msgstr "error intern"
  1696. #: scripts/Dpkg/ErrorHandling.pm:92
  1697. #, fuzzy, perl-format
  1698. msgid "%s gave error exit status %s"
  1699. msgstr "el subprocés %s retornà el codi d'eixida d'error %d"
  1700. #: scripts/Dpkg/ErrorHandling.pm:94
  1701. #, perl-format
  1702. msgid "%s died from signal %s"
  1703. msgstr ""
  1704. #: scripts/Dpkg/ErrorHandling.pm:96
  1705. #, fuzzy, perl-format
  1706. msgid "%s failed with unknown exit code %d"
  1707. msgstr "el subprocés %s ha fallat amb codi d'estat en espera %d"
  1708. #: scripts/Dpkg/ErrorHandling.pm:115
  1709. #, fuzzy, perl-format
  1710. msgid "syntax error in %s at line %d: %s"
  1711. msgstr "error de sintaxi al fitxer de statoverride"
  1712. #: scripts/Dpkg/IPC.pm:211 scripts/Dpkg/IPC.pm:217 scripts/Dpkg/IPC.pm:223
  1713. #, perl-format
  1714. msgid "pipe for %s"
  1715. msgstr "conducte per a %s"
  1716. #: scripts/Dpkg/IPC.pm:242
  1717. #, perl-format
  1718. msgid "chdir to %s"
  1719. msgstr "«chdir» a %s"
  1720. #: scripts/Dpkg/IPC.pm:249
  1721. msgid "reopen stdin"
  1722. msgstr "torna a obrir stdin"
  1723. #: scripts/Dpkg/IPC.pm:257 scripts/Dpkg/IPC.pm:265
  1724. msgid "reopen stdout"
  1725. msgstr "torna a obrir stdout"
  1726. #: scripts/Dpkg/IPC.pm:339
  1727. msgid "child process"
  1728. msgstr "procés fill"
  1729. #: scripts/Dpkg/IPC.pm:344
  1730. #, perl-format
  1731. msgid "wait for %s"
  1732. msgstr "espera de %s"
  1733. #: scripts/Dpkg/IPC.pm:349
  1734. #, perl-format
  1735. msgid "%s didn't complete in %d second"
  1736. msgid_plural "%s didn't complete in %d seconds"
  1737. msgstr[0] "%s no s'ha completat en %d segon"
  1738. msgstr[1] "%s no s'ha completat en %d segons"
  1739. #: scripts/Dpkg/Shlibs/Objdump.pm:222
  1740. #, fuzzy, perl-format
  1741. msgid "Couldn't parse dynamic relocation record: %s"
  1742. msgstr "no s'ha pogut analitzar la informació de control de %s."
  1743. #: scripts/Dpkg/Shlibs/Objdump.pm:339
  1744. #, fuzzy, perl-format
  1745. msgid "Couldn't parse dynamic symbol definition: %s"
  1746. msgstr "no s'ha pogut analitzar la informació de control de %s."
  1747. #: scripts/Dpkg/Shlibs/Symbol.pm:111
  1748. #, perl-format
  1749. msgid "symbol name unspecified: %s"
  1750. msgstr "no s'ha especificat el nom del símbol: %s"
  1751. #: scripts/Dpkg/Shlibs/Symbol.pm:168
  1752. #, perl-format
  1753. msgid "you can't use symver tag to catch unversioned symbols: %s"
  1754. msgstr ""
  1755. #: scripts/Dpkg/Shlibs/SymbolFile.pm:218
  1756. #, perl-format
  1757. msgid "Symbol information must be preceded by a header (file %s, line %s)."
  1758. msgstr ""
  1759. #: scripts/Dpkg/Shlibs/SymbolFile.pm:226
  1760. #, perl-format
  1761. msgid "Failed to parse line in %s: %s"
  1762. msgstr "No s'ha pogut analitzar la línia en %s: %s"
  1763. #: scripts/Dpkg/Shlibs/SymbolFile.pm:258
  1764. #, perl-format
  1765. msgid "Failed to parse a line in %s: %s"
  1766. msgstr "No s'ha pogut analitzar una línia en %s: %s"
  1767. #: scripts/Dpkg/Shlibs/SymbolFile.pm:271
  1768. #, perl-format
  1769. msgid "Tried to merge the same object (%s) twice in a symfile."
  1770. msgstr ""
  1771. #: scripts/Dpkg/Shlibs/SymbolFile.pm:388
  1772. msgid "Can't merge symbols from objects without SONAME."
  1773. msgstr ""
  1774. #: scripts/Dpkg/Source/Archive.pm:64
  1775. #, fuzzy
  1776. msgid "write on tar input"
  1777. msgstr "error de lectura en l'entrada estàndard"
  1778. #: scripts/Dpkg/Source/Archive.pm:89
  1779. #, fuzzy
  1780. msgid "close on tar input"
  1781. msgstr "error de lectura en l'entrada estàndard"
  1782. #: scripts/Dpkg/Source/Archive.pm:114 scripts/Dpkg/Source/Patch.pm:503
  1783. #, perl-format
  1784. msgid "cannot create directory %s"
  1785. msgstr "no es pot crear el directori %s"
  1786. #: scripts/Dpkg/Source/Archive.pm:145 scripts/Dpkg/Source/Package.pm:307
  1787. #: scripts/Dpkg/Source/Package/V2.pm:199
  1788. #, perl-format
  1789. msgid "cannot opendir %s"
  1790. msgstr "no es pot obrir el directori %s"
  1791. #: scripts/Dpkg/Source/Archive.pm:152 scripts/Dpkg/Source/Archive.pm:156
  1792. #, perl-format
  1793. msgid "Unable to rename %s to %s"
  1794. msgstr "no es pot canviar el nom de %s a %s"
  1795. #: scripts/Dpkg/Source/Functions.pm:34
  1796. #, fuzzy, perl-format
  1797. msgid "cannot stat directory %s (before removal)"
  1798. msgstr "no es pot fer «stat» sobre el fitxer %s"
  1799. #: scripts/Dpkg/Source/Functions.pm:40
  1800. #, fuzzy, perl-format
  1801. msgid "unable to check for removal of dir `%s'"
  1802. msgstr "no es pot comprovar l'existència de «%.250s»"
  1803. #: scripts/Dpkg/Source/Functions.pm:42
  1804. #, perl-format
  1805. msgid "rm -rf failed to remove `%s'"
  1806. msgstr "rm -rf no ha pogut suprimir «%s»"
  1807. #: scripts/Dpkg/Source/Functions.pm:83 scripts/Dpkg/Source/Patch.pm:550
  1808. #, fuzzy, perl-format
  1809. msgid "cannot change timestamp for %s"
  1810. msgstr "no es pot crear el directori %s"
  1811. #: scripts/Dpkg/Source/Functions.pm:85
  1812. #, fuzzy, perl-format
  1813. msgid "cannot read timestamp from %s"
  1814. msgstr "no es pot crear el directori %s"
  1815. #: scripts/Dpkg/Source/Patch.pm:70 scripts/Dpkg/Source/Package/V2.pm:443
  1816. msgid "binary file contents changed"
  1817. msgstr "ha canviat el contingut d'un fitxer binari"
  1818. #: scripts/Dpkg/Source/Patch.pm:118
  1819. #, perl-format
  1820. msgid "file %s has no final newline (either original or modified version)"
  1821. msgstr ""
  1822. #: scripts/Dpkg/Source/Patch.pm:122
  1823. #, fuzzy, perl-format
  1824. msgid "unknown line from diff -u on %s: `%s'"
  1825. msgstr "l'opció «%s» és desconeguda"
  1826. #: scripts/Dpkg/Source/Patch.pm:125 scripts/Dpkg/Source/Patch.pm:128
  1827. msgid "failed to write"
  1828. msgstr "no s'ha pogut escriure"
  1829. #: scripts/Dpkg/Source/Patch.pm:138
  1830. #, perl-format
  1831. msgid "diff on %s"
  1832. msgstr "diff de %s"
  1833. #: scripts/Dpkg/Source/Patch.pm:164 scripts/Dpkg/Source/Patch.pm:183
  1834. #: scripts/Dpkg/Source/Patch.pm:206 scripts/Dpkg/Source/Patch.pm:218
  1835. #, fuzzy, perl-format
  1836. msgid "cannot stat file %s"
  1837. msgstr "no es pot fer «stat» sobre el fitxer «%s»"
  1838. #: scripts/Dpkg/Source/Patch.pm:173 scripts/Dpkg/Source/Patch.pm:175
  1839. #, perl-format
  1840. msgid "cannot read link %s"
  1841. msgstr "no es pot llegir l'enllaç %s"
  1842. #: scripts/Dpkg/Source/Patch.pm:202
  1843. msgid "device or socket is not allowed"
  1844. msgstr ""
  1845. #: scripts/Dpkg/Source/Patch.pm:211
  1846. msgid "unknown file type"
  1847. msgstr ""
  1848. #: scripts/Dpkg/Source/Patch.pm:224
  1849. #, fuzzy, perl-format
  1850. msgid "ignoring deletion of file %s"
  1851. msgstr "s'omet la supressió del fitxer %s"
  1852. #: scripts/Dpkg/Source/Patch.pm:227
  1853. #, perl-format
  1854. msgid "ignoring deletion of directory %s"
  1855. msgstr "s'omet la supressió del directori %s"
  1856. #: scripts/Dpkg/Source/Patch.pm:229
  1857. #, perl-format
  1858. msgid "ignoring deletion of symlink %s"
  1859. msgstr "s'omet la supressió de l'enllaç simbòlic %s"
  1860. #: scripts/Dpkg/Source/Patch.pm:271
  1861. #, perl-format
  1862. msgid "newly created empty file '%s' will not be represented in diff"
  1863. msgstr ""
  1864. #: scripts/Dpkg/Source/Patch.pm:275
  1865. #, perl-format
  1866. msgid "executable mode %04o of '%s' will not be represented in diff"
  1867. msgstr ""
  1868. #: scripts/Dpkg/Source/Patch.pm:280
  1869. #, perl-format
  1870. msgid "special mode %04o of '%s' will not be represented in diff"
  1871. msgstr ""
  1872. #: scripts/Dpkg/Source/Patch.pm:300 scripts/Dpkg/Source/Package/V2.pm:442
  1873. #, perl-format
  1874. msgid "cannot represent change to %s: %s"
  1875. msgstr "no es pot representar el canvi a %s: %s"
  1876. #: scripts/Dpkg/Source/Patch.pm:307
  1877. #, perl-format
  1878. msgid "cannot represent change to %s:"
  1879. msgstr "no es pot representar el canvi a %s:"
  1880. #: scripts/Dpkg/Source/Patch.pm:308
  1881. #, perl-format
  1882. msgid " new version is %s"
  1883. msgstr " la versió nova és %s"
  1884. #: scripts/Dpkg/Source/Patch.pm:309
  1885. #, perl-format
  1886. msgid " old version is %s"
  1887. msgstr " la versió antiga és %s"
  1888. #: scripts/Dpkg/Source/Patch.pm:384
  1889. #, perl-format
  1890. msgid "expected ^--- in line %d of diff `%s'"
  1891. msgstr ""
  1892. #: scripts/Dpkg/Source/Patch.pm:389
  1893. #, fuzzy, perl-format
  1894. msgid "diff `%s' patches file with name ending .dpkg-orig"
  1895. msgstr "el diff «%s» aplica pedaços a un fitxer amb nom acabat en .dpkg-orig"
  1896. #: scripts/Dpkg/Source/Patch.pm:393
  1897. #, perl-format
  1898. msgid "diff `%s' finishes in middle of ---/+++ (line %d)"
  1899. msgstr ""
  1900. #: scripts/Dpkg/Source/Patch.pm:396
  1901. #, perl-format
  1902. msgid "line after --- isn't as expected in diff `%s' (line %d)"
  1903. msgstr ""
  1904. #: scripts/Dpkg/Source/Patch.pm:402
  1905. #, perl-format
  1906. msgid "none of the filenames in ---/+++ are valid in diff '%s' (line %d)"
  1907. msgstr ""
  1908. #: scripts/Dpkg/Source/Patch.pm:410
  1909. #: scripts/Dpkg/Source/Package/V3/quilt.pm:127
  1910. #, perl-format
  1911. msgid "%s contains an insecure path: %s"
  1912. msgstr ""
  1913. #: scripts/Dpkg/Source/Patch.pm:415
  1914. #, perl-format
  1915. msgid "diff %s modifies file %s through a symlink: %s"
  1916. msgstr ""
  1917. #: scripts/Dpkg/Source/Patch.pm:424
  1918. #, perl-format
  1919. msgid "original and modified files are /dev/null in diff `%s' (line %d)"
  1920. msgstr ""
  1921. #: scripts/Dpkg/Source/Patch.pm:427
  1922. #, perl-format
  1923. msgid "file removal without proper filename in diff `%s' (line %d)"
  1924. msgstr ""
  1925. #: scripts/Dpkg/Source/Patch.pm:430
  1926. #, perl-format
  1927. msgid "diff %s removes a non-existing file %s (line %d)"
  1928. msgstr ""
  1929. #: scripts/Dpkg/Source/Patch.pm:442
  1930. #, perl-format
  1931. msgid "diff `%s' patches something which is not a plain file"
  1932. msgstr "el diff «%s» aplica pedaços a alguna cosa que no és un fitxer pla"
  1933. #: scripts/Dpkg/Source/Patch.pm:446
  1934. #, perl-format
  1935. msgid "diff `%s' patches file %s twice"
  1936. msgstr "el diff «%s» aplica pedaços al fitxer %s dues vegades"
  1937. #: scripts/Dpkg/Source/Patch.pm:464 scripts/Dpkg/Source/Patch.pm:468
  1938. #, perl-format
  1939. msgid "unexpected end of diff `%s'"
  1940. msgstr "s'ha trobat un fi inesperat del diff «%s»"
  1941. #: scripts/Dpkg/Source/Patch.pm:477
  1942. #, perl-format
  1943. msgid "expected [ +-] at start of line %d of diff `%s'"
  1944. msgstr ""
  1945. #: scripts/Dpkg/Source/Patch.pm:484
  1946. #, perl-format
  1947. msgid "expected ^@@ at line %d of diff `%s'"
  1948. msgstr ""
  1949. #: scripts/Dpkg/Source/Patch.pm:489
  1950. #, fuzzy, perl-format
  1951. msgid "diff `%s' doesn't contain any patch"
  1952. msgstr "El paquet «%s» no conté cap fitxer (!)\n"
  1953. #: scripts/Dpkg/Source/Patch.pm:554
  1954. #, perl-format
  1955. msgid "remove patch backup file %s"
  1956. msgstr ""
  1957. #: scripts/Dpkg/Source/Patch.pm:595
  1958. msgid "nonexistent"
  1959. msgstr "no existent"
  1960. #: scripts/Dpkg/Source/Patch.pm:596 scripts/Dpkg/Source/Package.pm:458
  1961. #, fuzzy, perl-format
  1962. msgid "cannot stat %s"
  1963. msgstr "no es pot fer «stat» sobre «%s»: %s"
  1964. #: scripts/Dpkg/Source/Patch.pm:598
  1965. msgid "plain file"
  1966. msgstr "fitxer pla"
  1967. #: scripts/Dpkg/Source/Patch.pm:599
  1968. msgid "directory"
  1969. msgstr "directori"
  1970. #: scripts/Dpkg/Source/Patch.pm:600
  1971. #, perl-format
  1972. msgid "symlink to %s"
  1973. msgstr ""
  1974. #: scripts/Dpkg/Source/Patch.pm:601
  1975. msgid "block device"
  1976. msgstr "dispositiu de bloc"
  1977. #: scripts/Dpkg/Source/Patch.pm:602
  1978. msgid "character device"
  1979. msgstr "dispositiu de caràcter"
  1980. #: scripts/Dpkg/Source/Patch.pm:603
  1981. msgid "named pipe"
  1982. msgstr ""
  1983. #: scripts/Dpkg/Source/Patch.pm:604
  1984. msgid "named socket"
  1985. msgstr ""
  1986. #: scripts/Dpkg/Source/Package.pm:188
  1987. #, perl-format
  1988. msgid "%s is not the name of a file"
  1989. msgstr ""
  1990. #: scripts/Dpkg/Source/Package.pm:208
  1991. #, fuzzy, perl-format
  1992. msgid "missing critical source control field %s"
  1993. msgstr "fitxer de control font %s"
  1994. #: scripts/Dpkg/Source/Package.pm:236
  1995. #, perl-format
  1996. msgid ""
  1997. "source package format `%s' is not supported (Perl module %s is required)"
  1998. msgstr ""
  1999. #: scripts/Dpkg/Source/Package.pm:240
  2000. #, perl-format
  2001. msgid "invalid Format field `%s'"
  2002. msgstr ""
  2003. #: scripts/Dpkg/Source/Package.pm:288
  2004. msgid "source and version are required to compute the source basename"
  2005. msgstr ""
  2006. #: scripts/Dpkg/Source/Package.pm:371 scripts/Dpkg/Source/Package.pm:373
  2007. #, perl-format
  2008. msgid "failed to verify signature on %s"
  2009. msgstr "no s'ha pogut verificar la signatura de %s"
  2010. #: scripts/Dpkg/Source/Package.pm:380 scripts/Dpkg/Source/Package.pm:382
  2011. #, perl-format
  2012. msgid "could not verify signature on %s since gpg isn't installed"
  2013. msgstr ""
  2014. "no s'ha pogut verificar la signatura de %s perquè gpg no està instal·lat"
  2015. #: scripts/Dpkg/Source/Package.pm:391
  2016. #, perl-format
  2017. msgid "%s is not a valid option for %s"
  2018. msgstr "%s no és una opció vàlida per a %s"
  2019. #: scripts/Dpkg/Source/Package.pm:460
  2020. #, fuzzy, perl-format
  2021. msgid "%s does not exist"
  2022. msgstr "s'ha donat --update però %s no existeix"
  2023. #: scripts/Dpkg/Source/Package.pm:464
  2024. #, fuzzy, perl-format
  2025. msgid "cannot make %s executable"
  2026. msgstr "no es pot moure «%s» a un fitxer existent"
  2027. #: scripts/Dpkg/Source/Package.pm:466
  2028. #, fuzzy, perl-format
  2029. msgid "%s is not a plain file"
  2030. msgstr " %s (no és un fitxer normal)\n"
  2031. #: scripts/Dpkg/Source/Package.pm:517
  2032. #, fuzzy, perl-format
  2033. #| msgid "%s is not a supported compression"
  2034. msgid "'%s' is not supported by the source format '%s'"
  2035. msgstr "%s no es una compressió implementada"
  2036. #: scripts/Dpkg/Source/Package/V1.pm:62
  2037. #, perl-format
  2038. msgid "-s%s option overrides earlier -s%s option"
  2039. msgstr ""
  2040. #: scripts/Dpkg/Source/Package/V1.pm:84
  2041. #, perl-format
  2042. msgid "source handling style -s%s not allowed with -x"
  2043. msgstr ""
  2044. #: scripts/Dpkg/Source/Package/V1.pm:96
  2045. #: scripts/Dpkg/Source/Package/V3/native.pm:51
  2046. msgid "multiple tarfiles in v1.0 source package"
  2047. msgstr ""
  2048. #: scripts/Dpkg/Source/Package/V1.pm:101 scripts/Dpkg/Source/Package/V2.pm:129
  2049. #, perl-format
  2050. msgid "unrecognized file for a %s source package: %s"
  2051. msgstr ""
  2052. #: scripts/Dpkg/Source/Package/V1.pm:106
  2053. #: scripts/Dpkg/Source/Package/V3/native.pm:58
  2054. msgid "no tarfile in Files field"
  2055. msgstr ""
  2056. #: scripts/Dpkg/Source/Package/V1.pm:109
  2057. msgid "native package with .orig.tar"
  2058. msgstr ""
  2059. #: scripts/Dpkg/Source/Package/V1.pm:122
  2060. #, fuzzy, perl-format
  2061. msgid "unable to rename `%s' to `%s'"
  2062. msgstr "no es pot canviar el nom de %s a %s"
  2063. #: scripts/Dpkg/Source/Package/V1.pm:126 scripts/Dpkg/Source/Package/V2.pm:141
  2064. #: scripts/Dpkg/Source/Package/V2.pm:153 scripts/Dpkg/Source/Package/V2.pm:166
  2065. #: scripts/Dpkg/Source/Package/V3/bzr.pm:190
  2066. #: scripts/Dpkg/Source/Package/V3/native.pm:61
  2067. #, perl-format
  2068. msgid "unpacking %s"
  2069. msgstr "s'està desempaquetant %s"
  2070. #: scripts/Dpkg/Source/Package/V1.pm:133
  2071. #, fuzzy
  2072. msgid "unable to keep orig directory (already exists)"
  2073. msgstr "no es pot obrir el directori de control temporal"
  2074. #: scripts/Dpkg/Source/Package/V1.pm:140
  2075. #, fuzzy, perl-format
  2076. msgid "failed to rename newly-extracted %s to %s"
  2077. msgstr "no es pot suprimir la versió acabada d'extraure de «%.250s»"
  2078. #: scripts/Dpkg/Source/Package/V1.pm:146
  2079. #, fuzzy, perl-format
  2080. msgid "failed to rename saved %s to %s"
  2081. msgstr "no es pot canviar el nom de %s a %s"
  2082. #: scripts/Dpkg/Source/Package/V1.pm:153 scripts/Dpkg/Source/Package/V2.pm:222
  2083. #: scripts/Dpkg/Source/Package/V3/quilt.pm:172
  2084. #, perl-format
  2085. msgid "applying %s"
  2086. msgstr "s'està aplicant %s"
  2087. #: scripts/Dpkg/Source/Package/V1.pm:158
  2088. #, perl-format
  2089. msgid "upstream files that have been modified: %s"
  2090. msgstr ""
  2091. #: scripts/Dpkg/Source/Package/V1.pm:168
  2092. msgid "only supports gzip compression"
  2093. msgstr ""
  2094. #: scripts/Dpkg/Source/Package/V1.pm:179
  2095. msgid ""
  2096. "-b takes at most a directory and an orig source argument (with v1.0 source "
  2097. "package)"
  2098. msgstr ""
  2099. #: scripts/Dpkg/Source/Package/V1.pm:185
  2100. #, perl-format
  2101. msgid "source handling style -s%s not allowed with -b"
  2102. msgstr ""
  2103. #: scripts/Dpkg/Source/Package/V1.pm:200
  2104. #, fuzzy, perl-format
  2105. msgid "packed orig `%s' exists but is not a plain file"
  2106. msgstr "el fitxer part «%.250s» no és un fitxer normal"
  2107. #: scripts/Dpkg/Source/Package/V1.pm:212
  2108. #, perl-format
  2109. msgid "cannot stat orig argument %s"
  2110. msgstr "no es pot fer «stat» sobre l'argument original %s"
  2111. #: scripts/Dpkg/Source/Package/V1.pm:218
  2112. #, perl-format
  2113. msgid ""
  2114. "orig argument is unpacked but source handling style -s%s calls for packed (."
  2115. "orig.tar.<ext>)"
  2116. msgstr ""
  2117. #: scripts/Dpkg/Source/Package/V1.pm:226
  2118. #, perl-format
  2119. msgid ""
  2120. "orig argument is packed but source handling style -s%s calls for unpacked (."
  2121. "orig/)"
  2122. msgstr ""
  2123. #: scripts/Dpkg/Source/Package/V1.pm:231
  2124. #, fuzzy, perl-format
  2125. msgid "orig argument %s is not a plain file or directory"
  2126. msgstr "el conffile «%s» no és un fitxer normal"
  2127. #: scripts/Dpkg/Source/Package/V1.pm:237
  2128. #, perl-format
  2129. msgid ""
  2130. "orig argument is empty (means no orig, no diff) but source handling style -s"
  2131. "%s wants something"
  2132. msgstr ""
  2133. #: scripts/Dpkg/Source/Package/V1.pm:250
  2134. #, perl-format
  2135. msgid "unpacked orig `%s' exists but is not a directory"
  2136. msgstr ""
  2137. #: scripts/Dpkg/Source/Package/V1.pm:255
  2138. #, fuzzy, perl-format
  2139. msgid "unable to stat putative unpacked orig `%s'"
  2140. msgstr "no es pot fer «stat» sobre el fitxer nou «%.250s»"
  2141. #: scripts/Dpkg/Source/Package/V1.pm:264
  2142. #, perl-format
  2143. msgid "source directory '%s' is not <sourcepackage>-<upstreamversion> '%s'"
  2144. msgstr ""
  2145. #: scripts/Dpkg/Source/Package/V1.pm:273
  2146. #, perl-format
  2147. msgid ".orig directory name %s is not <package>-<upstreamversion> (wanted %s)"
  2148. msgstr ""
  2149. #: scripts/Dpkg/Source/Package/V1.pm:282
  2150. #, perl-format
  2151. msgid ""
  2152. ".orig.tar name %s is not <package>_<upstreamversion>.orig.tar (wanted %s)"
  2153. msgstr ""
  2154. #: scripts/Dpkg/Source/Package/V1.pm:294
  2155. #, perl-format
  2156. msgid ""
  2157. "tarfile `%s' already exists, not overwriting, giving up; use -sU or -sR to "
  2158. "override"
  2159. msgstr ""
  2160. #: scripts/Dpkg/Source/Package/V1.pm:298
  2161. #, fuzzy, perl-format
  2162. msgid "unable to check for existence of `%s'"
  2163. msgstr "no es pot comprovar l'existència de «%.250s»"
  2164. #: scripts/Dpkg/Source/Package/V1.pm:313 scripts/Dpkg/Source/Package/V1.pm:375
  2165. #: scripts/Dpkg/Source/Package/V3/native.pm:98
  2166. #, fuzzy, perl-format
  2167. msgid "unable to rename `%s' (newly created) to `%s'"
  2168. msgstr "no es pot canviar el nom de %s a %s"
  2169. #: scripts/Dpkg/Source/Package/V1.pm:316 scripts/Dpkg/Source/Package/V1.pm:378
  2170. #: scripts/Dpkg/Source/Package/V2.pm:603
  2171. #: scripts/Dpkg/Source/Package/V3/native.pm:102
  2172. #: scripts/Dpkg/Source/Package/V3/quilt.pm:367
  2173. #, fuzzy, perl-format
  2174. msgid "unable to change permission of `%s'"
  2175. msgstr "no es poden establir els permisos d'execució en «%.250s»"
  2176. #: scripts/Dpkg/Source/Package/V1.pm:318 scripts/Dpkg/Source/Package/V2.pm:348
  2177. #, perl-format
  2178. msgid "building %s using existing %s"
  2179. msgstr "s'està construint %s emprant %s existent"
  2180. #: scripts/Dpkg/Source/Package/V1.pm:327
  2181. #, perl-format
  2182. msgid ""
  2183. "orig dir `%s' already exists, not overwriting, giving up; use -sA, -sK or -"
  2184. "sP to override"
  2185. msgstr ""
  2186. #: scripts/Dpkg/Source/Package/V1.pm:335
  2187. #, fuzzy, perl-format
  2188. msgid "unable to check for existence of orig dir `%s'"
  2189. msgstr "no es pot comprovar l'existència de «%.250s»"
  2190. #: scripts/Dpkg/Source/Package/V1.pm:366
  2191. #, perl-format
  2192. msgid "the diff modifies the following upstream files: %s"
  2193. msgstr ""
  2194. #: scripts/Dpkg/Source/Package/V1.pm:368
  2195. msgid ""
  2196. "use the '3.0 (quilt)' format to have separate and documented changes to "
  2197. "upstream files, see dpkg-source(1)"
  2198. msgstr ""
  2199. #: scripts/Dpkg/Source/Package/V1.pm:370
  2200. msgid "aborting due to --abort-on-upstream-changes"
  2201. msgstr ""
  2202. #: scripts/Dpkg/Source/Package/V1.pm:388
  2203. #, perl-format
  2204. msgid "%s: unrepresentable changes to source"
  2205. msgstr "%s: hi ha canvis no representables al font"
  2206. #: scripts/Dpkg/Source/Package/V2.pm:119
  2207. #, fuzzy, perl-format
  2208. msgid "duplicate files in %s source package: %s.*"
  2209. msgstr "S'està reemplaçant fitxers del paquet antic %s …\n"
  2210. #: scripts/Dpkg/Source/Package/V2.pm:135
  2211. msgid "missing orig.tar or debian.tar file in v2.0 source package"
  2212. msgstr ""
  2213. #: scripts/Dpkg/Source/Package/V2.pm:155
  2214. #, perl-format
  2215. msgid "required removal of `%s' installed by original tarball"
  2216. msgstr ""
  2217. #: scripts/Dpkg/Source/Package/V2.pm:240
  2218. #: scripts/Dpkg/Source/Package/V3/quilt.pm:255
  2219. #, perl-format
  2220. msgid "unapplying %s"
  2221. msgstr "s'està desaplicant %s"
  2222. #: scripts/Dpkg/Source/Package/V2.pm:263 scripts/Dpkg/Source/Package/V2.pm:344
  2223. #, perl-format
  2224. msgid "no upstream tarball found at %s"
  2225. msgstr ""
  2226. #: scripts/Dpkg/Source/Package/V2.pm:314
  2227. #: scripts/Dpkg/Source/Package/V3/quilt.pm:329
  2228. msgid "patches are not applied, applying them now"
  2229. msgstr ""
  2230. #: scripts/Dpkg/Source/Package/V2.pm:331
  2231. #, fuzzy, perl-format
  2232. msgid "several orig.tar files found (%s and %s) but only one is allowed"
  2233. msgstr ""
  2234. "s'han trobat diverses entrades d'informació de paquets, només se'n permet una"
  2235. #: scripts/Dpkg/Source/Package/V2.pm:370
  2236. #, fuzzy
  2237. msgid "copy of the debian directory"
  2238. msgstr "no es pot llegir el directori «info»"
  2239. #: scripts/Dpkg/Source/Package/V2.pm:388
  2240. msgid "unrepresentable changes to source"
  2241. msgstr "hi ha canvis no representables al font"
  2242. #: scripts/Dpkg/Source/Package/V2.pm:391
  2243. #, fuzzy
  2244. #| msgid "local changes stored in %s, the modified files are:"
  2245. msgid "local changes detected, the modified files are:"
  2246. msgstr "els canvis locals s'emmagatzemen a %s, els fitxers modificats són:"
  2247. #: scripts/Dpkg/Source/Package/V2.pm:410
  2248. #: scripts/Dpkg/Source/Package/V3/bzr.pm:97
  2249. #: scripts/Dpkg/Source/Package/V3/native.pm:76
  2250. #, perl-format
  2251. msgid "-b takes only one parameter with format `%s'"
  2252. msgstr ""
  2253. #: scripts/Dpkg/Source/Package/V2.pm:444
  2254. #, perl-format
  2255. msgid ""
  2256. "add %s in debian/source/include-binaries if you want to store the modified "
  2257. "binary in the debian tarball"
  2258. msgstr ""
  2259. #: scripts/Dpkg/Source/Package/V2.pm:458
  2260. #, fuzzy, perl-format
  2261. msgid "unwanted binary file: %s"
  2262. msgstr "fitxer de control binari %s"
  2263. #: scripts/Dpkg/Source/Package/V2.pm:493
  2264. #, perl-format
  2265. msgid ""
  2266. "detected %d unwanted binary file (add it in debian/source/include-binaries "
  2267. "to allow its inclusion)."
  2268. msgid_plural ""
  2269. "detected %d unwanted binary files (add them in debian/source/include-"
  2270. "binaries to allow their inclusion)."
  2271. msgstr[0] ""
  2272. msgstr[1] ""
  2273. #: scripts/Dpkg/Source/Package/V2.pm:508
  2274. #, perl-format
  2275. msgid "you can integrate the local changes with %s"
  2276. msgstr ""
  2277. #: scripts/Dpkg/Source/Package/V2.pm:510
  2278. #, perl-format
  2279. msgid "aborting due to unexpected upstream changes, see %s"
  2280. msgstr ""
  2281. #: scripts/Dpkg/Source/Package/V2.pm:520 scripts/Dpkg/Source/Package/V2.pm:660
  2282. #, perl-format
  2283. msgid "local changes have been recorded in a new patch: %s"
  2284. msgstr ""
  2285. #: scripts/Dpkg/Source/Package/V2.pm:524 scripts/Dpkg/Source/Package/V2.pm:609
  2286. #: scripts/Dpkg/Source/Package/V2.pm:644 scripts/Dpkg/Source/Package/V2.pm:658
  2287. #: scripts/Dpkg/Source/Package/V3/quilt.pm:369
  2288. #, perl-format
  2289. msgid "cannot remove %s"
  2290. msgstr "no es pot suprimir %s"
  2291. #: scripts/Dpkg/Source/Package/V2.pm:534
  2292. #, perl-format
  2293. msgid "adding %s to %s"
  2294. msgstr "s'està afegint %s a %s"
  2295. #: scripts/Dpkg/Source/Package/V2.pm:601
  2296. #: scripts/Dpkg/Source/Package/V3/quilt.pm:365
  2297. #, fuzzy, perl-format
  2298. msgid "failed to copy %s to %s"
  2299. msgstr "no es pot canviar el nom de %s a %s"
  2300. #: scripts/Dpkg/Source/Package/V2.pm:624
  2301. #, perl-format
  2302. msgid "cannot register changes in %s, this patch already exists"
  2303. msgstr ""
  2304. #: scripts/Dpkg/Source/Package/V2.pm:636
  2305. #, fuzzy, perl-format
  2306. msgid "patch file '%s' doesn't exist"
  2307. msgstr "s'ha donat --update però %s no existeix"
  2308. #: scripts/Dpkg/Source/Package/V2.pm:645
  2309. #, fuzzy
  2310. #| msgid "unrepresentable changes to source"
  2311. msgid "there are no local changes to record"
  2312. msgstr "hi ha canvis no representables al font"
  2313. #: scripts/Dpkg/Source/Package/V2.pm:650
  2314. msgid "Enter the desired patch name: "
  2315. msgstr ""
  2316. #: scripts/Dpkg/Source/Package/V3/bzr.pm:52
  2317. msgid ""
  2318. "This source package can only be manipulated using bzr, which is not in the "
  2319. "PATH."
  2320. msgstr ""
  2321. #: scripts/Dpkg/Source/Package/V3/bzr.pm:59
  2322. #, perl-format
  2323. msgid ""
  2324. "source directory is not the top directory of a bzr repository (%s/.bzr not "
  2325. "present), but Format bzr was specified"
  2326. msgstr ""
  2327. #: scripts/Dpkg/Source/Package/V3/bzr.pm:66
  2328. #, fuzzy, perl-format
  2329. msgid "%s is a symlink"
  2330. msgstr "manca %s"
  2331. #: scripts/Dpkg/Source/Package/V3/bzr.pm:72
  2332. #, fuzzy, perl-format
  2333. msgid "%s is a symlink to outside %s"
  2334. msgstr "no es pot fer l'enllaç simbòlic de %s a %s: %s"
  2335. #: scripts/Dpkg/Source/Package/V3/bzr.pm:83
  2336. msgid "doesn't contain a bzr repository"
  2337. msgstr ""
  2338. #: scripts/Dpkg/Source/Package/V3/bzr.pm:127
  2339. msgid "bzr status exited nonzero"
  2340. msgstr ""
  2341. #: scripts/Dpkg/Source/Package/V3/bzr.pm:129
  2342. #: scripts/Dpkg/Source/Package/V3/git.pm:133
  2343. #, perl-format
  2344. msgid "uncommitted, not-ignored changes in working directory: %s"
  2345. msgstr ""
  2346. #: scripts/Dpkg/Source/Package/V3/bzr.pm:179
  2347. msgid "format v3.0 uses only one source file"
  2348. msgstr ""
  2349. #: scripts/Dpkg/Source/Package/V3/bzr.pm:183
  2350. #, perl-format
  2351. msgid "expected %s, got %s"
  2352. msgstr ""
  2353. #: scripts/Dpkg/Source/Package/V3/custom.pm:40
  2354. msgid "Format `3.0 (custom)' is only used to create source packages"
  2355. msgstr ""
  2356. #: scripts/Dpkg/Source/Package/V3/custom.pm:46
  2357. msgid "no files indicated on command line"
  2358. msgstr ""
  2359. #: scripts/Dpkg/Source/Package/V3/custom.pm:53
  2360. msgid "--target-format option is missing"
  2361. msgstr ""
  2362. #: scripts/Dpkg/Source/Package/V3/native.pm:54
  2363. #, perl-format
  2364. msgid "unrecognized file for a native source package: %s"
  2365. msgstr ""
  2366. #: scripts/Dpkg/Source/Package/V3/git.pm:55
  2367. msgid ""
  2368. "This source package can only be manipulated using git, which is not in the "
  2369. "PATH."
  2370. msgstr ""
  2371. #: scripts/Dpkg/Source/Package/V3/git.pm:63
  2372. #, perl-format
  2373. msgid ""
  2374. "source directory is not the top directory of a git repository (%s/.git not "
  2375. "present), but Format git was specified"
  2376. msgstr ""
  2377. #: scripts/Dpkg/Source/Package/V3/git.pm:68
  2378. #, perl-format
  2379. msgid "git repository %s uses submodules. This is not yet supported."
  2380. msgstr ""
  2381. #: scripts/Dpkg/Source/Package/V3/git.pm:90
  2382. msgid "doesn't contain a git repository"
  2383. msgstr ""
  2384. #: scripts/Dpkg/Source/Package/V3/git.pm:131
  2385. msgid "git ls-files exited nonzero"
  2386. msgstr ""
  2387. #: scripts/Dpkg/Source/Package/V3/git.pm:149
  2388. #, perl-format
  2389. msgid "creating shallow clone with depth %s"
  2390. msgstr ""
  2391. #: scripts/Dpkg/Source/Package/V3/git.pm:165
  2392. #, fuzzy, perl-format
  2393. msgid "bundling: %s"
  2394. msgstr "dbg: %s"
  2395. #: scripts/Dpkg/Source/Package/V3/git.pm:201
  2396. msgid "format v3.0 (git) uses only one .git file"
  2397. msgstr ""
  2398. #: scripts/Dpkg/Source/Package/V3/git.pm:207
  2399. msgid "format v3.0 (git) uses only one .gitshallow file"
  2400. msgstr ""
  2401. #: scripts/Dpkg/Source/Package/V3/git.pm:210
  2402. #, perl-format
  2403. msgid "format v3.0 (git) unknown file: %s"
  2404. msgstr ""
  2405. #: scripts/Dpkg/Source/Package/V3/git.pm:214
  2406. #, perl-format
  2407. msgid "format v3.0 (git) expected %s"
  2408. msgstr ""
  2409. #: scripts/Dpkg/Source/Package/V3/git.pm:220
  2410. #, perl-format
  2411. msgid "cloning %s"
  2412. msgstr "s'està clonant %s"
  2413. #: scripts/Dpkg/Source/Package/V3/git.pm:227
  2414. msgid "setting up shallow clone"
  2415. msgstr ""
  2416. #: scripts/Dpkg/Source/Package/V3/quilt.pm:73
  2417. #, perl-format
  2418. msgid "%s should be a directory or non-existing"
  2419. msgstr ""
  2420. #: scripts/Dpkg/Source/Package/V3/quilt.pm:79
  2421. #, perl-format
  2422. msgid "%s should be a file or non-existing"
  2423. msgstr ""
  2424. #: scripts/Dpkg/Source/Package/V3/quilt.pm:120
  2425. #, perl-format
  2426. msgid ""
  2427. "the series file (%s) contains unsupported options ('%s', line %s), dpkg-"
  2428. "source might fail when applying patches."
  2429. msgstr ""
  2430. #: scripts/Dpkg/Source/Package/V3/quilt.pm:138
  2431. #, perl-format
  2432. msgid "cannot mkdir %s"
  2433. msgstr "no es pot fer «mkdir %s»"
  2434. #: scripts/Dpkg/Source/Package/V3/quilt.pm:212
  2435. #, perl-format
  2436. msgid "can't create symlink %s"
  2437. msgstr "no es pot crear l'enllaç simbòlic %s"
  2438. #: scripts/Dpkg/Source/Package/V3/quilt.pm:294
  2439. #: scripts/Dpkg/Source/Package/V3/quilt.pm:297
  2440. #, perl-format
  2441. msgid "unsupported version of the quilt metadata: %s"
  2442. msgstr ""
  2443. #: scripts/Dpkg/Substvars.pm:150
  2444. #, fuzzy, perl-format
  2445. msgid "bad line in substvars file %s at line %d"
  2446. msgstr "s'ha produït un error en llegir «%s» en la línia %d"
  2447. #: scripts/Dpkg/Substvars.pm:217
  2448. #, perl-format
  2449. msgid "too many substitutions - recursive ? - in `%s'"
  2450. msgstr ""
  2451. #: scripts/Dpkg/Substvars.pm:224
  2452. #, perl-format
  2453. msgid "unknown substitution variable ${%s}"
  2454. msgstr "la variable de substitució ${%s} és desconeguda"
  2455. #: scripts/Dpkg/Substvars.pm:248
  2456. #, perl-format
  2457. msgid "unused substitution variable ${%s}"
  2458. msgstr "la variable de substitució ${%s} no s'utilitza"
  2459. #: scripts/Dpkg/Vars.pm:34
  2460. #, fuzzy, perl-format
  2461. msgid "source package name `%s' contains illegal character `%s'"
  2462. msgstr "el nom de l'activador conté un caràcter invàlid"
  2463. #: scripts/Dpkg/Vars.pm:37
  2464. #, perl-format
  2465. msgid "source package name `%s' starts with non-alphanum"
  2466. msgstr ""
  2467. #: scripts/Dpkg/Vars.pm:46
  2468. #, perl-format
  2469. msgid "source package has two conflicting values - %s and %s"
  2470. msgstr ""
  2471. #: scripts/Dpkg/Vendor/Debian.pm:87
  2472. #, fuzzy, perl-format
  2473. #| msgid "host architecture"
  2474. msgid "unknown host architecture '%s'"
  2475. msgstr "arquitectura de l'amfitrió"
  2476. #: scripts/Dpkg/Vendor/Debian.pm:113
  2477. #, fuzzy, perl-format
  2478. msgid "unknown hardening feature: %s"
  2479. msgstr "l'argument «%s» és desconegut"
  2480. #: scripts/Dpkg/Vendor/Debian.pm:117
  2481. #, perl-format
  2482. msgid "incorrect value in hardening option of DEB_BUILD_MAINT_OPTIONS: %s"
  2483. msgstr ""
  2484. #: scripts/Dpkg/Vendor/Ubuntu.pm:62 scripts/Dpkg/Vendor/Ubuntu.pm:64
  2485. msgid ""
  2486. "Version number suggests Ubuntu changes, but Maintainer: does not have Ubuntu "
  2487. "address"
  2488. msgstr ""
  2489. #: scripts/Dpkg/Vendor/Ubuntu.pm:68
  2490. msgid ""
  2491. "Version number suggests Ubuntu changes, but there is no XSBC-Original-"
  2492. "Maintainer field"
  2493. msgstr ""
  2494. #: scripts/Dpkg/Vendor/Ubuntu.pm:124
  2495. msgid "'hardening' flag found but 'hardening-wrapper' not installed"
  2496. msgstr ""
  2497. #: scripts/Dpkg/Vendor/Ubuntu.pm:143
  2498. #, perl-format
  2499. msgid "overriding %s in environment: %s"
  2500. msgstr ""
  2501. #: scripts/Dpkg/Version.pm:204 scripts/Dpkg/Version.pm:206
  2502. #, fuzzy, perl-format
  2503. msgid "%s is not a valid version"
  2504. msgstr "%s no és una opció vàlida per a %s"
  2505. #: scripts/Dpkg/Version.pm:370
  2506. #, fuzzy
  2507. msgid "version number cannot be empty"
  2508. msgstr "la cadena de versió està buida"
  2509. #: scripts/Dpkg/Version.pm:375
  2510. #, fuzzy
  2511. msgid "version number does not start with digit"
  2512. msgstr "la cadena de versió està buida"
  2513. #: scripts/Dpkg/Version.pm:380
  2514. #, fuzzy, perl-format
  2515. msgid "version number contains illegal character `%s'"
  2516. msgstr "el nom de l'activador conté un caràcter invàlid"
  2517. #: scripts/Dpkg/Version.pm:385
  2518. #, fuzzy, perl-format
  2519. msgid "epoch part of the version number is not a number: '%s'"
  2520. msgstr "l'època en la versió no és un número"
  2521. #~ msgid ""
  2522. #~ "\n"
  2523. #~ "Copyright (C) 1999-2001 Marcus Brinkmann <brinkmd@debian.org>.\n"
  2524. #~ "Copyright (C) 2004-2005 Scott James Remnant <scott@netsplit.com>."
  2525. #~ msgstr ""
  2526. #~ "\n"
  2527. #~ "Copyright © 1999-2001 Marcus Brinkmann <brinkmd@debian.org>.\n"
  2528. #~ "Copyright © 2004-2005 Scott James Remnant <scott@netsplit.com>."
  2529. #, fuzzy
  2530. #~| msgid ""
  2531. #~| "\n"
  2532. #~| "Copyright (C) 2010 Raphael Hertzog <hertzog@debian.org>."
  2533. #~ msgid ""
  2534. #~ "\n"
  2535. #~ "Copyright (C) 2010-2011 Raphael Hertzog <hertzog@debian.org>."
  2536. #~ msgstr ""
  2537. #~ "\n"
  2538. #~ "Copyright © 2010 Raphael Hertzog <hertzog@debian.org>."
  2539. #~ msgid ""
  2540. #~ "\n"
  2541. #~ "Copyright (C) 1996 Ian Jackson.\n"
  2542. #~ "Copyright (C) 2000 Wichert Akkerman\n"
  2543. #~ "Copyright (C) 2007 Frank Lichtenheld"
  2544. #~ msgstr ""
  2545. #~ "\n"
  2546. #~ "Copyright © 1996 Ian Jackson.\n"
  2547. #~ "Copyright © 2000 Wichert Akkerman.\n"
  2548. #~ "Copyright © 2007 Frank Lichtenheld"
  2549. #, fuzzy
  2550. #~| msgid "%s: export %s from dpkg-buildflags (origin: %s): %s\n"
  2551. #~ msgid "%s: dpkg-buildflags (origin: %s): %s = %s\n"
  2552. #~ msgstr "%s: s'està exportant %s de dpkg-buildflags (origen: %s): %s\n"
  2553. #~ msgid ""
  2554. #~ "\n"
  2555. #~ "Copyright (C) 1996 Ian Jackson."
  2556. #~ msgstr ""
  2557. #~ "\n"
  2558. #~ "Copyright © 1996 Ian Jackson."
  2559. #~ msgid ""
  2560. #~ "\n"
  2561. #~ "Copyright (C) 1996 Ian Jackson.\n"
  2562. #~ "Copyright (C) 2000,2001 Wichert Akkerman."
  2563. #~ msgstr ""
  2564. #~ "\n"
  2565. #~ "Copyright © 1996 Ian Jackson.\n"
  2566. #~ "Copyright © 2000, 2001 Wichert Akkerman."
  2567. #~ msgid ""
  2568. #~ "\n"
  2569. #~ "Copyright (C) 1996 Ian Jackson.\n"
  2570. #~ "Copyright (C) 2000,2002 Wichert Akkerman."
  2571. #~ msgstr ""
  2572. #~ "\n"
  2573. #~ "Copyright © 1996 Ian Jackson.\n"
  2574. #~ "Copyright © 2000, 2002 Wichert Akkerman."
  2575. #~ msgid ""
  2576. #~ "\n"
  2577. #~ "Copyright (C) 2007 Raphael Hertzog.\n"
  2578. #~ msgstr ""
  2579. #~ "\n"
  2580. #~ "Copyright © 2007 Raphael Hertzog.\n"
  2581. #~ msgid "Copyright (C) 2009-2010 Raphael Hertzog."
  2582. #~ msgstr "Copyright © 2009-2010 Raphael Hertzog."
  2583. #~ msgid ""
  2584. #~ "\n"
  2585. #~ "Copyright (C) 1996 Ian Jackson.\n"
  2586. #~ "Copyright (C) 2001 Wichert Akkerman"
  2587. #~ msgstr ""
  2588. #~ "\n"
  2589. #~ "Copyright © 1996 Ian Jackson.\n"
  2590. #~ "Copyright © 2001 Wichert Akkerman"
  2591. #~ msgid ""
  2592. #~ "\n"
  2593. #~ "Copyright (C) 1996 Ian Jackson.\n"
  2594. #~ "Copyright (C) 2000 Wichert Akkerman.\n"
  2595. #~ "Copyright (C) 2006 Frank Lichtenheld.\n"
  2596. #~ "Copyright (C) 2007 Raphael Hertzog.\n"
  2597. #~ msgstr ""
  2598. #~ "\n"
  2599. #~ "Copyright © 1996 Ian Jackson.\n"
  2600. #~ "Copyright © 2000 Wichert Akkerman.\n"
  2601. #~ "Copyright © 2006 Frank Lichtenheld.\n"
  2602. #~ "Copyright © 2007 Raphael Hertzog.\n"
  2603. #~ msgid ""
  2604. #~ "\n"
  2605. #~ "Copyright (C) 1996 Ian Jackson\n"
  2606. #~ "Copyright (C) 1997 Klee Dienes\n"
  2607. #~ "Copyright (C) 2008 Raphael Hertzog"
  2608. #~ msgstr ""
  2609. #~ "\n"
  2610. #~ "Copyright © 1996 Ian Jackson\n"
  2611. #~ "Copyright © 1997 Klee Dienes\n"
  2612. #~ "Copyright © 2008 Raphael Hertzog"
  2613. #~ msgid ""
  2614. #~ "\n"
  2615. #~ "Copyright (C) 1996 Ian Jackson.\n"
  2616. #~ "Copyright (C) 2005,2007 Frank Lichtenheld."
  2617. #~ msgstr ""
  2618. #~ "\n"
  2619. #~ "Copyright © 1996 Ian Jackson.\n"
  2620. #~ "Copyright © 2005,2007 Frank Lichtenheld."
  2621. #~ msgid "need an action option"
  2622. #~ msgstr "es requereix una opció d'acció"
  2623. #~ msgid "no orig.tar file found"
  2624. #~ msgstr "no s'ha trobat el fitxer orig.tar"
  2625. #~ msgid "cannot rename %s to %s"
  2626. #~ msgstr "no es pot canviar el nom de %s a %s"
  2627. #, fuzzy
  2628. #~ msgid "cannot exec dpkg"
  2629. #~ msgstr "no es pot suprimir %s"
  2630. #~ msgid "unable to get login information for username \"%s\""
  2631. #~ msgstr "no s'ha pogut obtenir la informació d'entrada per a l'usuari «%s»"
  2632. #~ msgid ""
  2633. #~ "no utmp entry available and LOGNAME not defined; using uid of process (%d)"
  2634. #~ msgstr ""
  2635. #~ "no hi ha una entrada utmp disponible i LOGNAME no està definit; "
  2636. #~ "s'utilitzarà l'uid del procés (%d)"
  2637. #~ msgid "unable to get login information for uid %d"
  2638. #~ msgstr "no es pot obtenir la informació d'entrada per a l'uid %d"
  2639. #~ msgid "cannot combine -b or -B and -S"
  2640. #~ msgstr "no es pot combinar -b o -B amb -S"
  2641. #~ msgid "%s: error: %s"
  2642. #~ msgstr "%s: error: %s"