ca.po 102 KB

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