dpkg-dev.pot 62 KB

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