dpkg-dev.pot 73 KB

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