dpkg-dev.pot 77 KB

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