| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325 |
- # SOME DESCRIPTIVE TITLE.
- # Copyright (C) YEAR Software in the Public Interest, Inc.
- # This file is distributed under the same license as the PACKAGE package.
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
- #
- #, fuzzy
- msgid ""
- msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
- "Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
- "POT-Creation-Date: 2007-07-01 15:54+0200\n"
- "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
- "Language-Team: LANGUAGE <LL@li.org>\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=CHARSET\n"
- "Content-Transfer-Encoding: 8bit\n"
- "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
- #: scripts/822-date.pl:13
- msgid "Usage: 822-date"
- msgstr ""
- #: scripts/822-date.pl:15
- msgid "This program is deprecated. Please use 'date -R' instead."
- msgstr ""
- #: scripts/controllib.pl:72 scripts/controllib.pl:77
- #, perl-format
- msgid "unable to get login information for username \"%s\""
- msgstr ""
- #: scripts/controllib.pl:80
- #, perl-format
- msgid ""
- "no utmp entry available and LOGNAME not defined; using uid of process (%d)"
- msgstr ""
- #: scripts/controllib.pl:83
- #, perl-format
- msgid "unable to get login information for uid %d"
- msgstr ""
- #: scripts/controllib.pl:139
- msgid "unable to open cputable"
- msgstr ""
- #: scripts/controllib.pl:155
- msgid "unable to open ostable"
- msgstr ""
- #: scripts/controllib.pl:173
- msgid "unable to open triplettable"
- msgstr ""
- #: scripts/controllib.pl:337
- #, perl-format
- msgid "too many substitutions - recursive ? - in `%s'"
- msgstr ""
- #: scripts/controllib.pl:343
- #, perl-format
- msgid "unknown substitution variable ${%s}"
- msgstr ""
- #: scripts/controllib.pl:388
- #, perl-format
- msgid "field %s has newline then non whitespace >%s<"
- msgstr ""
- #: scripts/controllib.pl:389
- #, perl-format
- msgid "field %s has blank lines >%s<"
- msgstr ""
- #: scripts/controllib.pl:390
- #, perl-format
- msgid "field %s has trailing newline >%s<"
- msgstr ""
- #: scripts/controllib.pl:397
- msgid "write error on control data"
- msgstr ""
- #: scripts/controllib.pl:400
- msgid "write error on close control data"
- msgstr ""
- #: scripts/controllib.pl:408
- #, perl-format
- msgid "cannot read control file %s: %s"
- msgstr ""
- #: scripts/controllib.pl:411
- #, perl-format
- msgid "control file %s"
- msgstr ""
- #: scripts/controllib.pl:412
- msgid "control file must have at least one binary package part"
- msgstr ""
- #: scripts/controllib.pl:416
- #, perl-format
- msgid "per-package paragraph %d in control info file is missing Package line"
- msgstr ""
- #: scripts/controllib.pl:421
- msgid "source paragraph in control info file is missing Source line"
- msgstr ""
- #: scripts/controllib.pl:438
- #, perl-format
- msgid "bad line in substvars file %s at line %d"
- msgstr ""
- #: scripts/controllib.pl:444
- #, perl-format
- msgid "unable to open substvars file %s: %s"
- msgstr ""
- #: scripts/controllib.pl:496
- #, perl-format
- msgid "can't parse dependency %s"
- msgstr ""
- #: scripts/controllib.pl:523
- msgid "fork for parse changelog"
- msgstr ""
- #: scripts/controllib.pl:526 scripts/dpkg-genchanges.pl:274
- #: scripts/dpkg-gencontrol.pl:207 scripts/dpkg-source.pl:303
- msgid "parsed version of changelog"
- msgstr ""
- #: scripts/controllib.pl:528
- msgid "parse changelog"
- msgstr ""
- #: scripts/controllib.pl:569
- #, perl-format
- msgid "source package name `%s' contains illegal character `%s'"
- msgstr ""
- #: scripts/controllib.pl:571
- #, perl-format
- msgid "source package name `%s' starts with non-alphanum"
- msgstr ""
- #: scripts/controllib.pl:577
- #, perl-format
- msgid "version number contains illegal character `%s'"
- msgstr ""
- #: scripts/controllib.pl:586
- #, perl-format
- msgid "source package has two conflicting values - %s and %s"
- msgstr ""
- #: scripts/controllib.pl:595
- #, perl-format
- msgid "md5sum gave bogus output `%s'"
- msgstr ""
- #: scripts/controllib.pl:627
- msgid "continued value line not in field"
- msgstr ""
- #: scripts/controllib.pl:630
- msgid "expected blank line before PGP signature"
- msgstr ""
- #: scripts/controllib.pl:642
- msgid "expected PGP signature, found EOF after blank line"
- msgstr ""
- #: scripts/controllib.pl:645
- #, perl-format
- msgid "expected PGP signature, found something else `%s'"
- msgstr ""
- #: scripts/controllib.pl:650
- msgid "found several `paragraphs' where only one expected"
- msgstr ""
- #: scripts/controllib.pl:654
- msgid "line with unknown format (not field-colon-value)"
- msgstr ""
- #: scripts/controllib.pl:657
- msgid "found start of PGP body but no signature"
- msgstr ""
- #: scripts/controllib.pl:659
- msgid "empty file"
- msgstr ""
- #: scripts/controllib.pl:665
- #, perl-format
- msgid "unknown information field '%s' in input data in %s"
- msgstr ""
- #: scripts/controllib.pl:670
- #, perl-format
- msgid "syntax error in %s at line %d: %s"
- msgstr ""
- #: scripts/controllib.pl:673
- #, perl-format
- msgid "%s: failure: %s"
- msgstr ""
- #: scripts/controllib.pl:674
- #, perl-format
- msgid "%s: failure: %s: %s"
- msgstr ""
- #: scripts/controllib.pl:675
- #, perl-format
- msgid "%s: error: %s"
- msgstr ""
- #: scripts/controllib.pl:676
- #, perl-format
- msgid "%s: internal error: %s"
- msgstr ""
- #: scripts/controllib.pl:681
- #, perl-format
- msgid "%s: warning: %s"
- msgstr ""
- #: scripts/controllib.pl:705
- #, perl-format
- msgid "%s: failure: %s gave error exit status %s"
- msgstr ""
- #: scripts/controllib.pl:708
- #, perl-format
- msgid "%s: failure: %s died from signal %s"
- msgstr ""
- #: scripts/controllib.pl:711
- #, perl-format
- msgid "%s: failure: %s failed with unknown exit code %d"
- msgstr ""
- #: scripts/dpkg-architecture.pl:37 scripts/dpkg-distaddfile.pl:23
- #: scripts/dpkg-genchanges.pl:72 scripts/dpkg-gencontrol.pl:50
- #: scripts/dpkg-parsechangelog.pl:29 scripts/dpkg-scanpackages.pl:51
- #: scripts/dpkg-scansources.pl:98 scripts/dpkg-shlibdeps.pl:41
- #: scripts/dpkg-source.pl:98 scripts/changelog/debian.pl:35
- #, perl-format
- msgid "Debian %s version %s.\n"
- msgstr ""
- #: scripts/dpkg-architecture.pl:39
- msgid ""
- "\n"
- "Copyright (C) 1999-2001 Marcus Brinkmann <brinkmd@debian.org>.\n"
- "Copyright (C) 2004-2005 Scott James Remnant <scott@netsplit.com>."
- msgstr ""
- #: scripts/dpkg-architecture.pl:43 scripts/dpkg-distaddfile.pl:28
- #: scripts/dpkg-genchanges.pl:78 scripts/dpkg-gencontrol.pl:56
- #: scripts/dpkg-parsechangelog.pl:35 scripts/dpkg-shlibdeps.pl:48
- #: scripts/dpkg-source.pl:103 scripts/changelog/debian.pl:39
- msgid ""
- "\n"
- "This is free software; see the GNU General Public Licence version 2 or\n"
- "later for copying conditions. There is NO warranty.\n"
- msgstr ""
- #: scripts/dpkg-architecture.pl:51
- #, perl-format
- msgid ""
- "Usage: %s [<option> ...] [<action>]\n"
- "\n"
- "Options:\n"
- " -a<debian-arch> set current Debian architecture.\n"
- " -t<gnu-system> set current GNU system type.\n"
- " -L list valid architectures.\n"
- " -f force flag (override variables set in environment).\n"
- "\n"
- "Actions:\n"
- " -l list variables (default).\n"
- " -e<debian-arch> compare with current Debian architecture.\n"
- " -i<arch-alias> check if current Debian architecture is <arch-alias>.\n"
- " -q<variable> prints only the value of <variable>.\n"
- " -s print command to set environment variables.\n"
- " -u print command to unset environment variables.\n"
- " -c <command> set environment and run the command in it.\n"
- " --help show this help message.\n"
- " --version show the version.\n"
- msgstr ""
- #: scripts/dpkg-architecture.pl:89
- msgid ""
- "Couldn't determine gcc system type, falling back to default (native "
- "compilation)"
- msgstr ""
- #: scripts/dpkg-architecture.pl:102
- #, perl-format
- msgid ""
- "Unknown gcc system type %s, falling back to default (native compilation)"
- msgstr ""
- #: scripts/dpkg-architecture.pl:156 scripts/dpkg-distaddfile.pl:56
- #: scripts/dpkg-genchanges.pl:163 scripts/dpkg-gencontrol.pl:124
- #: scripts/dpkg-shlibdeps.pl:106 scripts/dpkg-source.pl:203
- #: scripts/changelog/debian.pl:68
- #, perl-format
- msgid "unknown option `%s'"
- msgstr ""
- #: scripts/dpkg-architecture.pl:162
- #, perl-format
- msgid "unknown Debian architecture %s, you must specify GNU system type, too"
- msgstr ""
- #: scripts/dpkg-architecture.pl:167
- #, perl-format
- msgid "unknown GNU system type %s, you must specify Debian architecture, too"
- msgstr ""
- #: scripts/dpkg-architecture.pl:172
- #, perl-format
- msgid "unknown default GNU system type for Debian architecture %s"
- msgstr ""
- #: scripts/dpkg-architecture.pl:175
- #, perl-format
- msgid ""
- "Default GNU system type %s for Debian arch %s does not match specified GNU "
- "system type %s"
- msgstr ""
- #: scripts/dpkg-architecture.pl:183
- #, perl-format
- msgid "Specified GNU system type %s does not match gcc system type %s."
- msgstr ""
- #: scripts/dpkg-architecture.pl:247
- #, perl-format
- msgid "%s is not a supported variable name"
- msgstr ""
- #: scripts/dpkg-checkbuilddeps.pl:24
- #, perl-format
- msgid ""
- "Usage: %s [<option> ...] [<control-file>]\n"
- "\n"
- "Options:\n"
- " control-file control file to process (default: debian/control).\n"
- " -B binary-only, ignore -Indep.\n"
- " --admindir=<directory>\n"
- " change the administrative directory.\n"
- " -h show this help message.\n"
- msgstr ""
- #: scripts/dpkg-checkbuilddeps.pl:78
- #, perl-format
- msgid "%s: Unmet build dependencies: "
- msgstr ""
- #: scripts/dpkg-checkbuilddeps.pl:82
- #, perl-format
- msgid "%s: Build conflicts: "
- msgstr ""
- #: scripts/dpkg-checkbuilddeps.pl:155 scripts/dpkg-gencontrol.pl:228
- #: scripts/dpkg-source.pl:249
- #, perl-format
- msgid "error occurred while parsing %s"
- msgstr ""
- #: scripts/dpkg-distaddfile.pl:25 scripts/changelog/debian.pl:37
- msgid ""
- "\n"
- "Copyright (C) 1996 Ian Jackson."
- msgstr ""
- #: scripts/dpkg-distaddfile.pl:36
- #, perl-format
- msgid ""
- "Usage: %s [<option>...] <filename> <section> <priority>\n"
- "\n"
- "Options:\n"
- " -f<fileslistfile> write files here instead of debian/files.\n"
- " -h, --help show this help message.\n"
- " --version show the version.\n"
- msgstr ""
- #: scripts/dpkg-distaddfile.pl:60
- msgid "need exactly a filename, section and priority"
- msgstr ""
- #: scripts/dpkg-distaddfile.pl:64
- msgid "filename, section and priority may contain no whitespace"
- msgstr ""
- #: scripts/dpkg-distaddfile.pl:67 scripts/dpkg-gencontrol.pl:292
- msgid "open new files list file"
- msgstr ""
- #: scripts/dpkg-distaddfile.pl:69 scripts/dpkg-gencontrol.pl:295
- msgid "chown new files list file"
- msgstr ""
- #: scripts/dpkg-distaddfile.pl:74 scripts/dpkg-gencontrol.pl:304
- msgid "copy old entry to new files list file"
- msgstr ""
- #: scripts/dpkg-distaddfile.pl:77 scripts/dpkg-gencontrol.pl:308
- msgid "read old files list file"
- msgstr ""
- #: scripts/dpkg-distaddfile.pl:80 scripts/dpkg-gencontrol.pl:316
- msgid "write new entry to new files list file"
- msgstr ""
- #: scripts/dpkg-distaddfile.pl:81 scripts/dpkg-gencontrol.pl:317
- msgid "close new files list file"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:74
- msgid ""
- "\n"
- "Copyright (C) 1996 Ian Jackson.\n"
- "Copyright (C) 2000,2001 Wichert Akkerman."
- msgstr ""
- #: scripts/dpkg-genchanges.pl:86
- #, perl-format
- msgid ""
- "Usage: %s [<option> ...]\n"
- "\n"
- "Options:\n"
- " -b binary-only build - no source files.\n"
- " -B arch-specific - no source or arch-indep files.\n"
- " -S source-only upload.\n"
- " -c<controlfile> get control info from this file.\n"
- " -l<changelogfile> get per-version info from this file.\n"
- " -f<fileslistfile> get .deb files list from this file.\n"
- " -v<sinceversion> include all changes later than version.\n"
- " -C<changesdescription> use change description from this file.\n"
- " -m<maintainer> override control's maintainer value.\n"
- " -e<maintainer> override changelog's maintainer value.\n"
- " -u<uploadfilesdir> directory with files (default is `..').\n"
- " -si (default) src includes orig for debian-revision 0 or 1.\n"
- " -sa source includes orig src.\n"
- " -sd source is diff and .dsc only.\n"
- " -q quiet - no informational messages on stderr.\n"
- " -F<changelogformat> force change log format.\n"
- " -V<name>=<value> set a substitution variable.\n"
- " -T<varlistfile> read variables here, not debian/substvars.\n"
- " -D<field>=<value> override or add a field and value.\n"
- " -U<field> remove a field.\n"
- " -h, --help show this help message.\n"
- " --version show the version.\n"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:118 scripts/dpkg-genchanges.pl:121
- #: scripts/dpkg-genchanges.pl:126
- msgid "cannot combine -b or -B and -S"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:124
- #, perl-format
- msgid "%s: arch-specific upload - not including arch-independent packages"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:172
- msgid "cannot read files list file"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:176
- #, perl-format
- msgid "duplicate files list entry for package %s (line %d)"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:182 scripts/dpkg-genchanges.pl:194
- #, perl-format
- msgid "duplicate files list entry for file %s (line %d)"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:199
- #, perl-format
- msgid "badly formed line in files list file, line %d"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:216 scripts/dpkg-gencontrol.pl:161
- #: scripts/dpkg-source.pl:254
- msgid "general section of control info file"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:226
- #, perl-format
- msgid "package %s in control file but not in files list"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:261 scripts/dpkg-gencontrol.pl:192
- #: scripts/dpkg-source.pl:290
- msgid "package's section of control info file"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:278 scripts/dpkg-gencontrol.pl:211
- #: scripts/dpkg-source.pl:307
- #, perl-format
- msgid "value from nowhere, with key >%s< and value >%s<"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:285
- msgid "read changesdescription"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:296
- #, perl-format
- msgid "package %s listed in files list but not in control info"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:306
- #, perl-format
- msgid "missing Section for binary package %s; using '-'"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:308
- #, perl-format
- msgid "package %s has section %s in control file but %s in files list"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:315
- #, perl-format
- msgid "missing Priority for binary package %s; using '-'"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:317
- #, perl-format
- msgid "package %s has priority %s in control file but %s in files list"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:331
- msgid "missing Section for source files"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:336
- msgid "missing Priority for source files"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:341 scripts/dpkg-source.pl:683
- #: scripts/dpkg-source.pl:713
- #, perl-format
- msgid "cannot open .dsc file %s: %s"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:344 scripts/dpkg-source.pl:714
- #, perl-format
- msgid "source control file %s"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:350 scripts/dpkg-source.pl:753
- #, perl-format
- msgid "Files field contains bad line `%s'"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:362
- msgid "not including original source code in upload"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:366
- msgid "ignoring -sd option for native Debian package"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:368
- msgid "including full source code in upload"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:371
- msgid "binary-only upload - not including any source code"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:375
- msgid "write original source message"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:400
- #, perl-format
- msgid "cannot open upload file %s for reading"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:401
- #, perl-format
- msgid "cannot fstat upload file %s"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:403
- #, perl-format
- msgid "upload file %s is empty"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:405
- #, perl-format
- msgid "md5sum upload file %s"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:407
- #, perl-format
- msgid "md5sum upload file %s gave strange output `%s'"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:410
- #, perl-format
- msgid "md5sum of source file %s (%s) is different from md5sum in %s (%s)"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:425 scripts/dpkg-source.pl:317
- #, perl-format
- msgid "missing information for critical output field %s"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:429 scripts/dpkg-gencontrol.pl:249
- #: scripts/dpkg-gencontrol.pl:252 scripts/dpkg-source.pl:321
- #, perl-format
- msgid "missing information for output field %s"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:52
- msgid ""
- "\n"
- "Copyright (C) 1996 Ian Jackson.\n"
- "Copyright (C) 2000,2002 Wichert Akkerman."
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:64
- #, perl-format
- msgid ""
- "Usage: %s [<option> ...]\n"
- "\n"
- "Options:\n"
- " -p<package> print control file for package.\n"
- " -c<controlfile> get control info from this file.\n"
- " -l<changelogfile> get per-version info from this file.\n"
- " -F<changelogformat> force change log format.\n"
- " -v<forceversion> set version of binary package.\n"
- " -f<fileslistfile> write files here instead of debian/files.\n"
- " -P<packagebuilddir> temporary build dir instead of debian/tmp.\n"
- " -n<filename> assume the package filename will be <filename>.\n"
- " -O write to stdout, not .../DEBIAN/control.\n"
- " -is, -ip, -isp, -ips deprecated, ignored for compatibility.\n"
- " -D<field>=<value> override or add a field and value.\n"
- " -U<field> remove a field.\n"
- " -V<name>=<value> set a substitution variable.\n"
- " -T<varlistfile> read variables here, not debian/substvars.\n"
- " -h, --help show this help message.\n"
- " --version show the version.\n"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:92
- #, perl-format
- msgid "Illegal package name `%s'"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:135
- #, perl-format
- msgid "package %s not in control info"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:140
- #, perl-format
- msgid "must specify package since control info has many (%s)"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:178
- #, perl-format
- msgid "`%s' is not a legal architecture string."
- msgid_plural "`%s' are not legal architecture strings."
- msgstr[0] ""
- msgstr[1] ""
- #: scripts/dpkg-gencontrol.pl:184
- #, perl-format
- msgid "current build architecture %s does not appear in package's list (%s)"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:264
- msgid "fork for du"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:266
- #, perl-format
- msgid "chdir for du to `%s'"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:267
- msgid "exec du"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:273
- #, perl-format
- msgid "du in `%s'"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:274
- #, perl-format
- msgid "du gave unexpected output `%s'"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:306
- msgid "close old files list file"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:318
- msgid "install new files list file"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:325
- #, perl-format
- msgid "cannot open new output control file `%s'"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:333
- #, perl-format
- msgid "cannot install output control file `%s'"
- msgstr ""
- #: scripts/dpkg-parsechangelog.pl:31
- msgid ""
- "\n"
- "Copyright (C) 1996 Ian Jackson.\n"
- "Copyright (C) 2001 Wichert Akkerman"
- msgstr ""
- #: scripts/dpkg-parsechangelog.pl:43
- #, perl-format
- msgid ""
- "Usage: %s [<option> ...]\n"
- "\n"
- "Options:\n"
- " -l<changelogfile> get per-version info from this file.\n"
- " -v<sinceversion> include all changes later than version.\n"
- " -F<changelogformat> force change log format.\n"
- " -L<libdir> look for change log parsers in <libdir>.\n"
- " -h, --help show this help message.\n"
- " --version show the version.\n"
- msgstr ""
- #: scripts/dpkg-parsechangelog.pl:70
- #, perl-format
- msgid "%s takes no non-option arguments"
- msgstr ""
- #: scripts/dpkg-parsechangelog.pl:75
- #, perl-format
- msgid "cannot open %s to find format: %s"
- msgstr ""
- #: scripts/dpkg-parsechangelog.pl:76
- #, perl-format
- msgid "cannot fork: %s"
- msgstr ""
- #: scripts/dpkg-parsechangelog.pl:81
- #, perl-format
- msgid "tail of %s"
- msgstr ""
- #: scripts/dpkg-parsechangelog.pl:89
- #, perl-format
- msgid "failed to check for format parser %s"
- msgstr ""
- #: scripts/dpkg-parsechangelog.pl:91
- #, perl-format
- msgid "format parser %s not executable"
- msgstr ""
- #: scripts/dpkg-parsechangelog.pl:98
- #, perl-format
- msgid "format %s unknown"
- msgstr ""
- #: scripts/dpkg-parsechangelog.pl:101
- #, perl-format
- msgid "cannot open %s: %s"
- msgstr ""
- #: scripts/dpkg-parsechangelog.pl:103
- #, perl-format
- msgid "cannot exec format parser: %s"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:57
- #, perl-format
- msgid ""
- "Usage: %s [<option> ...] <binarypath> [<overridefile> [<pathprefix>]] > "
- "Packages\n"
- "\n"
- "Options:\n"
- " -u, --udeb scan for udebs.\n"
- " -a, --arch <arch> architecture to scan for.\n"
- " -m, --multiversion allow multiple versions of a single package.\n"
- " -h, --help show this help message.\n"
- " --version show the version.\n"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:72
- #, perl-format
- msgid "Couldn't open override file %s: %s"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:98
- #, perl-format
- msgid " * Unconditional maintainer override for %s *"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:114 scripts/dpkg-scansources.pl:509
- msgid "1 to 3 args expected\n"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:136
- #, perl-format
- msgid "Binary dir %s not found"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:139
- #, perl-format
- msgid "Override file %s not found"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:154
- #, perl-format
- msgid "Couldn't open %s for reading: %s"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:162
- #, perl-format
- msgid "Couldn't call dpkg-deb on %s: %s, skipping package"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:166
- #, perl-format
- msgid "`dpkg-deb -I %s control' exited with %d, skipping package"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:180
- #, perl-format
- msgid ""
- "Unprocessed text from %s control file; info:\n"
- "%s / %s\n"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:183
- #, perl-format
- msgid "No Package field in control file of %s"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:190
- #, perl-format
- msgid ""
- " ! Package %s (filename %s) is repeat but newer version;\n"
- " used that one and ignored data from %s !\n"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:196
- #, perl-format
- msgid ""
- " ! Package %s (filename %s) is repeat;\n"
- " ignored that one and using data from %s !\n"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:203
- #, perl-format
- msgid " ! Package %s (filename %s) has Filename field!\n"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:209
- #, perl-format
- msgid "`md5sum < %s' exited with %d"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:210
- #, perl-format
- msgid "Strange text from `md5sum < %s': `%s'"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:213
- #, perl-format
- msgid "Couldn't stat %s: %s"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:214
- #, perl-format
- msgid "%s is empty"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:260
- #, perl-format
- msgid "Failed when writing stdout: %s"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:263
- #, perl-format
- msgid "Couldn't close stdout: %s"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:267
- msgid "** Packages in archive but missing from override file: **"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:271
- msgid " ++ Packages in override file with incorrect old maintainer value: ++"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:277
- msgid " -- Packages specifying same maintainer as override file: --"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:283
- msgid " -- Packages in override file but not in archive: --"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:288
- #, perl-format
- msgid " Wrote %s entries to output Packages file."
- msgstr ""
- #: scripts/dpkg-scansources.pl:104
- #, perl-format
- msgid ""
- "Usage: %s [<option> ...] <binarypath> [<overridefile> [<pathprefix>]] > "
- "Sources\n"
- "\n"
- "Options:\n"
- " -n, --no-sort don't sort by package before outputting.\n"
- " -s, --source-override <file>\n"
- " use file for additional source overrides, "
- "default\n"
- " is regular override file with .src appended.\n"
- " --debug turn debugging on.\n"
- " --help show this help message.\n"
- " --version show the version.\n"
- "\n"
- "See the man page for the full documentation.\n"
- msgstr ""
- #: scripts/dpkg-scansources.pl:144
- #, perl-format
- msgid "error closing %s ($? %d, $! `%s')"
- msgstr ""
- #: scripts/dpkg-scansources.pl:157
- #, perl-format
- msgid "can't read override file %s:"
- msgstr ""
- #: scripts/dpkg-scansources.pl:166
- #, perl-format
- msgid "invalid override entry at line %d (%d fields)"
- msgstr ""
- #: scripts/dpkg-scansources.pl:173
- #, perl-format
- msgid "ignoring duplicate override entry for %s at line %d"
- msgstr ""
- #: scripts/dpkg-scansources.pl:179
- #, perl-format
- msgid "ignoring override entry for %s, invalid priority %s"
- msgstr ""
- #: scripts/dpkg-scansources.pl:198
- msgid "error closing override file:"
- msgstr ""
- #: scripts/dpkg-scansources.pl:219
- #, perl-format
- msgid "can't read source override file %s:"
- msgstr ""
- #: scripts/dpkg-scansources.pl:229
- #, perl-format
- msgid "invalid source override entry at line %d (%d fields)"
- msgstr ""
- #: scripts/dpkg-scansources.pl:238
- #, perl-format
- msgid "ignoring duplicate source override entry for %s at line %d"
- msgstr ""
- #: scripts/dpkg-scansources.pl:245
- msgid "error closing source override file:"
- msgstr ""
- #: scripts/dpkg-scansources.pl:259
- #, perl-format
- msgid "%s has PGP start token but not end token"
- msgstr ""
- #: scripts/dpkg-scansources.pl:275
- #, perl-format
- msgid "can't read %s:"
- msgstr ""
- #: scripts/dpkg-scansources.pl:281
- #, perl-format
- msgid "error doing fstat on %s:"
- msgstr ""
- #: scripts/dpkg-scansources.pl:289
- #, perl-format
- msgid "error reading from %s:"
- msgstr ""
- #: scripts/dpkg-scansources.pl:297 scripts/dpkg-scansources.pl:519
- msgid "can't fork:"
- msgstr ""
- #: scripts/dpkg-scansources.pl:301
- #, perl-format
- msgid "can't dup %s:"
- msgstr ""
- #: scripts/dpkg-scansources.pl:302
- #, perl-format
- msgid "can't rewind %s:"
- msgstr ""
- #: scripts/dpkg-scansources.pl:303
- msgid "can't exec md5sum:"
- msgstr ""
- #: scripts/dpkg-scansources.pl:312
- #, perl-format
- msgid "invalid md5 output for %s (%s)"
- msgstr ""
- #: scripts/dpkg-scansources.pl:317
- #, perl-format
- msgid "error closing %s:"
- msgstr ""
- #: scripts/dpkg-scansources.pl:342
- #, perl-format
- msgid "%s invalid (contains blank line)"
- msgstr ""
- #: scripts/dpkg-scansources.pl:369
- #, perl-format
- msgid "invalid field in %s: %s"
- msgstr ""
- #: scripts/dpkg-scansources.pl:377
- #, perl-format
- msgid "duplicate source field in %s"
- msgstr ""
- #: scripts/dpkg-scansources.pl:381
- #, perl-format
- msgid "invalid source field in %s"
- msgstr ""
- #: scripts/dpkg-scansources.pl:391
- #, perl-format
- msgid "duplicate binary field in %s"
- msgstr ""
- #: scripts/dpkg-scansources.pl:396
- #, perl-format
- msgid "no binary packages specified in %s"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:43
- msgid ""
- "\n"
- "Copyright (C) 1996 Ian Jackson.\n"
- "Copyright (C) 2000 Wichert Akkerman.\n"
- "Copyright (C) 2006 Frank Lichtenheld."
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:56
- #, perl-format
- msgid ""
- "Usage: %s [<option> ...] <executable>|-e<executable> [<option> ...]\n"
- "\n"
- "Positional options (order is significant):\n"
- " <executable> include dependencies for <executable>,\n"
- " -e<executable> (use -e if <executable> starts with `-')\n"
- " -d<dependencyfield> next executable(s) set shlibs:<dependencyfield>.\n"
- "\n"
- "Options:\n"
- " -p<varnameprefix> set <varnameprefix>:* instead of shlibs:*.\n"
- " -O print variable settings to stdout.\n"
- " -L<localshlibsfile> shlibs override file, not debian/shlibs.local.\n"
- " -T<varlistfile> update variables here, not debian/substvars.\n"
- " -t<type> set package type (default is deb).\n"
- " --admindir=<directory> change the administrative directory.\n"
- " -h, --help show this help message.\n"
- " --version show the version.\n"
- "\n"
- "Dependency fields recognised are:\n"
- " %s\n"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:95
- #, perl-format
- msgid "administrative directory '%s' does not exist"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:100
- #, perl-format
- msgid "unrecognised dependency field '%s'"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:114
- msgid "need at least one executable"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:117
- #, perl-format
- msgid "unable to open '%s' for test"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:120
- #, perl-format
- msgid "unable to read first four bytes of '%s' as magic number"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:133
- #, perl-format
- msgid "unrecognized file type for '%s'"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:169
- #, perl-format
- msgid "couldn't open /etc/ld.so.conf: %s"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:187 scripts/dpkg-shlibdeps.pl:348
- msgid "cannot fork for objdump"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:190 scripts/dpkg-shlibdeps.pl:351
- msgid "cannot exec objdump"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:209
- #, perl-format
- msgid "format of 'NEEDED %s' not recognized"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:215 scripts/dpkg-shlibdeps.pl:360
- #, perl-format
- msgid "objdump on `%s'"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:277
- msgid "cannot fork for dpkg --search"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:286
- msgid "cannot exec dpkg"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:291
- msgid "diversions involved - output may be incorrect"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:292
- msgid "write diversion info to stderr"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:296
- #, perl-format
- msgid "unknown output from dpkg --search: '%s'"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:319
- #, perl-format
- msgid "could not find any packages for %s"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:329
- #, perl-format
- msgid ""
- "unable to find dependency information for shared library %s (soname %s, path "
- "%s, dependency field %s)"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:370
- #, perl-format
- msgid "unable to open shared libs info file `%s'"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:377
- #, perl-format
- msgid "shared libs info file '%s' line %d: bad line '%s'"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:412
- #, perl-format
- msgid "open new substvars file `%s'"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:415
- #, perl-format
- msgid "chown of `%s'"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:422
- #, perl-format
- msgid "copy old entry to new varlist file `%s'"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:425
- #, perl-format
- msgid "open old varlist file `%s' for reading"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:440
- msgid "write output entry"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:444
- msgid "write userdef output entry"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:446
- msgid "close output"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:449
- #, perl-format
- msgid "install new varlist file `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:100
- msgid ""
- "\n"
- "Copyright (C) 1996 Ian Jackson and Klee Dienes."
- msgstr ""
- #: scripts/dpkg-source.pl:111
- #, perl-format
- msgid ""
- "Usage: %s [<option> ...] <command>\n"
- "\n"
- "Commands:\n"
- " -x <filename>.dsc [<output-dir>]\n"
- " extract source package.\n"
- " -b <dir> [<orig-dir>|<orig-targz>|'']\n"
- " build source package.\n"
- "\n"
- "Build options:\n"
- " -c<controlfile> get control info from this file.\n"
- " -l<changelogfile> get per-version info from this file.\n"
- " -F<changelogformat> force change log format.\n"
- " -V<name>=<value> set a substitution variable.\n"
- " -T<varlistfile> read variables here, not debian/substvars.\n"
- " -D<field>=<value> override or add a .dsc field and value.\n"
- " -U<field> remove a field.\n"
- " -W turn certain errors into warnings.\n"
- " -E when -W is enabled, -E disables it.\n"
- " -q quiet operation, do not print warnings.\n"
- " -i[<regexp>] filter out files to ignore diffs of\n"
- " (defaults to: '%s').\n"
- " -I<filename> filter out files when building tarballs.\n"
- " -sa auto select orig source (-sA is default).\n"
- " -sk use packed orig source (unpack & keep).\n"
- " -sp use packed orig source (unpack & remove).\n"
- " -su use unpacked orig source (pack & keep).\n"
- " -sr use unpacked orig source (pack & remove).\n"
- " -ss trust packed & unpacked orig src are same.\n"
- " -sn there is no diff, do main tarfile only.\n"
- " -sA,-sK,-sP,-sU,-sR like -sa,-sk,-sp,-su,-sr but may overwrite.\n"
- "\n"
- "Extract options:\n"
- " -sp (default) leave orig source packed in current dir.\n"
- " -sn do not copy original source to current dir.\n"
- " -su unpack original source tree too.\n"
- "\n"
- "General options:\n"
- " -h, --help show this help message.\n"
- " --version show the version.\n"
- msgstr ""
- #: scripts/dpkg-source.pl:169
- #, perl-format
- msgid "-s%s option overrides earlier -s%s option"
- msgstr ""
- #: scripts/dpkg-source.pl:207
- msgid "need -x or -b"
- msgstr ""
- #: scripts/dpkg-source.pl:215
- #, perl-format
- msgid "source handling style -s%s not allowed with -b"
- msgstr ""
- #: scripts/dpkg-source.pl:217
- msgid "-b needs a directory"
- msgstr ""
- #: scripts/dpkg-source.pl:218
- msgid "-b takes at most a directory and an orig source argument"
- msgstr ""
- #: scripts/dpkg-source.pl:221
- #, perl-format
- msgid "cannot stat directory %s: %s"
- msgstr ""
- #: scripts/dpkg-source.pl:222
- #, perl-format
- msgid "directory argument %s is not a directory"
- msgstr ""
- #: scripts/dpkg-source.pl:273
- #, perl-format
- msgid "`%s' is not a legal architecture string"
- msgstr ""
- #: scripts/dpkg-source.pl:275
- #, perl-format
- msgid "architecture %s only allowed on its own (list for package %s is `%s')"
- msgstr ""
- #: scripts/dpkg-source.pl:323
- msgid "unable to determine source package name !"
- msgstr ""
- #: scripts/dpkg-source.pl:343
- #, perl-format
- msgid "cannot stat orig argument %s: %s"
- msgstr ""
- #: scripts/dpkg-source.pl:349
- #, perl-format
- msgid ""
- "orig argument is unpacked but source handling style -s%s calls for packed (."
- "orig.tar.gz)"
- msgstr ""
- #: scripts/dpkg-source.pl:355
- #, perl-format
- msgid ""
- "orig argument is packed but source handling style -s%s calls for unpacked (."
- "orig/)"
- msgstr ""
- #: scripts/dpkg-source.pl:363
- #, perl-format
- msgid ""
- "orig argument is empty (means no orig, no diff) but source handling style -s%"
- "s wants something"
- msgstr ""
- #: scripts/dpkg-source.pl:370
- #, perl-format
- msgid "packed orig `%s' exists but is not a plain file"
- msgstr ""
- #: scripts/dpkg-source.pl:373
- #, perl-format
- msgid "unable to stat putative packed orig `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:375
- #, perl-format
- msgid "unpacked orig `%s' exists but is not a directory"
- msgstr ""
- #: scripts/dpkg-source.pl:378
- #, perl-format
- msgid "unable to stat putative unpacked orig `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:389
- #, perl-format
- msgid "source directory '%s' is not <sourcepackage>-<upstreamversion> '%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:403
- #, perl-format
- msgid ".orig directory name %s is not <package>-<upstreamversion> (wanted %s)"
- msgstr ""
- #: scripts/dpkg-source.pl:410
- #, perl-format
- msgid ""
- ".orig.tar.gz name %s is not <package>_<upstreamversion>.orig.tar.gz (wanted %"
- "s)"
- msgstr ""
- #: scripts/dpkg-source.pl:421
- #, perl-format
- msgid ""
- "tarfile `%s' already exists, not overwriting, giving up; use -sU or -sR to "
- "override"
- msgstr ""
- #: scripts/dpkg-source.pl:424
- #, perl-format
- msgid "unable to check for existence of `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:427 scripts/dpkg-source.pl:492
- #: scripts/dpkg-source.pl:644
- #, perl-format
- msgid "%s: building %s in %s"
- msgstr ""
- #: scripts/dpkg-source.pl:429
- msgid "write building tar message"
- msgstr ""
- #: scripts/dpkg-source.pl:433
- msgid "fork for tar"
- msgstr ""
- #: scripts/dpkg-source.pl:435
- #, perl-format
- msgid "chdir to above (orig) source %s"
- msgstr ""
- #: scripts/dpkg-source.pl:436
- msgid "reopen gzip for tar"
- msgstr ""
- #: scripts/dpkg-source.pl:438
- msgid "exec tar"
- msgstr ""
- #: scripts/dpkg-source.pl:442
- msgid "wait for tar"
- msgstr ""
- #: scripts/dpkg-source.pl:445 scripts/dpkg-source.pl:607
- #, perl-format
- msgid "unable to rename `%s' (newly created) to `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:447 scripts/dpkg-source.pl:609
- #, perl-format
- msgid "unable to change permission of `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:451
- #, perl-format
- msgid "%s: building %s using existing %s"
- msgstr ""
- #: scripts/dpkg-source.pl:453
- msgid "write using existing tar message"
- msgstr ""
- #: scripts/dpkg-source.pl:463
- #, perl-format
- msgid ""
- "orig dir `%s' already exists, not overwriting, giving up; use -sA, -sK or -"
- "sP to override"
- msgstr ""
- #: scripts/dpkg-source.pl:469
- #, perl-format
- msgid "unable to check for existence of orig dir `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:478 scripts/dpkg-source.pl:824
- #, perl-format
- msgid "unable to create `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:482 scripts/dpkg-source.pl:805
- #: scripts/dpkg-source.pl:828
- #, perl-format
- msgid "unable to rename `%s' to `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:486 scripts/dpkg-source.pl:830
- #, perl-format
- msgid "unable to remove `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:494
- msgid "write building diff message"
- msgstr ""
- #: scripts/dpkg-source.pl:499
- msgid "fork for find"
- msgstr ""
- #: scripts/dpkg-source.pl:501
- #, perl-format
- msgid "chdir to %s for find"
- msgstr ""
- #: scripts/dpkg-source.pl:502
- msgid "exec find"
- msgstr ""
- #: scripts/dpkg-source.pl:511
- #, perl-format
- msgid "cannot stat file %s"
- msgstr ""
- #: scripts/dpkg-source.pl:518
- #, perl-format
- msgid "cannot read link %s"
- msgstr ""
- #: scripts/dpkg-source.pl:520
- #, perl-format
- msgid "cannot read orig link %s"
- msgstr ""
- #: scripts/dpkg-source.pl:521 scripts/dpkg-source.pl:522
- #, perl-format
- msgid "symlink to %s"
- msgstr ""
- #: scripts/dpkg-source.pl:528 scripts/dpkg-source.pl:594
- #, perl-format
- msgid "cannot stat orig file %s"
- msgstr ""
- #: scripts/dpkg-source.pl:531
- #, perl-format
- msgid "newly created empty file '%s' will not be represented in diff"
- msgstr ""
- #: scripts/dpkg-source.pl:534
- #, perl-format
- msgid "executable mode %04o of '%s' will not be represented in diff"
- msgstr ""
- #: scripts/dpkg-source.pl:538
- #, perl-format
- msgid "special mode %04o of '%s' will not be represented in diff"
- msgstr ""
- #: scripts/dpkg-source.pl:544 scripts/dpkg-source.pl:1386
- msgid "something else"
- msgstr ""
- #: scripts/dpkg-source.pl:545
- msgid "plain file"
- msgstr ""
- #: scripts/dpkg-source.pl:548
- msgid "fork for diff"
- msgstr ""
- #: scripts/dpkg-source.pl:556
- msgid "exec diff"
- msgstr ""
- #: scripts/dpkg-source.pl:563
- msgid "binary file contents changed"
- msgstr ""
- #: scripts/dpkg-source.pl:568
- #, perl-format
- msgid "file %s has no final newline (either original or modified version)"
- msgstr ""
- #: scripts/dpkg-source.pl:572
- #, perl-format
- msgid "unknown line from diff -u on %s: `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:574
- msgid "failed to write to gzip"
- msgstr ""
- #: scripts/dpkg-source.pl:580
- msgid "diff gave 1 but no diff lines found"
- msgstr ""
- #: scripts/dpkg-source.pl:583
- #, perl-format
- msgid "diff on %s"
- msgstr ""
- #: scripts/dpkg-source.pl:589
- msgid "device or socket is not allowed"
- msgstr ""
- #: scripts/dpkg-source.pl:596
- msgid "not a directory"
- msgstr ""
- #: scripts/dpkg-source.pl:597
- msgid "directory"
- msgstr ""
- #: scripts/dpkg-source.pl:600
- #, perl-format
- msgid "unknown file type (%s)"
- msgstr ""
- #: scripts/dpkg-source.pl:604
- msgid "finish write to gzip pipe"
- msgstr ""
- #: scripts/dpkg-source.pl:611
- msgid "fork for 2nd find"
- msgstr ""
- #: scripts/dpkg-source.pl:613
- #, perl-format
- msgid "chdir to %s for 2nd find"
- msgstr ""
- #: scripts/dpkg-source.pl:614
- msgid "exec 2nd find"
- msgstr ""
- #: scripts/dpkg-source.pl:622
- #, perl-format
- msgid "cannot check orig file %s"
- msgstr ""
- #: scripts/dpkg-source.pl:624
- #, perl-format
- msgid "ignoring deletion of file %s"
- msgstr ""
- #: scripts/dpkg-source.pl:626
- #, perl-format
- msgid "ignoring deletion of directory %s"
- msgstr ""
- #: scripts/dpkg-source.pl:628
- #, perl-format
- msgid "ignoring deletion of symlink %s"
- msgstr ""
- #: scripts/dpkg-source.pl:630
- msgid "not a file, directory or link"
- msgstr ""
- #: scripts/dpkg-source.pl:631 scripts/dpkg-source.pl:1381
- msgid "nonexistent"
- msgstr ""
- #: scripts/dpkg-source.pl:646
- msgid "write building message"
- msgstr ""
- #: scripts/dpkg-source.pl:647
- #, perl-format
- msgid "create %s"
- msgstr ""
- #: scripts/dpkg-source.pl:653
- #, perl-format
- msgid "%s: unrepresentable changes to source"
- msgstr ""
- #: scripts/dpkg-source.pl:655
- #, perl-format
- msgid "write error msg: %s"
- msgstr ""
- #: scripts/dpkg-source.pl:664
- #, perl-format
- msgid "source handling style -s%s not allowed with -x"
- msgstr ""
- #: scripts/dpkg-source.pl:666
- msgid "-x needs at least one argument, the .dsc"
- msgstr ""
- #: scripts/dpkg-source.pl:667
- msgid "-x takes no more than two arguments"
- msgstr ""
- #: scripts/dpkg-source.pl:671
- msgid "-x needs the .dsc file as first argument, not a directory"
- msgstr ""
- #: scripts/dpkg-source.pl:679
- #, perl-format
- msgid "unpack target exists: %s"
- msgstr ""
- #: scripts/dpkg-source.pl:703
- #, perl-format
- msgid "failed to verify signature on %s"
- msgstr ""
- #: scripts/dpkg-source.pl:707
- #, perl-format
- msgid "could not verify signature on %s since gpg isn't installed"
- msgstr ""
- #: scripts/dpkg-source.pl:710
- #, perl-format
- msgid "extracting unsigned source package (%s)"
- msgstr ""
- #: scripts/dpkg-source.pl:719
- #, perl-format
- msgid "missing critical source control field %s"
- msgstr ""
- #: scripts/dpkg-source.pl:725
- #, perl-format
- msgid "Unsupported format of .dsc file (%s)"
- msgstr ""
- #: scripts/dpkg-source.pl:757
- #, perl-format
- msgid "Files field contains invalid filename `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:762
- #, perl-format
- msgid "repeated file type - files `%s' and `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:775
- #, perl-format
- msgid "unrecognised file type - `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:779
- msgid "no tarfile in Files field"
- msgstr ""
- #: scripts/dpkg-source.pl:782
- msgid "multiple tarfiles in native package"
- msgstr ""
- #: scripts/dpkg-source.pl:783
- msgid "native package with .orig.tar"
- msgstr ""
- #: scripts/dpkg-source.pl:786
- msgid "no upstream tarfile in Files field"
- msgstr ""
- #: scripts/dpkg-source.pl:788
- #, perl-format
- msgid "multiple upstream tarballs in %s format dsc"
- msgstr ""
- #: scripts/dpkg-source.pl:789
- #, perl-format
- msgid "debian.tar in %s format dsc"
- msgstr ""
- #: scripts/dpkg-source.pl:798
- #, perl-format
- msgid "%s: extracting %s in %s"
- msgstr ""
- #: scripts/dpkg-source.pl:800
- msgid "write extracting message"
- msgstr ""
- #: scripts/dpkg-source.pl:825
- #, perl-format
- msgid "%s: unpacking %s"
- msgstr ""
- #: scripts/dpkg-source.pl:838
- #, perl-format
- msgid "failed to stat `%s' to see if need to copy"
- msgstr ""
- #: scripts/dpkg-source.pl:849
- #, perl-format
- msgid "failed to check destination `%s' to see if need to copy"
- msgstr ""
- #: scripts/dpkg-source.pl:862
- msgid "unable to keep orig directory (already exists)"
- msgstr ""
- #: scripts/dpkg-source.pl:896 scripts/dpkg-source.pl:952
- #, perl-format
- msgid "cannot stat %s"
- msgstr ""
- #: scripts/dpkg-source.pl:898
- #, perl-format
- msgid "failed to create %s subdirectory"
- msgstr ""
- #: scripts/dpkg-source.pl:901
- #, perl-format
- msgid "diff patches file in directory `%s', but %s isn't a directory !"
- msgstr ""
- #: scripts/dpkg-source.pl:910
- #, perl-format
- msgid "failed to rename newly-extracted %s to %s"
- msgstr ""
- #: scripts/dpkg-source.pl:915
- #, perl-format
- msgid "failed to rename saved %s to %s"
- msgstr ""
- #: scripts/dpkg-source.pl:919
- #, perl-format
- msgid "%s: applying %s"
- msgstr ""
- #: scripts/dpkg-source.pl:924 scripts/dpkg-source.pl:1227
- #, perl-format
- msgid "can't open diff `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:927
- msgid "fork for patch"
- msgstr ""
- #: scripts/dpkg-source.pl:929
- msgid "reopen gzip for patch"
- msgstr ""
- #: scripts/dpkg-source.pl:930
- #, perl-format
- msgid "chdir to %s for patch"
- msgstr ""
- #: scripts/dpkg-source.pl:934
- msgid "exec patch"
- msgstr ""
- #: scripts/dpkg-source.pl:937
- msgid "wait for patch"
- msgstr ""
- #: scripts/dpkg-source.pl:946
- #, perl-format
- msgid "cannot change timestamp for %s"
- msgstr ""
- #: scripts/dpkg-source.pl:948
- #, perl-format
- msgid "remove patch backup file %s"
- msgstr ""
- #: scripts/dpkg-source.pl:953
- #, perl-format
- msgid "%s does not exist"
- msgstr ""
- #: scripts/dpkg-source.pl:956
- #, perl-format
- msgid "cannot make %s executable"
- msgstr ""
- #: scripts/dpkg-source.pl:958
- #, perl-format
- msgid "%s is not a plain file"
- msgstr ""
- #: scripts/dpkg-source.pl:962
- msgid "cannot stat `.'"
- msgstr ""
- #: scripts/dpkg-source.pl:969
- #, perl-format
- msgid "cannot stat extracted object `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:980
- #, perl-format
- msgid "unknown object `%s' after extract (mode 0%o)"
- msgstr ""
- #: scripts/dpkg-source.pl:984
- #, perl-format
- msgid "cannot change mode of `%s' to 0%o from 0%o"
- msgstr ""
- #: scripts/dpkg-source.pl:995
- #, perl-format
- msgid "cannot read %s"
- msgstr ""
- #: scripts/dpkg-source.pl:996
- #, perl-format
- msgid "cannot fstat %s"
- msgstr ""
- #: scripts/dpkg-source.pl:997
- #, perl-format
- msgid "file %s has size %s instead of expected %s"
- msgstr ""
- #: scripts/dpkg-source.pl:1000
- #, perl-format
- msgid "file %s has md5sum %s instead of expected %s"
- msgstr ""
- #: scripts/dpkg-source.pl:1001
- msgid "reopen stdin from /dev/null"
- msgstr ""
- #: scripts/dpkg-source.pl:1008
- #, perl-format
- msgid "cannot stat directory %s (before removal)"
- msgstr ""
- #: scripts/dpkg-source.pl:1014
- #, perl-format
- msgid "unable to check for removal of dir `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:1016
- #, perl-format
- msgid "rm -rf failed to remove `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:1028
- msgid "fork for cpio"
- msgstr ""
- #: scripts/dpkg-source.pl:1032
- msgid "reopen gzip for cpio"
- msgstr ""
- #: scripts/dpkg-source.pl:1034
- msgid "exec cpio"
- msgstr ""
- #: scripts/dpkg-source.pl:1048
- #, perl-format
- msgid "tarfile `%s' contains object with newline in its name (%s)"
- msgstr ""
- #: scripts/dpkg-source.pl:1056
- #, perl-format
- msgid ""
- "first output from cpio -0t (from `%s') contains newline - you probably have "
- "an out of date version of cpio. GNU cpio 2.4.2-2 is known to work"
- msgstr ""
- #: scripts/dpkg-source.pl:1064
- #, perl-format
- msgid ""
- "tarfile `%s' does not extract into a directory off the current directory (%s "
- "from %s)"
- msgstr ""
- #: scripts/dpkg-source.pl:1073
- #, perl-format
- msgid "tarfile `%s' contains object (%s) not in expected directory (%s)"
- msgstr ""
- #: scripts/dpkg-source.pl:1080
- #, perl-format
- msgid "tarfile `%s' contains object with /../ in its name (%s)"
- msgstr ""
- #: scripts/dpkg-source.pl:1108
- msgid "fork for tar -t"
- msgstr ""
- #: scripts/dpkg-source.pl:1112
- msgid "reopen gzip for tar -t"
- msgstr ""
- #: scripts/dpkg-source.pl:1113
- msgid "exec tar -vvtf -"
- msgstr ""
- #: scripts/dpkg-source.pl:1123
- #, perl-format
- msgid "tarfile `%s' contains unknown object listed by tar as `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:1130
- #, perl-format
- msgid "tarfile `%s' contains object `%s' with unknown or forbidden type `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:1140
- #, perl-format
- msgid "tarfile `%s' contains incomplete entry `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:1163
- #, perl-format
- msgid "filename '%s' was truncated by cpio; unable to check full pathname"
- msgstr ""
- #: scripts/dpkg-source.pl:1170
- #, perl-format
- msgid ""
- "tarfile `%s' contains unexpected object listed by tar as `%s'; expected `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:1179
- #, perl-format
- msgid "tarfile `%s' contains object with/../ in its name (%s)"
- msgstr ""
- #: scripts/dpkg-source.pl:1184
- #, perl-format
- msgid "tarfile `%s' contains file with name ending in .dpkg-orig"
- msgstr ""
- #: scripts/dpkg-source.pl:1188
- #, perl-format
- msgid "tarfile `%s' contains setuid, setgid or sticky object `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:1193
- #, perl-format
- msgid "tarfile `%s' contains object `debian' that isn't a directory"
- msgstr ""
- #: scripts/dpkg-source.pl:1202
- #, perl-format
- msgid ""
- "tarfile `%s' contains object `%s' but its containing directory `%s' does not "
- "precede it"
- msgstr ""
- #: scripts/dpkg-source.pl:1239 scripts/dpkg-source.pl:1278
- #: scripts/dpkg-source.pl:1287
- #, perl-format
- msgid "diff `%s' is missing trailing newline"
- msgstr ""
- #: scripts/dpkg-source.pl:1240
- #, perl-format
- msgid "expected ^--- in line %d of diff `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:1243
- #, perl-format
- msgid "diff `%s' patches file with no subdirectory"
- msgstr ""
- #: scripts/dpkg-source.pl:1245
- #, perl-format
- msgid "diff `%s' patches file with name ending .dpkg-orig"
- msgstr ""
- #: scripts/dpkg-source.pl:1249
- #, perl-format
- msgid "diff `%s' finishes in middle of ---/+++ (line %d)"
- msgstr ""
- #: scripts/dpkg-source.pl:1253 scripts/dpkg-source.pl:1259
- #, perl-format
- msgid "line after --- isn't as expected in diff `%s' (line %d)"
- msgstr ""
- #: scripts/dpkg-source.pl:1267
- #, perl-format
- msgid "diff `%s' patches something which is not a plain file"
- msgstr ""
- #: scripts/dpkg-source.pl:1271
- #, perl-format
- msgid "diff patches file %s twice"
- msgstr ""
- #: scripts/dpkg-source.pl:1281
- #, perl-format
- msgid "Expected ^@@ in line %d of diff `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:1286
- #, perl-format
- msgid "unexpected end of diff `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:1292
- #, perl-format
- msgid "expected [ +-] at start of line %d of diff `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:1295
- #, perl-format
- msgid "expected ^@@ at line %d of diff `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:1306
- msgid "fork for tar -xkf -"
- msgstr ""
- #: scripts/dpkg-source.pl:1308
- msgid "reopen gzip for tar -xkf -"
- msgstr ""
- #: scripts/dpkg-source.pl:1310
- #, perl-format
- msgid "cannot chdir to `%s' for tar extract"
- msgstr ""
- #: scripts/dpkg-source.pl:1312
- msgid "exec tar -xkf -"
- msgstr ""
- #: scripts/dpkg-source.pl:1315
- msgid "wait for tar -xkf -"
- msgstr ""
- #: scripts/dpkg-source.pl:1347
- #, perl-format
- msgid "Unable to open dir %s"
- msgstr ""
- #: scripts/dpkg-source.pl:1349
- #, perl-format
- msgid "Unable to close dir %s"
- msgstr ""
- #: scripts/dpkg-source.pl:1352 scripts/dpkg-source.pl:1361
- #: scripts/dpkg-source.pl:1366
- #, perl-format
- msgid "Unable to rename %s to %s"
- msgstr ""
- #: scripts/dpkg-source.pl:1357
- #, perl-format
- msgid "Unable to mkdir %s"
- msgstr ""
- #: scripts/dpkg-source.pl:1374
- msgid "reopen stderr for tar to grep out blocks message"
- msgstr ""
- #: scripts/dpkg-source.pl:1384
- #, perl-format
- msgid "checktype %s (%s)"
- msgstr ""
- #: scripts/dpkg-source.pl:1392
- msgid "only one of -x or -b allowed, and only once"
- msgstr ""
- #: scripts/dpkg-source.pl:1397
- #, perl-format
- msgid "%s: cannot represent change to %s: %s"
- msgstr ""
- #: scripts/dpkg-source.pl:1399 scripts/dpkg-source.pl:1408
- msgid "write syserr unrep"
- msgstr ""
- #: scripts/dpkg-source.pl:1404
- #, perl-format
- msgid ""
- "%s: cannot represent change to %s:\n"
- "%s: new version is %s\n"
- "%s: old version is %s\n"
- msgstr ""
- #: scripts/dpkg-source.pl:1417
- #, perl-format
- msgid "create file %s"
- msgstr ""
- #: scripts/dpkg-source.pl:1418
- msgid "pipe for gzip"
- msgstr ""
- #: scripts/dpkg-source.pl:1419
- msgid "fork for gzip"
- msgstr ""
- #: scripts/dpkg-source.pl:1421
- msgid "reopen gzip pipe"
- msgstr ""
- #: scripts/dpkg-source.pl:1422
- msgid "reopen tar.gz"
- msgstr ""
- #: scripts/dpkg-source.pl:1423
- msgid "exec gzip"
- msgstr ""
- #: scripts/dpkg-source.pl:1440
- #, perl-format
- msgid "unknown compression type on file %s"
- msgstr ""
- #: scripts/dpkg-source.pl:1443
- #, perl-format
- msgid "read file %s"
- msgstr ""
- #: scripts/dpkg-source.pl:1444
- #, perl-format
- msgid "pipe for %s"
- msgstr ""
- #: scripts/dpkg-source.pl:1445
- #, perl-format
- msgid "fork for %s"
- msgstr ""
- #: scripts/dpkg-source.pl:1447
- #, perl-format
- msgid "reopen %s pipe"
- msgstr ""
- #: scripts/dpkg-source.pl:1448
- msgid "reopen input file"
- msgstr ""
- #: scripts/dpkg-source.pl:1449
- #, perl-format
- msgid "exec %s"
- msgstr ""
- #: scripts/dpkg-source.pl:1456
- msgid "wait for gzip"
- msgstr ""
- #: scripts/dpkg-source.pl:1466
- #, perl-format
- msgid "tried to add file `%s' twice"
- msgstr ""
- #: scripts/dpkg-source.pl:1467
- #, perl-format
- msgid "could not stat output file `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:1488
- #, perl-format
- msgid "bogus character `\\%s' in `%s'"
- msgstr ""
- #: scripts/changelog/debian.pl:47
- #, perl-format
- msgid ""
- "Usage: %s [<option>]\n"
- "\n"
- "Options:\n"
- " -l<changelog> use <changelog> as the file name when reporting.\n"
- " -v<versionsince> print changes since <versionsince>.\n"
- " -h, --help print this help message.\n"
- " --version print program version.\n"
- msgstr ""
- #: scripts/changelog/debian.pl:87
- msgid "-v<since> option specifies most recent version"
- msgstr ""
- #: scripts/changelog/debian.pl:94
- #, perl-format
- msgid "found start of entry where expected %s"
- msgstr ""
- #: scripts/changelog/debian.pl:101
- #, perl-format
- msgid "bad key-value after `;': `%s'"
- msgstr ""
- #: scripts/changelog/debian.pl:104
- #, perl-format
- msgid "repeated key-value %s"
- msgstr ""
- #: scripts/changelog/debian.pl:107
- msgid "badly formatted urgency value"
- msgstr ""
- #: scripts/changelog/debian.pl:117
- #, perl-format
- msgid "unknown urgency value %s - comparing very low"
- msgstr ""
- #: scripts/changelog/debian.pl:120
- #, perl-format
- msgid "urgency >%s<"
- msgstr ""
- #: scripts/changelog/debian.pl:138
- #, perl-format
- msgid "unknown key-value key %s - copying to %s"
- msgstr ""
- #: scripts/changelog/debian.pl:145
- msgid "badly formatted heading line"
- msgstr ""
- #: scripts/changelog/debian.pl:148
- #, perl-format
- msgid "found trailer where expected %s"
- msgstr ""
- #: scripts/changelog/debian.pl:155
- msgid "badly formatted trailer line"
- msgstr ""
- #: scripts/changelog/debian.pl:158
- #, perl-format
- msgid "found change data where expected %s"
- msgstr ""
- #: scripts/changelog/debian.pl:164
- #, perl-format
- msgid "found blank line where expected %s"
- msgstr ""
- #: scripts/changelog/debian.pl:167
- msgid "unrecognised line"
- msgstr ""
- #: scripts/changelog/debian.pl:171
- #, perl-format
- msgid "found eof where expected %s"
- msgstr ""
- #: scripts/changelog/debian.pl:188 scripts/changelog/debian.pl:193
- #, perl-format
- msgid "%s, at file %s line %d"
- msgstr ""
|