dpkg-dev.pot 69 KB

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