| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760 |
- # 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: 2009-11-27 18:45+0100\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/dpkg-architecture.pl:35 scripts/dpkg-buildpackage.pl:37
- #: scripts/dpkg-distaddfile.pl:33 scripts/dpkg-genchanges.pl:97
- #: scripts/dpkg-gencontrol.pl:56 scripts/dpkg-gensymbols.pl:47
- #: scripts/dpkg-name.pl:46 scripts/dpkg-parsechangelog.pl:31
- #: scripts/dpkg-scanpackages.pl:60 scripts/dpkg-scansources.pl:83
- #: scripts/dpkg-shlibdeps.pl:517 scripts/dpkg-source.pl:386
- #: scripts/changelog/debian.pl:34
- #, perl-format
- msgid "Debian %s version %s.\n"
- msgstr ""
- #: scripts/dpkg-architecture.pl:37
- 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:41 scripts/dpkg-buildpackage.pl:44
- #: scripts/dpkg-distaddfile.pl:38 scripts/dpkg-genchanges.pl:103
- #: scripts/dpkg-gencontrol.pl:62 scripts/dpkg-gensymbols.pl:53
- #: scripts/dpkg-parsechangelog.pl:37 scripts/dpkg-shlibdeps.pl:526
- #: scripts/dpkg-source.pl:392 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:49
- #, 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:119 scripts/dpkg-distaddfile.pl:68
- #: scripts/dpkg-genchanges.pl:194 scripts/dpkg-gencontrol.pl:131
- #: scripts/dpkg-gensymbols.pl:125 scripts/dpkg-parsechangelog.pl:113
- #: scripts/dpkg-shlibdeps.pl:118
- #, perl-format
- msgid "unknown option `%s'"
- msgstr ""
- #: scripts/dpkg-architecture.pl:144
- #, perl-format
- msgid "unknown Debian architecture %s, you must specify GNU system type, too"
- msgstr ""
- #: scripts/dpkg-architecture.pl:151
- #, perl-format
- msgid "unknown GNU system type %s, you must specify Debian architecture, too"
- msgstr ""
- #: scripts/dpkg-architecture.pl:158
- #, perl-format
- msgid "unknown default GNU system type for Debian architecture %s"
- msgstr ""
- #: scripts/dpkg-architecture.pl:161
- #, 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:172
- #, perl-format
- msgid "Specified GNU system type %s does not match gcc system type %s."
- msgstr ""
- #: scripts/dpkg-architecture.pl:214
- #, perl-format
- msgid "%s is not a supported variable name"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:39
- msgid ""
- "\n"
- "Copyright (C) 1996 Ian Jackson.\n"
- "Copyright (C) 2000 Wichert Akkerman\n"
- "Copyright (C) 2007 Frank Lichtenheld"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:51
- #, perl-format
- msgid ""
- "\n"
- "Usage: %s [<options> ...]\n"
- "\n"
- "Options:\n"
- " -r<gain-root-command>\n"
- " command to gain root privileges (default is fakeroot).\n"
- " -R<rules> rules file to execute (default is debian/rules).\n"
- " -p<sign-command>\n"
- " -d do not check build dependencies and conflicts.\n"
- " -D check build dependencies and conflicts.\n"
- " -T<target> call debian/rules <target> with the proper environment\n"
- " --as-root ensure -T calls the target with root rights\n"
- " -j[<number>] specify jobs to run simultaneously } passed to debian/"
- "rules\n"
- " -k<keyid> the key to use for signing.\n"
- " -sgpg the sign-command is called like GPG.\n"
- " -spgp the sign-command is called like PGP.\n"
- " -us unsigned source.\n"
- " -uc unsigned changes.\n"
- " -a<arch> Debian architecture we build for (implies -d).\n"
- " -b binary-only, do not build source. } also passed to\n"
- " -B binary-only, no arch-indep files. } dpkg-genchanges\n"
- " -A binary-only, only arch-indep files. }\n"
- " -S source only, no binary files. }\n"
- " -t<system> set GNU system type. } passed to dpkg-"
- "architecture\n"
- " -v<version> changes since version <version>. }\n"
- " -m<maint> maintainer for package is <maint>. }\n"
- " -e<maint> maintainer for release is <maint>. } only passed\n"
- " -C<descfile> changes are described in <descfile>. } to dpkg-genchanges\n"
- " -si (default) src includes orig if new upstream. }\n"
- " -sa uploaded src always includes orig. }\n"
- " -sd uploaded src is diff and .dsc only. }\n"
- " -sn force Debian native source format. }\n"
- " -s[sAkurKUR] see dpkg-source for explanation. } only passed\n"
- " -z<level> compression level of source } to dpkg-source\n"
- " -Z<compressor> compression to use for source }\n"
- " -nc do not clean source tree (implies -b).\n"
- " -tc clean source tree when finished.\n"
- " -ap add pause before starting signature process.\n"
- " -i[<regex>] ignore diffs of files matching regex. } only passed\n"
- " -I[<pattern>] filter out files when building tarballs. } to dpkg-source\n"
- " --admindir=<directory>\n"
- " change the administrative directory.\n"
- " -h, --help show this help message.\n"
- " --version show the version.\n"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:204 scripts/dpkg-source.pl:166
- msgid "-E and -W are deprecated, they are without effect"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:208
- #, perl-format
- msgid "unknown option or argument %s"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:213 scripts/dpkg-genchanges.pl:144
- #: scripts/dpkg-genchanges.pl:147 scripts/dpkg-genchanges.pl:151
- #: scripts/dpkg-genchanges.pl:155
- #, perl-format
- msgid "cannot combine %s and %s"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:221
- msgid "using a gain-root-command while being root"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:227
- msgid ""
- "fakeroot not found, either install the fakeroot\n"
- "package, specify a command with the -r option, or run this as root"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:231
- #, perl-format
- msgid "gain-root-commmand '%s' not found"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:250
- msgid "unknown sign command, assuming pgp style interface"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:253
- msgid "PGP support is deprecated (see README.feature-removal-schedule)"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:281
- #, perl-format
- msgid "%s: use %s from environment: %s\n"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:285
- #, perl-format
- msgid "%s: set %s to default value: %s\n"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:298
- msgid "source package"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:299
- msgid "source version"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:309
- msgid "source changed by"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:337
- msgid "host architecture"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:350
- msgid "debian/rules is not executable: fixing that."
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:363
- msgid "Build dependencies/conflicts unsatisfied; aborting."
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:364
- msgid "(Use -d flag to override.)"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:367
- msgid "This is currently a non-fatal warning with -S, but"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:368
- msgid "will probably become fatal in the future."
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:390
- msgid ""
- "it is a bad idea to generate a source package without cleaning up first, it "
- "might contain undesired files."
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:406
- msgid "Press the return key to start signing process\n"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:413
- msgid "Failed to sign .dsc and .changes file"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:434 scripts/dpkg-buildpackage.pl:438
- #: scripts/dpkg-buildpackage.pl:451
- msgid "write changes file"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:450
- msgid "dpkg-genchanges"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:458
- msgid "source only upload: Debian-native package"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:460
- msgid "source only, diff-only upload (original source NOT included)"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:462
- msgid "source only upload (original source is included)"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:465 scripts/dpkg-buildpackage.pl:473
- msgid "full upload (original source is included)"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:467
- msgid "binary only upload (no source included)"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:469
- msgid "full upload; Debian-native package (full source is included)"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:471
- msgid "binary and diff upload (original source NOT included)"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:478
- msgid "Failed to sign .changes file"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:502
- #, perl-format
- msgid "unable to determine %s"
- msgstr ""
- #: scripts/dpkg-checkbuilddeps.pl:35
- #, 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"
- " -d build-deps use given string as build dependencies instead of\n"
- " retrieving them from control file\n"
- " -c build-conf use given string for build conflicts instead of\n"
- " retrieving them from control file\n"
- " --admindir=<directory>\n"
- " change the administrative directory.\n"
- " -h show this help message.\n"
- msgstr ""
- #: scripts/dpkg-checkbuilddeps.pl:100
- #, perl-format
- msgid "%s: Unmet build dependencies: "
- msgstr ""
- #: scripts/dpkg-checkbuilddeps.pl:104
- #, perl-format
- msgid "%s: Build conflicts: "
- msgstr ""
- #: scripts/dpkg-checkbuilddeps.pl:180 scripts/dpkg-source.pl:213
- #, perl-format
- msgid "error occurred while parsing %s"
- msgstr ""
- #: scripts/dpkg-distaddfile.pl:35
- msgid ""
- "\n"
- "Copyright (C) 1996 Ian Jackson."
- msgstr ""
- #: scripts/dpkg-distaddfile.pl:46
- #, 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:72
- msgid "need exactly a filename, section and priority"
- msgstr ""
- #: scripts/dpkg-distaddfile.pl:76
- msgid "filename, section and priority may contain no whitespace"
- msgstr ""
- #: scripts/dpkg-distaddfile.pl:79 scripts/dpkg-gencontrol.pl:323
- msgid "open new files list file"
- msgstr ""
- #: scripts/dpkg-distaddfile.pl:84 scripts/dpkg-gencontrol.pl:334
- msgid "copy old entry to new files list file"
- msgstr ""
- #: scripts/dpkg-distaddfile.pl:87 scripts/dpkg-gencontrol.pl:338
- msgid "read old files list file"
- msgstr ""
- #: scripts/dpkg-distaddfile.pl:90 scripts/dpkg-gencontrol.pl:348
- msgid "write new entry to new files list file"
- msgstr ""
- #: scripts/dpkg-distaddfile.pl:91 scripts/dpkg-gencontrol.pl:349
- msgid "close new files list file"
- msgstr ""
- #: scripts/dpkg-distaddfile.pl:93 scripts/dpkg-gencontrol.pl:350
- msgid "install new files list file"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:99
- msgid ""
- "\n"
- "Copyright (C) 1996 Ian Jackson.\n"
- "Copyright (C) 2000,2001 Wichert Akkerman."
- msgstr ""
- #: scripts/dpkg-genchanges.pl:111
- #, 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"
- " -A only arch-indep - no source or arch-specific "
- "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 if new upstream.\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:149
- #, perl-format
- msgid "%s: arch-specific upload - not including arch-independent packages"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:153
- #, perl-format
- msgid "%s: arch-indep upload - not including arch-specific packages"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:219
- #, perl-format
- msgid "the current version (%s) is smaller than the previous one (%s)"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:226
- msgid "cannot read files list file"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:230
- #, perl-format
- msgid "duplicate files list entry for package %s (line %d)"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:238 scripts/dpkg-genchanges.pl:252
- #, perl-format
- msgid "duplicate files list entry for file %s (line %d)"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:258
- #, perl-format
- msgid "badly formed line in files list file, line %d"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:299
- #, perl-format
- msgid "package %s in control file but not in files list"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:343
- msgid "read changesdescription"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:351
- #, perl-format
- msgid "package %s listed in files list but not in control info"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:363
- #, perl-format
- msgid "missing Section for binary package %s; using '-'"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:365
- #, perl-format
- msgid "package %s has section %s in control file but %s in files list"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:372
- #, perl-format
- msgid "missing Priority for binary package %s; using '-'"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:374
- #, perl-format
- msgid "package %s has priority %s in control file but %s in files list"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:386
- msgid "missing Section for source files"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:391
- msgid "missing Priority for source files"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:396
- #, perl-format
- msgid "cannot open .dsc file %s"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:400 scripts/Dpkg/Source/Package.pm:142
- #, perl-format
- msgid "source control file %s"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:401 scripts/Dpkg/Vendor.pm:65
- #, perl-format
- msgid "%s is empty"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:410 scripts/Dpkg/Source/Package.pm:202
- #, perl-format
- msgid "Files field contains bad line `%s'"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:414 scripts/Dpkg/Checksums.pm:64
- #, perl-format
- msgid "Conflicting checksums `%s' and `%s' for file `%s'"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:419
- #, perl-format
- msgid "Conflicting sizes `%u' and `%u' for file `%s'"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:447
- msgid "not including original source code in upload"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:452
- msgid "ignoring -sd option for native Debian package"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:454
- msgid "including full source code in upload"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:457
- msgid "binary-only upload - not including any source code"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:461
- msgid "write original source message"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:513 scripts/Dpkg/Source/Package.pm:435
- #, perl-format
- msgid "missing information for critical output field %s"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:518 scripts/dpkg-gencontrol.pl:263
- #: scripts/dpkg-gencontrol.pl:266 scripts/Dpkg/Source/Package.pm:440
- #, perl-format
- msgid "missing information for output field %s"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:58
- msgid ""
- "\n"
- "Copyright (C) 1996 Ian Jackson.\n"
- "Copyright (C) 2000,2002 Wichert Akkerman."
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:70
- #, 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:97 scripts/dpkg-gensymbols.pl:106
- #, perl-format
- msgid "Illegal package name `%s'"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:150
- #, perl-format
- msgid "package %s not in control info"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:154 scripts/dpkg-gensymbols.pl:143
- #, perl-format
- msgid "must specify package since control info has many (%s)"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:182
- #, 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:188
- #, perl-format
- msgid ""
- "current host architecture '%s' does not appear in package's architecture "
- "list (%s)"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:244 scripts/dpkg-gencontrol.pl:252
- #, perl-format
- msgid "error occurred while parsing %s field: %s"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:277
- #, perl-format
- msgid "%s package with udeb specific field %s"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:290
- msgid "fork for du"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:293
- #, perl-format
- msgid "chdir for du to `%s'"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:294 scripts/Dpkg/IPC.pm:261
- #, perl-format
- msgid "exec %s"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:301
- #, perl-format
- msgid "du in `%s'"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:303
- #, perl-format
- msgid "du gave unexpected output `%s'"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:336
- msgid "close old files list file"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:358
- #, perl-format
- msgid "cannot open new output control file `%s'"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:369
- #, perl-format
- msgid "cannot install output control file `%s'"
- msgstr ""
- #: scripts/dpkg-gensymbols.pl:49
- msgid ""
- "\n"
- "Copyright (C) 2007 Raphael Hertzog.\n"
- msgstr ""
- #: scripts/dpkg-gensymbols.pl:61
- #, perl-format
- msgid ""
- "Usage: %s [<option> ...]\n"
- "\n"
- "Options:\n"
- " -p<package> generate symbols file for package.\n"
- " -P<packagebuilddir> temporary build dir instead of debian/tmp.\n"
- " -e<library> explicitely list libraries to scan.\n"
- " -v<version> version of the packages (defaults to\n"
- " version extracted from debian/changelog).\n"
- " -c<level> compare generated symbols file with the\n"
- " reference file in the debian directory.\n"
- "\t\t\t Fails if difference are too important\n"
- "\t\t\t (level goes from 0 for no check, to 4\n"
- "\t\t\t for all checks). By default checks at\n"
- "\t\t\t level 1.\n"
- " -I<file> force usage of <file> as reference symbols\n"
- " file instead of the default file.\n"
- " -O<file> write to <file>, not .../DEBIAN/symbols.\n"
- " -O write to stdout, not .../DEBIAN/symbols.\n"
- " -t write in template mode (tags are not\n"
- " processed and included in output).\n"
- " -d display debug information during work.\n"
- " -h, --help show this help message.\n"
- " --version show the version.\n"
- msgstr ""
- #: scripts/dpkg-gensymbols.pl:178
- #, perl-format
- msgid "Can't read directory %s: %s"
- msgstr ""
- #: scripts/dpkg-gensymbols.pl:193
- #, perl-format
- msgid "Objdump couldn't parse %s\n"
- msgstr ""
- #: scripts/dpkg-gensymbols.pl:237
- #, perl-format
- msgid "new libraries appeared in the symbols file: %s"
- msgstr ""
- #: scripts/dpkg-gensymbols.pl:241
- #, perl-format
- msgid "some libraries disappeared in the symbols file: %s"
- msgstr ""
- #: scripts/dpkg-gensymbols.pl:249
- #, perl-format
- msgid "some new symbols appeared in the symbols file: %s"
- msgstr ""
- #: scripts/dpkg-gensymbols.pl:250 scripts/dpkg-gensymbols.pl:255
- msgid "see diff output below"
- msgstr ""
- #: scripts/dpkg-gensymbols.pl:270
- #, perl-format
- msgid "some symbols disappeared in the symbols file: %s"
- msgstr ""
- #: scripts/dpkg-gensymbols.pl:287
- #, perl-format
- msgid "%s doesn't match completely %s"
- msgstr ""
- #: scripts/dpkg-gensymbols.pl:290
- #, perl-format
- msgid "no debian/symbols file used as basis for generating %s"
- msgstr ""
- #: scripts/dpkg-name.pl:51
- #, perl-format
- msgid "Usage: %s [<option>...] <file>...\n"
- msgstr ""
- #: scripts/dpkg-name.pl:53
- msgid ""
- "\n"
- "Options:\n"
- " -a, --no-architecture no architecture part in filename.\n"
- " -o, --overwrite overwrite if file exists.\n"
- " -k, --symlink don't create a new file, but a symlink.\n"
- " -s, --subdir [dir] move file into subdir (use with care).\n"
- " -c, --create-dir create target dir if not there (use with care).\n"
- " -h, --help show this help message.\n"
- " -v, --version show the version.\n"
- "\n"
- "file.deb changes to <package>_<version>_<architecture>.<package_type>\n"
- "according to the 'underscores convention'.\n"
- msgstr ""
- #: scripts/dpkg-name.pl:75
- #, perl-format
- msgid "cannot find '%s'"
- msgstr ""
- #: scripts/dpkg-name.pl:96 scripts/Dpkg/Arch.pm:135 scripts/Dpkg/Arch.pm:154
- #: scripts/Dpkg/Arch.pm:173 scripts/Dpkg/Changelog/Parse.pm:138
- #: scripts/Dpkg/IPC.pm:237 scripts/Dpkg/Shlibs.pm:76
- #: scripts/Dpkg/Shlibs/SymbolFile.pm:144 scripts/Dpkg/Source/Package.pm:131
- #: scripts/Dpkg/Source/Package.pm:140
- #, perl-format
- msgid "cannot open %s"
- msgstr ""
- #: scripts/dpkg-name.pl:98
- #, perl-format
- msgid "binary control file %s"
- msgstr ""
- #: scripts/dpkg-name.pl:111
- #, perl-format
- msgid "assuming architecture '%s' for '%s'"
- msgstr ""
- #: scripts/dpkg-name.pl:215
- msgid "need at least a filename"
- msgstr ""
- #: scripts/dpkg-parsechangelog.pl:33
- msgid ""
- "\n"
- "Copyright (C) 1996 Ian Jackson.\n"
- "Copyright (C) 2001 Wichert Akkerman"
- msgstr ""
- #: scripts/dpkg-parsechangelog.pl:45
- #, perl-format
- msgid ""
- "Usage: %s [<option> ...]\n"
- "\n"
- "Options:\n"
- " -l<changelogfile> get per-version info from this file.\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"
- "\n"
- "parser options:\n"
- " --format <outputformat> see man page for list of available\n"
- " output formats, defaults to 'dpkg'\n"
- " for compatibility with dpkg-dev\n"
- " --since <version>, include all changes later than version\n"
- " -s<version>, -v<version>\n"
- " --until <version>, include all changes earlier than version\n"
- " -u<version>\n"
- " --from <version>, include all changes equal or later\n"
- " -f<version> than version\n"
- " --to <version>, -t<version> include all changes up to or equal\n"
- " than version\n"
- " --count <number>, include <number> entries from the top\n"
- " -c<number>, -n<number> (or the tail if <number> is lower than 0)\n"
- " --offset <number>, change the starting point for --count,\n"
- " -o<number> counted from the top (or the tail if\n"
- " <number> is lower than 0)\n"
- " --all include all changes\n"
- msgstr ""
- #: scripts/dpkg-parsechangelog.pl:117
- #, perl-format
- msgid "%s takes no non-option arguments"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:66
- #, perl-format
- msgid ""
- "Usage: %s [<option> ...] <binarypath> [<overridefile> [<pathprefix>]] > "
- "Packages\n"
- "\n"
- "Options:\n"
- " -t, --type <type> scan for <type> packages (default is 'deb').\n"
- " -u, --udeb scan for udebs (obsolete alias for -tudeb).\n"
- " -a, --arch <arch> architecture to scan for.\n"
- " -m, --multiversion allow multiple versions of a single package.\n"
- " -e, --extra-override <file>\n"
- " use extra override file.\n"
- " -M, --medium <medium> add X-Medium field for dselect multicd access "
- "method\n"
- " -h, --help show this help message.\n"
- " --version show the version.\n"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:83
- msgid "-u, --udeb option is deprecated (see README.feature-removal-schedule)"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:113
- #, perl-format
- msgid " %s (package says %s, not %s)"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:121
- #, perl-format
- msgid "Unconditional maintainer override for %s"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:162
- msgid "1 to 3 args expected"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:179
- #, perl-format
- msgid "Binary dir %s not found"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:181
- #, perl-format
- msgid "Override file %s not found"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:187
- #, perl-format
- msgid "Couldn't open %s for reading"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:197
- #, perl-format
- msgid "couldn't parse control information from %s."
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:200
- #, perl-format
- msgid "`dpkg-deb -I %s control' exited with %d, skipping package"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:206
- #, perl-format
- msgid "No Package field in control file of %s"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:214
- #, perl-format
- msgid "Package %s (filename %s) is repeat but newer version;"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:216
- #, perl-format
- msgid "used that one and ignored data from %s!"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:220
- #, perl-format
- msgid "Package %s (filename %s) is repeat;"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:221
- #, perl-format
- msgid "ignored that one and using data from %s!"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:227
- #, perl-format
- msgid "Package %s (filename %s) has Filename field!"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:260
- msgid "Failed when writing stdout"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:264
- msgid "Couldn't close stdout"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:267
- msgid "Packages in override file with incorrect old maintainer value:"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:271
- msgid "Packages specifying same maintainer as override file:"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:275
- msgid "Packages in archive but missing from override file:"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:279
- msgid "Packages in override file but not in archive:"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:283
- #, perl-format
- msgid "Wrote %s entries to output Packages file."
- msgstr ""
- #: scripts/dpkg-scansources.pl:89
- #, 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"
- " -e, --extra-override <file>\n"
- " use extra override file.\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:131
- #, perl-format
- msgid "error closing %s ($? %d, $! `%s')"
- msgstr ""
- #: scripts/dpkg-scansources.pl:153
- #, perl-format
- msgid "invalid override entry at line %d (%d fields)"
- msgstr ""
- #: scripts/dpkg-scansources.pl:159
- #, perl-format
- msgid "ignoring duplicate override entry for %s at line %d"
- msgstr ""
- #: scripts/dpkg-scansources.pl:164
- #, perl-format
- msgid "ignoring override entry for %s, invalid priority %s"
- msgstr ""
- #: scripts/dpkg-scansources.pl:219
- #, perl-format
- msgid "invalid source override entry at line %d (%d fields)"
- msgstr ""
- #: scripts/dpkg-scansources.pl:227
- #, perl-format
- msgid "ignoring duplicate source override entry for %s at line %d"
- msgstr ""
- #: scripts/dpkg-scansources.pl:274
- #, perl-format
- msgid "no binary packages specified in %s"
- msgstr ""
- #: scripts/dpkg-scansources.pl:346
- msgid "1 to 3 args expected\n"
- msgstr ""
- #: scripts/dpkg-scansources.pl:357 scripts/dpkg-shlibdeps.pl:818
- #: scripts/Dpkg/Shlibs/Objdump.pm:82 scripts/Dpkg/Shlibs/Objdump.pm:156
- #, perl-format
- msgid "cannot fork for %s"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:93
- #, perl-format
- msgid "administrative directory '%s' does not exist"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:97
- #, perl-format
- msgid "unrecognised dependency field `%s'"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:131
- msgid "need at least one executable"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:171
- #, perl-format
- msgid ""
- "couldn't find library %s needed by %s (ELF format: '%s'; RPATH: '%s').\n"
- "Note: libraries are not searched in other binary packages that do not have "
- "any shlibs or symbols file.\n"
- "To help dpkg-shlibdeps find private libraries, you might need to set "
- "LD_LIBRARY_PATH."
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:259
- #, perl-format
- msgid "%s has an unexpected SONAME (%s)"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:280
- #, perl-format
- msgid "no dependency information found for %s (used by %s)."
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:311
- msgid ""
- "binaries to analyze should already be installed in their package's directory."
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:353
- #, perl-format
- msgid "symbol %s used by %s found in none of the libraries."
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:356
- #, perl-format
- msgid ""
- "%s contains an unresolvable reference to symbol %s: it's probably a plugin."
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:378
- #, perl-format
- msgid "%d other similar warnings have been skipped (use -v to see them all)."
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:403
- #, perl-format
- msgid "%s shouldn't be linked with %s (it uses none of its symbols)."
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:416
- #, perl-format
- msgid ""
- "dependency on %s could be avoided if \"%s\" were not uselessly linked "
- "against it (they use none of its symbols)."
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:429
- #, perl-format
- msgid "open new substvars file `%s'"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:432
- #, perl-format
- msgid "open old varlist file `%s' for reading"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:435
- #, perl-format
- msgid "copy old entry to new varlist file `%s'"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:499
- #, perl-format
- msgid "invalid dependency got generated: %s"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:509
- #, perl-format
- msgid "install new varlist file `%s'"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:519
- msgid ""
- "\n"
- "Copyright (C) 1996 Ian Jackson.\n"
- "Copyright (C) 2000 Wichert Akkerman.\n"
- "Copyright (C) 2006 Frank Lichtenheld.\n"
- "Copyright (C) 2007 Raphael Hertzog.\n"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:534
- #, 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"
- " -x<package> exclude package from the generated dependencies.\n"
- " -S<pkgbuilddir> search needed libraries in the given\n"
- " package build directory first.\n"
- " -v enable verbose mode (can be used multiple "
- "times).\n"
- " --ignore-missing-info don't fail if dependency information can't be "
- "found.\n"
- " --warnings=<value> define set of active warnings (see manual page).\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:660
- #, perl-format
- msgid "Can't extract name and version from library name `%s'"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:667
- #, perl-format
- msgid "unable to open shared libs info file `%s'"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:673
- #, perl-format
- msgid "shared libs info file `%s' line %d: bad line `%s'"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:731
- #, perl-format
- msgid "cannot open file %s"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:765
- #, perl-format
- msgid ""
- "$ORIGIN is used in RPATH of %s and the corresponding directory could not be "
- "identified due to lack of DEBIAN sub-directory in the root of package's "
- "build tree"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:825
- msgid "cannot exec dpkg"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:830
- msgid "diversions involved - output may be incorrect"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:832
- msgid "write diversion info to stderr"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:836
- #, perl-format
- msgid "unknown output from dpkg --search: '%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:90
- #, perl-format
- msgid "%s needs a directory"
- msgstr ""
- #: scripts/dpkg-source.pl:93
- #, perl-format
- msgid "cannot stat directory %s"
- msgstr ""
- #: scripts/dpkg-source.pl:95
- #, perl-format
- msgid "directory argument %s is not a directory"
- msgstr ""
- #: scripts/dpkg-source.pl:105
- #, perl-format
- msgid "using options from %s: %s"
- msgstr ""
- #: scripts/dpkg-source.pl:119 scripts/Dpkg/Source/Compressor.pm:34
- #, perl-format
- msgid "%s is not a supported compression"
- msgstr ""
- #: scripts/dpkg-source.pl:125 scripts/Dpkg/Source/Compressor.pm:41
- #: scripts/Dpkg/Source/Compressor.pm:67
- #, perl-format
- msgid "%s is not a compression level"
- msgstr ""
- #: scripts/dpkg-source.pl:178
- msgid "need -x or -b"
- msgstr ""
- #: scripts/dpkg-source.pl:237
- #, perl-format
- msgid "`%s' is not a legal architecture string"
- msgstr ""
- #: scripts/dpkg-source.pl:240
- #, perl-format
- msgid "architecture %s only allowed on its own (list for package %s is `%s')"
- msgstr ""
- #: scripts/dpkg-source.pl:286 scripts/Dpkg/Changelog.pm:79
- #: scripts/Dpkg/Conf.pm:77 scripts/Dpkg/Control/Info.pm:85
- #: scripts/Dpkg/Control/Hash.pm:148 scripts/Dpkg/Shlibs/Objdump.pm:97
- #: scripts/Dpkg/Source/CompressedFile.pm:133
- #: scripts/Dpkg/Source/Package/V2.pm:296
- #: scripts/Dpkg/Source/Package/V3/quilt.pm:98
- #: scripts/Dpkg/Source/Package/V3/quilt.pm:304 scripts/Dpkg/Vendor.pm:63
- #, perl-format
- msgid "cannot read %s"
- msgstr ""
- #: scripts/dpkg-source.pl:299
- #, perl-format
- msgid "source format `%s' discarded: %s"
- msgstr ""
- #: scripts/dpkg-source.pl:306
- #, perl-format
- msgid "using source format `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:318 scripts/Dpkg/Source/Package/V1.pm:289
- #: scripts/Dpkg/Source/Package/V1.pm:334 scripts/Dpkg/Source/Package/V2.pm:417
- #: scripts/Dpkg/Source/Package/V3/bzr.pm:150
- #: scripts/Dpkg/Source/Package/V3/native.pm:81
- #: scripts/Dpkg/Source/Package/V3/git.pm:214
- #, perl-format
- msgid "building %s in %s"
- msgstr ""
- #: scripts/dpkg-source.pl:330
- msgid "-x needs at least one argument, the .dsc"
- msgstr ""
- #: scripts/dpkg-source.pl:333
- msgid "-x takes no more than two arguments"
- msgstr ""
- #: scripts/dpkg-source.pl:337
- msgid "-x needs the .dsc file as first argument, not a directory"
- msgstr ""
- #: scripts/dpkg-source.pl:353
- #, perl-format
- msgid "unpack target exists: %s"
- msgstr ""
- #: scripts/dpkg-source.pl:363
- #, perl-format
- msgid "%s doesn't contain a valid OpenPGP signature"
- msgstr ""
- #: scripts/dpkg-source.pl:365
- #, perl-format
- msgid "extracting unsigned source package (%s)"
- msgstr ""
- #: scripts/dpkg-source.pl:372
- #, perl-format
- msgid "extracting %s in %s"
- msgstr ""
- #: scripts/dpkg-source.pl:380
- msgid "only one of -x, -b or --print-format allowed, and only once"
- msgstr ""
- #: scripts/dpkg-source.pl:388
- msgid ""
- "\n"
- "Copyright (C) 1996 Ian Jackson and Klee Dienes.\n"
- "Copyright (C) 2008 Raphael Hertzog"
- msgstr ""
- #: scripts/dpkg-source.pl:400
- #, perl-format
- msgid ""
- "Usage: %s [<option> ...] <command>\n"
- "\n"
- "Commands:\n"
- " -x <filename>.dsc [<output-dir>]\n"
- " extract source package.\n"
- " -b <dir> build source package.\n"
- " --print-format <dir> print the source format that would be\n"
- " used to build the source package."
- msgstr ""
- #: scripts/dpkg-source.pl:409
- #, perl-format
- msgid ""
- "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.\n"
- " -D<field>=<value> override or add a .dsc field and value.\n"
- " -U<field> remove a field.\n"
- " -q quiet mode.\n"
- " -i[<regexp>] filter out files to ignore diffs of\n"
- " (defaults to: '%s').\n"
- " -I[<pattern>] filter out files when building tarballs\n"
- " (defaults to: %s).\n"
- " -Z<compression> select compression to use (defaults to '%s',\n"
- " supported are: %s).\n"
- " -z<level> compression level to use (defaults to '%d',\n"
- " supported are: '1'-'9', 'best', 'fast')"
- msgstr ""
- #: scripts/dpkg-source.pl:427
- msgid ""
- "Extract options:\n"
- " --no-copy don't copy .orig tarballs\n"
- " --no-check don't check signature and checksums before "
- "unpacking\n"
- " --require-valid-signature abort if the package doesn't have a valid "
- "signature"
- msgstr ""
- #: scripts/dpkg-source.pl:432
- msgid ""
- "General options:\n"
- " -h, --help show this help message.\n"
- " --version show the version."
- msgstr ""
- #: scripts/dpkg-source.pl:436
- msgid ""
- "More options are available but they depend on the source package format.\n"
- "See dpkg-source(1) for more info."
- msgstr ""
- #: scripts/changelog/debian.pl:36
- msgid ""
- "\n"
- "Copyright (C) 1996 Ian Jackson.\n"
- "Copyright (C) 2005,2007 Frank Lichtenheld."
- msgstr ""
- #: scripts/changelog/debian.pl:47
- #, perl-format
- msgid ""
- "Usage: %s [<option>...] [<changelogfile>]\n"
- "\n"
- "Options:\n"
- " --help, -h print usage information\n"
- " --version, -V print version information\n"
- " --label, -l <file> name of the changelog file to\n"
- " use in error messages\n"
- " --file <file> changelog file to parse, defaults\n"
- " to '-' (standard input)\n"
- " --format <outputformat> see man page for list of available\n"
- " output formats, defaults to 'dpkg'\n"
- " for compatibility with dpkg-dev\n"
- " --since, -s, -v <version> include all changes later than version\n"
- " --until, -u <version> include all changes earlier than version\n"
- " --from, -f <version> include all changes equal or later\n"
- " than version\n"
- " --to, -t <version> include all changes up to or equal\n"
- " than version\n"
- " --count, -c, -n <number> include <number> entries from the top\n"
- " (or the tail if <number> is lower than 0)\n"
- " --offset, -o <number> change the starting point for --count,\n"
- " counted from the top (or the tail if\n"
- " <number> is lower than 0)\n"
- " --all include all changes\n"
- msgstr ""
- #: scripts/changelog/debian.pl:86
- #, perl-format
- msgid "output format %s not supported"
- msgstr ""
- #: scripts/changelog/debian.pl:111
- #, perl-format
- msgid "more than one file specified (%s and %s)"
- msgstr ""
- #: scripts/changelog/debian.pl:135 scripts/Dpkg/Control/Info.pm:55
- msgid "standard input"
- msgstr ""
- #: scripts/changelog/debian.pl:136
- msgid "fatal error occured while parsing input"
- msgstr ""
- #: scripts/changelog/debian.pl:139
- #, perl-format
- msgid "fatal error occured while parsing %s"
- msgstr ""
- #: scripts/Dpkg/Arch.pm:83
- msgid ""
- "Couldn't determine gcc system type, falling back to default (native "
- "compilation)"
- msgstr ""
- #: scripts/Dpkg/Arch.pm:92
- #, perl-format
- msgid ""
- "Unknown gcc system type %s, falling back to default (native compilation)"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:174 scripts/Dpkg/Changelog.pm:176
- #: scripts/Dpkg/ErrorHandling.pm:54
- msgid "warning"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:174
- #, perl-format
- msgid ""
- "%s(l%s): %s\n"
- "LINE: %s"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:176
- #, perl-format
- msgid "%s(l%s): %s"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:224
- msgid "'offset' without 'count' has no effect"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:232
- msgid "you can't combine 'count' or 'offset' with any other range option"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:240
- msgid "you can only specify one of 'from' and 'since', using 'since'"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:245
- msgid "you can only specify one of 'to' and 'until', using 'until'"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:257 scripts/Dpkg/Changelog.pm:273
- #: scripts/Dpkg/Changelog.pm:289 scripts/Dpkg/Changelog.pm:305
- #, perl-format
- msgid "'%s' option specifies non-existing version"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:258 scripts/Dpkg/Changelog.pm:306
- msgid "use newest entry that is smaller than the one specified"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:267
- msgid "none found, starting from the oldest entry"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:274 scripts/Dpkg/Changelog.pm:290
- msgid "use oldest entry that is bigger than the one specified"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:284 scripts/Dpkg/Changelog.pm:300
- #: scripts/Dpkg/Changelog.pm:315
- #, perl-format
- msgid "no such entry found, ignoring '%s' parameter"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:321
- msgid "'since' option specifies most recent version, ignoring"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:325
- msgid "'until' option specifies oldest version, ignoring"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:50
- msgid "first heading"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:51
- msgid "next heading or eof"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:52
- msgid "start of change data"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:53
- msgid "more change data or trailer"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:85
- #, perl-format
- msgid "found start of entry where expected %s"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:122
- msgid "badly formatted heading line"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:126
- #, perl-format
- msgid "found trailer where expected %s"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:136
- #: scripts/Dpkg/Changelog/Entry/Debian.pm:145
- msgid "badly formatted trailer line"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:139
- #, perl-format
- msgid "found change data where expected %s"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:161
- #, perl-format
- msgid "found blank line where expected %s"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:165
- msgid "unrecognised line"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:176
- #, perl-format
- msgid "found eof where expected %s"
- msgstr ""
- #: scripts/Dpkg/Changelog/Entry/Debian.pm:118
- #, perl-format
- msgid "bad key-value after `;': `%s'"
- msgstr ""
- #: scripts/Dpkg/Changelog/Entry/Debian.pm:123
- #, perl-format
- msgid "repeated key-value %s"
- msgstr ""
- #: scripts/Dpkg/Changelog/Entry/Debian.pm:127
- #, perl-format
- msgid "badly formatted urgency value: %s"
- msgstr ""
- #: scripts/Dpkg/Changelog/Entry/Debian.pm:131
- #, perl-format
- msgid "unknown key-value %s"
- msgstr ""
- #: scripts/Dpkg/Changelog/Entry/Debian.pm:135
- msgid "the header doesn't match the expected regex"
- msgstr ""
- #: scripts/Dpkg/Changelog/Entry/Debian.pm:148
- #, perl-format
- msgid "couldn't parse date %s"
- msgstr ""
- #: scripts/Dpkg/Changelog/Entry/Debian.pm:151
- msgid "the trailer doesn't match the expected regex"
- msgstr ""
- #: scripts/Dpkg/Changelog/Parse.pm:102
- #, perl-format
- msgid "tail of %s"
- msgstr ""
- #: scripts/Dpkg/Changelog/Parse.pm:114
- #, perl-format
- msgid "format parser %s not executable"
- msgstr ""
- #: scripts/Dpkg/Changelog/Parse.pm:117
- #, perl-format
- msgid "changelog format %s is unknown"
- msgstr ""
- #: scripts/Dpkg/Changelog/Parse.pm:134 scripts/Dpkg/IPC.pm:219
- #, perl-format
- msgid "fork for %s"
- msgstr ""
- #: scripts/Dpkg/Changelog/Parse.pm:140
- #, perl-format
- msgid "cannot exec format parser: %s"
- msgstr ""
- #: scripts/Dpkg/Changelog/Parse.pm:147
- msgid "output of changelog parser"
- msgstr ""
- #: scripts/Dpkg/Changelog/Parse.pm:150
- #, perl-format
- msgid "changelog parser %s"
- msgstr ""
- #: scripts/Dpkg/Checksums.pm:38
- #, perl-format
- msgid "checksum program gave bogus output `%s'"
- msgstr ""
- #: scripts/Dpkg/Checksums.pm:49
- #, perl-format
- msgid "Unknown checksum algorithm `%s', ignoring"
- msgstr ""
- #: scripts/Dpkg/Checksums.pm:57
- #, perl-format
- msgid "Checksums-%s field contains bad line `%s'"
- msgstr ""
- #: scripts/Dpkg/Checksums.pm:69
- #, perl-format
- msgid "Conflicting file sizes `%u' and `%u' for file `%s'"
- msgstr ""
- #: scripts/Dpkg/Checksums.pm:93
- #, perl-format
- msgid "cannot fstat file %s"
- msgstr ""
- #: scripts/Dpkg/Checksums.pm:97
- #, perl-format
- msgid "File %s has size %u instead of expected %u"
- msgstr ""
- #: scripts/Dpkg/Checksums.pm:110
- #, perl-format
- msgid "File %s has checksum %s instead of expected %s (algorithm %s)"
- msgstr ""
- #: scripts/Dpkg/Conf.pm:93
- #, perl-format
- msgid "short option not allowed in %s, line %d"
- msgstr ""
- #: scripts/Dpkg/Conf.pm:107
- #, perl-format
- msgid "invalid syntax for option in %s, line %d"
- msgstr ""
- #: scripts/Dpkg/Control.pm:146
- msgid "general section of control info file"
- msgstr ""
- #: scripts/Dpkg/Control.pm:148
- msgid "package's section of control info file"
- msgstr ""
- #: scripts/Dpkg/Control.pm:150
- msgid "parsed version of changelog"
- msgstr ""
- #: scripts/Dpkg/Control.pm:152 scripts/Dpkg/Control.pm:154
- #, perl-format
- msgid "entry of APT's %s file"
- msgstr ""
- #: scripts/Dpkg/Control.pm:156 scripts/Dpkg/Control.pm:160
- #, perl-format
- msgid "%s file"
- msgstr ""
- #: scripts/Dpkg/Control.pm:158
- msgid "control info of a .deb package"
- msgstr ""
- #: scripts/Dpkg/Control.pm:162
- msgid "vendor file"
- msgstr ""
- #: scripts/Dpkg/Control.pm:164
- msgid "entry in dpkg's status file"
- msgstr ""
- #: scripts/Dpkg/Control/Fields.pm:442
- #, perl-format
- msgid "unknown information field '%s' in input data in %s"
- msgstr ""
- #: scripts/Dpkg/Control/Fields.pm:443
- msgid "control information"
- msgstr ""
- #: scripts/Dpkg/Control/Info.pm:106
- msgid "first block lacks a source field"
- msgstr ""
- #: scripts/Dpkg/Control/Info.pm:113
- msgid "block lacks a package field"
- msgstr ""
- #: scripts/Dpkg/Control/Hash.pm:177
- #, perl-format
- msgid "duplicate field %s found"
- msgstr ""
- #: scripts/Dpkg/Control/Hash.pm:185
- msgid "continued value line not in field"
- msgstr ""
- #: scripts/Dpkg/Control/Hash.pm:199
- msgid "PGP signature not allowed here"
- msgstr ""
- #: scripts/Dpkg/Control/Hash.pm:206
- msgid "expected PGP signature, found EOF after blank line"
- msgstr ""
- #: scripts/Dpkg/Control/Hash.pm:210
- #, perl-format
- msgid "expected PGP signature, found something else `%s'"
- msgstr ""
- #: scripts/Dpkg/Control/Hash.pm:218
- msgid "unfinished PGP signature"
- msgstr ""
- #: scripts/Dpkg/Control/Hash.pm:224
- msgid "line with unknown format (not field-colon-value)"
- msgstr ""
- #: scripts/Dpkg/Control/Hash.pm:315
- msgid "write error on control data"
- msgstr ""
- #: scripts/Dpkg/Deps.pm:278
- #, perl-format
- msgid "can't parse dependency %s"
- msgstr ""
- #: scripts/Dpkg/Deps.pm:305
- msgid "an union dependency can only contain simple dependencies"
- msgstr ""
- #: scripts/Dpkg/ErrorHandling.pm:49
- msgid "info"
- msgstr ""
- #: scripts/Dpkg/ErrorHandling.pm:60 scripts/Dpkg/ErrorHandling.pm:65
- #: scripts/Dpkg/ErrorHandling.pm:70
- msgid "error"
- msgstr ""
- #: scripts/Dpkg/ErrorHandling.pm:75
- msgid "internal error"
- msgstr ""
- #: scripts/Dpkg/ErrorHandling.pm:87
- #, perl-format
- msgid "%s gave error exit status %s"
- msgstr ""
- #: scripts/Dpkg/ErrorHandling.pm:89
- #, perl-format
- msgid "%s died from signal %s"
- msgstr ""
- #: scripts/Dpkg/ErrorHandling.pm:91
- #, perl-format
- msgid "%s failed with unknown exit code %d"
- msgstr ""
- #: scripts/Dpkg/ErrorHandling.pm:108
- #, perl-format
- msgid "syntax error in %s at line %d: %s"
- msgstr ""
- #: scripts/Dpkg/Index.pm:162 scripts/Dpkg/Index.pm:198
- #: scripts/Dpkg/Source/Patch.pm:263
- #, perl-format
- msgid "cannot close %s"
- msgstr ""
- #: scripts/Dpkg/IPC.pm:201 scripts/Dpkg/IPC.pm:207 scripts/Dpkg/IPC.pm:213
- #, perl-format
- msgid "pipe for %s"
- msgstr ""
- #: scripts/Dpkg/IPC.pm:232
- #, perl-format
- msgid "chdir to %s"
- msgstr ""
- #: scripts/Dpkg/IPC.pm:239
- msgid "reopen stdin"
- msgstr ""
- #: scripts/Dpkg/IPC.pm:245 scripts/Dpkg/IPC.pm:253
- #: scripts/Dpkg/Shlibs/SymbolFile.pm:218
- #: scripts/Dpkg/Source/CompressedFile.pm:119
- #: scripts/Dpkg/Source/Package.pm:361 scripts/Dpkg/Source/Package.pm:453
- #: scripts/Dpkg/Source/Package/V2.pm:185 scripts/Dpkg/Source/Package/V2.pm:406
- #: scripts/Dpkg/Source/Package/V2.pm:443
- #: scripts/Dpkg/Source/Package/V3/quilt.pm:167
- #: scripts/Dpkg/Source/Package/V3/quilt.pm:283
- #: scripts/Dpkg/Source/Package/V3/quilt.pm:307
- #, perl-format
- msgid "cannot write %s"
- msgstr ""
- #: scripts/Dpkg/IPC.pm:247 scripts/Dpkg/IPC.pm:255
- msgid "reopen stdout"
- msgstr ""
- #: scripts/Dpkg/IPC.pm:329
- msgid "child process"
- msgstr ""
- #: scripts/Dpkg/IPC.pm:334
- #, perl-format
- msgid "wait for %s"
- msgstr ""
- #: scripts/Dpkg/IPC.pm:339
- #, perl-format
- msgid "%s didn't complete in %d second"
- msgid_plural "%s didn't complete in %d seconds"
- msgstr[0] ""
- msgstr[1] ""
- #: scripts/Dpkg/Shlibs/Objdump.pm:90
- #, perl-format
- msgid "objdump on `%s'"
- msgstr ""
- #: scripts/Dpkg/Shlibs/Objdump.pm:197
- #, perl-format
- msgid "Couldn't parse dynamic relocation record: %s"
- msgstr ""
- #: scripts/Dpkg/Shlibs/Objdump.pm:314
- #, perl-format
- msgid "Couldn't parse dynamic symbol definition: %s"
- msgstr ""
- #: scripts/Dpkg/Shlibs/SymbolFile.pm:111
- #, perl-format
- msgid "you can't use wildcards on unversioned symbols: %s"
- msgstr ""
- #: scripts/Dpkg/Shlibs/SymbolFile.pm:150
- #, perl-format
- msgid "Symbol information must be preceded by a header (file %s, line %s)."
- msgstr ""
- #: scripts/Dpkg/Shlibs/SymbolFile.pm:159
- #, perl-format
- msgid "Failed to parse line in %s: %s"
- msgstr ""
- #: scripts/Dpkg/Shlibs/SymbolFile.pm:191
- #, perl-format
- msgid "Failed to parse a line in %s: %s"
- msgstr ""
- #: scripts/Dpkg/Shlibs/SymbolFile.pm:206
- #, perl-format
- msgid "Tried to merge the same object (%s) twice in a symfile."
- msgstr ""
- #: scripts/Dpkg/Shlibs/SymbolFile.pm:263
- msgid "Can't merge symbols from objects without SONAME."
- msgstr ""
- #: scripts/Dpkg/Source/Archive.pm:60
- msgid "write on tar input"
- msgstr ""
- #: scripts/Dpkg/Source/Archive.pm:85
- msgid "close on tar input"
- msgstr ""
- #: scripts/Dpkg/Source/Archive.pm:110 scripts/Dpkg/Source/Patch.pm:429
- #: scripts/Dpkg/Source/Package/V3/git.pm:180
- #: scripts/Dpkg/Source/Package/V3/quilt.pm:184
- #, perl-format
- msgid "cannot create directory %s"
- msgstr ""
- #: scripts/Dpkg/Source/Archive.pm:140 scripts/Dpkg/Source/Package.pm:250
- #: scripts/Dpkg/Source/Package/V2.pm:167
- #, perl-format
- msgid "cannot opendir %s"
- msgstr ""
- #: scripts/Dpkg/Source/Archive.pm:147 scripts/Dpkg/Source/Archive.pm:151
- #, perl-format
- msgid "Unable to rename %s to %s"
- msgstr ""
- #: scripts/Dpkg/Source/Compressor.pm:60
- #, perl-format
- msgid "%s is not a supported compression method"
- msgstr ""
- #: scripts/Dpkg/Source/Compressor.pm:90
- msgid "Dpkg::Source::Compressor can only start one subprocess at a time"
- msgstr ""
- #: scripts/Dpkg/Source/Functions.pm:32
- #, perl-format
- msgid "cannot stat directory %s (before removal)"
- msgstr ""
- #: scripts/Dpkg/Source/Functions.pm:38
- #, perl-format
- msgid "unable to check for removal of dir `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Functions.pm:40
- #, perl-format
- msgid "rm -rf failed to remove `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:70 scripts/Dpkg/Source/Package/V2.pm:314
- msgid "binary file contents changed"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:118
- #, perl-format
- msgid "file %s has no final newline (either original or modified version)"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:122
- #, perl-format
- msgid "unknown line from diff -u on %s: `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:126 scripts/Dpkg/Source/Patch.pm:129
- msgid "failed to write"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:139
- #, perl-format
- msgid "diff on %s"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:164 scripts/Dpkg/Source/Patch.pm:183
- #: scripts/Dpkg/Source/Patch.pm:225 scripts/Dpkg/Source/Patch.pm:237
- #, perl-format
- msgid "cannot stat file %s"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:173 scripts/Dpkg/Source/Patch.pm:175
- #, perl-format
- msgid "cannot read link %s"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:201
- #, perl-format
- msgid "newly created empty file '%s' will not be represented in diff"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:205
- #, perl-format
- msgid "executable mode %04o of '%s' will not be represented in diff"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:210
- #, perl-format
- msgid "special mode %04o of '%s' will not be represented in diff"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:221
- msgid "device or socket is not allowed"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:230
- msgid "unknown file type"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:245
- #, perl-format
- msgid "ignoring deletion of file %s"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:248
- #, perl-format
- msgid "ignoring deletion of directory %s"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:250
- #, perl-format
- msgid "ignoring deletion of symlink %s"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:275 scripts/Dpkg/Source/Package/V2.pm:313
- #, perl-format
- msgid "cannot represent change to %s: %s"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:282
- #, perl-format
- msgid "cannot represent change to %s:"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:283
- #, perl-format
- msgid " new version is %s"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:284
- #, perl-format
- msgid " old version is %s"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:328
- #, perl-format
- msgid "expected ^--- in line %d of diff `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:335
- #, perl-format
- msgid "diff `%s' patches file with name ending .dpkg-orig"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:339
- #, perl-format
- msgid "diff `%s' finishes in middle of ---/+++ (line %d)"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:342
- #, perl-format
- msgid "line after --- isn't as expected in diff `%s' (line %d)"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:349
- #, perl-format
- msgid "none of the filenames in ---/+++ are relative in diff `%s' (line %d)"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:355
- #, perl-format
- msgid "original and modified files are /dev/null in diff `%s' (line %d)"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:362
- #, perl-format
- msgid "file removal without proper filename in diff `%s' (line %d)"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:364
- #, perl-format
- msgid "diff %s removes a non-existing file %s (line %d)"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:373
- #, perl-format
- msgid "diff `%s' patches something which is not a plain file"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:377
- #, perl-format
- msgid "diff `%s' patches file %s twice"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:392 scripts/Dpkg/Source/Patch.pm:395
- #, perl-format
- msgid "unexpected end of diff `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:404
- #, perl-format
- msgid "expected [ +-] at start of line %d of diff `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:411
- #, perl-format
- msgid "expected ^@@ at line %d of diff `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:416
- #, perl-format
- msgid "diff `%s' doesn't contain any patch"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:464
- #: scripts/Dpkg/Source/Package/V3/quilt.pm:197
- #, perl-format
- msgid "cannot change timestamp for %s"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:468
- #, perl-format
- msgid "remove patch backup file %s"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:509
- msgid "nonexistent"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:510 scripts/Dpkg/Source/Package.pm:371
- #, perl-format
- msgid "cannot stat %s"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:512
- msgid "plain file"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:513
- msgid "directory"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:514
- #, perl-format
- msgid "symlink to %s"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:515
- msgid "block device"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:516
- msgid "character device"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:517
- msgid "named pipe"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:518
- msgid "named socket"
- msgstr ""
- #: scripts/Dpkg/Source/Package.pm:126
- #, perl-format
- msgid "%s is not the name of a file"
- msgstr ""
- #: scripts/Dpkg/Source/Package.pm:148
- #, perl-format
- msgid "missing critical source control field %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package.pm:174
- #, perl-format
- msgid ""
- "source package format `%s' is not supported (Perl module %s is required)"
- msgstr ""
- #: scripts/Dpkg/Source/Package.pm:178
- #, perl-format
- msgid "invalid Format field `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Package.pm:204
- #, perl-format
- msgid "file `%s' listed twice in Files field"
- msgstr ""
- #: scripts/Dpkg/Source/Package.pm:233
- msgid "source and version are required to compute the source basename"
- msgstr ""
- #: scripts/Dpkg/Source/Package.pm:294 scripts/Dpkg/Source/Package.pm:296
- #, perl-format
- msgid "failed to verify signature on %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package.pm:303 scripts/Dpkg/Source/Package.pm:305
- #, perl-format
- msgid "could not verify signature on %s since gpg isn't installed"
- msgstr ""
- #: scripts/Dpkg/Source/Package.pm:314
- #, perl-format
- msgid "%s is not a valid option for %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package.pm:373
- #, perl-format
- msgid "%s does not exist"
- msgstr ""
- #: scripts/Dpkg/Source/Package.pm:377
- #, perl-format
- msgid "cannot make %s executable"
- msgstr ""
- #: scripts/Dpkg/Source/Package.pm:379
- #, perl-format
- msgid "%s is not a plain file"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:52
- #, perl-format
- msgid "-s%s option overrides earlier -s%s option"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:71
- #, perl-format
- msgid "source handling style -s%s not allowed with -x"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:83
- #: scripts/Dpkg/Source/Package/V3/native.pm:48
- msgid "multiple tarfiles in v1.0 source package"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:88 scripts/Dpkg/Source/Package/V2.pm:104
- #, perl-format
- msgid "unrecognized file for a %s source package: %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:93
- #: scripts/Dpkg/Source/Package/V3/native.pm:55
- msgid "no tarfile in Files field"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:96
- msgid "native package with .orig.tar"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:109
- #, perl-format
- msgid "unable to rename `%s' to `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:113 scripts/Dpkg/Source/Package/V2.pm:116
- #: scripts/Dpkg/Source/Package/V2.pm:123 scripts/Dpkg/Source/Package/V2.pm:136
- #: scripts/Dpkg/Source/Package/V3/bzr.pm:188
- #: scripts/Dpkg/Source/Package/V3/native.pm:58
- #: scripts/Dpkg/Source/Package/V3/git.pm:252
- #, perl-format
- msgid "unpacking %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:120
- msgid "unable to keep orig directory (already exists)"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:127
- #, perl-format
- msgid "failed to rename newly-extracted %s to %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:133
- #, perl-format
- msgid "failed to rename saved %s to %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:140 scripts/Dpkg/Source/Package/V2.pm:188
- #: scripts/Dpkg/Source/Package/V3/quilt.pm:175
- #, perl-format
- msgid "applying %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:146
- #, perl-format
- msgid "upstream files that have been modified: %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:156
- msgid "only supports gzip compression"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:167
- msgid ""
- "-b takes at most a directory and an orig source argument (with v1.0 source "
- "package)"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:173
- #, perl-format
- msgid "source handling style -s%s not allowed with -b"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:188
- #, perl-format
- msgid "packed orig `%s' exists but is not a plain file"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:200
- #, perl-format
- msgid "cannot stat orig argument %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:206
- #, perl-format
- msgid ""
- "orig argument is unpacked but source handling style -s%s calls for packed (."
- "orig.tar.<ext>)"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:214
- #, perl-format
- msgid ""
- "orig argument is packed but source handling style -s%s calls for unpacked (."
- "orig/)"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:219
- #, perl-format
- msgid "orig argument %s is not a plain file or directory"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:225
- #, perl-format
- msgid ""
- "orig argument is empty (means no orig, no diff) but source handling style -s%"
- "s wants something"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:238
- #, perl-format
- msgid "unpacked orig `%s' exists but is not a directory"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:243
- #, perl-format
- msgid "unable to stat putative unpacked orig `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:252
- #, perl-format
- msgid "source directory '%s' is not <sourcepackage>-<upstreamversion> '%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:261
- #, perl-format
- msgid ".orig directory name %s is not <package>-<upstreamversion> (wanted %s)"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:270
- #, perl-format
- msgid ""
- ".orig.tar name %s is not <package>_<upstreamversion>.orig.tar (wanted %s)"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:282
- #, perl-format
- msgid ""
- "tarfile `%s' already exists, not overwriting, giving up; use -sU or -sR to "
- "override"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:286
- #, perl-format
- msgid "unable to check for existence of `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:301 scripts/Dpkg/Source/Package/V1.pm:361
- #: scripts/Dpkg/Source/Package/V3/native.pm:94
- #, perl-format
- msgid "unable to rename `%s' (newly created) to `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:304 scripts/Dpkg/Source/Package/V1.pm:364
- #: scripts/Dpkg/Source/Package/V2.pm:393
- #: scripts/Dpkg/Source/Package/V3/native.pm:97
- #: scripts/Dpkg/Source/Package/V3/git.pm:268
- #, perl-format
- msgid "unable to change permission of `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:306 scripts/Dpkg/Source/Package/V2.pm:267
- #, perl-format
- msgid "building %s using existing %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:315
- #, perl-format
- msgid ""
- "orig dir `%s' already exists, not overwriting, giving up; use -sA, -sK or -"
- "sP to override"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:323
- #, perl-format
- msgid "unable to check for existence of orig dir `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:354
- #, perl-format
- msgid "the diff modifies the following upstream files: %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:356
- msgid ""
- "use the '3.0 (quilt)' format to have separate and documented changes to "
- "upstream files, see dpkg-source(1)"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:374
- #, perl-format
- msgid "%s: unrepresentable changes to source"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:94
- #, perl-format
- msgid "duplicate files in %s source package: %s.*"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:110
- msgid "missing orig.tar or debian.tar file in v2.0 source package"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:125
- #, perl-format
- msgid "required removal of `%s' installed by original tarball"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:203 scripts/Dpkg/Source/Package/V2.pm:265
- msgid "no orig.tar file found"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:222
- #: scripts/Dpkg/Source/Package/V3/quilt.pm:244
- msgid ""
- "patches have not been applied, applying them now (use --no-preparation to "
- "override)"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:232
- #: scripts/Dpkg/Source/Package/V3/bzr.pm:95
- #: scripts/Dpkg/Source/Package/V3/native.pm:73
- #: scripts/Dpkg/Source/Package/V3/git.pm:123
- #, perl-format
- msgid "-b takes only one parameter with format `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:252
- #, perl-format
- msgid "several orig.tar files found (%s and %s) but only one is allowed"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:287
- msgid "copy of the debian directory"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:315
- #, perl-format
- msgid ""
- "add %s in debian/source/include-binaries if you want to store the modified "
- "binary in the debian tarball"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:329
- #, perl-format
- msgid "unwanted binary file: %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:358
- #, perl-format
- msgid ""
- "detected %d unwanted binary file(s) (add them in debian/source/include-"
- "binaries to allow their inclusion)."
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:374
- msgid "unrepresentable changes to source"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:378 scripts/Dpkg/Source/Package/V2.pm:382
- #, perl-format
- msgid "cannot remove %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:385
- #, perl-format
- msgid "local changes stored in %s, the modified files are:"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:391
- #, perl-format
- msgid "cannot rename %s to %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:410
- #, perl-format
- msgid "adding %s to %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/bzr.pm:50
- msgid ""
- "This source package can only be manipulated using bzr, which is not in the "
- "PATH."
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/bzr.pm:57
- #, perl-format
- msgid ""
- "source directory is not the top directory of a bzr repository (%s/.bzr not "
- "present), but Format bzr was specified"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/bzr.pm:64
- #: scripts/Dpkg/Source/Package/V3/git.pm:74
- #, perl-format
- msgid "%s is a symlink"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/bzr.pm:70
- #: scripts/Dpkg/Source/Package/V3/git.pm:80
- #, perl-format
- msgid "%s is a symlink to outside %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/bzr.pm:81
- msgid "doesn't contain a bzr repository"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/bzr.pm:109
- #: scripts/Dpkg/Source/Package/V3/bzr.pm:132
- #: scripts/Dpkg/Source/Package/V3/bzr.pm:196
- #: scripts/Dpkg/Source/Package/V3/bzr.pm:202
- #: scripts/Dpkg/Source/Package/V3/git.pm:137
- #: scripts/Dpkg/Source/Package/V3/git.pm:174
- #: scripts/Dpkg/Source/Package/V3/git.pm:185
- #: scripts/Dpkg/Source/Package/V3/git.pm:210
- #: scripts/Dpkg/Source/Package/V3/git.pm:260
- #: scripts/Dpkg/Source/Package/V3/git.pm:330
- #, perl-format
- msgid "unable to chdir to `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/bzr.pm:125
- msgid "bzr status exited nonzero"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/bzr.pm:127
- #: scripts/Dpkg/Source/Package/V3/git.pm:167
- #, perl-format
- msgid "uncommitted, not-ignored changes in working directory: %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/bzr.pm:177
- #: scripts/Dpkg/Source/Package/V3/git.pm:241
- msgid "format v3.0 uses only one source file"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/bzr.pm:181
- #: scripts/Dpkg/Source/Package/V3/git.pm:245
- #, perl-format
- msgid "expected %s, got %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/custom.pm:38
- msgid "Format `3.0 (custom)' is only used to create source packages"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/custom.pm:44
- msgid "no files indicated on command line"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/custom.pm:51
- msgid "--target-format option is missing"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/native.pm:51
- #, perl-format
- msgid "unrecognized file for a native source package: %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/git.pm:56
- msgid ""
- "This source package can only be manipulated using git, which is not in the "
- "PATH."
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/git.pm:63
- #, perl-format
- msgid ""
- "source directory is not the top directory of a git repository (%s/.git not "
- "present), but Format git was specified"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/git.pm:67
- #, perl-format
- msgid "git repository %s uses submodules. This is not yet supported."
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/git.pm:102
- msgid "git config exited nonzero"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/git.pm:109
- msgid "doesn't contain a git repository"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/git.pm:165
- msgid "git ls-files exited nonzero"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/git.pm:266
- #, perl-format
- msgid "executable bit set on %s; clearing"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/git.pm:277
- #, perl-format
- msgid "unable to remove `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/git.pm:303
- msgid "modifying .git/config to comment out some settings"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/git.pm:305
- #, perl-format
- msgid "unable to append to %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/git.pm:306
- msgid "The following setting(s) were disabled by dpkg-source"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/quilt.pm:64
- #, perl-format
- msgid "%s should be a directory or non-existing"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/quilt.pm:70
- #, perl-format
- msgid "%s should be a file or non-existing"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/quilt.pm:106
- #, perl-format
- msgid ""
- "the series file (%s) contains unsupported options ('%s', line %s), dpkg-"
- "source might fail when applying patches."
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/quilt.pm:159
- #, perl-format
- msgid "can't create symlink %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/quilt.pm:191
- #, perl-format
- msgid "applying all patches with %s"
- msgstr ""
- #: scripts/Dpkg/Substvars.pm:140
- #, perl-format
- msgid "bad line in substvars file %s at line %d"
- msgstr ""
- #: scripts/Dpkg/Substvars.pm:146
- #, perl-format
- msgid "unable to open substvars file %s: %s"
- msgstr ""
- #: scripts/Dpkg/Substvars.pm:208
- #, perl-format
- msgid "too many substitutions - recursive ? - in `%s'"
- msgstr ""
- #: scripts/Dpkg/Substvars.pm:215
- #, perl-format
- msgid "unknown substitution variable ${%s}"
- msgstr ""
- #: scripts/Dpkg/Substvars.pm:237
- #, perl-format
- msgid "unused substitution variable ${%s}"
- msgstr ""
- #: scripts/Dpkg/Vars.pm:32
- #, perl-format
- msgid "source package name `%s' contains illegal character `%s'"
- msgstr ""
- #: scripts/Dpkg/Vars.pm:35
- #, perl-format
- msgid "source package name `%s' starts with non-alphanum"
- msgstr ""
- #: scripts/Dpkg/Vars.pm:44
- #, perl-format
- msgid "source package has two conflicting values - %s and %s"
- msgstr ""
- #: scripts/Dpkg/Vendor/Ubuntu.pm:54 scripts/Dpkg/Vendor/Ubuntu.pm:56
- msgid ""
- "Version number suggests Ubuntu changes, but Maintainer: does not have Ubuntu "
- "address"
- msgstr ""
- #: scripts/Dpkg/Vendor/Ubuntu.pm:60
- msgid ""
- "Version number suggests Ubuntu changes, but there is no XSBC-Original-"
- "Maintainer field"
- msgstr ""
- #: scripts/Dpkg/Version.pm:193 scripts/Dpkg/Version.pm:194
- #, perl-format
- msgid "%s is not a valid version"
- msgstr ""
- #: scripts/Dpkg/Version.pm:355
- msgid "version number cannot be empty"
- msgstr ""
- #: scripts/Dpkg/Version.pm:360
- #, perl-format
- msgid "version number contains illegal character `%s'"
- msgstr ""
- #: scripts/Dpkg/Version.pm:366
- #, perl-format
- msgid "epoch part of the version number is not a number: '%s'"
- msgstr ""
|