ca.po 83 KB

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