dpkg-dev.pot 80 KB

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