dpkg-dev.pot 78 KB

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