ca.po 54 KB

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