dpkg-dev.pot 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325
  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: 2007-07-01 15:54+0200\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "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/822-date.pl:13
  20. msgid "Usage: 822-date"
  21. msgstr ""
  22. #: scripts/822-date.pl:15
  23. msgid "This program is deprecated. Please use 'date -R' instead."
  24. msgstr ""
  25. #: scripts/controllib.pl:72 scripts/controllib.pl:77
  26. #, perl-format
  27. msgid "unable to get login information for username \"%s\""
  28. msgstr ""
  29. #: scripts/controllib.pl:80
  30. #, perl-format
  31. msgid ""
  32. "no utmp entry available and LOGNAME not defined; using uid of process (%d)"
  33. msgstr ""
  34. #: scripts/controllib.pl:83
  35. #, perl-format
  36. msgid "unable to get login information for uid %d"
  37. msgstr ""
  38. #: scripts/controllib.pl:139
  39. msgid "unable to open cputable"
  40. msgstr ""
  41. #: scripts/controllib.pl:155
  42. msgid "unable to open ostable"
  43. msgstr ""
  44. #: scripts/controllib.pl:173
  45. msgid "unable to open triplettable"
  46. msgstr ""
  47. #: scripts/controllib.pl:337
  48. #, perl-format
  49. msgid "too many substitutions - recursive ? - in `%s'"
  50. msgstr ""
  51. #: scripts/controllib.pl:343
  52. #, perl-format
  53. msgid "unknown substitution variable ${%s}"
  54. msgstr ""
  55. #: scripts/controllib.pl:388
  56. #, perl-format
  57. msgid "field %s has newline then non whitespace >%s<"
  58. msgstr ""
  59. #: scripts/controllib.pl:389
  60. #, perl-format
  61. msgid "field %s has blank lines >%s<"
  62. msgstr ""
  63. #: scripts/controllib.pl:390
  64. #, perl-format
  65. msgid "field %s has trailing newline >%s<"
  66. msgstr ""
  67. #: scripts/controllib.pl:397
  68. msgid "write error on control data"
  69. msgstr ""
  70. #: scripts/controllib.pl:400
  71. msgid "write error on close control data"
  72. msgstr ""
  73. #: scripts/controllib.pl:408
  74. #, perl-format
  75. msgid "cannot read control file %s: %s"
  76. msgstr ""
  77. #: scripts/controllib.pl:411
  78. #, perl-format
  79. msgid "control file %s"
  80. msgstr ""
  81. #: scripts/controllib.pl:412
  82. msgid "control file must have at least one binary package part"
  83. msgstr ""
  84. #: scripts/controllib.pl:416
  85. #, perl-format
  86. msgid "per-package paragraph %d in control info file is missing Package line"
  87. msgstr ""
  88. #: scripts/controllib.pl:421
  89. msgid "source paragraph in control info file is missing Source line"
  90. msgstr ""
  91. #: scripts/controllib.pl:438
  92. #, perl-format
  93. msgid "bad line in substvars file %s at line %d"
  94. msgstr ""
  95. #: scripts/controllib.pl:444
  96. #, perl-format
  97. msgid "unable to open substvars file %s: %s"
  98. msgstr ""
  99. #: scripts/controllib.pl:496
  100. #, perl-format
  101. msgid "can't parse dependency %s"
  102. msgstr ""
  103. #: scripts/controllib.pl:523
  104. msgid "fork for parse changelog"
  105. msgstr ""
  106. #: scripts/controllib.pl:526 scripts/dpkg-genchanges.pl:274
  107. #: scripts/dpkg-gencontrol.pl:207 scripts/dpkg-source.pl:303
  108. msgid "parsed version of changelog"
  109. msgstr ""
  110. #: scripts/controllib.pl:528
  111. msgid "parse changelog"
  112. msgstr ""
  113. #: scripts/controllib.pl:569
  114. #, perl-format
  115. msgid "source package name `%s' contains illegal character `%s'"
  116. msgstr ""
  117. #: scripts/controllib.pl:571
  118. #, perl-format
  119. msgid "source package name `%s' starts with non-alphanum"
  120. msgstr ""
  121. #: scripts/controllib.pl:577
  122. #, perl-format
  123. msgid "version number contains illegal character `%s'"
  124. msgstr ""
  125. #: scripts/controllib.pl:586
  126. #, perl-format
  127. msgid "source package has two conflicting values - %s and %s"
  128. msgstr ""
  129. #: scripts/controllib.pl:595
  130. #, perl-format
  131. msgid "md5sum gave bogus output `%s'"
  132. msgstr ""
  133. #: scripts/controllib.pl:627
  134. msgid "continued value line not in field"
  135. msgstr ""
  136. #: scripts/controllib.pl:630
  137. msgid "expected blank line before PGP signature"
  138. msgstr ""
  139. #: scripts/controllib.pl:642
  140. msgid "expected PGP signature, found EOF after blank line"
  141. msgstr ""
  142. #: scripts/controllib.pl:645
  143. #, perl-format
  144. msgid "expected PGP signature, found something else `%s'"
  145. msgstr ""
  146. #: scripts/controllib.pl:650
  147. msgid "found several `paragraphs' where only one expected"
  148. msgstr ""
  149. #: scripts/controllib.pl:654
  150. msgid "line with unknown format (not field-colon-value)"
  151. msgstr ""
  152. #: scripts/controllib.pl:657
  153. msgid "found start of PGP body but no signature"
  154. msgstr ""
  155. #: scripts/controllib.pl:659
  156. msgid "empty file"
  157. msgstr ""
  158. #: scripts/controllib.pl:665
  159. #, perl-format
  160. msgid "unknown information field '%s' in input data in %s"
  161. msgstr ""
  162. #: scripts/controllib.pl:670
  163. #, perl-format
  164. msgid "syntax error in %s at line %d: %s"
  165. msgstr ""
  166. #: scripts/controllib.pl:673
  167. #, perl-format
  168. msgid "%s: failure: %s"
  169. msgstr ""
  170. #: scripts/controllib.pl:674
  171. #, perl-format
  172. msgid "%s: failure: %s: %s"
  173. msgstr ""
  174. #: scripts/controllib.pl:675
  175. #, perl-format
  176. msgid "%s: error: %s"
  177. msgstr ""
  178. #: scripts/controllib.pl:676
  179. #, perl-format
  180. msgid "%s: internal error: %s"
  181. msgstr ""
  182. #: scripts/controllib.pl:681
  183. #, perl-format
  184. msgid "%s: warning: %s"
  185. msgstr ""
  186. #: scripts/controllib.pl:705
  187. #, perl-format
  188. msgid "%s: failure: %s gave error exit status %s"
  189. msgstr ""
  190. #: scripts/controllib.pl:708
  191. #, perl-format
  192. msgid "%s: failure: %s died from signal %s"
  193. msgstr ""
  194. #: scripts/controllib.pl:711
  195. #, perl-format
  196. msgid "%s: failure: %s failed with unknown exit code %d"
  197. msgstr ""
  198. #: scripts/dpkg-architecture.pl:37 scripts/dpkg-distaddfile.pl:23
  199. #: scripts/dpkg-genchanges.pl:72 scripts/dpkg-gencontrol.pl:50
  200. #: scripts/dpkg-parsechangelog.pl:29 scripts/dpkg-scanpackages.pl:51
  201. #: scripts/dpkg-scansources.pl:98 scripts/dpkg-shlibdeps.pl:41
  202. #: scripts/dpkg-source.pl:98 scripts/changelog/debian.pl:35
  203. #, perl-format
  204. msgid "Debian %s version %s.\n"
  205. msgstr ""
  206. #: scripts/dpkg-architecture.pl:39
  207. msgid ""
  208. "\n"
  209. "Copyright (C) 1999-2001 Marcus Brinkmann <brinkmd@debian.org>.\n"
  210. "Copyright (C) 2004-2005 Scott James Remnant <scott@netsplit.com>."
  211. msgstr ""
  212. #: scripts/dpkg-architecture.pl:43 scripts/dpkg-distaddfile.pl:28
  213. #: scripts/dpkg-genchanges.pl:78 scripts/dpkg-gencontrol.pl:56
  214. #: scripts/dpkg-parsechangelog.pl:35 scripts/dpkg-shlibdeps.pl:48
  215. #: scripts/dpkg-source.pl:103 scripts/changelog/debian.pl:39
  216. msgid ""
  217. "\n"
  218. "This is free software; see the GNU General Public Licence version 2 or\n"
  219. "later for copying conditions. There is NO warranty.\n"
  220. msgstr ""
  221. #: scripts/dpkg-architecture.pl:51
  222. #, perl-format
  223. msgid ""
  224. "Usage: %s [<option> ...] [<action>]\n"
  225. "\n"
  226. "Options:\n"
  227. " -a<debian-arch> set current Debian architecture.\n"
  228. " -t<gnu-system> set current GNU system type.\n"
  229. " -L list valid architectures.\n"
  230. " -f force flag (override variables set in environment).\n"
  231. "\n"
  232. "Actions:\n"
  233. " -l list variables (default).\n"
  234. " -e<debian-arch> compare with current Debian architecture.\n"
  235. " -i<arch-alias> check if current Debian architecture is <arch-alias>.\n"
  236. " -q<variable> prints only the value of <variable>.\n"
  237. " -s print command to set environment variables.\n"
  238. " -u print command to unset environment variables.\n"
  239. " -c <command> set environment and run the command in it.\n"
  240. " --help show this help message.\n"
  241. " --version show the version.\n"
  242. msgstr ""
  243. #: scripts/dpkg-architecture.pl:89
  244. msgid ""
  245. "Couldn't determine gcc system type, falling back to default (native "
  246. "compilation)"
  247. msgstr ""
  248. #: scripts/dpkg-architecture.pl:102
  249. #, perl-format
  250. msgid ""
  251. "Unknown gcc system type %s, falling back to default (native compilation)"
  252. msgstr ""
  253. #: scripts/dpkg-architecture.pl:156 scripts/dpkg-distaddfile.pl:56
  254. #: scripts/dpkg-genchanges.pl:163 scripts/dpkg-gencontrol.pl:124
  255. #: scripts/dpkg-shlibdeps.pl:106 scripts/dpkg-source.pl:203
  256. #: scripts/changelog/debian.pl:68
  257. #, perl-format
  258. msgid "unknown option `%s'"
  259. msgstr ""
  260. #: scripts/dpkg-architecture.pl:162
  261. #, perl-format
  262. msgid "unknown Debian architecture %s, you must specify GNU system type, too"
  263. msgstr ""
  264. #: scripts/dpkg-architecture.pl:167
  265. #, perl-format
  266. msgid "unknown GNU system type %s, you must specify Debian architecture, too"
  267. msgstr ""
  268. #: scripts/dpkg-architecture.pl:172
  269. #, perl-format
  270. msgid "unknown default GNU system type for Debian architecture %s"
  271. msgstr ""
  272. #: scripts/dpkg-architecture.pl:175
  273. #, perl-format
  274. msgid ""
  275. "Default GNU system type %s for Debian arch %s does not match specified GNU "
  276. "system type %s"
  277. msgstr ""
  278. #: scripts/dpkg-architecture.pl:183
  279. #, perl-format
  280. msgid "Specified GNU system type %s does not match gcc system type %s."
  281. msgstr ""
  282. #: scripts/dpkg-architecture.pl:247
  283. #, perl-format
  284. msgid "%s is not a supported variable name"
  285. msgstr ""
  286. #: scripts/dpkg-checkbuilddeps.pl:24
  287. #, perl-format
  288. msgid ""
  289. "Usage: %s [<option> ...] [<control-file>]\n"
  290. "\n"
  291. "Options:\n"
  292. " control-file control file to process (default: debian/control).\n"
  293. " -B binary-only, ignore -Indep.\n"
  294. " --admindir=<directory>\n"
  295. " change the administrative directory.\n"
  296. " -h show this help message.\n"
  297. msgstr ""
  298. #: scripts/dpkg-checkbuilddeps.pl:78
  299. #, perl-format
  300. msgid "%s: Unmet build dependencies: "
  301. msgstr ""
  302. #: scripts/dpkg-checkbuilddeps.pl:82
  303. #, perl-format
  304. msgid "%s: Build conflicts: "
  305. msgstr ""
  306. #: scripts/dpkg-checkbuilddeps.pl:155 scripts/dpkg-gencontrol.pl:228
  307. #: scripts/dpkg-source.pl:249
  308. #, perl-format
  309. msgid "error occurred while parsing %s"
  310. msgstr ""
  311. #: scripts/dpkg-distaddfile.pl:25 scripts/changelog/debian.pl:37
  312. msgid ""
  313. "\n"
  314. "Copyright (C) 1996 Ian Jackson."
  315. msgstr ""
  316. #: scripts/dpkg-distaddfile.pl:36
  317. #, perl-format
  318. msgid ""
  319. "Usage: %s [<option>...] <filename> <section> <priority>\n"
  320. "\n"
  321. "Options:\n"
  322. " -f<fileslistfile> write files here instead of debian/files.\n"
  323. " -h, --help show this help message.\n"
  324. " --version show the version.\n"
  325. msgstr ""
  326. #: scripts/dpkg-distaddfile.pl:60
  327. msgid "need exactly a filename, section and priority"
  328. msgstr ""
  329. #: scripts/dpkg-distaddfile.pl:64
  330. msgid "filename, section and priority may contain no whitespace"
  331. msgstr ""
  332. #: scripts/dpkg-distaddfile.pl:67 scripts/dpkg-gencontrol.pl:292
  333. msgid "open new files list file"
  334. msgstr ""
  335. #: scripts/dpkg-distaddfile.pl:69 scripts/dpkg-gencontrol.pl:295
  336. msgid "chown new files list file"
  337. msgstr ""
  338. #: scripts/dpkg-distaddfile.pl:74 scripts/dpkg-gencontrol.pl:304
  339. msgid "copy old entry to new files list file"
  340. msgstr ""
  341. #: scripts/dpkg-distaddfile.pl:77 scripts/dpkg-gencontrol.pl:308
  342. msgid "read old files list file"
  343. msgstr ""
  344. #: scripts/dpkg-distaddfile.pl:80 scripts/dpkg-gencontrol.pl:316
  345. msgid "write new entry to new files list file"
  346. msgstr ""
  347. #: scripts/dpkg-distaddfile.pl:81 scripts/dpkg-gencontrol.pl:317
  348. msgid "close new files list file"
  349. msgstr ""
  350. #: scripts/dpkg-genchanges.pl:74
  351. msgid ""
  352. "\n"
  353. "Copyright (C) 1996 Ian Jackson.\n"
  354. "Copyright (C) 2000,2001 Wichert Akkerman."
  355. msgstr ""
  356. #: scripts/dpkg-genchanges.pl:86
  357. #, perl-format
  358. msgid ""
  359. "Usage: %s [<option> ...]\n"
  360. "\n"
  361. "Options:\n"
  362. " -b binary-only build - no source files.\n"
  363. " -B arch-specific - no source or arch-indep files.\n"
  364. " -S source-only upload.\n"
  365. " -c<controlfile> get control info from this file.\n"
  366. " -l<changelogfile> get per-version info from this file.\n"
  367. " -f<fileslistfile> get .deb files list from this file.\n"
  368. " -v<sinceversion> include all changes later than version.\n"
  369. " -C<changesdescription> use change description from this file.\n"
  370. " -m<maintainer> override control's maintainer value.\n"
  371. " -e<maintainer> override changelog's maintainer value.\n"
  372. " -u<uploadfilesdir> directory with files (default is `..').\n"
  373. " -si (default) src includes orig for debian-revision 0 or 1.\n"
  374. " -sa source includes orig src.\n"
  375. " -sd source is diff and .dsc only.\n"
  376. " -q quiet - no informational messages on stderr.\n"
  377. " -F<changelogformat> force change log format.\n"
  378. " -V<name>=<value> set a substitution variable.\n"
  379. " -T<varlistfile> read variables here, not debian/substvars.\n"
  380. " -D<field>=<value> override or add a field and value.\n"
  381. " -U<field> remove a field.\n"
  382. " -h, --help show this help message.\n"
  383. " --version show the version.\n"
  384. msgstr ""
  385. #: scripts/dpkg-genchanges.pl:118 scripts/dpkg-genchanges.pl:121
  386. #: scripts/dpkg-genchanges.pl:126
  387. msgid "cannot combine -b or -B and -S"
  388. msgstr ""
  389. #: scripts/dpkg-genchanges.pl:124
  390. #, perl-format
  391. msgid "%s: arch-specific upload - not including arch-independent packages"
  392. msgstr ""
  393. #: scripts/dpkg-genchanges.pl:172
  394. msgid "cannot read files list file"
  395. msgstr ""
  396. #: scripts/dpkg-genchanges.pl:176
  397. #, perl-format
  398. msgid "duplicate files list entry for package %s (line %d)"
  399. msgstr ""
  400. #: scripts/dpkg-genchanges.pl:182 scripts/dpkg-genchanges.pl:194
  401. #, perl-format
  402. msgid "duplicate files list entry for file %s (line %d)"
  403. msgstr ""
  404. #: scripts/dpkg-genchanges.pl:199
  405. #, perl-format
  406. msgid "badly formed line in files list file, line %d"
  407. msgstr ""
  408. #: scripts/dpkg-genchanges.pl:216 scripts/dpkg-gencontrol.pl:161
  409. #: scripts/dpkg-source.pl:254
  410. msgid "general section of control info file"
  411. msgstr ""
  412. #: scripts/dpkg-genchanges.pl:226
  413. #, perl-format
  414. msgid "package %s in control file but not in files list"
  415. msgstr ""
  416. #: scripts/dpkg-genchanges.pl:261 scripts/dpkg-gencontrol.pl:192
  417. #: scripts/dpkg-source.pl:290
  418. msgid "package's section of control info file"
  419. msgstr ""
  420. #: scripts/dpkg-genchanges.pl:278 scripts/dpkg-gencontrol.pl:211
  421. #: scripts/dpkg-source.pl:307
  422. #, perl-format
  423. msgid "value from nowhere, with key >%s< and value >%s<"
  424. msgstr ""
  425. #: scripts/dpkg-genchanges.pl:285
  426. msgid "read changesdescription"
  427. msgstr ""
  428. #: scripts/dpkg-genchanges.pl:296
  429. #, perl-format
  430. msgid "package %s listed in files list but not in control info"
  431. msgstr ""
  432. #: scripts/dpkg-genchanges.pl:306
  433. #, perl-format
  434. msgid "missing Section for binary package %s; using '-'"
  435. msgstr ""
  436. #: scripts/dpkg-genchanges.pl:308
  437. #, perl-format
  438. msgid "package %s has section %s in control file but %s in files list"
  439. msgstr ""
  440. #: scripts/dpkg-genchanges.pl:315
  441. #, perl-format
  442. msgid "missing Priority for binary package %s; using '-'"
  443. msgstr ""
  444. #: scripts/dpkg-genchanges.pl:317
  445. #, perl-format
  446. msgid "package %s has priority %s in control file but %s in files list"
  447. msgstr ""
  448. #: scripts/dpkg-genchanges.pl:331
  449. msgid "missing Section for source files"
  450. msgstr ""
  451. #: scripts/dpkg-genchanges.pl:336
  452. msgid "missing Priority for source files"
  453. msgstr ""
  454. #: scripts/dpkg-genchanges.pl:341 scripts/dpkg-source.pl:683
  455. #: scripts/dpkg-source.pl:713
  456. #, perl-format
  457. msgid "cannot open .dsc file %s: %s"
  458. msgstr ""
  459. #: scripts/dpkg-genchanges.pl:344 scripts/dpkg-source.pl:714
  460. #, perl-format
  461. msgid "source control file %s"
  462. msgstr ""
  463. #: scripts/dpkg-genchanges.pl:350 scripts/dpkg-source.pl:753
  464. #, perl-format
  465. msgid "Files field contains bad line `%s'"
  466. msgstr ""
  467. #: scripts/dpkg-genchanges.pl:362
  468. msgid "not including original source code in upload"
  469. msgstr ""
  470. #: scripts/dpkg-genchanges.pl:366
  471. msgid "ignoring -sd option for native Debian package"
  472. msgstr ""
  473. #: scripts/dpkg-genchanges.pl:368
  474. msgid "including full source code in upload"
  475. msgstr ""
  476. #: scripts/dpkg-genchanges.pl:371
  477. msgid "binary-only upload - not including any source code"
  478. msgstr ""
  479. #: scripts/dpkg-genchanges.pl:375
  480. msgid "write original source message"
  481. msgstr ""
  482. #: scripts/dpkg-genchanges.pl:400
  483. #, perl-format
  484. msgid "cannot open upload file %s for reading"
  485. msgstr ""
  486. #: scripts/dpkg-genchanges.pl:401
  487. #, perl-format
  488. msgid "cannot fstat upload file %s"
  489. msgstr ""
  490. #: scripts/dpkg-genchanges.pl:403
  491. #, perl-format
  492. msgid "upload file %s is empty"
  493. msgstr ""
  494. #: scripts/dpkg-genchanges.pl:405
  495. #, perl-format
  496. msgid "md5sum upload file %s"
  497. msgstr ""
  498. #: scripts/dpkg-genchanges.pl:407
  499. #, perl-format
  500. msgid "md5sum upload file %s gave strange output `%s'"
  501. msgstr ""
  502. #: scripts/dpkg-genchanges.pl:410
  503. #, perl-format
  504. msgid "md5sum of source file %s (%s) is different from md5sum in %s (%s)"
  505. msgstr ""
  506. #: scripts/dpkg-genchanges.pl:425 scripts/dpkg-source.pl:317
  507. #, perl-format
  508. msgid "missing information for critical output field %s"
  509. msgstr ""
  510. #: scripts/dpkg-genchanges.pl:429 scripts/dpkg-gencontrol.pl:249
  511. #: scripts/dpkg-gencontrol.pl:252 scripts/dpkg-source.pl:321
  512. #, perl-format
  513. msgid "missing information for output field %s"
  514. msgstr ""
  515. #: scripts/dpkg-gencontrol.pl:52
  516. msgid ""
  517. "\n"
  518. "Copyright (C) 1996 Ian Jackson.\n"
  519. "Copyright (C) 2000,2002 Wichert Akkerman."
  520. msgstr ""
  521. #: scripts/dpkg-gencontrol.pl:64
  522. #, perl-format
  523. msgid ""
  524. "Usage: %s [<option> ...]\n"
  525. "\n"
  526. "Options:\n"
  527. " -p<package> print control file for package.\n"
  528. " -c<controlfile> get control info from this file.\n"
  529. " -l<changelogfile> get per-version info from this file.\n"
  530. " -F<changelogformat> force change log format.\n"
  531. " -v<forceversion> set version of binary package.\n"
  532. " -f<fileslistfile> write files here instead of debian/files.\n"
  533. " -P<packagebuilddir> temporary build dir instead of debian/tmp.\n"
  534. " -n<filename> assume the package filename will be <filename>.\n"
  535. " -O write to stdout, not .../DEBIAN/control.\n"
  536. " -is, -ip, -isp, -ips deprecated, ignored for compatibility.\n"
  537. " -D<field>=<value> override or add a field and value.\n"
  538. " -U<field> remove a field.\n"
  539. " -V<name>=<value> set a substitution variable.\n"
  540. " -T<varlistfile> read variables here, not debian/substvars.\n"
  541. " -h, --help show this help message.\n"
  542. " --version show the version.\n"
  543. msgstr ""
  544. #: scripts/dpkg-gencontrol.pl:92
  545. #, perl-format
  546. msgid "Illegal package name `%s'"
  547. msgstr ""
  548. #: scripts/dpkg-gencontrol.pl:135
  549. #, perl-format
  550. msgid "package %s not in control info"
  551. msgstr ""
  552. #: scripts/dpkg-gencontrol.pl:140
  553. #, perl-format
  554. msgid "must specify package since control info has many (%s)"
  555. msgstr ""
  556. #: scripts/dpkg-gencontrol.pl:178
  557. #, perl-format
  558. msgid "`%s' is not a legal architecture string."
  559. msgid_plural "`%s' are not legal architecture strings."
  560. msgstr[0] ""
  561. msgstr[1] ""
  562. #: scripts/dpkg-gencontrol.pl:184
  563. #, perl-format
  564. msgid "current build architecture %s does not appear in package's list (%s)"
  565. msgstr ""
  566. #: scripts/dpkg-gencontrol.pl:264
  567. msgid "fork for du"
  568. msgstr ""
  569. #: scripts/dpkg-gencontrol.pl:266
  570. #, perl-format
  571. msgid "chdir for du to `%s'"
  572. msgstr ""
  573. #: scripts/dpkg-gencontrol.pl:267
  574. msgid "exec du"
  575. msgstr ""
  576. #: scripts/dpkg-gencontrol.pl:273
  577. #, perl-format
  578. msgid "du in `%s'"
  579. msgstr ""
  580. #: scripts/dpkg-gencontrol.pl:274
  581. #, perl-format
  582. msgid "du gave unexpected output `%s'"
  583. msgstr ""
  584. #: scripts/dpkg-gencontrol.pl:306
  585. msgid "close old files list file"
  586. msgstr ""
  587. #: scripts/dpkg-gencontrol.pl:318
  588. msgid "install new files list file"
  589. msgstr ""
  590. #: scripts/dpkg-gencontrol.pl:325
  591. #, perl-format
  592. msgid "cannot open new output control file `%s'"
  593. msgstr ""
  594. #: scripts/dpkg-gencontrol.pl:333
  595. #, perl-format
  596. msgid "cannot install output control file `%s'"
  597. msgstr ""
  598. #: scripts/dpkg-parsechangelog.pl:31
  599. msgid ""
  600. "\n"
  601. "Copyright (C) 1996 Ian Jackson.\n"
  602. "Copyright (C) 2001 Wichert Akkerman"
  603. msgstr ""
  604. #: scripts/dpkg-parsechangelog.pl:43
  605. #, perl-format
  606. msgid ""
  607. "Usage: %s [<option> ...]\n"
  608. "\n"
  609. "Options:\n"
  610. " -l<changelogfile> get per-version info from this file.\n"
  611. " -v<sinceversion> include all changes later than version.\n"
  612. " -F<changelogformat> force change log format.\n"
  613. " -L<libdir> look for change log parsers in <libdir>.\n"
  614. " -h, --help show this help message.\n"
  615. " --version show the version.\n"
  616. msgstr ""
  617. #: scripts/dpkg-parsechangelog.pl:70
  618. #, perl-format
  619. msgid "%s takes no non-option arguments"
  620. msgstr ""
  621. #: scripts/dpkg-parsechangelog.pl:75
  622. #, perl-format
  623. msgid "cannot open %s to find format: %s"
  624. msgstr ""
  625. #: scripts/dpkg-parsechangelog.pl:76
  626. #, perl-format
  627. msgid "cannot fork: %s"
  628. msgstr ""
  629. #: scripts/dpkg-parsechangelog.pl:81
  630. #, perl-format
  631. msgid "tail of %s"
  632. msgstr ""
  633. #: scripts/dpkg-parsechangelog.pl:89
  634. #, perl-format
  635. msgid "failed to check for format parser %s"
  636. msgstr ""
  637. #: scripts/dpkg-parsechangelog.pl:91
  638. #, perl-format
  639. msgid "format parser %s not executable"
  640. msgstr ""
  641. #: scripts/dpkg-parsechangelog.pl:98
  642. #, perl-format
  643. msgid "format %s unknown"
  644. msgstr ""
  645. #: scripts/dpkg-parsechangelog.pl:101
  646. #, perl-format
  647. msgid "cannot open %s: %s"
  648. msgstr ""
  649. #: scripts/dpkg-parsechangelog.pl:103
  650. #, perl-format
  651. msgid "cannot exec format parser: %s"
  652. msgstr ""
  653. #: scripts/dpkg-scanpackages.pl:57
  654. #, perl-format
  655. msgid ""
  656. "Usage: %s [<option> ...] <binarypath> [<overridefile> [<pathprefix>]] > "
  657. "Packages\n"
  658. "\n"
  659. "Options:\n"
  660. " -u, --udeb scan for udebs.\n"
  661. " -a, --arch <arch> architecture to scan for.\n"
  662. " -m, --multiversion allow multiple versions of a single package.\n"
  663. " -h, --help show this help message.\n"
  664. " --version show the version.\n"
  665. msgstr ""
  666. #: scripts/dpkg-scanpackages.pl:72
  667. #, perl-format
  668. msgid "Couldn't open override file %s: %s"
  669. msgstr ""
  670. #: scripts/dpkg-scanpackages.pl:98
  671. #, perl-format
  672. msgid " * Unconditional maintainer override for %s *"
  673. msgstr ""
  674. #: scripts/dpkg-scanpackages.pl:114 scripts/dpkg-scansources.pl:509
  675. msgid "1 to 3 args expected\n"
  676. msgstr ""
  677. #: scripts/dpkg-scanpackages.pl:136
  678. #, perl-format
  679. msgid "Binary dir %s not found"
  680. msgstr ""
  681. #: scripts/dpkg-scanpackages.pl:139
  682. #, perl-format
  683. msgid "Override file %s not found"
  684. msgstr ""
  685. #: scripts/dpkg-scanpackages.pl:154
  686. #, perl-format
  687. msgid "Couldn't open %s for reading: %s"
  688. msgstr ""
  689. #: scripts/dpkg-scanpackages.pl:162
  690. #, perl-format
  691. msgid "Couldn't call dpkg-deb on %s: %s, skipping package"
  692. msgstr ""
  693. #: scripts/dpkg-scanpackages.pl:166
  694. #, perl-format
  695. msgid "`dpkg-deb -I %s control' exited with %d, skipping package"
  696. msgstr ""
  697. #: scripts/dpkg-scanpackages.pl:180
  698. #, perl-format
  699. msgid ""
  700. "Unprocessed text from %s control file; info:\n"
  701. "%s / %s\n"
  702. msgstr ""
  703. #: scripts/dpkg-scanpackages.pl:183
  704. #, perl-format
  705. msgid "No Package field in control file of %s"
  706. msgstr ""
  707. #: scripts/dpkg-scanpackages.pl:190
  708. #, perl-format
  709. msgid ""
  710. " ! Package %s (filename %s) is repeat but newer version;\n"
  711. " used that one and ignored data from %s !\n"
  712. msgstr ""
  713. #: scripts/dpkg-scanpackages.pl:196
  714. #, perl-format
  715. msgid ""
  716. " ! Package %s (filename %s) is repeat;\n"
  717. " ignored that one and using data from %s !\n"
  718. msgstr ""
  719. #: scripts/dpkg-scanpackages.pl:203
  720. #, perl-format
  721. msgid " ! Package %s (filename %s) has Filename field!\n"
  722. msgstr ""
  723. #: scripts/dpkg-scanpackages.pl:209
  724. #, perl-format
  725. msgid "`md5sum < %s' exited with %d"
  726. msgstr ""
  727. #: scripts/dpkg-scanpackages.pl:210
  728. #, perl-format
  729. msgid "Strange text from `md5sum < %s': `%s'"
  730. msgstr ""
  731. #: scripts/dpkg-scanpackages.pl:213
  732. #, perl-format
  733. msgid "Couldn't stat %s: %s"
  734. msgstr ""
  735. #: scripts/dpkg-scanpackages.pl:214
  736. #, perl-format
  737. msgid "%s is empty"
  738. msgstr ""
  739. #: scripts/dpkg-scanpackages.pl:260
  740. #, perl-format
  741. msgid "Failed when writing stdout: %s"
  742. msgstr ""
  743. #: scripts/dpkg-scanpackages.pl:263
  744. #, perl-format
  745. msgid "Couldn't close stdout: %s"
  746. msgstr ""
  747. #: scripts/dpkg-scanpackages.pl:267
  748. msgid "** Packages in archive but missing from override file: **"
  749. msgstr ""
  750. #: scripts/dpkg-scanpackages.pl:271
  751. msgid " ++ Packages in override file with incorrect old maintainer value: ++"
  752. msgstr ""
  753. #: scripts/dpkg-scanpackages.pl:277
  754. msgid " -- Packages specifying same maintainer as override file: --"
  755. msgstr ""
  756. #: scripts/dpkg-scanpackages.pl:283
  757. msgid " -- Packages in override file but not in archive: --"
  758. msgstr ""
  759. #: scripts/dpkg-scanpackages.pl:288
  760. #, perl-format
  761. msgid " Wrote %s entries to output Packages file."
  762. msgstr ""
  763. #: scripts/dpkg-scansources.pl:104
  764. #, perl-format
  765. msgid ""
  766. "Usage: %s [<option> ...] <binarypath> [<overridefile> [<pathprefix>]] > "
  767. "Sources\n"
  768. "\n"
  769. "Options:\n"
  770. " -n, --no-sort don't sort by package before outputting.\n"
  771. " -s, --source-override <file>\n"
  772. " use file for additional source overrides, "
  773. "default\n"
  774. " is regular override file with .src appended.\n"
  775. " --debug turn debugging on.\n"
  776. " --help show this help message.\n"
  777. " --version show the version.\n"
  778. "\n"
  779. "See the man page for the full documentation.\n"
  780. msgstr ""
  781. #: scripts/dpkg-scansources.pl:144
  782. #, perl-format
  783. msgid "error closing %s ($? %d, $! `%s')"
  784. msgstr ""
  785. #: scripts/dpkg-scansources.pl:157
  786. #, perl-format
  787. msgid "can't read override file %s:"
  788. msgstr ""
  789. #: scripts/dpkg-scansources.pl:166
  790. #, perl-format
  791. msgid "invalid override entry at line %d (%d fields)"
  792. msgstr ""
  793. #: scripts/dpkg-scansources.pl:173
  794. #, perl-format
  795. msgid "ignoring duplicate override entry for %s at line %d"
  796. msgstr ""
  797. #: scripts/dpkg-scansources.pl:179
  798. #, perl-format
  799. msgid "ignoring override entry for %s, invalid priority %s"
  800. msgstr ""
  801. #: scripts/dpkg-scansources.pl:198
  802. msgid "error closing override file:"
  803. msgstr ""
  804. #: scripts/dpkg-scansources.pl:219
  805. #, perl-format
  806. msgid "can't read source override file %s:"
  807. msgstr ""
  808. #: scripts/dpkg-scansources.pl:229
  809. #, perl-format
  810. msgid "invalid source override entry at line %d (%d fields)"
  811. msgstr ""
  812. #: scripts/dpkg-scansources.pl:238
  813. #, perl-format
  814. msgid "ignoring duplicate source override entry for %s at line %d"
  815. msgstr ""
  816. #: scripts/dpkg-scansources.pl:245
  817. msgid "error closing source override file:"
  818. msgstr ""
  819. #: scripts/dpkg-scansources.pl:259
  820. #, perl-format
  821. msgid "%s has PGP start token but not end token"
  822. msgstr ""
  823. #: scripts/dpkg-scansources.pl:275
  824. #, perl-format
  825. msgid "can't read %s:"
  826. msgstr ""
  827. #: scripts/dpkg-scansources.pl:281
  828. #, perl-format
  829. msgid "error doing fstat on %s:"
  830. msgstr ""
  831. #: scripts/dpkg-scansources.pl:289
  832. #, perl-format
  833. msgid "error reading from %s:"
  834. msgstr ""
  835. #: scripts/dpkg-scansources.pl:297 scripts/dpkg-scansources.pl:519
  836. msgid "can't fork:"
  837. msgstr ""
  838. #: scripts/dpkg-scansources.pl:301
  839. #, perl-format
  840. msgid "can't dup %s:"
  841. msgstr ""
  842. #: scripts/dpkg-scansources.pl:302
  843. #, perl-format
  844. msgid "can't rewind %s:"
  845. msgstr ""
  846. #: scripts/dpkg-scansources.pl:303
  847. msgid "can't exec md5sum:"
  848. msgstr ""
  849. #: scripts/dpkg-scansources.pl:312
  850. #, perl-format
  851. msgid "invalid md5 output for %s (%s)"
  852. msgstr ""
  853. #: scripts/dpkg-scansources.pl:317
  854. #, perl-format
  855. msgid "error closing %s:"
  856. msgstr ""
  857. #: scripts/dpkg-scansources.pl:342
  858. #, perl-format
  859. msgid "%s invalid (contains blank line)"
  860. msgstr ""
  861. #: scripts/dpkg-scansources.pl:369
  862. #, perl-format
  863. msgid "invalid field in %s: %s"
  864. msgstr ""
  865. #: scripts/dpkg-scansources.pl:377
  866. #, perl-format
  867. msgid "duplicate source field in %s"
  868. msgstr ""
  869. #: scripts/dpkg-scansources.pl:381
  870. #, perl-format
  871. msgid "invalid source field in %s"
  872. msgstr ""
  873. #: scripts/dpkg-scansources.pl:391
  874. #, perl-format
  875. msgid "duplicate binary field in %s"
  876. msgstr ""
  877. #: scripts/dpkg-scansources.pl:396
  878. #, perl-format
  879. msgid "no binary packages specified in %s"
  880. msgstr ""
  881. #: scripts/dpkg-shlibdeps.pl:43
  882. msgid ""
  883. "\n"
  884. "Copyright (C) 1996 Ian Jackson.\n"
  885. "Copyright (C) 2000 Wichert Akkerman.\n"
  886. "Copyright (C) 2006 Frank Lichtenheld."
  887. msgstr ""
  888. #: scripts/dpkg-shlibdeps.pl:56
  889. #, perl-format
  890. msgid ""
  891. "Usage: %s [<option> ...] <executable>|-e<executable> [<option> ...]\n"
  892. "\n"
  893. "Positional options (order is significant):\n"
  894. " <executable> include dependencies for <executable>,\n"
  895. " -e<executable> (use -e if <executable> starts with `-')\n"
  896. " -d<dependencyfield> next executable(s) set shlibs:<dependencyfield>.\n"
  897. "\n"
  898. "Options:\n"
  899. " -p<varnameprefix> set <varnameprefix>:* instead of shlibs:*.\n"
  900. " -O print variable settings to stdout.\n"
  901. " -L<localshlibsfile> shlibs override file, not debian/shlibs.local.\n"
  902. " -T<varlistfile> update variables here, not debian/substvars.\n"
  903. " -t<type> set package type (default is deb).\n"
  904. " --admindir=<directory> change the administrative directory.\n"
  905. " -h, --help show this help message.\n"
  906. " --version show the version.\n"
  907. "\n"
  908. "Dependency fields recognised are:\n"
  909. " %s\n"
  910. msgstr ""
  911. #: scripts/dpkg-shlibdeps.pl:95
  912. #, perl-format
  913. msgid "administrative directory '%s' does not exist"
  914. msgstr ""
  915. #: scripts/dpkg-shlibdeps.pl:100
  916. #, perl-format
  917. msgid "unrecognised dependency field '%s'"
  918. msgstr ""
  919. #: scripts/dpkg-shlibdeps.pl:114
  920. msgid "need at least one executable"
  921. msgstr ""
  922. #: scripts/dpkg-shlibdeps.pl:117
  923. #, perl-format
  924. msgid "unable to open '%s' for test"
  925. msgstr ""
  926. #: scripts/dpkg-shlibdeps.pl:120
  927. #, perl-format
  928. msgid "unable to read first four bytes of '%s' as magic number"
  929. msgstr ""
  930. #: scripts/dpkg-shlibdeps.pl:133
  931. #, perl-format
  932. msgid "unrecognized file type for '%s'"
  933. msgstr ""
  934. #: scripts/dpkg-shlibdeps.pl:169
  935. #, perl-format
  936. msgid "couldn't open /etc/ld.so.conf: %s"
  937. msgstr ""
  938. #: scripts/dpkg-shlibdeps.pl:187 scripts/dpkg-shlibdeps.pl:348
  939. msgid "cannot fork for objdump"
  940. msgstr ""
  941. #: scripts/dpkg-shlibdeps.pl:190 scripts/dpkg-shlibdeps.pl:351
  942. msgid "cannot exec objdump"
  943. msgstr ""
  944. #: scripts/dpkg-shlibdeps.pl:209
  945. #, perl-format
  946. msgid "format of 'NEEDED %s' not recognized"
  947. msgstr ""
  948. #: scripts/dpkg-shlibdeps.pl:215 scripts/dpkg-shlibdeps.pl:360
  949. #, perl-format
  950. msgid "objdump on `%s'"
  951. msgstr ""
  952. #: scripts/dpkg-shlibdeps.pl:277
  953. msgid "cannot fork for dpkg --search"
  954. msgstr ""
  955. #: scripts/dpkg-shlibdeps.pl:286
  956. msgid "cannot exec dpkg"
  957. msgstr ""
  958. #: scripts/dpkg-shlibdeps.pl:291
  959. msgid "diversions involved - output may be incorrect"
  960. msgstr ""
  961. #: scripts/dpkg-shlibdeps.pl:292
  962. msgid "write diversion info to stderr"
  963. msgstr ""
  964. #: scripts/dpkg-shlibdeps.pl:296
  965. #, perl-format
  966. msgid "unknown output from dpkg --search: '%s'"
  967. msgstr ""
  968. #: scripts/dpkg-shlibdeps.pl:319
  969. #, perl-format
  970. msgid "could not find any packages for %s"
  971. msgstr ""
  972. #: scripts/dpkg-shlibdeps.pl:329
  973. #, perl-format
  974. msgid ""
  975. "unable to find dependency information for shared library %s (soname %s, path "
  976. "%s, dependency field %s)"
  977. msgstr ""
  978. #: scripts/dpkg-shlibdeps.pl:370
  979. #, perl-format
  980. msgid "unable to open shared libs info file `%s'"
  981. msgstr ""
  982. #: scripts/dpkg-shlibdeps.pl:377
  983. #, perl-format
  984. msgid "shared libs info file '%s' line %d: bad line '%s'"
  985. msgstr ""
  986. #: scripts/dpkg-shlibdeps.pl:412
  987. #, perl-format
  988. msgid "open new substvars file `%s'"
  989. msgstr ""
  990. #: scripts/dpkg-shlibdeps.pl:415
  991. #, perl-format
  992. msgid "chown of `%s'"
  993. msgstr ""
  994. #: scripts/dpkg-shlibdeps.pl:422
  995. #, perl-format
  996. msgid "copy old entry to new varlist file `%s'"
  997. msgstr ""
  998. #: scripts/dpkg-shlibdeps.pl:425
  999. #, perl-format
  1000. msgid "open old varlist file `%s' for reading"
  1001. msgstr ""
  1002. #: scripts/dpkg-shlibdeps.pl:440
  1003. msgid "write output entry"
  1004. msgstr ""
  1005. #: scripts/dpkg-shlibdeps.pl:444
  1006. msgid "write userdef output entry"
  1007. msgstr ""
  1008. #: scripts/dpkg-shlibdeps.pl:446
  1009. msgid "close output"
  1010. msgstr ""
  1011. #: scripts/dpkg-shlibdeps.pl:449
  1012. #, perl-format
  1013. msgid "install new varlist file `%s'"
  1014. msgstr ""
  1015. #: scripts/dpkg-source.pl:100
  1016. msgid ""
  1017. "\n"
  1018. "Copyright (C) 1996 Ian Jackson and Klee Dienes."
  1019. msgstr ""
  1020. #: scripts/dpkg-source.pl:111
  1021. #, perl-format
  1022. msgid ""
  1023. "Usage: %s [<option> ...] <command>\n"
  1024. "\n"
  1025. "Commands:\n"
  1026. " -x <filename>.dsc [<output-dir>]\n"
  1027. " extract source package.\n"
  1028. " -b <dir> [<orig-dir>|<orig-targz>|'']\n"
  1029. " build source package.\n"
  1030. "\n"
  1031. "Build options:\n"
  1032. " -c<controlfile> get control info from this file.\n"
  1033. " -l<changelogfile> get per-version info from this file.\n"
  1034. " -F<changelogformat> force change log format.\n"
  1035. " -V<name>=<value> set a substitution variable.\n"
  1036. " -T<varlistfile> read variables here, not debian/substvars.\n"
  1037. " -D<field>=<value> override or add a .dsc field and value.\n"
  1038. " -U<field> remove a field.\n"
  1039. " -W turn certain errors into warnings.\n"
  1040. " -E when -W is enabled, -E disables it.\n"
  1041. " -q quiet operation, do not print warnings.\n"
  1042. " -i[<regexp>] filter out files to ignore diffs of\n"
  1043. " (defaults to: '%s').\n"
  1044. " -I<filename> filter out files when building tarballs.\n"
  1045. " -sa auto select orig source (-sA is default).\n"
  1046. " -sk use packed orig source (unpack & keep).\n"
  1047. " -sp use packed orig source (unpack & remove).\n"
  1048. " -su use unpacked orig source (pack & keep).\n"
  1049. " -sr use unpacked orig source (pack & remove).\n"
  1050. " -ss trust packed & unpacked orig src are same.\n"
  1051. " -sn there is no diff, do main tarfile only.\n"
  1052. " -sA,-sK,-sP,-sU,-sR like -sa,-sk,-sp,-su,-sr but may overwrite.\n"
  1053. "\n"
  1054. "Extract options:\n"
  1055. " -sp (default) leave orig source packed in current dir.\n"
  1056. " -sn do not copy original source to current dir.\n"
  1057. " -su unpack original source tree too.\n"
  1058. "\n"
  1059. "General options:\n"
  1060. " -h, --help show this help message.\n"
  1061. " --version show the version.\n"
  1062. msgstr ""
  1063. #: scripts/dpkg-source.pl:169
  1064. #, perl-format
  1065. msgid "-s%s option overrides earlier -s%s option"
  1066. msgstr ""
  1067. #: scripts/dpkg-source.pl:207
  1068. msgid "need -x or -b"
  1069. msgstr ""
  1070. #: scripts/dpkg-source.pl:215
  1071. #, perl-format
  1072. msgid "source handling style -s%s not allowed with -b"
  1073. msgstr ""
  1074. #: scripts/dpkg-source.pl:217
  1075. msgid "-b needs a directory"
  1076. msgstr ""
  1077. #: scripts/dpkg-source.pl:218
  1078. msgid "-b takes at most a directory and an orig source argument"
  1079. msgstr ""
  1080. #: scripts/dpkg-source.pl:221
  1081. #, perl-format
  1082. msgid "cannot stat directory %s: %s"
  1083. msgstr ""
  1084. #: scripts/dpkg-source.pl:222
  1085. #, perl-format
  1086. msgid "directory argument %s is not a directory"
  1087. msgstr ""
  1088. #: scripts/dpkg-source.pl:273
  1089. #, perl-format
  1090. msgid "`%s' is not a legal architecture string"
  1091. msgstr ""
  1092. #: scripts/dpkg-source.pl:275
  1093. #, perl-format
  1094. msgid "architecture %s only allowed on its own (list for package %s is `%s')"
  1095. msgstr ""
  1096. #: scripts/dpkg-source.pl:323
  1097. msgid "unable to determine source package name !"
  1098. msgstr ""
  1099. #: scripts/dpkg-source.pl:343
  1100. #, perl-format
  1101. msgid "cannot stat orig argument %s: %s"
  1102. msgstr ""
  1103. #: scripts/dpkg-source.pl:349
  1104. #, perl-format
  1105. msgid ""
  1106. "orig argument is unpacked but source handling style -s%s calls for packed (."
  1107. "orig.tar.gz)"
  1108. msgstr ""
  1109. #: scripts/dpkg-source.pl:355
  1110. #, perl-format
  1111. msgid ""
  1112. "orig argument is packed but source handling style -s%s calls for unpacked (."
  1113. "orig/)"
  1114. msgstr ""
  1115. #: scripts/dpkg-source.pl:363
  1116. #, perl-format
  1117. msgid ""
  1118. "orig argument is empty (means no orig, no diff) but source handling style -s%"
  1119. "s wants something"
  1120. msgstr ""
  1121. #: scripts/dpkg-source.pl:370
  1122. #, perl-format
  1123. msgid "packed orig `%s' exists but is not a plain file"
  1124. msgstr ""
  1125. #: scripts/dpkg-source.pl:373
  1126. #, perl-format
  1127. msgid "unable to stat putative packed orig `%s'"
  1128. msgstr ""
  1129. #: scripts/dpkg-source.pl:375
  1130. #, perl-format
  1131. msgid "unpacked orig `%s' exists but is not a directory"
  1132. msgstr ""
  1133. #: scripts/dpkg-source.pl:378
  1134. #, perl-format
  1135. msgid "unable to stat putative unpacked orig `%s'"
  1136. msgstr ""
  1137. #: scripts/dpkg-source.pl:389
  1138. #, perl-format
  1139. msgid "source directory '%s' is not <sourcepackage>-<upstreamversion> '%s'"
  1140. msgstr ""
  1141. #: scripts/dpkg-source.pl:403
  1142. #, perl-format
  1143. msgid ".orig directory name %s is not <package>-<upstreamversion> (wanted %s)"
  1144. msgstr ""
  1145. #: scripts/dpkg-source.pl:410
  1146. #, perl-format
  1147. msgid ""
  1148. ".orig.tar.gz name %s is not <package>_<upstreamversion>.orig.tar.gz (wanted %"
  1149. "s)"
  1150. msgstr ""
  1151. #: scripts/dpkg-source.pl:421
  1152. #, perl-format
  1153. msgid ""
  1154. "tarfile `%s' already exists, not overwriting, giving up; use -sU or -sR to "
  1155. "override"
  1156. msgstr ""
  1157. #: scripts/dpkg-source.pl:424
  1158. #, perl-format
  1159. msgid "unable to check for existence of `%s'"
  1160. msgstr ""
  1161. #: scripts/dpkg-source.pl:427 scripts/dpkg-source.pl:492
  1162. #: scripts/dpkg-source.pl:644
  1163. #, perl-format
  1164. msgid "%s: building %s in %s"
  1165. msgstr ""
  1166. #: scripts/dpkg-source.pl:429
  1167. msgid "write building tar message"
  1168. msgstr ""
  1169. #: scripts/dpkg-source.pl:433
  1170. msgid "fork for tar"
  1171. msgstr ""
  1172. #: scripts/dpkg-source.pl:435
  1173. #, perl-format
  1174. msgid "chdir to above (orig) source %s"
  1175. msgstr ""
  1176. #: scripts/dpkg-source.pl:436
  1177. msgid "reopen gzip for tar"
  1178. msgstr ""
  1179. #: scripts/dpkg-source.pl:438
  1180. msgid "exec tar"
  1181. msgstr ""
  1182. #: scripts/dpkg-source.pl:442
  1183. msgid "wait for tar"
  1184. msgstr ""
  1185. #: scripts/dpkg-source.pl:445 scripts/dpkg-source.pl:607
  1186. #, perl-format
  1187. msgid "unable to rename `%s' (newly created) to `%s'"
  1188. msgstr ""
  1189. #: scripts/dpkg-source.pl:447 scripts/dpkg-source.pl:609
  1190. #, perl-format
  1191. msgid "unable to change permission of `%s'"
  1192. msgstr ""
  1193. #: scripts/dpkg-source.pl:451
  1194. #, perl-format
  1195. msgid "%s: building %s using existing %s"
  1196. msgstr ""
  1197. #: scripts/dpkg-source.pl:453
  1198. msgid "write using existing tar message"
  1199. msgstr ""
  1200. #: scripts/dpkg-source.pl:463
  1201. #, perl-format
  1202. msgid ""
  1203. "orig dir `%s' already exists, not overwriting, giving up; use -sA, -sK or -"
  1204. "sP to override"
  1205. msgstr ""
  1206. #: scripts/dpkg-source.pl:469
  1207. #, perl-format
  1208. msgid "unable to check for existence of orig dir `%s'"
  1209. msgstr ""
  1210. #: scripts/dpkg-source.pl:478 scripts/dpkg-source.pl:824
  1211. #, perl-format
  1212. msgid "unable to create `%s'"
  1213. msgstr ""
  1214. #: scripts/dpkg-source.pl:482 scripts/dpkg-source.pl:805
  1215. #: scripts/dpkg-source.pl:828
  1216. #, perl-format
  1217. msgid "unable to rename `%s' to `%s'"
  1218. msgstr ""
  1219. #: scripts/dpkg-source.pl:486 scripts/dpkg-source.pl:830
  1220. #, perl-format
  1221. msgid "unable to remove `%s'"
  1222. msgstr ""
  1223. #: scripts/dpkg-source.pl:494
  1224. msgid "write building diff message"
  1225. msgstr ""
  1226. #: scripts/dpkg-source.pl:499
  1227. msgid "fork for find"
  1228. msgstr ""
  1229. #: scripts/dpkg-source.pl:501
  1230. #, perl-format
  1231. msgid "chdir to %s for find"
  1232. msgstr ""
  1233. #: scripts/dpkg-source.pl:502
  1234. msgid "exec find"
  1235. msgstr ""
  1236. #: scripts/dpkg-source.pl:511
  1237. #, perl-format
  1238. msgid "cannot stat file %s"
  1239. msgstr ""
  1240. #: scripts/dpkg-source.pl:518
  1241. #, perl-format
  1242. msgid "cannot read link %s"
  1243. msgstr ""
  1244. #: scripts/dpkg-source.pl:520
  1245. #, perl-format
  1246. msgid "cannot read orig link %s"
  1247. msgstr ""
  1248. #: scripts/dpkg-source.pl:521 scripts/dpkg-source.pl:522
  1249. #, perl-format
  1250. msgid "symlink to %s"
  1251. msgstr ""
  1252. #: scripts/dpkg-source.pl:528 scripts/dpkg-source.pl:594
  1253. #, perl-format
  1254. msgid "cannot stat orig file %s"
  1255. msgstr ""
  1256. #: scripts/dpkg-source.pl:531
  1257. #, perl-format
  1258. msgid "newly created empty file '%s' will not be represented in diff"
  1259. msgstr ""
  1260. #: scripts/dpkg-source.pl:534
  1261. #, perl-format
  1262. msgid "executable mode %04o of '%s' will not be represented in diff"
  1263. msgstr ""
  1264. #: scripts/dpkg-source.pl:538
  1265. #, perl-format
  1266. msgid "special mode %04o of '%s' will not be represented in diff"
  1267. msgstr ""
  1268. #: scripts/dpkg-source.pl:544 scripts/dpkg-source.pl:1386
  1269. msgid "something else"
  1270. msgstr ""
  1271. #: scripts/dpkg-source.pl:545
  1272. msgid "plain file"
  1273. msgstr ""
  1274. #: scripts/dpkg-source.pl:548
  1275. msgid "fork for diff"
  1276. msgstr ""
  1277. #: scripts/dpkg-source.pl:556
  1278. msgid "exec diff"
  1279. msgstr ""
  1280. #: scripts/dpkg-source.pl:563
  1281. msgid "binary file contents changed"
  1282. msgstr ""
  1283. #: scripts/dpkg-source.pl:568
  1284. #, perl-format
  1285. msgid "file %s has no final newline (either original or modified version)"
  1286. msgstr ""
  1287. #: scripts/dpkg-source.pl:572
  1288. #, perl-format
  1289. msgid "unknown line from diff -u on %s: `%s'"
  1290. msgstr ""
  1291. #: scripts/dpkg-source.pl:574
  1292. msgid "failed to write to gzip"
  1293. msgstr ""
  1294. #: scripts/dpkg-source.pl:580
  1295. msgid "diff gave 1 but no diff lines found"
  1296. msgstr ""
  1297. #: scripts/dpkg-source.pl:583
  1298. #, perl-format
  1299. msgid "diff on %s"
  1300. msgstr ""
  1301. #: scripts/dpkg-source.pl:589
  1302. msgid "device or socket is not allowed"
  1303. msgstr ""
  1304. #: scripts/dpkg-source.pl:596
  1305. msgid "not a directory"
  1306. msgstr ""
  1307. #: scripts/dpkg-source.pl:597
  1308. msgid "directory"
  1309. msgstr ""
  1310. #: scripts/dpkg-source.pl:600
  1311. #, perl-format
  1312. msgid "unknown file type (%s)"
  1313. msgstr ""
  1314. #: scripts/dpkg-source.pl:604
  1315. msgid "finish write to gzip pipe"
  1316. msgstr ""
  1317. #: scripts/dpkg-source.pl:611
  1318. msgid "fork for 2nd find"
  1319. msgstr ""
  1320. #: scripts/dpkg-source.pl:613
  1321. #, perl-format
  1322. msgid "chdir to %s for 2nd find"
  1323. msgstr ""
  1324. #: scripts/dpkg-source.pl:614
  1325. msgid "exec 2nd find"
  1326. msgstr ""
  1327. #: scripts/dpkg-source.pl:622
  1328. #, perl-format
  1329. msgid "cannot check orig file %s"
  1330. msgstr ""
  1331. #: scripts/dpkg-source.pl:624
  1332. #, perl-format
  1333. msgid "ignoring deletion of file %s"
  1334. msgstr ""
  1335. #: scripts/dpkg-source.pl:626
  1336. #, perl-format
  1337. msgid "ignoring deletion of directory %s"
  1338. msgstr ""
  1339. #: scripts/dpkg-source.pl:628
  1340. #, perl-format
  1341. msgid "ignoring deletion of symlink %s"
  1342. msgstr ""
  1343. #: scripts/dpkg-source.pl:630
  1344. msgid "not a file, directory or link"
  1345. msgstr ""
  1346. #: scripts/dpkg-source.pl:631 scripts/dpkg-source.pl:1381
  1347. msgid "nonexistent"
  1348. msgstr ""
  1349. #: scripts/dpkg-source.pl:646
  1350. msgid "write building message"
  1351. msgstr ""
  1352. #: scripts/dpkg-source.pl:647
  1353. #, perl-format
  1354. msgid "create %s"
  1355. msgstr ""
  1356. #: scripts/dpkg-source.pl:653
  1357. #, perl-format
  1358. msgid "%s: unrepresentable changes to source"
  1359. msgstr ""
  1360. #: scripts/dpkg-source.pl:655
  1361. #, perl-format
  1362. msgid "write error msg: %s"
  1363. msgstr ""
  1364. #: scripts/dpkg-source.pl:664
  1365. #, perl-format
  1366. msgid "source handling style -s%s not allowed with -x"
  1367. msgstr ""
  1368. #: scripts/dpkg-source.pl:666
  1369. msgid "-x needs at least one argument, the .dsc"
  1370. msgstr ""
  1371. #: scripts/dpkg-source.pl:667
  1372. msgid "-x takes no more than two arguments"
  1373. msgstr ""
  1374. #: scripts/dpkg-source.pl:671
  1375. msgid "-x needs the .dsc file as first argument, not a directory"
  1376. msgstr ""
  1377. #: scripts/dpkg-source.pl:679
  1378. #, perl-format
  1379. msgid "unpack target exists: %s"
  1380. msgstr ""
  1381. #: scripts/dpkg-source.pl:703
  1382. #, perl-format
  1383. msgid "failed to verify signature on %s"
  1384. msgstr ""
  1385. #: scripts/dpkg-source.pl:707
  1386. #, perl-format
  1387. msgid "could not verify signature on %s since gpg isn't installed"
  1388. msgstr ""
  1389. #: scripts/dpkg-source.pl:710
  1390. #, perl-format
  1391. msgid "extracting unsigned source package (%s)"
  1392. msgstr ""
  1393. #: scripts/dpkg-source.pl:719
  1394. #, perl-format
  1395. msgid "missing critical source control field %s"
  1396. msgstr ""
  1397. #: scripts/dpkg-source.pl:725
  1398. #, perl-format
  1399. msgid "Unsupported format of .dsc file (%s)"
  1400. msgstr ""
  1401. #: scripts/dpkg-source.pl:757
  1402. #, perl-format
  1403. msgid "Files field contains invalid filename `%s'"
  1404. msgstr ""
  1405. #: scripts/dpkg-source.pl:762
  1406. #, perl-format
  1407. msgid "repeated file type - files `%s' and `%s'"
  1408. msgstr ""
  1409. #: scripts/dpkg-source.pl:775
  1410. #, perl-format
  1411. msgid "unrecognised file type - `%s'"
  1412. msgstr ""
  1413. #: scripts/dpkg-source.pl:779
  1414. msgid "no tarfile in Files field"
  1415. msgstr ""
  1416. #: scripts/dpkg-source.pl:782
  1417. msgid "multiple tarfiles in native package"
  1418. msgstr ""
  1419. #: scripts/dpkg-source.pl:783
  1420. msgid "native package with .orig.tar"
  1421. msgstr ""
  1422. #: scripts/dpkg-source.pl:786
  1423. msgid "no upstream tarfile in Files field"
  1424. msgstr ""
  1425. #: scripts/dpkg-source.pl:788
  1426. #, perl-format
  1427. msgid "multiple upstream tarballs in %s format dsc"
  1428. msgstr ""
  1429. #: scripts/dpkg-source.pl:789
  1430. #, perl-format
  1431. msgid "debian.tar in %s format dsc"
  1432. msgstr ""
  1433. #: scripts/dpkg-source.pl:798
  1434. #, perl-format
  1435. msgid "%s: extracting %s in %s"
  1436. msgstr ""
  1437. #: scripts/dpkg-source.pl:800
  1438. msgid "write extracting message"
  1439. msgstr ""
  1440. #: scripts/dpkg-source.pl:825
  1441. #, perl-format
  1442. msgid "%s: unpacking %s"
  1443. msgstr ""
  1444. #: scripts/dpkg-source.pl:838
  1445. #, perl-format
  1446. msgid "failed to stat `%s' to see if need to copy"
  1447. msgstr ""
  1448. #: scripts/dpkg-source.pl:849
  1449. #, perl-format
  1450. msgid "failed to check destination `%s' to see if need to copy"
  1451. msgstr ""
  1452. #: scripts/dpkg-source.pl:862
  1453. msgid "unable to keep orig directory (already exists)"
  1454. msgstr ""
  1455. #: scripts/dpkg-source.pl:896 scripts/dpkg-source.pl:952
  1456. #, perl-format
  1457. msgid "cannot stat %s"
  1458. msgstr ""
  1459. #: scripts/dpkg-source.pl:898
  1460. #, perl-format
  1461. msgid "failed to create %s subdirectory"
  1462. msgstr ""
  1463. #: scripts/dpkg-source.pl:901
  1464. #, perl-format
  1465. msgid "diff patches file in directory `%s', but %s isn't a directory !"
  1466. msgstr ""
  1467. #: scripts/dpkg-source.pl:910
  1468. #, perl-format
  1469. msgid "failed to rename newly-extracted %s to %s"
  1470. msgstr ""
  1471. #: scripts/dpkg-source.pl:915
  1472. #, perl-format
  1473. msgid "failed to rename saved %s to %s"
  1474. msgstr ""
  1475. #: scripts/dpkg-source.pl:919
  1476. #, perl-format
  1477. msgid "%s: applying %s"
  1478. msgstr ""
  1479. #: scripts/dpkg-source.pl:924 scripts/dpkg-source.pl:1227
  1480. #, perl-format
  1481. msgid "can't open diff `%s'"
  1482. msgstr ""
  1483. #: scripts/dpkg-source.pl:927
  1484. msgid "fork for patch"
  1485. msgstr ""
  1486. #: scripts/dpkg-source.pl:929
  1487. msgid "reopen gzip for patch"
  1488. msgstr ""
  1489. #: scripts/dpkg-source.pl:930
  1490. #, perl-format
  1491. msgid "chdir to %s for patch"
  1492. msgstr ""
  1493. #: scripts/dpkg-source.pl:934
  1494. msgid "exec patch"
  1495. msgstr ""
  1496. #: scripts/dpkg-source.pl:937
  1497. msgid "wait for patch"
  1498. msgstr ""
  1499. #: scripts/dpkg-source.pl:946
  1500. #, perl-format
  1501. msgid "cannot change timestamp for %s"
  1502. msgstr ""
  1503. #: scripts/dpkg-source.pl:948
  1504. #, perl-format
  1505. msgid "remove patch backup file %s"
  1506. msgstr ""
  1507. #: scripts/dpkg-source.pl:953
  1508. #, perl-format
  1509. msgid "%s does not exist"
  1510. msgstr ""
  1511. #: scripts/dpkg-source.pl:956
  1512. #, perl-format
  1513. msgid "cannot make %s executable"
  1514. msgstr ""
  1515. #: scripts/dpkg-source.pl:958
  1516. #, perl-format
  1517. msgid "%s is not a plain file"
  1518. msgstr ""
  1519. #: scripts/dpkg-source.pl:962
  1520. msgid "cannot stat `.'"
  1521. msgstr ""
  1522. #: scripts/dpkg-source.pl:969
  1523. #, perl-format
  1524. msgid "cannot stat extracted object `%s'"
  1525. msgstr ""
  1526. #: scripts/dpkg-source.pl:980
  1527. #, perl-format
  1528. msgid "unknown object `%s' after extract (mode 0%o)"
  1529. msgstr ""
  1530. #: scripts/dpkg-source.pl:984
  1531. #, perl-format
  1532. msgid "cannot change mode of `%s' to 0%o from 0%o"
  1533. msgstr ""
  1534. #: scripts/dpkg-source.pl:995
  1535. #, perl-format
  1536. msgid "cannot read %s"
  1537. msgstr ""
  1538. #: scripts/dpkg-source.pl:996
  1539. #, perl-format
  1540. msgid "cannot fstat %s"
  1541. msgstr ""
  1542. #: scripts/dpkg-source.pl:997
  1543. #, perl-format
  1544. msgid "file %s has size %s instead of expected %s"
  1545. msgstr ""
  1546. #: scripts/dpkg-source.pl:1000
  1547. #, perl-format
  1548. msgid "file %s has md5sum %s instead of expected %s"
  1549. msgstr ""
  1550. #: scripts/dpkg-source.pl:1001
  1551. msgid "reopen stdin from /dev/null"
  1552. msgstr ""
  1553. #: scripts/dpkg-source.pl:1008
  1554. #, perl-format
  1555. msgid "cannot stat directory %s (before removal)"
  1556. msgstr ""
  1557. #: scripts/dpkg-source.pl:1014
  1558. #, perl-format
  1559. msgid "unable to check for removal of dir `%s'"
  1560. msgstr ""
  1561. #: scripts/dpkg-source.pl:1016
  1562. #, perl-format
  1563. msgid "rm -rf failed to remove `%s'"
  1564. msgstr ""
  1565. #: scripts/dpkg-source.pl:1028
  1566. msgid "fork for cpio"
  1567. msgstr ""
  1568. #: scripts/dpkg-source.pl:1032
  1569. msgid "reopen gzip for cpio"
  1570. msgstr ""
  1571. #: scripts/dpkg-source.pl:1034
  1572. msgid "exec cpio"
  1573. msgstr ""
  1574. #: scripts/dpkg-source.pl:1048
  1575. #, perl-format
  1576. msgid "tarfile `%s' contains object with newline in its name (%s)"
  1577. msgstr ""
  1578. #: scripts/dpkg-source.pl:1056
  1579. #, perl-format
  1580. msgid ""
  1581. "first output from cpio -0t (from `%s') contains newline - you probably have "
  1582. "an out of date version of cpio. GNU cpio 2.4.2-2 is known to work"
  1583. msgstr ""
  1584. #: scripts/dpkg-source.pl:1064
  1585. #, perl-format
  1586. msgid ""
  1587. "tarfile `%s' does not extract into a directory off the current directory (%s "
  1588. "from %s)"
  1589. msgstr ""
  1590. #: scripts/dpkg-source.pl:1073
  1591. #, perl-format
  1592. msgid "tarfile `%s' contains object (%s) not in expected directory (%s)"
  1593. msgstr ""
  1594. #: scripts/dpkg-source.pl:1080
  1595. #, perl-format
  1596. msgid "tarfile `%s' contains object with /../ in its name (%s)"
  1597. msgstr ""
  1598. #: scripts/dpkg-source.pl:1108
  1599. msgid "fork for tar -t"
  1600. msgstr ""
  1601. #: scripts/dpkg-source.pl:1112
  1602. msgid "reopen gzip for tar -t"
  1603. msgstr ""
  1604. #: scripts/dpkg-source.pl:1113
  1605. msgid "exec tar -vvtf -"
  1606. msgstr ""
  1607. #: scripts/dpkg-source.pl:1123
  1608. #, perl-format
  1609. msgid "tarfile `%s' contains unknown object listed by tar as `%s'"
  1610. msgstr ""
  1611. #: scripts/dpkg-source.pl:1130
  1612. #, perl-format
  1613. msgid "tarfile `%s' contains object `%s' with unknown or forbidden type `%s'"
  1614. msgstr ""
  1615. #: scripts/dpkg-source.pl:1140
  1616. #, perl-format
  1617. msgid "tarfile `%s' contains incomplete entry `%s'"
  1618. msgstr ""
  1619. #: scripts/dpkg-source.pl:1163
  1620. #, perl-format
  1621. msgid "filename '%s' was truncated by cpio; unable to check full pathname"
  1622. msgstr ""
  1623. #: scripts/dpkg-source.pl:1170
  1624. #, perl-format
  1625. msgid ""
  1626. "tarfile `%s' contains unexpected object listed by tar as `%s'; expected `%s'"
  1627. msgstr ""
  1628. #: scripts/dpkg-source.pl:1179
  1629. #, perl-format
  1630. msgid "tarfile `%s' contains object with/../ in its name (%s)"
  1631. msgstr ""
  1632. #: scripts/dpkg-source.pl:1184
  1633. #, perl-format
  1634. msgid "tarfile `%s' contains file with name ending in .dpkg-orig"
  1635. msgstr ""
  1636. #: scripts/dpkg-source.pl:1188
  1637. #, perl-format
  1638. msgid "tarfile `%s' contains setuid, setgid or sticky object `%s'"
  1639. msgstr ""
  1640. #: scripts/dpkg-source.pl:1193
  1641. #, perl-format
  1642. msgid "tarfile `%s' contains object `debian' that isn't a directory"
  1643. msgstr ""
  1644. #: scripts/dpkg-source.pl:1202
  1645. #, perl-format
  1646. msgid ""
  1647. "tarfile `%s' contains object `%s' but its containing directory `%s' does not "
  1648. "precede it"
  1649. msgstr ""
  1650. #: scripts/dpkg-source.pl:1239 scripts/dpkg-source.pl:1278
  1651. #: scripts/dpkg-source.pl:1287
  1652. #, perl-format
  1653. msgid "diff `%s' is missing trailing newline"
  1654. msgstr ""
  1655. #: scripts/dpkg-source.pl:1240
  1656. #, perl-format
  1657. msgid "expected ^--- in line %d of diff `%s'"
  1658. msgstr ""
  1659. #: scripts/dpkg-source.pl:1243
  1660. #, perl-format
  1661. msgid "diff `%s' patches file with no subdirectory"
  1662. msgstr ""
  1663. #: scripts/dpkg-source.pl:1245
  1664. #, perl-format
  1665. msgid "diff `%s' patches file with name ending .dpkg-orig"
  1666. msgstr ""
  1667. #: scripts/dpkg-source.pl:1249
  1668. #, perl-format
  1669. msgid "diff `%s' finishes in middle of ---/+++ (line %d)"
  1670. msgstr ""
  1671. #: scripts/dpkg-source.pl:1253 scripts/dpkg-source.pl:1259
  1672. #, perl-format
  1673. msgid "line after --- isn't as expected in diff `%s' (line %d)"
  1674. msgstr ""
  1675. #: scripts/dpkg-source.pl:1267
  1676. #, perl-format
  1677. msgid "diff `%s' patches something which is not a plain file"
  1678. msgstr ""
  1679. #: scripts/dpkg-source.pl:1271
  1680. #, perl-format
  1681. msgid "diff patches file %s twice"
  1682. msgstr ""
  1683. #: scripts/dpkg-source.pl:1281
  1684. #, perl-format
  1685. msgid "Expected ^@@ in line %d of diff `%s'"
  1686. msgstr ""
  1687. #: scripts/dpkg-source.pl:1286
  1688. #, perl-format
  1689. msgid "unexpected end of diff `%s'"
  1690. msgstr ""
  1691. #: scripts/dpkg-source.pl:1292
  1692. #, perl-format
  1693. msgid "expected [ +-] at start of line %d of diff `%s'"
  1694. msgstr ""
  1695. #: scripts/dpkg-source.pl:1295
  1696. #, perl-format
  1697. msgid "expected ^@@ at line %d of diff `%s'"
  1698. msgstr ""
  1699. #: scripts/dpkg-source.pl:1306
  1700. msgid "fork for tar -xkf -"
  1701. msgstr ""
  1702. #: scripts/dpkg-source.pl:1308
  1703. msgid "reopen gzip for tar -xkf -"
  1704. msgstr ""
  1705. #: scripts/dpkg-source.pl:1310
  1706. #, perl-format
  1707. msgid "cannot chdir to `%s' for tar extract"
  1708. msgstr ""
  1709. #: scripts/dpkg-source.pl:1312
  1710. msgid "exec tar -xkf -"
  1711. msgstr ""
  1712. #: scripts/dpkg-source.pl:1315
  1713. msgid "wait for tar -xkf -"
  1714. msgstr ""
  1715. #: scripts/dpkg-source.pl:1347
  1716. #, perl-format
  1717. msgid "Unable to open dir %s"
  1718. msgstr ""
  1719. #: scripts/dpkg-source.pl:1349
  1720. #, perl-format
  1721. msgid "Unable to close dir %s"
  1722. msgstr ""
  1723. #: scripts/dpkg-source.pl:1352 scripts/dpkg-source.pl:1361
  1724. #: scripts/dpkg-source.pl:1366
  1725. #, perl-format
  1726. msgid "Unable to rename %s to %s"
  1727. msgstr ""
  1728. #: scripts/dpkg-source.pl:1357
  1729. #, perl-format
  1730. msgid "Unable to mkdir %s"
  1731. msgstr ""
  1732. #: scripts/dpkg-source.pl:1374
  1733. msgid "reopen stderr for tar to grep out blocks message"
  1734. msgstr ""
  1735. #: scripts/dpkg-source.pl:1384
  1736. #, perl-format
  1737. msgid "checktype %s (%s)"
  1738. msgstr ""
  1739. #: scripts/dpkg-source.pl:1392
  1740. msgid "only one of -x or -b allowed, and only once"
  1741. msgstr ""
  1742. #: scripts/dpkg-source.pl:1397
  1743. #, perl-format
  1744. msgid "%s: cannot represent change to %s: %s"
  1745. msgstr ""
  1746. #: scripts/dpkg-source.pl:1399 scripts/dpkg-source.pl:1408
  1747. msgid "write syserr unrep"
  1748. msgstr ""
  1749. #: scripts/dpkg-source.pl:1404
  1750. #, perl-format
  1751. msgid ""
  1752. "%s: cannot represent change to %s:\n"
  1753. "%s: new version is %s\n"
  1754. "%s: old version is %s\n"
  1755. msgstr ""
  1756. #: scripts/dpkg-source.pl:1417
  1757. #, perl-format
  1758. msgid "create file %s"
  1759. msgstr ""
  1760. #: scripts/dpkg-source.pl:1418
  1761. msgid "pipe for gzip"
  1762. msgstr ""
  1763. #: scripts/dpkg-source.pl:1419
  1764. msgid "fork for gzip"
  1765. msgstr ""
  1766. #: scripts/dpkg-source.pl:1421
  1767. msgid "reopen gzip pipe"
  1768. msgstr ""
  1769. #: scripts/dpkg-source.pl:1422
  1770. msgid "reopen tar.gz"
  1771. msgstr ""
  1772. #: scripts/dpkg-source.pl:1423
  1773. msgid "exec gzip"
  1774. msgstr ""
  1775. #: scripts/dpkg-source.pl:1440
  1776. #, perl-format
  1777. msgid "unknown compression type on file %s"
  1778. msgstr ""
  1779. #: scripts/dpkg-source.pl:1443
  1780. #, perl-format
  1781. msgid "read file %s"
  1782. msgstr ""
  1783. #: scripts/dpkg-source.pl:1444
  1784. #, perl-format
  1785. msgid "pipe for %s"
  1786. msgstr ""
  1787. #: scripts/dpkg-source.pl:1445
  1788. #, perl-format
  1789. msgid "fork for %s"
  1790. msgstr ""
  1791. #: scripts/dpkg-source.pl:1447
  1792. #, perl-format
  1793. msgid "reopen %s pipe"
  1794. msgstr ""
  1795. #: scripts/dpkg-source.pl:1448
  1796. msgid "reopen input file"
  1797. msgstr ""
  1798. #: scripts/dpkg-source.pl:1449
  1799. #, perl-format
  1800. msgid "exec %s"
  1801. msgstr ""
  1802. #: scripts/dpkg-source.pl:1456
  1803. msgid "wait for gzip"
  1804. msgstr ""
  1805. #: scripts/dpkg-source.pl:1466
  1806. #, perl-format
  1807. msgid "tried to add file `%s' twice"
  1808. msgstr ""
  1809. #: scripts/dpkg-source.pl:1467
  1810. #, perl-format
  1811. msgid "could not stat output file `%s'"
  1812. msgstr ""
  1813. #: scripts/dpkg-source.pl:1488
  1814. #, perl-format
  1815. msgid "bogus character `\\%s' in `%s'"
  1816. msgstr ""
  1817. #: scripts/changelog/debian.pl:47
  1818. #, perl-format
  1819. msgid ""
  1820. "Usage: %s [<option>]\n"
  1821. "\n"
  1822. "Options:\n"
  1823. " -l<changelog> use <changelog> as the file name when reporting.\n"
  1824. " -v<versionsince> print changes since <versionsince>.\n"
  1825. " -h, --help print this help message.\n"
  1826. " --version print program version.\n"
  1827. msgstr ""
  1828. #: scripts/changelog/debian.pl:87
  1829. msgid "-v<since> option specifies most recent version"
  1830. msgstr ""
  1831. #: scripts/changelog/debian.pl:94
  1832. #, perl-format
  1833. msgid "found start of entry where expected %s"
  1834. msgstr ""
  1835. #: scripts/changelog/debian.pl:101
  1836. #, perl-format
  1837. msgid "bad key-value after `;': `%s'"
  1838. msgstr ""
  1839. #: scripts/changelog/debian.pl:104
  1840. #, perl-format
  1841. msgid "repeated key-value %s"
  1842. msgstr ""
  1843. #: scripts/changelog/debian.pl:107
  1844. msgid "badly formatted urgency value"
  1845. msgstr ""
  1846. #: scripts/changelog/debian.pl:117
  1847. #, perl-format
  1848. msgid "unknown urgency value %s - comparing very low"
  1849. msgstr ""
  1850. #: scripts/changelog/debian.pl:120
  1851. #, perl-format
  1852. msgid "urgency >%s<"
  1853. msgstr ""
  1854. #: scripts/changelog/debian.pl:138
  1855. #, perl-format
  1856. msgid "unknown key-value key %s - copying to %s"
  1857. msgstr ""
  1858. #: scripts/changelog/debian.pl:145
  1859. msgid "badly formatted heading line"
  1860. msgstr ""
  1861. #: scripts/changelog/debian.pl:148
  1862. #, perl-format
  1863. msgid "found trailer where expected %s"
  1864. msgstr ""
  1865. #: scripts/changelog/debian.pl:155
  1866. msgid "badly formatted trailer line"
  1867. msgstr ""
  1868. #: scripts/changelog/debian.pl:158
  1869. #, perl-format
  1870. msgid "found change data where expected %s"
  1871. msgstr ""
  1872. #: scripts/changelog/debian.pl:164
  1873. #, perl-format
  1874. msgid "found blank line where expected %s"
  1875. msgstr ""
  1876. #: scripts/changelog/debian.pl:167
  1877. msgid "unrecognised line"
  1878. msgstr ""
  1879. #: scripts/changelog/debian.pl:171
  1880. #, perl-format
  1881. msgid "found eof where expected %s"
  1882. msgstr ""
  1883. #: scripts/changelog/debian.pl:188 scripts/changelog/debian.pl:193
  1884. #, perl-format
  1885. msgid "%s, at file %s line %d"
  1886. msgstr ""