dpkg-dev.pot 62 KB

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