dpkg-dev.pot 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667
  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-05-12 08:17+0300\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:30
  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:338 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:36
  43. #: scripts/dpkg-parsechangelog.pl:25 scripts/dpkg-shlibdeps.pl:464
  44. #: scripts/dpkg-source.pl:344 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:102 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 for rev. 0 or 1. }\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:173
  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:102
  379. #: scripts/dpkg-source.pl:105
  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:183
  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:224
  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:244
  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:140
  451. #, perl-format
  452. msgid "source control file %s"
  453. msgstr ""
  454. #: scripts/dpkg-genchanges.pl:415 scripts/Dpkg/Source/Package.pm:201
  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:394
  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:399
  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:87
  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:118
  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:32
  580. msgid ""
  581. "\n"
  582. "Copyright (C) 2007 Raphael Hertzog.\n"
  583. msgstr ""
  584. #: scripts/dpkg-gensymbols.pl:44
  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:147
  610. #, perl-format
  611. msgid "Can't read directory %s: %s"
  612. msgstr ""
  613. #: scripts/dpkg-gensymbols.pl:162
  614. #, perl-format
  615. msgid "Objdump couldn't parse %s\n"
  616. msgstr ""
  617. #: scripts/dpkg-gensymbols.pl:204
  618. #, perl-format
  619. msgid "new libraries appeared in the symbols file: %s"
  620. msgstr ""
  621. #: scripts/dpkg-gensymbols.pl:208
  622. #, perl-format
  623. msgid "some libraries disappeared in the symbols file: %s"
  624. msgstr ""
  625. #: scripts/dpkg-gensymbols.pl:216
  626. #, perl-format
  627. msgid "some new symbols appeared in the symbols file: %s"
  628. msgstr ""
  629. #: scripts/dpkg-gensymbols.pl:217 scripts/dpkg-gensymbols.pl:222
  630. msgid "see diff output below"
  631. msgstr ""
  632. #: scripts/dpkg-gensymbols.pl:237
  633. #, perl-format
  634. msgid "some symbols disappeared in the symbols file: %s"
  635. msgstr ""
  636. #: scripts/dpkg-gensymbols.pl:253
  637. #, perl-format
  638. msgid "%s doesn't match completely %s"
  639. msgstr ""
  640. #: scripts/dpkg-gensymbols.pl:256
  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:67 scripts/Dpkg/Source/Compressor.pm:35
  1051. #, perl-format
  1052. msgid "%s is not a supported compression"
  1053. msgstr ""
  1054. #: scripts/dpkg-source.pl:73 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:114
  1060. msgid "-E and -W are deprecated, they are without effect"
  1061. msgstr ""
  1062. #: scripts/dpkg-source.pl:126
  1063. msgid "need -x or -b"
  1064. msgstr ""
  1065. #: scripts/dpkg-source.pl:132
  1066. msgid "-b needs a directory"
  1067. msgstr ""
  1068. #: scripts/dpkg-source.pl:135
  1069. #, perl-format
  1070. msgid "cannot stat directory %s"
  1071. msgstr ""
  1072. #: scripts/dpkg-source.pl:137
  1073. #, perl-format
  1074. msgid "directory argument %s is not a directory"
  1075. msgstr ""
  1076. #: scripts/dpkg-source.pl:207
  1077. #, perl-format
  1078. msgid "`%s' is not a legal architecture string"
  1079. msgstr ""
  1080. #: scripts/dpkg-source.pl:210
  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
  1085. #, perl-format
  1086. msgid "source format `%s' discarded: %s"
  1087. msgstr ""
  1088. #: scripts/dpkg-source.pl:259
  1089. #, perl-format
  1090. msgid "using source format `%s'"
  1091. msgstr ""
  1092. #: scripts/dpkg-source.pl:270 scripts/Dpkg/Source/Package/V1.pm:284
  1093. #: scripts/Dpkg/Source/Package/V1.pm:329 scripts/Dpkg/Source/Package/V2.pm:375
  1094. #: scripts/Dpkg/Source/Package/V3/bzr.pm:152
  1095. #: scripts/Dpkg/Source/Package/V3/native.pm:82
  1096. #: scripts/Dpkg/Source/Package/V3/git.pm:216
  1097. #, perl-format
  1098. msgid "building %s in %s"
  1099. msgstr ""
  1100. #: scripts/dpkg-source.pl:282
  1101. msgid "-x needs at least one argument, the .dsc"
  1102. msgstr ""
  1103. #: scripts/dpkg-source.pl:285
  1104. msgid "-x takes no more than two arguments"
  1105. msgstr ""
  1106. #: scripts/dpkg-source.pl:289
  1107. msgid "-x needs the .dsc file as first argument, not a directory"
  1108. msgstr ""
  1109. #: scripts/dpkg-source.pl:305
  1110. #, perl-format
  1111. msgid "unpack target exists: %s"
  1112. msgstr ""
  1113. #: scripts/dpkg-source.pl:314
  1114. #, perl-format
  1115. msgid "extracting unsigned source package (%s)"
  1116. msgstr ""
  1117. #: scripts/dpkg-source.pl:323
  1118. #, perl-format
  1119. msgid "%s: extracting %s in %s"
  1120. msgstr ""
  1121. #: scripts/dpkg-source.pl:332
  1122. msgid "only one of -x or -b allowed, and only once"
  1123. msgstr ""
  1124. #: scripts/dpkg-source.pl:340
  1125. msgid ""
  1126. "\n"
  1127. "Copyright (C) 1996 Ian Jackson and Klee Dienes.\n"
  1128. "Copyright (C) 2008 Raphael Hertzog"
  1129. msgstr ""
  1130. #: scripts/dpkg-source.pl:352
  1131. #, perl-format
  1132. msgid ""
  1133. "Usage: %s [<option> ...] <command>\n"
  1134. "\n"
  1135. "Commands:\n"
  1136. " -x <filename>.dsc [<output-dir>]\n"
  1137. " extract source package.\n"
  1138. " -b <dir>\n"
  1139. " build source package.\n"
  1140. "\n"
  1141. "Build options:\n"
  1142. " -c<controlfile> get control info from this file.\n"
  1143. " -l<changelogfile> get per-version info from this file.\n"
  1144. " -F<changelogformat> force change log format.\n"
  1145. " -V<name>=<value> set a substitution variable.\n"
  1146. " -T<varlistfile> read variables here, not debian/substvars.\n"
  1147. " -D<field>=<value> override or add a .dsc field and value.\n"
  1148. " -U<field> remove a field.\n"
  1149. " -q quiet mode.\n"
  1150. " -i[<regexp>] filter out files to ignore diffs of\n"
  1151. " (defaults to: '%s').\n"
  1152. " -I[<pattern>] filter out files when building tarballs\n"
  1153. " (defaults to: %s).\n"
  1154. " -Z<compression> select compression to use (defaults to 'gzip',\n"
  1155. " supported are: %s).\n"
  1156. " -z<level> compression level to use (defaults to '9',\n"
  1157. " supported are: '1'-'9', 'best', 'fast')\n"
  1158. "\n"
  1159. "Extract options:\n"
  1160. " --no-copy don't copy .orig tarballs\n"
  1161. " --no-check don't check signature and checksums before\n"
  1162. " unpacking\n"
  1163. "\n"
  1164. "General options:\n"
  1165. " -h, --help show this help message.\n"
  1166. " --version show the version.\n"
  1167. "\n"
  1168. "More options are available but they depend on the source package format.\n"
  1169. "See dpkg-source(1) for more info.\n"
  1170. msgstr ""
  1171. #: scripts/changelog/debian.pl:21
  1172. msgid ""
  1173. "\n"
  1174. "Copyright (C) 1996 Ian Jackson.\n"
  1175. "Copyright (C) 2005,2007 Frank Lichtenheld."
  1176. msgstr ""
  1177. #: scripts/changelog/debian.pl:32
  1178. #, perl-format
  1179. msgid ""
  1180. "Usage: %s [<option>...] [<changelogfile>]\n"
  1181. "\n"
  1182. "Options:\n"
  1183. " --help, -h print usage information\n"
  1184. " --version, -V print version information\n"
  1185. " --label, -l <file> name of the changelog file to\n"
  1186. " use in error messages\n"
  1187. " --file <file> changelog file to parse, defaults\n"
  1188. " to '-' (standard input)\n"
  1189. " --format <outputformat> see man page for list of available\n"
  1190. " output formats, defaults to 'dpkg'\n"
  1191. " for compatibility with dpkg-dev\n"
  1192. " --since, -s, -v <version> include all changes later than version\n"
  1193. " --until, -u <version> include all changes earlier than version\n"
  1194. " --from, -f <version> include all changes equal or later\n"
  1195. " than version\n"
  1196. " --to, -t <version> include all changes up to or equal\n"
  1197. " than version\n"
  1198. " --count, -c, -n <number> include <number> entries from the top\n"
  1199. " (or the tail if <number> is lower than 0)\n"
  1200. " --offset, -o <number> change the starting point for --count,\n"
  1201. " counted from the top (or the tail if\n"
  1202. " <number> is lower than 0)\n"
  1203. " --all include all changes\n"
  1204. msgstr ""
  1205. #: scripts/changelog/debian.pl:71
  1206. #, perl-format
  1207. msgid "output format %s not supported"
  1208. msgstr ""
  1209. #: scripts/changelog/debian.pl:96
  1210. #, perl-format
  1211. msgid "more than one file specified (%s and %s)"
  1212. msgstr ""
  1213. #: scripts/changelog/debian.pl:118
  1214. msgid "fatal error occured while parsing input"
  1215. msgstr ""
  1216. #: scripts/changelog/debian.pl:121
  1217. #, perl-format
  1218. msgid "fatal error occured while parsing %s"
  1219. msgstr ""
  1220. #: scripts/Dpkg/Arch.pm:69
  1221. msgid ""
  1222. "Couldn't determine gcc system type, falling back to default (native "
  1223. "compilation)"
  1224. msgstr ""
  1225. #: scripts/Dpkg/Arch.pm:78
  1226. #, perl-format
  1227. msgid ""
  1228. "Unknown gcc system type %s, falling back to default (native compilation)"
  1229. msgstr ""
  1230. #: scripts/Dpkg/Arch.pm:121
  1231. msgid "unable to open cputable"
  1232. msgstr ""
  1233. #: scripts/Dpkg/Arch.pm:138
  1234. msgid "unable to open ostable"
  1235. msgstr ""
  1236. #: scripts/Dpkg/Arch.pm:157
  1237. msgid "unable to open triplettable"
  1238. msgstr ""
  1239. #: scripts/Dpkg/Cdata.pm:78
  1240. #, perl-format
  1241. msgid "duplicate field %s found"
  1242. msgstr ""
  1243. #: scripts/Dpkg/Cdata.pm:84
  1244. msgid "continued value line not in field"
  1245. msgstr ""
  1246. #: scripts/Dpkg/Cdata.pm:94
  1247. msgid "PGP signature not allowed here"
  1248. msgstr ""
  1249. #: scripts/Dpkg/Cdata.pm:101
  1250. msgid "expected PGP signature, found EOF after blank line"
  1251. msgstr ""
  1252. #: scripts/Dpkg/Cdata.pm:105
  1253. #, perl-format
  1254. msgid "expected PGP signature, found something else `%s'"
  1255. msgstr ""
  1256. #: scripts/Dpkg/Cdata.pm:111
  1257. msgid "unfinished PGP signature"
  1258. msgstr ""
  1259. #: scripts/Dpkg/Cdata.pm:115
  1260. msgid "line with unknown format (not field-colon-value)"
  1261. msgstr ""
  1262. #: scripts/Dpkg/Changelog.pm:170 scripts/Dpkg/Changelog.pm:172
  1263. #: scripts/Dpkg/ErrorHandling.pm:29
  1264. msgid "warning"
  1265. msgstr ""
  1266. #: scripts/Dpkg/Changelog.pm:170
  1267. #, perl-format
  1268. msgid ""
  1269. "%s(l%s): %s\n"
  1270. "LINE: %s"
  1271. msgstr ""
  1272. #: scripts/Dpkg/Changelog.pm:172
  1273. #, perl-format
  1274. msgid "%s(l%s): %s"
  1275. msgstr ""
  1276. #: scripts/Dpkg/Changelog.pm:182
  1277. msgid "fatal error"
  1278. msgstr ""
  1279. #: scripts/Dpkg/Changelog.pm:229
  1280. msgid "you can't combine 'count' or 'offset' with any other range option"
  1281. msgstr ""
  1282. #: scripts/Dpkg/Changelog.pm:233
  1283. msgid "you can only specify one of 'from' and 'since', using 'since'"
  1284. msgstr ""
  1285. #: scripts/Dpkg/Changelog.pm:237
  1286. msgid "you can only specify one of 'to' and 'until', using 'until'"
  1287. msgstr ""
  1288. #: scripts/Dpkg/Changelog.pm:241
  1289. msgid "'since' option specifies most recent version, ignoring"
  1290. msgstr ""
  1291. #: scripts/Dpkg/Changelog.pm:245
  1292. msgid "'until' option specifies oldest version, ignoring"
  1293. msgstr ""
  1294. #: scripts/Dpkg/Changelog.pm:763
  1295. #, perl-format
  1296. msgid "tail of %s"
  1297. msgstr ""
  1298. #: scripts/Dpkg/Changelog.pm:775
  1299. #, perl-format
  1300. msgid "format parser %s not executable"
  1301. msgstr ""
  1302. #: scripts/Dpkg/Changelog.pm:778
  1303. #, perl-format
  1304. msgid "changelog format %s is unknown"
  1305. msgstr ""
  1306. #: scripts/Dpkg/Changelog.pm:795 scripts/Dpkg/IPC.pm:208
  1307. #, perl-format
  1308. msgid "fork for %s"
  1309. msgstr ""
  1310. #: scripts/Dpkg/Changelog.pm:799 scripts/Dpkg/IPC.pm:226
  1311. #: scripts/Dpkg/Shlibs.pm:77 scripts/Dpkg/Shlibs/SymbolFile.pm:114
  1312. #: scripts/Dpkg/Source/Package.pm:129 scripts/Dpkg/Source/Package.pm:138
  1313. #, perl-format
  1314. msgid "cannot open %s"
  1315. msgstr ""
  1316. #: scripts/Dpkg/Changelog.pm:801
  1317. #, perl-format
  1318. msgid "cannot exec format parser: %s"
  1319. msgstr ""
  1320. #: scripts/Dpkg/Changelog.pm:806
  1321. msgid "output of changelog parser"
  1322. msgstr ""
  1323. #: scripts/Dpkg/Changelog.pm:809
  1324. #, perl-format
  1325. msgid "changelog parser %s"
  1326. msgstr ""
  1327. #: scripts/Dpkg/Changelog/Debian.pm:101
  1328. #, perl-format
  1329. msgid "can't open file %s: %s"
  1330. msgstr ""
  1331. #: scripts/Dpkg/Changelog/Debian.pm:110
  1332. #, perl-format
  1333. msgid "can't load IO::String: %s"
  1334. msgstr ""
  1335. #: scripts/Dpkg/Changelog/Debian.pm:117
  1336. msgid "no changelog file specified"
  1337. msgstr ""
  1338. #: scripts/Dpkg/Changelog/Debian.pm:142
  1339. #, perl-format
  1340. msgid "found start of entry where expected %s"
  1341. msgstr ""
  1342. #: scripts/Dpkg/Changelog/Debian.pm:167
  1343. #, perl-format
  1344. msgid "bad key-value after `;': `%s'"
  1345. msgstr ""
  1346. #: scripts/Dpkg/Changelog/Debian.pm:171
  1347. #, perl-format
  1348. msgid "repeated key-value %s"
  1349. msgstr ""
  1350. #: scripts/Dpkg/Changelog/Debian.pm:175
  1351. msgid "badly formatted urgency value"
  1352. msgstr ""
  1353. #: scripts/Dpkg/Changelog/Debian.pm:186
  1354. #, perl-format
  1355. msgid "unknown key-value key %s - copying to XS-%s"
  1356. msgstr ""
  1357. #: scripts/Dpkg/Changelog/Debian.pm:217
  1358. msgid "badly formatted heading line"
  1359. msgstr ""
  1360. #: scripts/Dpkg/Changelog/Debian.pm:221
  1361. #, perl-format
  1362. msgid "found trailer where expected %s"
  1363. msgstr ""
  1364. #: scripts/Dpkg/Changelog/Debian.pm:225 scripts/Dpkg/Changelog/Debian.pm:242
  1365. msgid "badly formatted trailer line"
  1366. msgstr ""
  1367. #: scripts/Dpkg/Changelog/Debian.pm:235
  1368. #, perl-format
  1369. msgid "couldn't parse date %s"
  1370. msgstr ""
  1371. #: scripts/Dpkg/Changelog/Debian.pm:251 scripts/Dpkg/Changelog/Debian.pm:266
  1372. #, perl-format
  1373. msgid "found change data where expected %s"
  1374. msgstr ""
  1375. #: scripts/Dpkg/Changelog/Debian.pm:284
  1376. #, perl-format
  1377. msgid "found blank line where expected %s"
  1378. msgstr ""
  1379. #: scripts/Dpkg/Changelog/Debian.pm:288 scripts/Dpkg/Changelog/Debian.pm:303
  1380. msgid "unrecognised line"
  1381. msgstr ""
  1382. #: scripts/Dpkg/Changelog/Debian.pm:312
  1383. #, perl-format
  1384. msgid "found eof where expected %s"
  1385. msgstr ""
  1386. #: scripts/Dpkg/Changelog/Debian.pm:323
  1387. #, perl-format
  1388. msgid "can't close file %s: %s"
  1389. msgstr ""
  1390. #: scripts/Dpkg/Checksums.pm:26
  1391. #, perl-format
  1392. msgid "checksum program gave bogus output `%s'"
  1393. msgstr ""
  1394. #: scripts/Dpkg/Checksums.pm:37
  1395. #, perl-format
  1396. msgid "Unknown checksum algorithm `%s', ignoring"
  1397. msgstr ""
  1398. #: scripts/Dpkg/Checksums.pm:45
  1399. #, perl-format
  1400. msgid "Checksums-%s field contains bad line `%s'"
  1401. msgstr ""
  1402. #: scripts/Dpkg/Checksums.pm:57
  1403. #, perl-format
  1404. msgid "Conflicting file sizes `%u' and `%u' for file `%s'"
  1405. msgstr ""
  1406. #: scripts/Dpkg/Checksums.pm:81
  1407. #, perl-format
  1408. msgid "cannot fstat file %s"
  1409. msgstr ""
  1410. #: scripts/Dpkg/Checksums.pm:85
  1411. #, perl-format
  1412. msgid "File %s has size %u instead of expected %u"
  1413. msgstr ""
  1414. #: scripts/Dpkg/Checksums.pm:98
  1415. #, perl-format
  1416. msgid "File %s has checksum %s instead of expected %s (algorithm %s)"
  1417. msgstr ""
  1418. #: scripts/Dpkg/Control.pm:81 scripts/Dpkg/Shlibs/Objdump.pm:89
  1419. #: scripts/Dpkg/Source/CompressedFile.pm:131
  1420. #: scripts/Dpkg/Source/Package/V3/quilt.pm:77
  1421. #: scripts/Dpkg/Source/Package/V3/quilt.pm:234
  1422. #, perl-format
  1423. msgid "cannot read %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:181
  1502. #: scripts/Dpkg/Source/CompressedFile.pm:118
  1503. #: scripts/Dpkg/Source/Package.pm:412 scripts/Dpkg/Source/Package/V2.pm:180
  1504. #: scripts/Dpkg/Source/Package/V2.pm:393
  1505. #: scripts/Dpkg/Source/Package/V3/quilt.pm:120
  1506. #: scripts/Dpkg/Source/Package/V3/quilt.pm:224
  1507. #: scripts/Dpkg/Source/Package/V3/quilt.pm:227
  1508. #: scripts/Dpkg/Source/Package/V3/quilt.pm:237
  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:120
  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:130
  1553. #, perl-format
  1554. msgid "you can't use wildcards on unversioned symbols: %s"
  1555. msgstr ""
  1556. #: scripts/Dpkg/Shlibs/SymbolFile.pm:166
  1557. #, perl-format
  1558. msgid "Failed to parse a line in %s: %s"
  1559. msgstr ""
  1560. #: scripts/Dpkg/Shlibs/SymbolFile.pm:214
  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:249
  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:304
  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:209 scripts/Dpkg/Source/Patch.pm:221
  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:185
  1625. #, perl-format
  1626. msgid "newly created empty file '%s' will not be represented in diff"
  1627. msgstr ""
  1628. #: scripts/Dpkg/Source/Patch.pm:189
  1629. #, perl-format
  1630. msgid "executable mode %04o of '%s' will not be represented in diff"
  1631. msgstr ""
  1632. #: scripts/Dpkg/Source/Patch.pm:194
  1633. #, perl-format
  1634. msgid "special mode %04o of '%s' will not be represented in diff"
  1635. msgstr ""
  1636. #: scripts/Dpkg/Source/Patch.pm:205
  1637. msgid "device or socket is not allowed"
  1638. msgstr ""
  1639. #: scripts/Dpkg/Source/Patch.pm:214
  1640. msgid "unknown file type"
  1641. msgstr ""
  1642. #: scripts/Dpkg/Source/Patch.pm:229
  1643. #, perl-format
  1644. msgid "ignoring deletion of file %s"
  1645. msgstr ""
  1646. #: scripts/Dpkg/Source/Patch.pm:232
  1647. #, perl-format
  1648. msgid "ignoring deletion of directory %s"
  1649. msgstr ""
  1650. #: scripts/Dpkg/Source/Patch.pm:234
  1651. #, perl-format
  1652. msgid "ignoring deletion of symlink %s"
  1653. msgstr ""
  1654. #: scripts/Dpkg/Source/Patch.pm:247
  1655. #, perl-format
  1656. msgid "cannot close %s"
  1657. msgstr ""
  1658. #: scripts/Dpkg/Source/Patch.pm:259 scripts/Dpkg/Source/Package/V2.pm:303
  1659. #, perl-format
  1660. msgid "cannot represent change to %s: %s"
  1661. msgstr ""
  1662. #: scripts/Dpkg/Source/Patch.pm:266
  1663. #, perl-format
  1664. msgid "cannot represent change to %s:"
  1665. msgstr ""
  1666. #: scripts/Dpkg/Source/Patch.pm:267
  1667. #, perl-format
  1668. msgid " new version is %s"
  1669. msgstr ""
  1670. #: scripts/Dpkg/Source/Patch.pm:268
  1671. #, perl-format
  1672. msgid " old version is %s"
  1673. msgstr ""
  1674. #: scripts/Dpkg/Source/Patch.pm:294
  1675. #, perl-format
  1676. msgid "expected ^--- in line %d of diff `%s'"
  1677. msgstr ""
  1678. #: scripts/Dpkg/Source/Patch.pm:298
  1679. #, perl-format
  1680. msgid "diff `%s' patches file with no subdirectory"
  1681. msgstr ""
  1682. #: scripts/Dpkg/Source/Patch.pm:301
  1683. #, perl-format
  1684. msgid "diff `%s' patches file with name ending .dpkg-orig"
  1685. msgstr ""
  1686. #: scripts/Dpkg/Source/Patch.pm:306
  1687. #, perl-format
  1688. msgid "diff `%s' finishes in middle of ---/+++ (line %d)"
  1689. msgstr ""
  1690. #: scripts/Dpkg/Source/Patch.pm:310 scripts/Dpkg/Source/Patch.pm:320
  1691. #, perl-format
  1692. msgid "line after --- isn't as expected in diff `%s' (line %d)"
  1693. msgstr ""
  1694. #: scripts/Dpkg/Source/Patch.pm:315
  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:330
  1699. #, perl-format
  1700. msgid "diff `%s' patches something which is not a plain file"
  1701. msgstr ""
  1702. #: scripts/Dpkg/Source/Patch.pm:334
  1703. #, perl-format
  1704. msgid "diff `%s' patches file %s twice"
  1705. msgstr ""
  1706. #: scripts/Dpkg/Source/Patch.pm:349
  1707. #, perl-format
  1708. msgid "unexpected end of diff `%s'"
  1709. msgstr ""
  1710. #: scripts/Dpkg/Source/Patch.pm:352
  1711. #, perl-format
  1712. msgid "diff `%s' is missing trailing newline"
  1713. msgstr ""
  1714. #: scripts/Dpkg/Source/Patch.pm:360
  1715. #, perl-format
  1716. msgid "expected [ +-] at start of line %d of diff `%s'"
  1717. msgstr ""
  1718. #: scripts/Dpkg/Source/Patch.pm:367
  1719. #, perl-format
  1720. msgid "expected ^@@ at line %d of diff `%s'"
  1721. msgstr ""
  1722. #: scripts/Dpkg/Source/Patch.pm:372
  1723. #, perl-format
  1724. msgid "diff `%s' doesn't contain any patch"
  1725. msgstr ""
  1726. #: scripts/Dpkg/Source/Patch.pm:395 scripts/Dpkg/Source/Package/V3/git.pm:182
  1727. #: scripts/Dpkg/Source/Package/V3/quilt.pm:130
  1728. #, perl-format
  1729. msgid "cannot create directory %s"
  1730. msgstr ""
  1731. #: scripts/Dpkg/Source/Patch.pm:415
  1732. #: scripts/Dpkg/Source/Package/V3/quilt.pm:143
  1733. #, perl-format
  1734. msgid "cannot change timestamp for %s"
  1735. msgstr ""
  1736. #: scripts/Dpkg/Source/Patch.pm:419
  1737. #, perl-format
  1738. msgid "remove patch backup file %s"
  1739. msgstr ""
  1740. #: scripts/Dpkg/Source/Patch.pm:428
  1741. msgid "nonexistent"
  1742. msgstr ""
  1743. #: scripts/Dpkg/Source/Patch.pm:429 scripts/Dpkg/Source/Package.pm:333
  1744. #, perl-format
  1745. msgid "cannot stat %s"
  1746. msgstr ""
  1747. #: scripts/Dpkg/Source/Patch.pm:431
  1748. msgid "plain file"
  1749. msgstr ""
  1750. #: scripts/Dpkg/Source/Patch.pm:432
  1751. msgid "directory"
  1752. msgstr ""
  1753. #: scripts/Dpkg/Source/Patch.pm:433
  1754. #, perl-format
  1755. msgid "symlink to %s"
  1756. msgstr ""
  1757. #: scripts/Dpkg/Source/Patch.pm:434
  1758. msgid "block device"
  1759. msgstr ""
  1760. #: scripts/Dpkg/Source/Patch.pm:435
  1761. msgid "character device"
  1762. msgstr ""
  1763. #: scripts/Dpkg/Source/Patch.pm:436
  1764. msgid "named pipe"
  1765. msgstr ""
  1766. #: scripts/Dpkg/Source/Patch.pm:437
  1767. msgid "named socket"
  1768. msgstr ""
  1769. #: scripts/Dpkg/Source/Package.pm:124
  1770. #, perl-format
  1771. msgid "%s is not the name of a file"
  1772. msgstr ""
  1773. #: scripts/Dpkg/Source/Package.pm:147
  1774. #, perl-format
  1775. msgid "missing critical source control field %s"
  1776. msgstr ""
  1777. #: scripts/Dpkg/Source/Package.pm:173
  1778. #, perl-format
  1779. msgid ""
  1780. "source package format `%s' is not supported (Perl module %s is required)"
  1781. msgstr ""
  1782. #: scripts/Dpkg/Source/Package.pm:177
  1783. #, perl-format
  1784. msgid "invalid Format field `%s'"
  1785. msgstr ""
  1786. #: scripts/Dpkg/Source/Package.pm:203
  1787. #, perl-format
  1788. msgid "file `%s' listed twice in Files field"
  1789. msgstr ""
  1790. #: scripts/Dpkg/Source/Package.pm:232
  1791. msgid "source and version are required to compute the source basename"
  1792. msgstr ""
  1793. #: scripts/Dpkg/Source/Package.pm:278
  1794. #, perl-format
  1795. msgid "failed to verify signature on %s"
  1796. msgstr ""
  1797. #: scripts/Dpkg/Source/Package.pm:282
  1798. #, perl-format
  1799. msgid "could not verify signature on %s since gpg isn't installed"
  1800. msgstr ""
  1801. #: scripts/Dpkg/Source/Package.pm:291
  1802. #, perl-format
  1803. msgid "%s is not a valid option for %s"
  1804. msgstr ""
  1805. #: scripts/Dpkg/Source/Package.pm:335
  1806. #, perl-format
  1807. msgid "%s does not exist"
  1808. msgstr ""
  1809. #: scripts/Dpkg/Source/Package.pm:338
  1810. #, perl-format
  1811. msgid "cannot make %s executable"
  1812. msgstr ""
  1813. #: scripts/Dpkg/Source/Package.pm:340
  1814. #, perl-format
  1815. msgid "%s is not a plain file"
  1816. msgstr ""
  1817. #: scripts/Dpkg/Source/Package.pm:372
  1818. #, perl-format
  1819. msgid "tried to add file `%s' twice"
  1820. msgstr ""
  1821. #: scripts/Dpkg/Source/Package/V1.pm:53
  1822. #, perl-format
  1823. msgid "-s%s option overrides earlier -s%s option"
  1824. msgstr ""
  1825. #: scripts/Dpkg/Source/Package/V1.pm:69
  1826. #, perl-format
  1827. msgid "source handling style -s%s not allowed with -x"
  1828. msgstr ""
  1829. #: scripts/Dpkg/Source/Package/V1.pm:83
  1830. #: scripts/Dpkg/Source/Package/V3/native.pm:49
  1831. msgid "multiple tarfiles in v1.0 source package"
  1832. msgstr ""
  1833. #: scripts/Dpkg/Source/Package/V1.pm:88 scripts/Dpkg/Source/Package/V2.pm:104
  1834. #, perl-format
  1835. msgid "unrecognized file for a %s source package: %s"
  1836. msgstr ""
  1837. #: scripts/Dpkg/Source/Package/V1.pm:93
  1838. #: scripts/Dpkg/Source/Package/V3/native.pm:56
  1839. msgid "no tarfile in Files field"
  1840. msgstr ""
  1841. #: scripts/Dpkg/Source/Package/V1.pm:96
  1842. msgid "native package with .orig.tar"
  1843. msgstr ""
  1844. #: scripts/Dpkg/Source/Package/V1.pm:109
  1845. #, perl-format
  1846. msgid "unable to rename `%s' to `%s'"
  1847. msgstr ""
  1848. #: scripts/Dpkg/Source/Package/V1.pm:113 scripts/Dpkg/Source/Package/V2.pm:116
  1849. #: scripts/Dpkg/Source/Package/V2.pm:123 scripts/Dpkg/Source/Package/V2.pm:133
  1850. #: scripts/Dpkg/Source/Package/V3/bzr.pm:192
  1851. #: scripts/Dpkg/Source/Package/V3/native.pm:59
  1852. #: scripts/Dpkg/Source/Package/V3/git.pm:256
  1853. #, perl-format
  1854. msgid "unpacking %s"
  1855. msgstr ""
  1856. #: scripts/Dpkg/Source/Package/V1.pm:120
  1857. msgid "unable to keep orig directory (already exists)"
  1858. msgstr ""
  1859. #: scripts/Dpkg/Source/Package/V1.pm:127
  1860. #, perl-format
  1861. msgid "failed to rename newly-extracted %s to %s"
  1862. msgstr ""
  1863. #: scripts/Dpkg/Source/Package/V1.pm:133
  1864. #, perl-format
  1865. msgid "failed to rename saved %s to %s"
  1866. msgstr ""
  1867. #: scripts/Dpkg/Source/Package/V1.pm:140 scripts/Dpkg/Source/Package/V2.pm:183
  1868. #: scripts/Dpkg/Source/Package/V3/quilt.pm:146
  1869. #, perl-format
  1870. msgid "applying %s"
  1871. msgstr ""
  1872. #: scripts/Dpkg/Source/Package/V1.pm:152
  1873. msgid "only supports gzip compression"
  1874. msgstr ""
  1875. #: scripts/Dpkg/Source/Package/V1.pm:163
  1876. msgid ""
  1877. "-b takes at most a directory and an orig source argument (with v1.0 source "
  1878. "package)"
  1879. msgstr ""
  1880. #: scripts/Dpkg/Source/Package/V1.pm:169
  1881. #, perl-format
  1882. msgid "source handling style -s%s not allowed with -b"
  1883. msgstr ""
  1884. #: scripts/Dpkg/Source/Package/V1.pm:184
  1885. #, perl-format
  1886. msgid "packed orig `%s' exists but is not a plain file"
  1887. msgstr ""
  1888. #: scripts/Dpkg/Source/Package/V1.pm:196
  1889. #, perl-format
  1890. msgid "cannot stat orig argument %s"
  1891. msgstr ""
  1892. #: scripts/Dpkg/Source/Package/V1.pm:202
  1893. #, perl-format
  1894. msgid ""
  1895. "orig argument is unpacked but source handling style -s%s calls for packed (."
  1896. "orig.tar.<ext>)"
  1897. msgstr ""
  1898. #: scripts/Dpkg/Source/Package/V1.pm:210
  1899. #, perl-format
  1900. msgid ""
  1901. "orig argument is packed but source handling style -s%s calls for unpacked (."
  1902. "orig/)"
  1903. msgstr ""
  1904. #: scripts/Dpkg/Source/Package/V1.pm:220
  1905. #, perl-format
  1906. msgid ""
  1907. "orig argument is empty (means no orig, no diff) but source handling style -s%"
  1908. "s wants something"
  1909. msgstr ""
  1910. #: scripts/Dpkg/Source/Package/V1.pm:233
  1911. #, perl-format
  1912. msgid "unpacked orig `%s' exists but is not a directory"
  1913. msgstr ""
  1914. #: scripts/Dpkg/Source/Package/V1.pm:238
  1915. #, perl-format
  1916. msgid "unable to stat putative unpacked orig `%s'"
  1917. msgstr ""
  1918. #: scripts/Dpkg/Source/Package/V1.pm:247
  1919. #, perl-format
  1920. msgid "source directory '%s' is not <sourcepackage>-<upstreamversion> '%s'"
  1921. msgstr ""
  1922. #: scripts/Dpkg/Source/Package/V1.pm:256
  1923. #, perl-format
  1924. msgid ".orig directory name %s is not <package>-<upstreamversion> (wanted %s)"
  1925. msgstr ""
  1926. #: scripts/Dpkg/Source/Package/V1.pm:265
  1927. #, perl-format
  1928. msgid ""
  1929. ".orig.tar name %s is not <package>_<upstreamversion>.orig.tar (wanted %s)"
  1930. msgstr ""
  1931. #: scripts/Dpkg/Source/Package/V1.pm:277
  1932. #, perl-format
  1933. msgid ""
  1934. "tarfile `%s' already exists, not overwriting, giving up; use -sU or -sR to "
  1935. "override"
  1936. msgstr ""
  1937. #: scripts/Dpkg/Source/Package/V1.pm:281
  1938. #, perl-format
  1939. msgid "unable to check for existence of `%s'"
  1940. msgstr ""
  1941. #: scripts/Dpkg/Source/Package/V1.pm:296 scripts/Dpkg/Source/Package/V1.pm:346
  1942. #: scripts/Dpkg/Source/Package/V3/native.pm:95
  1943. #, perl-format
  1944. msgid "unable to rename `%s' (newly created) to `%s'"
  1945. msgstr ""
  1946. #: scripts/Dpkg/Source/Package/V1.pm:299 scripts/Dpkg/Source/Package/V1.pm:349
  1947. #: scripts/Dpkg/Source/Package/V3/native.pm:98
  1948. #: scripts/Dpkg/Source/Package/V3/git.pm:272
  1949. #, perl-format
  1950. msgid "unable to change permission of `%s'"
  1951. msgstr ""
  1952. #: scripts/Dpkg/Source/Package/V1.pm:301 scripts/Dpkg/Source/Package/V2.pm:257
  1953. #, perl-format
  1954. msgid "building %s using existing %s"
  1955. msgstr ""
  1956. #: scripts/Dpkg/Source/Package/V1.pm:310
  1957. #, perl-format
  1958. msgid ""
  1959. "orig dir `%s' already exists, not overwriting, giving up; use -sA, -sK or -"
  1960. "sP to override"
  1961. msgstr ""
  1962. #: scripts/Dpkg/Source/Package/V1.pm:318
  1963. #, perl-format
  1964. msgid "unable to check for existence of orig dir `%s'"
  1965. msgstr ""
  1966. #: scripts/Dpkg/Source/Package/V1.pm:359
  1967. #, perl-format
  1968. msgid "%s: unrepresentable changes to source"
  1969. msgstr ""
  1970. #: scripts/Dpkg/Source/Package/V2.pm:94
  1971. #, perl-format
  1972. msgid "duplicate files in %s source package: %s.*"
  1973. msgstr ""
  1974. #: scripts/Dpkg/Source/Package/V2.pm:110
  1975. msgid "missing orig.tar or debian.tar file in v2.0 source package"
  1976. msgstr ""
  1977. #: scripts/Dpkg/Source/Package/V2.pm:125
  1978. #, perl-format
  1979. msgid "required removal of `%s' installed by original tarball"
  1980. msgstr ""
  1981. #: scripts/Dpkg/Source/Package/V2.pm:198 scripts/Dpkg/Source/Package/V2.pm:255
  1982. msgid "no orig.tar file found"
  1983. msgstr ""
  1984. #: scripts/Dpkg/Source/Package/V2.pm:216
  1985. #: scripts/Dpkg/Source/Package/V3/quilt.pm:194
  1986. #: scripts/Dpkg/Source/Package/V3/quilt.pm:208
  1987. msgid ""
  1988. "patches have not been applied, applying them now (use --no-preparation to "
  1989. "override)"
  1990. msgstr ""
  1991. #: scripts/Dpkg/Source/Package/V2.pm:226
  1992. #: scripts/Dpkg/Source/Package/V3/bzr.pm:97
  1993. #: scripts/Dpkg/Source/Package/V3/native.pm:74
  1994. #: scripts/Dpkg/Source/Package/V3/git.pm:125
  1995. #, perl-format
  1996. msgid "-b takes only one parameter with format `%s'"
  1997. msgstr ""
  1998. #: scripts/Dpkg/Source/Package/V2.pm:277
  1999. msgid "copy of the debian directory"
  2000. msgstr ""
  2001. #: scripts/Dpkg/Source/Package/V2.pm:286
  2002. #, perl-format
  2003. msgid "can't read %s"
  2004. msgstr ""
  2005. #: scripts/Dpkg/Source/Package/V2.pm:305
  2006. #, perl-format
  2007. msgid ""
  2008. "add %s in debian/source/include-binaries if you want to store the modified "
  2009. "binary in the debian tarball"
  2010. msgstr ""
  2011. #: scripts/Dpkg/Source/Package/V2.pm:319
  2012. #, perl-format
  2013. msgid "unwanted binary file: %s"
  2014. msgstr ""
  2015. #: scripts/Dpkg/Source/Package/V2.pm:325
  2016. #, perl-format
  2017. msgid ""
  2018. "detected %d unwanted binary file(s) (add them in debian/source/include-"
  2019. "binaries to allow their inclusion)."
  2020. msgstr ""
  2021. #: scripts/Dpkg/Source/Package/V2.pm:338
  2022. msgid "unrepresentable changes to source"
  2023. msgstr ""
  2024. #: scripts/Dpkg/Source/Package/V2.pm:344 scripts/Dpkg/Source/Package/V2.pm:348
  2025. #, perl-format
  2026. msgid "cannot remove %s"
  2027. msgstr ""
  2028. #: scripts/Dpkg/Source/Package/V2.pm:352
  2029. #, perl-format
  2030. msgid "cannot rename %s to %s"
  2031. msgstr ""
  2032. #: scripts/Dpkg/Source/Package/V2.pm:364
  2033. #, perl-format
  2034. msgid "can't write %s"
  2035. msgstr ""
  2036. #: scripts/Dpkg/Source/Package/V2.pm:368
  2037. #, perl-format
  2038. msgid "adding %s to %s"
  2039. msgstr ""
  2040. #: scripts/Dpkg/Source/Package/V3/bzr.pm:52
  2041. msgid ""
  2042. "This source package can only be manipulated using bzr, which is not in the "
  2043. "PATH."
  2044. msgstr ""
  2045. #: scripts/Dpkg/Source/Package/V3/bzr.pm:59
  2046. #, perl-format
  2047. msgid ""
  2048. "source directory is not the top directory of a bzr repository (%s/.bzr not "
  2049. "present), but Format bzr was specified"
  2050. msgstr ""
  2051. #: scripts/Dpkg/Source/Package/V3/bzr.pm:66
  2052. #: scripts/Dpkg/Source/Package/V3/git.pm:76
  2053. #, perl-format
  2054. msgid "%s is a symlink"
  2055. msgstr ""
  2056. #: scripts/Dpkg/Source/Package/V3/bzr.pm:72
  2057. #: scripts/Dpkg/Source/Package/V3/git.pm:82
  2058. #, perl-format
  2059. msgid "%s is a symlink to outside %s"
  2060. msgstr ""
  2061. #: scripts/Dpkg/Source/Package/V3/bzr.pm:83
  2062. msgid "doesn't contain a bzr repository"
  2063. msgstr ""
  2064. #: scripts/Dpkg/Source/Package/V3/bzr.pm:111
  2065. #: scripts/Dpkg/Source/Package/V3/bzr.pm:134
  2066. #: scripts/Dpkg/Source/Package/V3/bzr.pm:200
  2067. #: scripts/Dpkg/Source/Package/V3/bzr.pm:206
  2068. #: scripts/Dpkg/Source/Package/V3/git.pm:139
  2069. #: scripts/Dpkg/Source/Package/V3/git.pm:176
  2070. #: scripts/Dpkg/Source/Package/V3/git.pm:187
  2071. #: scripts/Dpkg/Source/Package/V3/git.pm:212
  2072. #: scripts/Dpkg/Source/Package/V3/git.pm:264
  2073. #: scripts/Dpkg/Source/Package/V3/git.pm:334
  2074. #, perl-format
  2075. msgid "unable to chdir to `%s'"
  2076. msgstr ""
  2077. #: scripts/Dpkg/Source/Package/V3/bzr.pm:127
  2078. msgid "bzr status exited nonzero"
  2079. msgstr ""
  2080. #: scripts/Dpkg/Source/Package/V3/bzr.pm:129
  2081. #: scripts/Dpkg/Source/Package/V3/git.pm:169
  2082. #, perl-format
  2083. msgid "uncommitted, not-ignored changes in working directory: %s"
  2084. msgstr ""
  2085. #: scripts/Dpkg/Source/Package/V3/bzr.pm:181
  2086. #: scripts/Dpkg/Source/Package/V3/git.pm:245
  2087. msgid "format v3.0 uses only one source file"
  2088. msgstr ""
  2089. #: scripts/Dpkg/Source/Package/V3/bzr.pm:185
  2090. #: scripts/Dpkg/Source/Package/V3/git.pm:249
  2091. #, perl-format
  2092. msgid "expected %s, got %s"
  2093. msgstr ""
  2094. #: scripts/Dpkg/Source/Package/V3/custom.pm:39
  2095. msgid "Format `3.0 (custom)' is only used to create source packages"
  2096. msgstr ""
  2097. #: scripts/Dpkg/Source/Package/V3/custom.pm:45
  2098. msgid "no files indicated on command line"
  2099. msgstr ""
  2100. #: scripts/Dpkg/Source/Package/V3/custom.pm:52
  2101. msgid "--target-format option is missing"
  2102. msgstr ""
  2103. #: scripts/Dpkg/Source/Package/V3/native.pm:52
  2104. #, perl-format
  2105. msgid "unrecognized file for a native source package: %s"
  2106. msgstr ""
  2107. #: scripts/Dpkg/Source/Package/V3/git.pm:58
  2108. msgid ""
  2109. "This source package can only be manipulated using git, which is not in the "
  2110. "PATH."
  2111. msgstr ""
  2112. #: scripts/Dpkg/Source/Package/V3/git.pm:65
  2113. #, perl-format
  2114. msgid ""
  2115. "source directory is not the top directory of a git repository (%s/.git not "
  2116. "present), but Format git was specified"
  2117. msgstr ""
  2118. #: scripts/Dpkg/Source/Package/V3/git.pm:69
  2119. #, perl-format
  2120. msgid "git repository %s uses submodules. This is not yet supported."
  2121. msgstr ""
  2122. #: scripts/Dpkg/Source/Package/V3/git.pm:104
  2123. msgid "git config exited nonzero"
  2124. msgstr ""
  2125. #: scripts/Dpkg/Source/Package/V3/git.pm:111
  2126. msgid "doesn't contain a git repository"
  2127. msgstr ""
  2128. #: scripts/Dpkg/Source/Package/V3/git.pm:167
  2129. msgid "git ls-files exited nonzero"
  2130. msgstr ""
  2131. #: scripts/Dpkg/Source/Package/V3/git.pm:270
  2132. #, perl-format
  2133. msgid "executable bit set on %s; clearing"
  2134. msgstr ""
  2135. #: scripts/Dpkg/Source/Package/V3/git.pm:281
  2136. #, perl-format
  2137. msgid "unable to remove `%s'"
  2138. msgstr ""
  2139. #: scripts/Dpkg/Source/Package/V3/git.pm:307
  2140. msgid "modifying .git/config to comment out some settings"
  2141. msgstr ""
  2142. #: scripts/Dpkg/Source/Package/V3/git.pm:309
  2143. #, perl-format
  2144. msgid "unable to append to %s"
  2145. msgstr ""
  2146. #: scripts/Dpkg/Source/Package/V3/git.pm:310
  2147. msgid "The following setting(s) were disabled by dpkg-source"
  2148. msgstr ""
  2149. #: scripts/Dpkg/Source/Package/V3/quilt.pm:85
  2150. #, perl-format
  2151. msgid ""
  2152. "the series file (%s) contains unsupported options ('%s', line %s), dpkg-"
  2153. "source might fail when applying patches."
  2154. msgstr ""
  2155. #: scripts/Dpkg/Source/Package/V3/quilt.pm:114
  2156. #, perl-format
  2157. msgid "can't create symlink %s"
  2158. msgstr ""
  2159. #: scripts/Dpkg/Source/Package/V3/quilt.pm:126
  2160. #: scripts/Dpkg/Source/Package/V3/quilt.pm:199
  2161. #, perl-format
  2162. msgid "applying %s with quilt"
  2163. msgstr ""
  2164. #: scripts/Dpkg/Substvars.pm:117
  2165. #, perl-format
  2166. msgid "bad line in substvars file %s at line %d"
  2167. msgstr ""
  2168. #: scripts/Dpkg/Substvars.pm:123
  2169. #, perl-format
  2170. msgid "unable to open substvars file %s: %s"
  2171. msgstr ""
  2172. #: scripts/Dpkg/Substvars.pm:164
  2173. #, perl-format
  2174. msgid "too many substitutions - recursive ? - in `%s'"
  2175. msgstr ""
  2176. #: scripts/Dpkg/Substvars.pm:170
  2177. #, perl-format
  2178. msgid "unknown substitution variable ${%s}"
  2179. msgstr ""
  2180. #: scripts/Dpkg/Vars.pm:34
  2181. #, perl-format
  2182. msgid "source package name `%s' contains illegal character `%s'"
  2183. msgstr ""
  2184. #: scripts/Dpkg/Vars.pm:37
  2185. #, perl-format
  2186. msgid "source package name `%s' starts with non-alphanum"
  2187. msgstr ""
  2188. #: scripts/Dpkg/Vars.pm:46
  2189. #, perl-format
  2190. msgid "source package has two conflicting values - %s and %s"
  2191. msgstr ""
  2192. #: scripts/Dpkg/Version.pm:206
  2193. #, perl-format
  2194. msgid "version number contains illegal character `%s'"
  2195. msgstr ""