dpkg-dev.pot 82 KB

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