ca.po 82 KB

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