dpkg-dev.pot 63 KB

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