ca.po 65 KB

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