ca.po 100 KB

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