dpkg-dev.pot 78 KB

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