dpkg-dev.pot 71 KB

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