dpkg-dev.pot 82 KB

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