dpkg-dev.pot 82 KB

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