dpkg-dev.pot 81 KB

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