| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405 |
- # Catalan translation of dpkg-dev.
- # Copyright © 2006, 2010 Software in the Public Interest, Inc.
- # This file is distributed under the same license as the dpkg package.
- # Jordi Mallach <jordi@debian.org>, 2006, 2010.
- #
- msgid ""
- msgstr ""
- "Project-Id-Version: dpkg-dev 1.15.8.6\n"
- "Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
- "POT-Creation-Date: 2014-10-25 02:52+0200\n"
- "PO-Revision-Date: 2014-10-25 01:26+0200\n"
- "Last-Translator: Jordi Mallach <jordi@debian.org>\n"
- "Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
- "Language: ca\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
- "Plural-Forms: nplurals=2; plural=n!=1;\n"
- #: scripts/dpkg-architecture.pl:38 scripts/dpkg-buildflags.pl:33
- #: scripts/dpkg-buildpackage.pl:49 scripts/dpkg-checkbuilddeps.pl:39
- #: scripts/dpkg-distaddfile.pl:37 scripts/dpkg-genchanges.pl:121
- #: scripts/dpkg-gencontrol.pl:66 scripts/dpkg-gensymbols.pl:53
- #: scripts/dpkg-mergechangelogs.pl:54 scripts/dpkg-name.pl:46
- #: scripts/dpkg-parsechangelog.pl:36 scripts/dpkg-scanpackages.pl:69
- #: scripts/dpkg-scansources.pl:79 scripts/dpkg-shlibdeps.pl:545
- #: scripts/dpkg-source.pl:521 scripts/dpkg-vendor.pl:32
- #: scripts/changelog/debian.pl:37
- #, perl-format
- msgid "Debian %s version %s.\n"
- msgstr "Debian %s versió %s.\n"
- #: scripts/dpkg-architecture.pl:40 scripts/dpkg-buildflags.pl:35
- #: scripts/dpkg-buildpackage.pl:51 scripts/dpkg-distaddfile.pl:39
- #: scripts/dpkg-genchanges.pl:123 scripts/dpkg-gencontrol.pl:68
- #: scripts/dpkg-gensymbols.pl:55 scripts/dpkg-parsechangelog.pl:38
- #: scripts/dpkg-shlibdeps.pl:547 scripts/dpkg-source.pl:523
- #: scripts/dpkg-vendor.pl:34 scripts/changelog/debian.pl:39
- msgid ""
- "\n"
- "This is free software; see the GNU General Public License version 2 or\n"
- "later for copying conditions. There is NO warranty.\n"
- msgstr ""
- "\n"
- "Aquest és programari lliure; vegeu la Llicència Pública General GNU versió 2 "
- "o posterior per a les condicions de còpia. NO hi ha garantia.\n"
- #: scripts/dpkg-architecture.pl:48 scripts/dpkg-vendor.pl:42
- #, perl-format
- msgid "Usage: %s [<option>...] [<command>]"
- msgstr "Forma d'ús: %s [<opció>…] [<ordre>]"
- #: scripts/dpkg-architecture.pl:50
- msgid ""
- "Commands:\n"
- " -l, --list list variables (default).\n"
- " -L, --list-known list valid architectures (matching some "
- "criteria).\n"
- " -e, --equal <arch> compare with host Debian architecture.\n"
- " -i, --is <arch-wildcard> match against host Debian architecture.\n"
- " -q, --query <variable> prints only the value of <variable>.\n"
- " -s, --print-set print command to set environment variables.\n"
- " -u, --print-unset print command to unset environment variables.\n"
- " -c, --command <command> set environment and run the command in it.\n"
- " -?, --help show this help message.\n"
- " --version show the version."
- msgstr ""
- #: scripts/dpkg-architecture.pl:62
- msgid ""
- "Options:\n"
- " -a, --host-arch <arch> set host Debian architecture.\n"
- " -t, --host-type <type> set host GNU system type.\n"
- " -A, --target-arch <arch> set target Debian architecture.\n"
- " -T, --target-type <type> set target GNU system type.\n"
- " -W, --match-wildcard <arch-wildcard>\n"
- " restrict architecture list matching <arch-"
- "wildcard>.\n"
- " -B, --match-bits <arch-bits>\n"
- " restrict architecture list matching <arch-"
- "bits>.\n"
- " -E, --match-endian <arch-endian>\n"
- " restrict architecture list matching <arch-"
- "endian>.\n"
- " -f, --force force flag (override variables set in "
- "environment)."
- msgstr ""
- #: scripts/dpkg-architecture.pl:83
- #, perl-format
- msgid "unknown Debian architecture %s, you must specify GNU system type, too"
- msgstr ""
- #: scripts/dpkg-architecture.pl:90
- #, perl-format
- msgid "unknown GNU system type %s, you must specify Debian architecture, too"
- msgstr ""
- #: scripts/dpkg-architecture.pl:97
- #, perl-format
- msgid "unknown default GNU system type for Debian architecture %s"
- msgstr ""
- #: scripts/dpkg-architecture.pl:100
- #, 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:211
- #, perl-format
- msgid "%s is not a supported variable name"
- msgstr "%s no és un nom de variable gestionat"
- #: scripts/dpkg-architecture.pl:229 scripts/dpkg-buildflags.pl:94
- #: scripts/dpkg-distaddfile.pl:69 scripts/dpkg-genchanges.pl:215
- #: scripts/dpkg-gencontrol.pl:140 scripts/dpkg-gensymbols.pl:140
- #: scripts/dpkg-name.pl:245 scripts/dpkg-parsechangelog.pl:117
- #: scripts/dpkg-shlibdeps.pl:133 scripts/dpkg-vendor.pl:76
- #, perl-format
- msgid "unknown option `%s'"
- msgstr "l'opció «%s» és desconeguda"
- #: scripts/dpkg-architecture.pl:285
- #, fuzzy, perl-format
- #| msgid "Specified GNU system type %s does not match gcc system type %s."
- msgid ""
- "specified GNU system type %s does not match gcc system type %s, try setting "
- "a correct CC environment variable"
- msgstr ""
- "El tipus de sistema GNU %s especificat no correspon amb el tipus de sistema "
- "del gcc %s."
- #: scripts/dpkg-buildflags.pl:43
- #, perl-format
- msgid "Usage: %s [<command>]"
- msgstr "Format d'ús: %s [<ordre>]"
- #: scripts/dpkg-buildflags.pl:45
- msgid ""
- "Commands:\n"
- " --get <flag> output the requested flag to stdout.\n"
- " --origin <flag> output the origin of the flag to stdout:\n"
- " value is one of vendor, system, user, env.\n"
- " --query-features <area>\n"
- " output the status of features for the given area.\n"
- " --list output a list of the flags supported by the current "
- "vendor.\n"
- " --export=(sh|make|cmdline|configure)\n"
- " output something convenient to import the compilation\n"
- " flags in a shell script, in make, or in a command "
- "line.\n"
- " --dump output all compilation flags with their values\n"
- " --status print a synopsis with all parameters affecting the\n"
- " behaviour of dpkg-buildflags and the resulting flags\n"
- " and their origin.\n"
- " --help show this help message.\n"
- " --version show the version.\n"
- msgstr ""
- #: scripts/dpkg-buildflags.pl:70 scripts/dpkg-buildflags.pl:76
- #: scripts/dpkg-buildflags.pl:83 scripts/dpkg-source.pl:514
- #: scripts/dpkg-vendor.pl:64
- #, perl-format
- msgid "two commands specified: --%s and --%s"
- msgstr "s'ha especificat dos ordres: --%s i --%s"
- #: scripts/dpkg-buildflags.pl:74 scripts/dpkg-vendor.pl:62
- #: scripts/dpkg-vendor.pl:68
- #, perl-format
- msgid "%s needs a parameter"
- msgstr "%s requereix un paràmetre"
- #: scripts/dpkg-buildpackage.pl:59 scripts/dpkg-genchanges.pl:131
- #: scripts/dpkg-gencontrol.pl:76 scripts/dpkg-gensymbols.pl:63
- #: scripts/dpkg-parsechangelog.pl:46
- #, perl-format
- msgid "Usage: %s [<option>...]"
- msgstr "Forma d'ús: %s [<opció>…]"
- #: scripts/dpkg-buildpackage.pl:61
- msgid ""
- "Options:\n"
- " -F (default) normal full build (binaries and sources).\n"
- " -g source and arch-indep build.\n"
- " -G source and arch-specific build.\n"
- " -b binary-only, no source files.\n"
- " -B binary-only, only arch-specific files.\n"
- " -A binary-only, only arch-indep files.\n"
- " -S source-only, no binary files.\n"
- " -nc do not clean source tree (implies -b).\n"
- " -tc clean source tree when finished.\n"
- " -D (default) check build dependencies and conflicts.\n"
- " -d do not check build dependencies and conflicts.\n"
- " -P<profiles> assume given build profiles as active (comma-separated "
- "list).\n"
- " -R<rules> rules file to execute (default is debian/rules).\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 <rules>).\n"
- " -r<gain-root-command>\n"
- " command to gain root privileges (default is fakeroot).\n"
- " --check-command=<check-command>\n"
- " command to check the .changes file (no default).\n"
- " --check-option=<opt>\n"
- " pass <opt> to <check-command>.\n"
- " --hook-<hook-name>=<hook-command>\n"
- " set <hook-command> as the hook <hook-name>, known hooks:\n"
- " init preclean source build binary changes postclean\n"
- " check sign done\n"
- " -p<sign-command>\n"
- " command to sign .dsc and/or .changes files\n"
- " (default is gpg2 or gpg).\n"
- " -k<keyid> the key to use for signing.\n"
- " -ap add pause before starting signature process.\n"
- " -us unsigned source package.\n"
- " -uc unsigned .changes file.\n"
- " --force-sign\n"
- " force signing the resulting files.\n"
- " --admindir=<directory>\n"
- " change the administrative directory.\n"
- " -?, --help show this help message.\n"
- " --version show the version."
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:102
- msgid ""
- "Options passed to dpkg-architecture:\n"
- " -a, --host-arch <arch> set the host Debian architecture.\n"
- " -t, --host-type <type> set the host GNU system type.\n"
- " --target-arch <arch> set the target Debian architecture.\n"
- " --target-type <type> set the target GNU system type."
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:108
- msgid ""
- "Options passed to dpkg-genchanges:\n"
- " -si (default) source includes orig, if new upstream.\n"
- " -sa source includes orig, always.\n"
- " -sd source is diff and .dsc only.\n"
- " -v<version> changes since version <version>.\n"
- " -m<maint> maintainer for package is <maint>.\n"
- " -e<maint> maintainer for release is <maint>.\n"
- " -C<descfile> changes are described in <descfile>.\n"
- " --changes-option=<opt>\n"
- " pass option <opt> to dpkg-genchanges."
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:119
- msgid ""
- "Options passed to dpkg-source:\n"
- " -sn force Debian native source format.\n"
- " -s[sAkurKUR] see dpkg-source for explanation.\n"
- " -z<level> compression level to use for source.\n"
- " -Z<compressor> compression to use for source (gz|xz|bzip2|lzma).\n"
- " -i[<regex>] ignore diffs of files matching regex.\n"
- " -I[<pattern>] filter out files when building tarballs.\n"
- " --source-option=<opt>\n"
- " pass option <opt> to dpkg-source.\n"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:204 scripts/dpkg-genchanges.pl:115
- #, perl-format
- msgid "cannot combine %s and %s"
- msgstr "no es pot combinar %s amb %s"
- #: scripts/dpkg-buildpackage.pl:245
- #, perl-format
- msgid "unknown hook name %s"
- msgstr "el nom del lligam %s és desconegut"
- #: scripts/dpkg-buildpackage.pl:247
- #, perl-format
- msgid "missing hook %s command"
- msgstr "manca l'ordre del lligam %s"
- #: scripts/dpkg-buildpackage.pl:258
- #, perl-format
- msgid "-s%s is deprecated; always using gpg style interface"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:330 scripts/dpkg-source.pl:204
- msgid "-E and -W are deprecated, they are without effect"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:335
- #, perl-format
- msgid "unknown option or argument %s"
- msgstr "l'opció o argument %s és desconeguda"
- #: scripts/dpkg-buildpackage.pl:356
- msgid "using a gain-root-command while being root"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:363
- 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:367
- #, perl-format
- msgid "gain-root-commmand '%s' not found"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:372
- #, perl-format
- msgid "check-commmand '%s' not found"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:377
- #, fuzzy, perl-format
- #| msgid "Binary dir %s not found"
- msgid "sign-commmand '%s' not found"
- msgstr "No s'ha trobat el dir binari %s"
- #: scripts/dpkg-buildpackage.pl:410
- msgid "source package"
- msgstr "paquet font"
- #: scripts/dpkg-buildpackage.pl:411
- msgid "source version"
- msgstr "versió del font"
- #: scripts/dpkg-buildpackage.pl:419
- msgid "source distribution"
- msgstr "distribució del font"
- #: scripts/dpkg-buildpackage.pl:427
- msgid "source changed by"
- msgstr "font canviat per"
- #: scripts/dpkg-buildpackage.pl:452
- msgid "host architecture"
- msgstr "arquitectura de l'amfitrió"
- #: scripts/dpkg-buildpackage.pl:481
- msgid "debian/rules is not executable; fixing that"
- msgstr "debian/rules no és executable: s'està corregint això"
- #: scripts/dpkg-buildpackage.pl:502
- msgid "build dependencies/conflicts unsatisfied; aborting"
- msgstr "dependències/conflictes de construcció no satisfetes; s'està avortant"
- #: scripts/dpkg-buildpackage.pl:503
- msgid "(Use -d flag to override.)"
- msgstr "(Empreu el senyalador -d flag per a ometre-ho.)"
- #: scripts/dpkg-buildpackage.pl:506
- msgid ""
- "this is currently a non-fatal warning with -S, but will probably become "
- "fatal in the future"
- msgstr ""
- "açò és actualment només un avís amb -S, però probablement serà fatal en el "
- "futur"
- #: scripts/dpkg-buildpackage.pl:534
- #, fuzzy
- #| msgid ""
- #| "it is a bad idea to generate a source package without cleaning up first, "
- #| "it might contain undesired files."
- msgid ""
- "building a source package without cleaning up as you asked; it might contain "
- "undesired files"
- msgstr ""
- "no és bona idea generar un paquet font sense netejar-lo primer, podria "
- "contenir fitxers no desitjats."
- #: scripts/dpkg-buildpackage.pl:554
- #, perl-format
- msgid ""
- "%s must be updated to support the 'build-arch' and 'build-indep' targets (at "
- "least '%s' seems to be missing)"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:581
- #, fuzzy
- #| msgid "write changes file"
- msgid "parse changes file"
- msgstr "escriu un fitxer de canvis"
- #: scripts/dpkg-buildpackage.pl:583
- msgid "dpkg-genchanges"
- msgstr "dpkg-genchanges"
- #: scripts/dpkg-buildpackage.pl:604
- msgid "Press the return key to start signing process\n"
- msgstr "Premeu la tecla de retorn per a començar el procés de signat\n"
- #: scripts/dpkg-buildpackage.pl:612
- msgid "failed to sign .dsc and .changes file"
- msgstr "no s'ha pogut signar els fitxers .dsc i .changes"
- #: scripts/dpkg-buildpackage.pl:631
- msgid "failed to sign .changes file"
- msgstr "no s'ha pogut signar el fitxer .changes"
- #: scripts/dpkg-buildpackage.pl:635
- msgid "not signing UNRELEASED build; use --force-sign to override"
- msgstr ""
- #: scripts/dpkg-buildpackage.pl:643
- #, perl-format
- msgid "unable to determine %s"
- msgstr "no es pot determinar %s"
- #: scripts/dpkg-buildpackage.pl:679
- #, fuzzy, perl-format
- #| msgid "unknown substitution variable ${%s}"
- msgid "unknown %% substitution in hook: %%%s"
- msgstr "la variable de substitució ${%s} és desconeguda"
- #: scripts/dpkg-buildpackage.pl:699 scripts/dpkg-checkbuilddeps.pl:148
- #: scripts/dpkg-name.pl:96 scripts/Dpkg/Arch.pm:151 scripts/Dpkg/Arch.pm:175
- #: scripts/Dpkg/Arch.pm:208 scripts/Dpkg/Arch.pm:225 scripts/Dpkg/IPC.pm:278
- #: scripts/Dpkg/Shlibs.pm:88
- #, perl-format
- msgid "cannot open %s"
- msgstr "no es pot obrir %s"
- #: scripts/dpkg-buildpackage.pl:701 scripts/dpkg-distaddfile.pl:96
- #: scripts/dpkg-gencontrol.pl:411 scripts/dpkg-gencontrol.pl:427
- #: scripts/dpkg-shlibdeps.pl:535 scripts/Dpkg/Interface/Storable.pm:93
- #: scripts/Dpkg/Interface/Storable.pm:121
- #: scripts/Dpkg/Source/Package/V2.pm:620 scripts/Dpkg/Source/Patch.pm:302
- #, perl-format
- msgid "cannot close %s"
- msgstr "no es pot tancar %s"
- #: scripts/dpkg-buildpackage.pl:730
- msgid "source-only upload: Debian-native package"
- msgstr "pujada de només font: paquet nadiu de Debian"
- #: scripts/dpkg-buildpackage.pl:732
- msgid "source-only, diff-only upload (original source NOT included)"
- msgstr "pujada de només font, només diff (NO s'inclou el codi font original)"
- #: scripts/dpkg-buildpackage.pl:734
- msgid "source-only upload (original source is included)"
- msgstr "pujada de només font (s'inclou el codi font original)"
- #: scripts/dpkg-buildpackage.pl:737
- msgid "binary-only upload (no source included)"
- msgstr "pujada de només binaris (no s'inclou el codi font)"
- #: scripts/dpkg-buildpackage.pl:740
- msgid "full upload; Debian-native package (full source is included)"
- msgstr "pujada sencera; paquet nadiu de Debian (s'inclou el codi font sencer)"
- #: scripts/dpkg-buildpackage.pl:742
- msgid "binary and diff upload (original source NOT included)"
- msgstr "pujada de binaris i diff (NO s'inclou el codi font original)"
- #: scripts/dpkg-buildpackage.pl:744
- msgid "full upload (original source is included)"
- msgstr "pujada sencera (s'inclou el codi font original)"
- #: scripts/dpkg-checkbuilddeps.pl:45
- #, perl-format
- msgid "Usage: %s [<option>...] [<control-file>]"
- msgstr "Forma d'ús: %s [<opció>…] [<fitxer-control>]"
- #: scripts/dpkg-checkbuilddeps.pl:47
- msgid ""
- "Options:\n"
- " -A ignore Build-Depends-Arch and Build-Conflicts-Arch.\n"
- " -B ignore Build-Depends-Indep and Build-Conflicts-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"
- " -a arch assume given host architecture\n"
- " -P profiles assume given build profiles (comma-separated list)\n"
- " --admindir=<directory>\n"
- " change the administrative directory.\n"
- " -?, --help show this help message.\n"
- " --version show the version."
- msgstr ""
- #: scripts/dpkg-checkbuilddeps.pl:61
- msgid ""
- "<control-file> is the control file to process (default: debian/control)."
- msgstr ""
- #: scripts/dpkg-checkbuilddeps.pl:116 scripts/dpkg-checkbuilddeps.pl:125
- #: scripts/dpkg-shlibdeps.pl:151 scripts/dpkg-source.pl:255
- #, perl-format
- msgid "error occurred while parsing %s"
- msgstr "s'ha produït un error en analitzar %s"
- #: scripts/dpkg-checkbuilddeps.pl:132
- #, perl-format
- msgid "%s: Unmet build dependencies: "
- msgstr "%s: Dependències de construcció no satisfetes: "
- #: scripts/dpkg-checkbuilddeps.pl:136
- #, perl-format
- msgid "%s: Build conflicts: "
- msgstr "%s: Conflictes de construcció: "
- #: scripts/dpkg-distaddfile.pl:47
- #, fuzzy, perl-format
- msgid ""
- "Usage: %s [<option>...] <filename> <section> <priority>\n"
- "\n"
- "Options:\n"
- " -f<files-list-file> write files here instead of debian/files.\n"
- " -?, --help show this help message.\n"
- " --version show the version.\n"
- msgstr ""
- "Forma d'ús: %s [<opció> …] [--] [<nom directori>]\n"
- "\n"
- "Opcions:\n"
- " --unsafe Estableix algunes opcions addicionals que poden ser útils.\n"
- " Avís: aquesta opció pot espatllar fitxers en bon estat.\n"
- " --help Mostra aquest missatge d'ajuda.\n"
- " --version Mostra la versió.\n"
- #: scripts/dpkg-distaddfile.pl:72
- msgid "need exactly a filename, section and priority"
- msgstr ""
- #: scripts/dpkg-distaddfile.pl:77
- msgid "filename, section and priority may contain no whitespace"
- msgstr ""
- #: scripts/dpkg-distaddfile.pl:84 scripts/dpkg-gencontrol.pl:388
- #: scripts/dpkg-mergechangelogs.pl:138 scripts/dpkg-mergechangelogs.pl:140
- #: scripts/Dpkg/Compression/FileHandle.pm:403 scripts/Dpkg/IPC.pm:287
- #: scripts/Dpkg/IPC.pm:296 scripts/Dpkg/Interface/Storable.pm:117
- #: scripts/Dpkg/Source/Functions.pm:78 scripts/Dpkg/Source/Package.pm:505
- #: scripts/Dpkg/Source/Package.pm:616 scripts/Dpkg/Source/Package/V2.pm:240
- #: scripts/Dpkg/Source/Package/V2.pm:618 scripts/Dpkg/Source/Package/V2.pm:755
- #: scripts/Dpkg/Source/Package/V3/Quilt.pm:132 scripts/Dpkg/Source/Quilt.pm:59
- #: scripts/Dpkg/Source/Quilt.pm:68 scripts/Dpkg/Source/Quilt.pm:74
- #: scripts/Dpkg/Source/Quilt.pm:304 scripts/Dpkg/Source/Quilt.pm:313
- #: scripts/Dpkg/Source/Quilt.pm:353
- #, perl-format
- msgid "cannot write %s"
- msgstr "no es pot escriure %s"
- #: scripts/dpkg-distaddfile.pl:93 scripts/dpkg-gencontrol.pl:408
- #, fuzzy
- msgid "install new files list file"
- msgstr ""
- "no es pot instaŀlar el fitxer d'activadors de fitxer nou com a «%.250s»"
- #: scripts/dpkg-genchanges.pl:133
- msgid ""
- "Options:\n"
- " -g source and arch-indep build.\n"
- " -G source and arch-specific build.\n"
- " -b binary-only, no source files.\n"
- " -B binary-only, only arch-specific files.\n"
- " -A binary-only, only arch-indep files.\n"
- " -S source-only, no binary files.\n"
- " -c<control-file> get control info from this file.\n"
- " -l<changelog-file> get per-version info from this file.\n"
- " -f<files-list-file> get .deb files list from this file.\n"
- " -v<since-version> include all changes later than version.\n"
- " -C<changes-description> use change description from this file.\n"
- " -m<maintainer> override control's maintainer value.\n"
- " -e<maintainer> override changelog's maintainer value.\n"
- " -u<upload-files-dir> directory with files (default is '..').\n"
- " -si (default) source includes orig, if new upstream.\n"
- " -sa source includes orig, always.\n"
- " -sd source is diff and .dsc only.\n"
- " -q quiet - no informational messages on stderr.\n"
- " -F<changelog-format> force changelog format.\n"
- " -V<name>=<value> set a substitution variable.\n"
- " -T<substvars-file> read variables here, not debian/substvars.\n"
- " -D<field>=<value> override or add a field and value.\n"
- " -U<field> remove a field.\n"
- " -?, --help show this help message.\n"
- " --version show the version.\n"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:245
- #, perl-format
- msgid "the current version (%s) is earlier than the previous one (%s)"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:270
- msgid "missing Section for source files"
- msgstr "manca el camp Section pels fitxers font"
- #: scripts/dpkg-genchanges.pl:271
- msgid "missing Priority for source files"
- msgstr "manca el camp Priority pels fitxers font"
- #: scripts/dpkg-genchanges.pl:279 scripts/dpkg-source.pl:391
- #: scripts/Dpkg/Vendor.pm:92
- #, perl-format
- msgid "%s is empty"
- msgstr "%s és buit"
- #: scripts/dpkg-genchanges.pl:300
- msgid "not including original source code in upload"
- msgstr "no s'està incloent el codi font original a la pujada"
- #: scripts/dpkg-genchanges.pl:307
- msgid "ignoring -sd option for native Debian package"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:309
- msgid "including full source code in upload"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:317
- msgid ""
- "binary-only arch-specific upload (source code and arch-indep packages not "
- "included)"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:320
- msgid ""
- "binary-only arch-indep upload (source code and arch-specific packages not "
- "included)"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:323
- msgid "binary-only upload (no source code included)"
- msgstr "pujada de només binaris (no s'inclou el codi font)"
- #: scripts/dpkg-genchanges.pl:331
- msgid "binary build with no binary artifacts found; cannot distribute"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:376
- #, fuzzy, perl-format
- msgid "package %s in control file but not in files list"
- msgstr "el paquet %s conté «list» com a fitxer d'informació"
- #: scripts/dpkg-genchanges.pl:421
- msgid "read changesdescription"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:427
- #, fuzzy, perl-format
- msgid "package %s listed in files list but not in control info"
- msgstr "el paquet %s no és a la informació de control"
- #: scripts/dpkg-genchanges.pl:439
- #, perl-format
- msgid "missing Section for binary package %s; using '-'"
- msgstr "manca el camp Section pel paquet binari %s; s'emprarà '-'"
- #: scripts/dpkg-genchanges.pl:442
- #, fuzzy, perl-format
- msgid "package %s has section %s in control file but %s in files list"
- msgstr "el paquet %s conté «list» com a fitxer d'informació"
- #: scripts/dpkg-genchanges.pl:448
- #, perl-format
- msgid "missing Priority for binary package %s; using '-'"
- msgstr "manca el camp Priority pel paquet binari %s; s'emprarà '-'"
- #: scripts/dpkg-genchanges.pl:451
- #, fuzzy, perl-format
- msgid "package %s has priority %s in control file but %s in files list"
- msgstr "el paquet %s no és a la informació de control"
- #: scripts/dpkg-genchanges.pl:458
- msgid "write original source message"
- msgstr ""
- #: scripts/dpkg-genchanges.pl:515 scripts/Dpkg/Source/Package.pm:599
- #, fuzzy, perl-format
- msgid "missing information for critical output field %s"
- msgstr "manca informació per al camp d'eixida %s"
- #: scripts/dpkg-genchanges.pl:520 scripts/dpkg-gencontrol.pl:307
- #: scripts/dpkg-gencontrol.pl:311 scripts/Dpkg/Source/Package.pm:604
- #, perl-format
- msgid "missing information for output field %s"
- msgstr "manca informació per al camp d'eixida %s"
- #: scripts/dpkg-gencontrol.pl:78
- msgid ""
- "Options:\n"
- " -p<package> print control file for package.\n"
- " -c<control-file> get control info from this file.\n"
- " -l<changelog-file> get per-version info from this file.\n"
- " -F<changelog-format> force changelog format.\n"
- " -v<force-version> set version of binary package.\n"
- " -f<files-list-file> write files here instead of debian/files.\n"
- " -P<package-build-dir> temporary build dir instead of debian/tmp.\n"
- " -n<filename> assume the package filename will be <filename>.\n"
- " -O[<file>] write to stdout (or <file>), 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<substvars-file> read variables here, not debian/substvars.\n"
- " -?, --help show this help message.\n"
- " --version show the version.\n"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:103 scripts/dpkg-gensymbols.pl:99
- #, perl-format
- msgid "illegal package name '%s': %s"
- msgstr "el nom de paquet «%s» és il·legal: %s"
- #: scripts/dpkg-gencontrol.pl:119
- #, perl-format
- msgid "-i%s is deprecated; it is without effect"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:178
- #, perl-format
- msgid "package %s not in control info"
- msgstr "el paquet %s no és a la informació de control"
- #: scripts/dpkg-gencontrol.pl:183 scripts/dpkg-gensymbols.pl:158
- #, fuzzy
- #| msgid "package %s not in control info"
- msgid "no package stanza found in control info"
- msgstr "el paquet %s no és a la informació de control"
- #: scripts/dpkg-gencontrol.pl:185 scripts/dpkg-gensymbols.pl:160
- #, perl-format
- msgid "must specify package since control info has many (%s)"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:190
- #, perl-format
- msgid "package %s: "
- msgstr "paquet %s: "
- #: scripts/dpkg-gencontrol.pl:215
- #, perl-format
- msgid "`%s' is not a legal architecture string."
- msgid_plural "`%s' are not legal architecture strings."
- msgstr[0] "«%s» no és una cadena d'arquitectura vàlida."
- msgstr[1] "«%s» no són cadenes d'arquitectura vàlides"
- #: scripts/dpkg-gencontrol.pl:221
- #, perl-format
- msgid ""
- "current host architecture '%s' does not appear in package's architecture "
- "list (%s)"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:277
- #, perl-format
- msgid "%s field of package %s: "
- msgstr "camp %s del paquet %s: "
- #: scripts/dpkg-gencontrol.pl:282 scripts/dpkg-gencontrol.pl:291
- #, perl-format
- msgid "error occurred while parsing %s field: %s"
- msgstr "s'ha produït un error en analitzar el camp %s: %s"
- #: scripts/dpkg-gencontrol.pl:296
- #, perl-format
- msgid ""
- "the %s field contains an arch-specific dependency but the package is "
- "architecture all"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:324
- #, perl-format
- msgid "%s package with udeb specific field %s"
- msgstr "paquet %s amb camp específic d'udeb %s"
- #: scripts/dpkg-gencontrol.pl:339 scripts/dpkg-scansources.pl:316
- #: scripts/dpkg-shlibdeps.pl:841 scripts/Dpkg/Changelog/Parse.pm:142
- #: scripts/Dpkg/IPC.pm:251 scripts/Dpkg/Shlibs/Objdump.pm:184
- #, perl-format
- msgid "cannot fork for %s"
- msgstr "no es pot fer «fork» per a %s"
- #: scripts/dpkg-gencontrol.pl:343
- #, perl-format
- msgid "chdir for du to `%s'"
- msgstr "«chdir» per a du a «%s»"
- #: scripts/dpkg-gencontrol.pl:345 scripts/dpkg-shlibdeps.pl:849
- #: scripts/Dpkg/IPC.pm:305 scripts/Dpkg/Shlibs/Cppfilt.pm:50
- #, perl-format
- msgid "unable to execute %s"
- msgstr "no es pot executar %s"
- #: scripts/dpkg-gencontrol.pl:352
- #, perl-format
- msgid "du in `%s'"
- msgstr "du en «%s»"
- #: scripts/dpkg-gencontrol.pl:354
- #, perl-format
- msgid "du gave unexpected output `%s'"
- msgstr ""
- #: scripts/dpkg-gencontrol.pl:418
- #, fuzzy, perl-format
- msgid "cannot open new output control file `%s'"
- msgstr "no s'ha pogut obrir el nou fitxer de statoverride"
- #: scripts/dpkg-gencontrol.pl:429
- #, fuzzy, perl-format
- msgid "cannot install output control file `%s'"
- msgstr "fitxer de control binari %s"
- #: scripts/dpkg-gensymbols.pl:65
- msgid ""
- "Options:\n"
- " -p<package> generate symbols file for package.\n"
- " -P<package-build-dir> temporary build dir instead of debian/tmp.\n"
- " -e<library> explicitly 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 "
- "reference\n"
- " template in the debian directory and fail if\n"
- " difference is too important; level goes from 0 "
- "for\n"
- " no check, to 4 for all checks (default level is "
- "1).\n"
- " -q keep quiet and never emit any warnings or\n"
- " generate a diff between generated symbols\n"
- " file and the reference template.\n"
- " -I<file> force usage of <file> as reference symbols\n"
- " file instead of the default file.\n"
- " -O[<file>] write to stdout (or <file>), not .../DEBIAN/"
- "symbols.\n"
- " -t write in template mode (tags are not\n"
- " processed and included in output).\n"
- " -V verbose output; write deprecated symbols and "
- "pattern\n"
- " matching symbols as comments (in template mode "
- "only).\n"
- " -a<arch> assume <arch> as host architecture when "
- "processing\n"
- " symbol files.\n"
- " -d display debug information during work.\n"
- " -?, --help show this help message.\n"
- " --version show the version.\n"
- msgstr ""
- #: scripts/dpkg-gensymbols.pl:115
- #, fuzzy, perl-format
- msgid "pattern '%s' did not match any file"
- msgstr " %s (no és un fitxer normal)\n"
- #: scripts/dpkg-gensymbols.pl:196
- #, perl-format
- msgid "can't read directory %s: %s"
- msgstr "no es pot llegir el directori %s: %s"
- #: scripts/dpkg-gensymbols.pl:211
- #, perl-format
- msgid "Dpkg::Shlibs::Objdump couldn't parse %s\n"
- msgstr "Dpkg::Shlibs::Objdump no ha pogut analitzar %s\n"
- #: scripts/dpkg-gensymbols.pl:229
- msgid "<standard output>"
- msgstr "<eixida estàndard>"
- #: scripts/dpkg-gensymbols.pl:257
- #, perl-format
- msgid "new libraries appeared in the symbols file: %s"
- msgstr ""
- #: scripts/dpkg-gensymbols.pl:262
- #, perl-format
- msgid "some libraries disappeared in the symbols file: %s"
- msgstr ""
- #: scripts/dpkg-gensymbols.pl:267
- #, perl-format
- msgid "some new symbols appeared in the symbols file: %s"
- msgstr ""
- #: scripts/dpkg-gensymbols.pl:268 scripts/dpkg-gensymbols.pl:273
- msgid "see diff output below"
- msgstr ""
- #: scripts/dpkg-gensymbols.pl:272
- #, perl-format
- msgid "some symbols or patterns disappeared in the symbols file: %s"
- msgstr ""
- #: scripts/dpkg-gensymbols.pl:293
- msgid "the generated symbols file is empty"
- msgstr ""
- #: scripts/dpkg-gensymbols.pl:295
- #, perl-format
- msgid "%s doesn't match completely %s"
- msgstr "%s no concorda completament amb %s"
- #: scripts/dpkg-gensymbols.pl:298
- #, perl-format
- msgid "no debian/symbols file used as basis for generating %s"
- msgstr ""
- #: scripts/dpkg-mergechangelogs.pl:57
- msgid ""
- "This is free software; see the GNU General Public License version 2 or\n"
- "later for copying conditions. There is NO warranty.\n"
- msgstr ""
- "Aquest és programari lliure; vegeu la Llicència Pública General GNU versió 2 "
- "o posterior per a les condicions de còpia. NO hi ha garantia.\n"
- #: scripts/dpkg-mergechangelogs.pl:64
- #, perl-format
- msgid ""
- "Usage: %s [<option>...] <old> <new-a> <new-b> [<out>]\n"
- "\n"
- "Options:\n"
- " -m, --merge-prereleases merge pre-releases together, ignores everything\n"
- " after the last '~' in the version.\n"
- " -?, --help show this help message.\n"
- " --version show the version.\n"
- msgstr ""
- "Forma d'ús: %s [<opció> …] <antic> <nou-a> <nou-b> [<eixida>]\n"
- "\n"
- "Opcions:\n"
- " -m, --merge-prereleases fusiona prellançaments, omet qualsevol cosa\n"
- " després de l'últim «~» a la versió.\n"
- " -?, --help mostra aquest missatge d'ajuda.\n"
- " --version mostra la versió.\n"
- #: scripts/dpkg-mergechangelogs.pl:90
- msgid "needs at least three arguments"
- msgstr "necessita almenys tres arguments"
- #: scripts/dpkg-mergechangelogs.pl:94
- msgid "file arguments need to exist"
- msgstr ""
- #: scripts/dpkg-name.pl:51
- #, perl-format
- msgid "Usage: %s [<option>...] <file>...\n"
- msgstr "Forma d'ús: %s [<opció>…] <fitxer>…\n"
- #: 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"
- " -?, --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 "no s'ha trobat «%s»"
- #: scripts/dpkg-name.pl:98
- #, perl-format
- msgid "binary control file %s"
- msgstr "fitxer de control binari %s"
- #: scripts/dpkg-name.pl:111
- #, perl-format
- msgid "assuming architecture '%s' for '%s'"
- msgstr "s'està assumint l'arquitectura «%s» per a «%s»"
- #: scripts/dpkg-name.pl:133
- #, perl-format
- msgid "bad package control information for '%s'"
- msgstr "informació de control del paquet errònia per a «%s»"
- #: scripts/dpkg-name.pl:149
- #, perl-format
- msgid "assuming section '%s' for '%s'"
- msgstr "s'està assumint la secció «%s» per a «%s»"
- #: scripts/dpkg-name.pl:174
- #, perl-format
- msgid "no Package field found in '%s', skipping it"
- msgstr ""
- #: scripts/dpkg-name.pl:187
- #, perl-format
- msgid "created directory '%s'"
- msgstr "s'ha creat el directori «%s»"
- #: scripts/dpkg-name.pl:189
- #, perl-format
- msgid "cannot create directory '%s'"
- msgstr "no es pot crear el directori «%s»"
- #: scripts/dpkg-name.pl:192
- #, perl-format
- msgid "no such directory '%s', try --create-dir (-c) option"
- msgstr ""
- #: scripts/dpkg-name.pl:207
- #, perl-format
- msgid "skipping '%s'"
- msgstr "s'està ometent «%s»"
- #: scripts/dpkg-name.pl:209
- #, perl-format
- msgid "cannot move '%s' to existing file"
- msgstr "no es pot moure «%s» a un fitxer existent"
- #: scripts/dpkg-name.pl:211
- #, perl-format
- msgid "moved '%s' to '%s'"
- msgstr "s'ha mogut «%s» a «%s»"
- #: scripts/dpkg-name.pl:213
- msgid "mkdir can be used to create directory"
- msgstr "es pot emprar mkdir per a crear un directori"
- #: scripts/dpkg-name.pl:251
- msgid "need at least a filename"
- msgstr "es necessita almenys un directori"
- #: scripts/dpkg-parsechangelog.pl:48
- msgid ""
- "Options:\n"
- " -l<changelog-file> get per-version info from this file.\n"
- " -F<changelog-format> force changelog format.\n"
- " -L<libdir> look for changelog parsers in <libdir>.\n"
- " -S, --show-field <field> show the values for <field>.\n"
- " -?, --help show this help message.\n"
- " --version show the version."
- msgstr ""
- #: scripts/dpkg-parsechangelog.pl:56
- msgid ""
- "Parser options:\n"
- " --format <output-format> 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:120
- msgid "takes no non-option arguments"
- msgstr "no accepta cap argument que no siguen opcions"
- #: scripts/dpkg-scanpackages.pl:75
- #, perl-format
- msgid ""
- "Usage: %s [<option>...] <binary-path> [<override-file> [<path-prefix>]] > "
- "Packages\n"
- "\n"
- "Options:\n"
- " -t, --type <type> scan for <type> packages (default is 'deb').\n"
- " -a, --arch <arch> architecture to scan for.\n"
- " -h, --hash <hash-list> only generate hashes for the specified list.\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"
- " -?, --help show this help message.\n"
- " --version show the version.\n"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:115
- #, perl-format
- msgid " %s (package says %s, not %s)"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:123
- #, perl-format
- msgid "unconditional maintainer override for %s"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:164 scripts/dpkg-scansources.pl:304
- msgid "one to three arguments expected"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:173
- #, perl-format
- msgid "unsupported checksum '%s'"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:189
- #, perl-format
- msgid "binary dir %s not found"
- msgstr "no s'ha trobat el directori binari %s"
- #: scripts/dpkg-scanpackages.pl:192
- #, fuzzy, perl-format
- msgid "override file %s not found"
- msgstr "dpkg: %s no trobat.\n"
- #: scripts/dpkg-scanpackages.pl:199
- #, fuzzy, perl-format
- msgid "couldn't open %s for reading"
- msgstr "no s'ha pogut obrir «%i» per a un flux"
- #: scripts/dpkg-scanpackages.pl:208
- #, perl-format
- msgid "couldn't parse control information from %s"
- msgstr "no s'ha pogut analitzar la informació de control de %s"
- #: scripts/dpkg-scanpackages.pl:211
- #, perl-format
- msgid "`dpkg-deb -I %s control' exited with %d, skipping package"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:217
- #, fuzzy, perl-format
- msgid "no Package field in control file of %s"
- msgstr "fitxer de control font %s"
- #: scripts/dpkg-scanpackages.pl:225
- #, perl-format
- msgid "package %s (filename %s) is repeat but newer version;"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:227
- #, perl-format
- msgid "used that one and ignored data from %s!"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:231
- #, perl-format
- msgid "package %s (filename %s) is repeat;"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:232
- #, perl-format
- msgid "ignored that one and using data from %s!"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:238
- #, perl-format
- msgid "package %s (filename %s) has Filename field!"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:272
- #, fuzzy
- msgid "failed when writing stdout"
- msgstr "s'ha produït un error en escriure la sortida estàndard: %s"
- #: scripts/dpkg-scanpackages.pl:276
- #, fuzzy
- msgid "couldn't close stdout"
- msgstr "no s'ha pogut analitzar la data %s"
- #: scripts/dpkg-scanpackages.pl:279
- msgid "Packages in override file with incorrect old maintainer value:"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:283
- msgid "Packages specifying same maintainer as override file:"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:287
- msgid "Packages in archive but missing from override file:"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:291
- msgid "Packages in override file but not in archive:"
- msgstr ""
- #: scripts/dpkg-scanpackages.pl:295
- #, perl-format
- msgid "Wrote %s entries to output Packages file."
- msgstr ""
- #: scripts/dpkg-scansources.pl:85
- #, perl-format
- msgid ""
- "Usage: %s [<option>...] <binary-path> [<override-file> [<path-prefix>]] > "
- "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:104
- #, fuzzy, perl-format
- msgid "error closing %s ($? %d, $! `%s')"
- msgstr "s'ha produït un error en tancar %s: ($? %d, $! «%s»)"
- #: scripts/dpkg-scansources.pl:120
- #, perl-format
- msgid "invalid override entry at line %d (%d fields)"
- msgstr ""
- #: scripts/dpkg-scansources.pl:126
- #, perl-format
- msgid "ignoring duplicate override entry for %s at line %d"
- msgstr ""
- #: scripts/dpkg-scansources.pl:131
- #, perl-format
- msgid "ignoring override entry for %s, invalid priority %s"
- msgstr ""
- #: scripts/dpkg-scansources.pl:185
- #, perl-format
- msgid "invalid source override entry at line %d (%d fields)"
- msgstr ""
- #: scripts/dpkg-scansources.pl:193
- #, perl-format
- msgid "ignoring duplicate source override entry for %s at line %d"
- msgstr ""
- #: scripts/dpkg-scansources.pl:243
- #, perl-format
- msgid "no binary packages specified in %s"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:105
- #, fuzzy, perl-format
- msgid "administrative directory '%s' does not exist"
- msgstr "el camí de l'alternativa %s no existeix."
- #: scripts/dpkg-shlibdeps.pl:111
- #, perl-format
- msgid "unrecognized dependency field '%s'"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:145
- #, fuzzy
- msgid "need at least one executable"
- msgstr "es necessita almenys un directori"
- #: scripts/dpkg-shlibdeps.pl:188
- #, perl-format
- msgid "couldn't find library %s needed by %s (ELF format: '%s'; RPATH: '%s')"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:268
- #, perl-format
- msgid "%s has an unexpected SONAME (%s)"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:289
- #, perl-format
- msgid ""
- "no dependency information found for %s (used by %s)\n"
- "Hint: check if the library actually comes from a package."
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:322
- msgid ""
- "binaries to analyze should already be installed in their package's directory"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:365
- #, perl-format
- msgid "symbol %s used by %s found in none of the libraries"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:368
- #, perl-format
- msgid ""
- "%s contains an unresolvable reference to symbol %s: it's probably a plugin"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:390
- #, perl-format
- msgid "%d similar warning has been skipped (use -v to see it)"
- msgid_plural ""
- "%d other similar warnings have been skipped (use -v to see them all)"
- msgstr[0] ""
- msgstr[1] ""
- #: scripts/dpkg-shlibdeps.pl:417
- #, perl-format
- msgid ""
- "%s should not be linked against %s (it uses none of the library's symbols)"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:430
- #, perl-format
- msgid ""
- "package could avoid a useless dependency if %s was not linked against %s (it "
- "uses none of the library's symbols)"
- msgid_plural ""
- "package could avoid a useless dependency if %s were not linked against %s "
- "(they use none of the library's symbols)"
- msgstr[0] ""
- msgstr[1] ""
- #: scripts/dpkg-shlibdeps.pl:441
- msgid ""
- "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 use -l."
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:444
- msgid "cannot continue due to the error above"
- msgid_plural "cannot continue due to the errors listed above"
- msgstr[0] ""
- msgstr[1] ""
- #: scripts/dpkg-shlibdeps.pl:455
- #, fuzzy, perl-format
- msgid "open new substvars file `%s'"
- msgstr "no es pot obrir el fitxer de dipòsit nou «%.250s»"
- #: scripts/dpkg-shlibdeps.pl:458
- #, fuzzy, perl-format
- msgid "open old varlist file `%s' for reading"
- msgstr ""
- "s'ha produït un error en obrir per a lectura el fitxer d'informació del "
- "paquet «%.255s»"
- #: scripts/dpkg-shlibdeps.pl:462
- #, fuzzy, perl-format
- msgid "copy old entry to new varlist file `%s'"
- msgstr "%s: no hi ha cap entrada per al fitxer «%s»"
- #: scripts/dpkg-shlibdeps.pl:527
- #, perl-format
- msgid "invalid dependency got generated: %s"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:537
- #, fuzzy, perl-format
- msgid "install new varlist file `%s'"
- msgstr "instaŀla el nou diversions: %s"
- #: scripts/dpkg-shlibdeps.pl:555
- #, perl-format
- msgid "Usage: %s [<option>...] <executable>|-e<executable> [<option>...]"
- msgstr "Forma d'ús: %s [<opció>…] <executable>|-e<executable> [<opció>…]"
- #: scripts/dpkg-shlibdeps.pl:557
- msgid ""
- "Positional options (order is significant):\n"
- " <executable> include dependencies for <executable>,\n"
- " -e<executable> (use -e if <executable> starts with '-')\n"
- " -d<dependency-field> next executable(s) set shlibs:<dependency-field>."
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:562
- msgid ""
- "Options:\n"
- " -l<library-dir> add directory to private shared library search "
- "list.\n"
- " -p<varname-prefix> set <varname-prefix>:* instead of shlibs:*.\n"
- " -O[<file>] write variable settings to stdout (or <file>).\n"
- " -L<local-shlibs-file> shlibs override file, not debian/shlibs.local.\n"
- " -T<substvars-file> 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<package-build-dir> 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"
- " -?, --help show this help message.\n"
- " --version show the version."
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:579
- #, perl-format
- msgid ""
- "Dependency fields recognized are:\n"
- " %s\n"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:683
- #, perl-format
- msgid "can't extract name and version from library name '%s'"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:689
- #, fuzzy, perl-format
- msgid "unable to open shared libs info file `%s'"
- msgstr ""
- "no es pot obrir el fitxer d'informació de control dels activadors «%.250s»"
- #: scripts/dpkg-shlibdeps.pl:695
- #, fuzzy, perl-format
- msgid "shared libs info file `%s' line %d: bad line `%s'"
- msgstr "error d'anàlisi, al fitxer «%.255s» prop de la línia %d"
- #: scripts/dpkg-shlibdeps.pl:754 scripts/dpkg-shlibdeps.pl:846
- #, perl-format
- msgid "cannot open file %s"
- msgstr "no es pot obrir el fitxer %s"
- #: scripts/dpkg-shlibdeps.pl:788
- #, 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:854
- msgid "diversions involved - output may be incorrect"
- msgstr ""
- #: scripts/dpkg-shlibdeps.pl:856
- #, fuzzy
- msgid "write diversion info to stderr"
- msgstr "escriu el diversions-new: %s"
- #: scripts/dpkg-shlibdeps.pl:861
- #, perl-format
- msgid "unknown output from dpkg --search: '%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:106
- #, fuzzy, perl-format
- msgid "--%s needs a directory"
- msgstr "--%s necessita un <directori> com a paràmetre"
- #: scripts/dpkg-source.pl:112
- #, perl-format
- msgid "cannot stat directory %s"
- msgstr "no es pot fer «stat» sobre el fitxer %s"
- #: scripts/dpkg-source.pl:114
- #, fuzzy, perl-format
- msgid "directory argument %s is not a directory"
- msgstr "el directori de control no és un directori"
- #: scripts/dpkg-source.pl:119 scripts/Dpkg/Source/Package/V2.pm:481
- #: scripts/Dpkg/Source/Package/V2.pm:483 scripts/Dpkg/Source/Package/V2.pm:485
- #: scripts/Dpkg/Source/Package/V2.pm:487
- #: scripts/Dpkg/Source/Package/V3/Bzr.pm:113
- #: scripts/Dpkg/Source/Package/V3/Bzr.pm:137
- #: scripts/Dpkg/Source/Package/V3/Bzr.pm:203
- #: scripts/Dpkg/Source/Package/V3/Bzr.pm:209
- #: scripts/Dpkg/Source/Package/V3/Git.pm:106
- #: scripts/Dpkg/Source/Package/V3/Git.pm:146
- #: scripts/Dpkg/Source/Package/V3/Git.pm:158
- #: scripts/Dpkg/Source/Package/V3/Git.pm:176
- #, fuzzy, perl-format
- msgid "unable to chdir to `%s'"
- msgstr "s'ha produït un error en canviar al directori «%.255s»"
- #: scripts/dpkg-source.pl:137
- #, fuzzy, perl-format
- msgid "using options from %s: %s"
- msgstr "S'està canviant el nom de l'enllaç %s de %s a %s."
- #: scripts/dpkg-source.pl:151 scripts/Dpkg/Compression.pm:179
- #, perl-format
- msgid "%s is not a supported compression"
- msgstr "%s no es una compressió implementada"
- #: scripts/dpkg-source.pl:157 scripts/Dpkg/Compression.pm:208
- #: scripts/Dpkg/Compression/Process.pm:88
- #, perl-format
- msgid "%s is not a compression level"
- msgstr "%s no és un nivell de compressió"
- #: scripts/dpkg-source.pl:216 scripts/dpkg-vendor.pl:80
- msgid "need an action option"
- msgstr "es requereix una opció d'acció"
- #: scripts/dpkg-source.pl:240
- #, perl-format
- msgid "%s doesn't contain any information about the source package"
- msgstr ""
- #: scripts/dpkg-source.pl:284
- #, perl-format
- msgid ""
- "binary package stanza %s is using an obsolete Build-Profiles field syntax"
- msgstr ""
- #: scripts/dpkg-source.pl:312
- #, perl-format
- msgid "`%s' is not a legal architecture string"
- msgstr "«%s» no és una cadena d'arquitectura vàlida"
- #: scripts/dpkg-source.pl:315
- #, perl-format
- msgid "architecture %s only allowed on its own (list for package %s is `%s')"
- msgstr ""
- #: scripts/dpkg-source.pl:330
- #, fuzzy, perl-format
- msgid "%s doesn't list any binary package"
- msgstr "El paquet «%s» no conté cap fitxer (!)\n"
- #: scripts/dpkg-source.pl:369
- msgid "building source for a binary-only release"
- msgstr ""
- #: scripts/dpkg-source.pl:388 scripts/Dpkg/BuildFlags.pm:316
- #: scripts/Dpkg/Compression/FileHandle.pm:422
- #: scripts/Dpkg/Interface/Storable.pm:89 scripts/Dpkg/Shlibs/Objdump.pm:125
- #: scripts/Dpkg/Source/Package/V2.pm:301 scripts/Dpkg/Source/Package/V2.pm:573
- #: scripts/Dpkg/Source/Package/V2.pm:730 scripts/Dpkg/Source/Quilt.pm:232
- #: scripts/Dpkg/Source/Quilt.pm:289 scripts/Dpkg/Source/Quilt.pm:323
- #, perl-format
- msgid "cannot read %s"
- msgstr "no es pot llegir %s"
- #: scripts/dpkg-source.pl:395
- #, perl-format
- msgid "no source format specified in %s, see dpkg-source(1)"
- msgstr ""
- #: scripts/dpkg-source.pl:423
- #, perl-format
- msgid "can't build with source format '%s': %s"
- msgstr ""
- #: scripts/dpkg-source.pl:426
- #, perl-format
- msgid "using source format `%s'"
- msgstr ""
- #: scripts/dpkg-source.pl:433 scripts/Dpkg/Source/Package/V1.pm:315
- #: scripts/Dpkg/Source/Package/V1.pm:360 scripts/Dpkg/Source/Package/V2.pm:552
- #: scripts/Dpkg/Source/Package/V3/Bzr.pm:156
- #: scripts/Dpkg/Source/Package/V3/Native.pm:92
- #, perl-format
- msgid "building %s in %s"
- msgstr "s'està construint %s a %s"
- #: scripts/dpkg-source.pl:444
- #, perl-format
- msgid "--%s needs at least one argument, the .dsc"
- msgstr "--%s necessita almenys un argument, el .dsc"
- #: scripts/dpkg-source.pl:448
- #, perl-format
- msgid "--%s takes no more than two arguments"
- msgstr "--%s no accepta més de dos arguments"
- #: scripts/dpkg-source.pl:452
- #, perl-format
- msgid "--%s needs the .dsc file as first argument, not a directory"
- msgstr "--%s necessita el fitxer .dsc com a primer argument, no un directori"
- #: scripts/dpkg-source.pl:469
- #, perl-format
- msgid "unpack target exists: %s"
- msgstr "la destinació del desempaquetament existeix: %s"
- #: scripts/dpkg-source.pl:479
- #, perl-format
- msgid "%s doesn't contain a valid OpenPGP signature"
- msgstr ""
- #: scripts/dpkg-source.pl:481
- #, perl-format
- msgid "extracting unsigned source package (%s)"
- msgstr "s'està extraient el paquet font sense signar (%s)"
- #: scripts/dpkg-source.pl:488
- #, perl-format
- msgid "extracting %s in %s"
- msgstr "s'està extraient %s des de %s"
- #: scripts/dpkg-source.pl:503
- #, perl-format
- msgid "%s field contains value %s, but no tests control file %s"
- msgstr ""
- #: scripts/dpkg-source.pl:531
- #, perl-format
- msgid "Usage: %s [<option>...] <command>"
- msgstr "Forma d'ús: %s [<opció>…] <ordre>"
- #: scripts/dpkg-source.pl:533
- msgid ""
- "Commands:\n"
- " -x, --extract <filename>.dsc [<output-dir>]\n"
- " extract source package.\n"
- " -b, --build <dir> build source package.\n"
- " --print-format <dir> print the format to be used for the source "
- "package.\n"
- " --commit [<dir> [<patch-name>]]\n"
- " store upstream changes in a new patch."
- msgstr ""
- #: scripts/dpkg-source.pl:541
- #, perl-format
- msgid ""
- "Build options:\n"
- " -c<control-file> get control info from this file.\n"
- " -l<changelog-file> get per-version info from this file.\n"
- " -F<changelog-format> force changelog format.\n"
- " --format=<source-format> set the format to be used for the source "
- "package.\n"
- " -V<name>=<value> set a substitution variable.\n"
- " -T<substvars-file> 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[<regex>] 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:560
- 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\n"
- " --ignore-bad-version allow bad source package versions."
- msgstr ""
- #: scripts/dpkg-source.pl:566
- msgid ""
- "General options:\n"
- " -?, --help show this help message.\n"
- " --version show the version."
- msgstr ""
- "Opcions generals:\n"
- " -?, --help mostra aquest missatge d'ajuda.\n"
- " --version mostra la versió."
- #: scripts/dpkg-source.pl:570
- msgid ""
- "More options are available but they depend on the source package format.\n"
- "See dpkg-source(1) for more info."
- msgstr ""
- #: scripts/dpkg-vendor.pl:44
- msgid ""
- "Commands:\n"
- " --is <vendor> returns true if current vendor is <vendor>.\n"
- " --derives-from <vendor> returns true if current vendor derives from "
- "<vendor>.\n"
- " --query <field> print the content of the vendor-specific field.\n"
- " --help show this help message.\n"
- " --version show the version."
- msgstr ""
- #: scripts/dpkg-vendor.pl:51
- msgid ""
- "Options:\n"
- " --vendor <vendor> assume <vendor> is the current vendor."
- msgstr ""
- #: scripts/dpkg-vendor.pl:87
- #, fuzzy, perl-format
- msgid "vendor %s doesn't exist in %s"
- msgstr "s'ha donat --update però %s no existeix"
- #: scripts/changelog/debian.pl:47
- #, perl-format
- msgid ""
- "Usage: %s [<option>...] [<changelogfile>]\n"
- "\n"
- "Options:\n"
- " -?, --help 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:116
- #, perl-format
- msgid "more than one file specified (%s and %s)"
- msgstr "s'ha especificat més d'un fitxer (%s i %s)"
- #: scripts/changelog/debian.pl:140
- #, perl-format
- msgid "fatal error occurred while parsing %s"
- msgstr "s'ha produït un error fatal en analitzar %s"
- #: scripts/Dpkg/Arch.pm:96
- msgid ""
- "couldn't determine gcc system type, falling back to default (native "
- "compilation)"
- msgstr ""
- #: scripts/Dpkg/Arch.pm:105
- #, perl-format
- msgid ""
- "unknown gcc system type %s, falling back to default (native compilation)"
- msgstr ""
- #: scripts/Dpkg/BuildFlags.pm:324
- #, perl-format
- msgid "line %d of %s mentions unknown flag %s"
- msgstr ""
- #: scripts/Dpkg/BuildFlags.pm:337
- #, fuzzy, perl-format
- msgid "line %d of %s is invalid, it has been ignored"
- msgstr " %.250s està desempaquetat, però no ha estat configurat.\n"
- #: scripts/Dpkg/BuildOptions.pm:95
- #, perl-format
- msgid "invalid flag in %s: %s"
- msgstr "senyalador invàlid a %s: %s"
- #: scripts/Dpkg/Changelog.pm:170 scripts/Dpkg/Changelog.pm:172
- #: scripts/Dpkg/ErrorHandling.pm:59
- msgid "warning"
- msgstr "avís"
- #: scripts/Dpkg/Changelog.pm:170
- #, perl-format
- msgid ""
- "%s(l%s): %s\n"
- "LINE: %s"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:172
- #, perl-format
- msgid "%s(l%s): %s"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:220
- msgid "'offset' without 'count' has no effect"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:229
- msgid "you can't combine 'count' or 'offset' with any other range option"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:237
- msgid "you can only specify one of 'from' and 'since', using 'since'"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:242
- msgid "you can only specify one of 'to' and 'until', using 'until'"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:254 scripts/Dpkg/Changelog.pm:270
- #: scripts/Dpkg/Changelog.pm:286 scripts/Dpkg/Changelog.pm:302
- #, perl-format
- msgid "'%s' option specifies non-existing version"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:255 scripts/Dpkg/Changelog.pm:303
- msgid "use newest entry that is earlier than the one specified"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:264
- msgid "none found, starting from the oldest entry"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:271 scripts/Dpkg/Changelog.pm:287
- msgid "use oldest entry that is later than the one specified"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:281 scripts/Dpkg/Changelog.pm:297
- #: scripts/Dpkg/Changelog.pm:312
- #, perl-format
- msgid "no such entry found, ignoring '%s' parameter"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:318
- msgid "'since' option specifies most recent version, ignoring"
- msgstr ""
- #: scripts/Dpkg/Changelog.pm:322
- msgid "'until' option specifies oldest version, ignoring"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:56
- msgid "first heading"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:57
- msgid "next heading or eof"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:58
- msgid "start of change data"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:59
- msgid "more change data or trailer"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:91
- #, perl-format
- msgid "found start of entry where expected %s"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:128
- msgid "badly formatted heading line"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:132
- #, perl-format
- msgid "found trailer where expected %s"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:142
- #: scripts/Dpkg/Changelog/Entry/Debian.pm:160
- msgid "badly formatted trailer line"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:145
- #, perl-format
- msgid "found change data where expected %s"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:167
- #, perl-format
- msgid "found blank line where expected %s"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:171
- msgid "unrecognized line"
- msgstr ""
- #: scripts/Dpkg/Changelog/Debian.pm:182
- #, perl-format
- msgid "found eof where expected %s"
- msgstr ""
- #: scripts/Dpkg/Changelog/Entry/Debian.pm:126
- #, perl-format
- msgid "bad key-value after `;': `%s'"
- msgstr ""
- #: scripts/Dpkg/Changelog/Entry/Debian.pm:131
- #, fuzzy, perl-format
- msgid "repeated key-value %s"
- msgstr "valor buit per a %s"
- #: scripts/Dpkg/Changelog/Entry/Debian.pm:135
- #, perl-format
- msgid "badly formatted urgency value: %s"
- msgstr ""
- #: scripts/Dpkg/Changelog/Entry/Debian.pm:138
- #, fuzzy, perl-format
- msgid "bad binary-only value: %s"
- msgstr "fitxer de control binari %s"
- #: scripts/Dpkg/Changelog/Entry/Debian.pm:142
- #, fuzzy, perl-format
- msgid "unknown key-value %s"
- msgstr "l'argument «%s» és desconegut"
- #: scripts/Dpkg/Changelog/Entry/Debian.pm:147
- #, perl-format
- msgid "version '%s' is invalid: %s"
- msgstr ""
- #: scripts/Dpkg/Changelog/Entry/Debian.pm:150
- msgid "the header doesn't match the expected regex"
- msgstr ""
- #: scripts/Dpkg/Changelog/Entry/Debian.pm:163
- #, perl-format
- msgid "couldn't parse date %s"
- msgstr "no s'ha pogut analitzar la data %s"
- #: scripts/Dpkg/Changelog/Entry/Debian.pm:166
- msgid "the trailer doesn't match the expected regex"
- msgstr ""
- #: scripts/Dpkg/Changelog/Parse.pm:106
- #, perl-format
- msgid "cannot create pipe for %s"
- msgstr "no es pot crear el conducte per a %s"
- #: scripts/Dpkg/Changelog/Parse.pm:110
- #, perl-format
- msgid "tail of %s"
- msgstr "cua de %s"
- #: scripts/Dpkg/Changelog/Parse.pm:122
- #, perl-format
- msgid "format parser %s not executable"
- msgstr ""
- #: scripts/Dpkg/Changelog/Parse.pm:125
- #, perl-format
- msgid "changelog format %s is unknown"
- msgstr ""
- #: scripts/Dpkg/Changelog/Parse.pm:144
- #, fuzzy, perl-format
- msgid "cannot exec format parser: %s"
- msgstr "no es pot crear el directori %s"
- #: scripts/Dpkg/Changelog/Parse.pm:151
- msgid "output of changelog parser"
- msgstr ""
- #: scripts/Dpkg/Changelog/Parse.pm:154
- #, fuzzy, perl-format
- msgid "changelog parser %s"
- msgstr "no es pot obrir el directori %s"
- #: scripts/Dpkg/Checksums.pm:173
- #, fuzzy, perl-format
- msgid "cannot fstat file %s"
- msgstr "no es pot fer «stat» sobre el fitxer «%s»"
- #: scripts/Dpkg/Checksums.pm:176
- #, perl-format
- msgid "file %s has size %u instead of expected %u"
- msgstr ""
- #: scripts/Dpkg/Checksums.pm:190
- #, perl-format
- msgid "file %s has checksum %s instead of expected %s (algorithm %s)"
- msgstr ""
- #: scripts/Dpkg/Checksums.pm:195
- #, perl-format
- msgid "checksum program gave bogus output `%s'"
- msgstr ""
- #: scripts/Dpkg/Checksums.pm:224
- #, perl-format
- msgid "invalid line in %s checksums string: %s"
- msgstr ""
- #: scripts/Dpkg/Checksums.pm:230
- #, perl-format
- msgid "conflicting checksums '%s' and '%s' for file '%s'"
- msgstr ""
- #: scripts/Dpkg/Checksums.pm:235
- #, perl-format
- msgid "conflicting file sizes '%u' and '%u' for file '%s'"
- msgstr ""
- #: scripts/Dpkg/Compression/Process.pm:73
- #, perl-format
- msgid "%s is not a supported compression method"
- msgstr ""
- #: scripts/Dpkg/Compression/Process.pm:124
- msgid "Dpkg::Compression::Process can only start one subprocess at a time"
- msgstr ""
- #: scripts/Dpkg/Conf.pm:108
- #, fuzzy, perl-format
- msgid "short option not allowed in %s, line %d"
- msgstr "no s'admeten alternatives («|») en el camp %s"
- #: scripts/Dpkg/Conf.pm:122
- #, perl-format
- msgid "invalid syntax for option in %s, line %d"
- msgstr ""
- #: scripts/Dpkg/Control.pm:153
- #, fuzzy
- msgid "general section of control info file"
- msgstr "no es pot eliminar el fitxer d'info. de control «%.250s»"
- #: scripts/Dpkg/Control.pm:155
- #, fuzzy
- msgid "package's section of control info file"
- msgstr "el paquet %s no és a la informació de control"
- #: scripts/Dpkg/Control.pm:157
- msgid "parsed version of changelog"
- msgstr ""
- #: scripts/Dpkg/Control.pm:159 scripts/Dpkg/Control.pm:161
- #, fuzzy, perl-format
- #| msgid "entry in dpkg's status file"
- msgid "entry in repository's %s file"
- msgstr "entrada al fitxer d'estat del dpkg"
- #: scripts/Dpkg/Control.pm:163 scripts/Dpkg/Control.pm:167
- #, perl-format
- msgid "%s file"
- msgstr "fitxer %s"
- #: scripts/Dpkg/Control.pm:165
- msgid "control info of a .deb package"
- msgstr ""
- #: scripts/Dpkg/Control.pm:169
- msgid "vendor file"
- msgstr "fitxer de venedor"
- #: scripts/Dpkg/Control.pm:171
- msgid "entry in dpkg's status file"
- msgstr "entrada al fitxer d'estat del dpkg"
- #: scripts/Dpkg/Control/FieldsCore.pm:509
- #, perl-format
- msgid "unknown information field '%s' in input data in %s"
- msgstr ""
- #: scripts/Dpkg/Control/FieldsCore.pm:510
- msgid "control information"
- msgstr "informació de control"
- #: scripts/Dpkg/Control/HashCore.pm:177
- #, fuzzy, perl-format
- msgid "syntax error in %s at line %d: %s"
- msgstr "error de sintaxi al fitxer de statoverride"
- #: scripts/Dpkg/Control/HashCore.pm:207
- msgid "field cannot start with a hyphen"
- msgstr ""
- #: scripts/Dpkg/Control/HashCore.pm:211
- #, perl-format
- msgid "duplicate field %s found"
- msgstr "s'ha trobat un camp %s duplicat"
- #: scripts/Dpkg/Control/HashCore.pm:219
- msgid "continued value line not in field"
- msgstr ""
- #: scripts/Dpkg/Control/HashCore.pm:233
- msgid "OpenPGP signature not allowed here"
- msgstr ""
- #: scripts/Dpkg/Control/HashCore.pm:240
- msgid "expected OpenPGP signature, found EOF after blank line"
- msgstr ""
- #: scripts/Dpkg/Control/HashCore.pm:245
- #, perl-format
- msgid "expected OpenPGP signature, found something else `%s'"
- msgstr ""
- #: scripts/Dpkg/Control/HashCore.pm:254 scripts/Dpkg/Control/HashCore.pm:268
- msgid "unfinished OpenPGP signature"
- msgstr ""
- #: scripts/Dpkg/Control/HashCore.pm:263
- msgid "line with unknown format (not field-colon-value)"
- msgstr ""
- #: scripts/Dpkg/Control/HashCore.pm:368
- #, fuzzy
- msgid "write error on control data"
- msgstr "s'ha produït un error d'escriptura en vsnprintf"
- #: scripts/Dpkg/Control/Info.pm:103
- msgid "first block lacks a source field"
- msgstr ""
- #: scripts/Dpkg/Control/Info.pm:110 scripts/Dpkg/Control/Info.pm:114
- #, perl-format
- msgid "block lacks the '%s' field"
- msgstr ""
- #: scripts/Dpkg/Deps.pm:273
- #, perl-format
- msgid "can't parse dependency %s"
- msgstr "no s'ha pogut analitzar la dependència %s"
- #: scripts/Dpkg/Deps.pm:305
- msgid "an union dependency can only contain simple dependencies"
- msgstr ""
- #: scripts/Dpkg/Dist/Files.pm:70
- #, perl-format
- msgid "badly formed line in files list file, line %d"
- msgstr ""
- #: scripts/Dpkg/Dist/Files.pm:74
- #, fuzzy, perl-format
- msgid "duplicate files list entry for file %s (line %d)"
- msgstr ""
- "hi ha un fitxer d'activadors interessants duplicat per al fitxer «%.250s» i "
- "el paquet «%.250s»"
- #: scripts/Dpkg/ErrorHandling.pm:54
- msgid "info"
- msgstr "info"
- #: scripts/Dpkg/ErrorHandling.pm:65 scripts/Dpkg/ErrorHandling.pm:70
- #: scripts/Dpkg/ErrorHandling.pm:75
- msgid "error"
- msgstr "error"
- #: scripts/Dpkg/ErrorHandling.pm:87
- #, fuzzy, perl-format
- msgid "%s gave error exit status %s"
- msgstr "el subprocés %s retornà el codi d'eixida d'error %d"
- #: scripts/Dpkg/ErrorHandling.pm:89
- #, perl-format
- msgid "%s died from signal %s"
- msgstr ""
- #: scripts/Dpkg/ErrorHandling.pm:91
- #, fuzzy, perl-format
- msgid "%s failed with unknown exit code %d"
- msgstr "el subprocés %s ha fallat amb codi d'estat en espera %d"
- #: scripts/Dpkg/ErrorHandling.pm:95
- msgid "Use --help for program usage information."
- msgstr ""
- #: scripts/Dpkg/File.pm:40
- msgid "File::FcntlLock not available; using flock which is not NFS-safe"
- msgstr ""
- #: scripts/Dpkg/File.pm:42
- #, fuzzy, perl-format
- #| msgid "failed to verify signature on %s"
- msgid "failed to get a write lock on %s"
- msgstr "no s'ha pogut verificar la signatura de %s"
- #: scripts/Dpkg/IPC.pm:233 scripts/Dpkg/IPC.pm:239 scripts/Dpkg/IPC.pm:245
- #, perl-format
- msgid "pipe for %s"
- msgstr "conducte per a %s"
- #: scripts/Dpkg/IPC.pm:273
- #, perl-format
- msgid "chdir to %s"
- msgstr "«chdir» a %s"
- #: scripts/Dpkg/IPC.pm:281
- msgid "reopen stdin"
- msgstr "torna a obrir stdin"
- #: scripts/Dpkg/IPC.pm:290 scripts/Dpkg/IPC.pm:299
- msgid "reopen stdout"
- msgstr "torna a obrir stdout"
- #: scripts/Dpkg/IPC.pm:373
- msgid "child process"
- msgstr "procés fill"
- #: scripts/Dpkg/IPC.pm:378
- #, perl-format
- msgid "wait for %s"
- msgstr "espera de %s"
- #: scripts/Dpkg/IPC.pm:383
- #, perl-format
- msgid "%s didn't complete in %d second"
- msgid_plural "%s didn't complete in %d seconds"
- msgstr[0] "%s no s'ha completat en %d segon"
- msgstr[1] "%s no s'ha completat en %d segons"
- #: scripts/Dpkg/Interface/Storable.pm:86
- msgid "<standard input>"
- msgstr "<entrada estàndard>"
- #: scripts/Dpkg/Package.pm:33
- msgid "may not be empty string"
- msgstr ""
- #: scripts/Dpkg/Package.pm:36
- #, perl-format
- msgid "character '%s' not allowed"
- msgstr ""
- #: scripts/Dpkg/Package.pm:39
- msgid "must start with an alphanumeric character"
- msgstr ""
- #: scripts/Dpkg/Shlibs/Objdump.pm:225
- #, fuzzy, perl-format
- msgid "couldn't parse dynamic relocation record: %s"
- msgstr "no s'ha pogut analitzar la informació de control de %s."
- #: scripts/Dpkg/Shlibs/Objdump.pm:344
- #, fuzzy, perl-format
- msgid "couldn't parse dynamic symbol definition: %s"
- msgstr "no s'ha pogut analitzar la informació de control de %s."
- #: scripts/Dpkg/Shlibs/Symbol.pm:108
- #, perl-format
- msgid "symbol name unspecified: %s"
- msgstr "no s'ha especificat el nom del símbol: %s"
- #: scripts/Dpkg/Shlibs/Symbol.pm:165
- #, perl-format
- msgid "you can't use symver tag to catch unversioned symbols: %s"
- msgstr ""
- #: scripts/Dpkg/Shlibs/SymbolFile.pm:223
- #, perl-format
- msgid "symbol information must be preceded by a header (file %s, line %s)"
- msgstr ""
- #: scripts/Dpkg/Shlibs/SymbolFile.pm:231
- #, perl-format
- msgid "failed to parse line in %s: %s"
- msgstr "no s'ha pogut analitzar la línia en %s: %s"
- #: scripts/Dpkg/Shlibs/SymbolFile.pm:263
- #, perl-format
- msgid "failed to parse a line in %s: %s"
- msgstr "no s'ha pogut analitzar una línia en %s: %s"
- #: scripts/Dpkg/Shlibs/SymbolFile.pm:276
- #, perl-format
- msgid "tried to merge the same object (%s) twice in a symfile"
- msgstr ""
- #: scripts/Dpkg/Shlibs/SymbolFile.pm:395
- msgid "cannot merge symbols from objects without SONAME"
- msgstr ""
- #: scripts/Dpkg/Source/Archive.pm:64
- #, fuzzy
- msgid "write on tar input"
- msgstr "error de lectura en l'entrada estàndard"
- #: scripts/Dpkg/Source/Archive.pm:91
- #, fuzzy
- msgid "close on tar input"
- msgstr "error de lectura en l'entrada estàndard"
- #: scripts/Dpkg/Source/Archive.pm:116 scripts/Dpkg/Source/Patch.pm:553
- #, perl-format
- msgid "cannot create directory %s"
- msgstr "no es pot crear el directori %s"
- #: scripts/Dpkg/Source/Archive.pm:147 scripts/Dpkg/Source/Package.pm:354
- #: scripts/Dpkg/Source/Package/V2.pm:221
- #, perl-format
- msgid "cannot opendir %s"
- msgstr "no es pot obrir el directori %s"
- #: scripts/Dpkg/Source/Archive.pm:154 scripts/Dpkg/Source/Archive.pm:158
- #, perl-format
- msgid "unable to rename %s to %s"
- msgstr "no es pot canviar el nom de %s a %s"
- #: scripts/Dpkg/Source/Functions.pm:34
- #, fuzzy, perl-format
- msgid "cannot stat directory %s (before removal)"
- msgstr "no es pot fer «stat» sobre el fitxer %s"
- #: scripts/Dpkg/Source/Functions.pm:40
- #, fuzzy, perl-format
- msgid "unable to check for removal of dir `%s'"
- msgstr "no es pot comprovar l'existència de «%.250s»"
- #: scripts/Dpkg/Source/Functions.pm:42
- #, perl-format
- msgid "rm -rf failed to remove `%s'"
- msgstr "rm -rf no ha pogut suprimir «%s»"
- #: scripts/Dpkg/Source/Functions.pm:83 scripts/Dpkg/Source/Patch.pm:600
- #, fuzzy, perl-format
- msgid "cannot change timestamp for %s"
- msgstr "no es pot crear el directori %s"
- #: scripts/Dpkg/Source/Functions.pm:85
- #, fuzzy, perl-format
- msgid "cannot read timestamp from %s"
- msgstr "no es pot crear el directori %s"
- #: scripts/Dpkg/Source/Package.pm:240
- #, perl-format
- msgid "%s is not the name of a file"
- msgstr ""
- #: scripts/Dpkg/Source/Package.pm:252
- #, fuzzy, perl-format
- msgid "missing critical source control field %s"
- msgstr "fitxer de control font %s"
- #: scripts/Dpkg/Source/Package.pm:271 scripts/Dpkg/Source/Package.pm:285
- #, fuzzy, perl-format
- msgid "source package format '%s' is not supported: %s"
- msgstr "el nom de l'activador conté un caràcter invàlid"
- #: scripts/Dpkg/Source/Package.pm:272
- msgid "format variant must be in lowercase"
- msgstr ""
- #: scripts/Dpkg/Source/Package.pm:290
- #, perl-format
- msgid "invalid Format field `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Package.pm:338
- msgid "source and version are required to compute the source basename"
- msgstr ""
- #: scripts/Dpkg/Source/Package.pm:423 scripts/Dpkg/Source/Package.pm:425
- #, perl-format
- msgid "failed to verify signature on %s"
- msgstr "no s'ha pogut verificar la signatura de %s"
- #: scripts/Dpkg/Source/Package.pm:432 scripts/Dpkg/Source/Package.pm:434
- #, perl-format
- msgid "could not verify signature on %s since gpg isn't installed"
- msgstr ""
- "no s'ha pogut verificar la signatura de %s perquè gpg no està instal·lat"
- #: scripts/Dpkg/Source/Package.pm:443
- #, perl-format
- msgid "%s is not a valid option for %s"
- msgstr "%s no és una opció vàlida per a %s"
- #: scripts/Dpkg/Source/Package.pm:516 scripts/Dpkg/Source/Patch.pm:645
- #, fuzzy, perl-format
- msgid "cannot stat %s"
- msgstr "no es pot fer «stat» sobre «%s»: %s"
- #: scripts/Dpkg/Source/Package.pm:518
- #, fuzzy, perl-format
- msgid "%s does not exist"
- msgstr "s'ha donat --update però %s no existeix"
- #: scripts/Dpkg/Source/Package.pm:522
- #, fuzzy, perl-format
- msgid "cannot make %s executable"
- msgstr "no es pot moure «%s» a un fitxer existent"
- #: scripts/Dpkg/Source/Package.pm:524
- #, fuzzy, perl-format
- msgid "%s is not a plain file"
- msgstr " %s (no és un fitxer normal)\n"
- #: scripts/Dpkg/Source/Package.pm:584
- #, fuzzy, perl-format
- #| msgid "%s is not a supported compression"
- msgid "'%s' is not supported by the source format '%s'"
- msgstr "%s no es una compressió implementada"
- #: scripts/Dpkg/Source/Package/V1.pm:69
- #, perl-format
- msgid "-s%s option overrides earlier -s%s option"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:94
- #, perl-format
- msgid "source handling style -s%s not allowed with -x"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:107
- #: scripts/Dpkg/Source/Package/V3/Native.pm:53
- msgid "multiple tarfiles in v1.0 source package"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:112 scripts/Dpkg/Source/Package/V2.pm:139
- #, perl-format
- msgid "unrecognized file for a %s source package: %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:117
- #: scripts/Dpkg/Source/Package/V3/Native.pm:60
- msgid "no tarfile in Files field"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:120
- msgid "native package with .orig.tar"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:133
- #, fuzzy, perl-format
- msgid "unable to rename `%s' to `%s'"
- msgstr "no es pot canviar el nom de %s a %s"
- #: scripts/Dpkg/Source/Package/V1.pm:137 scripts/Dpkg/Source/Package/V2.pm:163
- #: scripts/Dpkg/Source/Package/V2.pm:175 scripts/Dpkg/Source/Package/V2.pm:188
- #: scripts/Dpkg/Source/Package/V3/Bzr.pm:195
- #: scripts/Dpkg/Source/Package/V3/Native.pm:63
- #, perl-format
- msgid "unpacking %s"
- msgstr "s'està desempaquetant %s"
- #: scripts/Dpkg/Source/Package/V1.pm:144
- #, fuzzy
- msgid "unable to keep orig directory (already exists)"
- msgstr "no es pot obrir el directori de control temporal"
- #: scripts/Dpkg/Source/Package/V1.pm:151
- #, fuzzy, perl-format
- msgid "failed to rename newly-extracted %s to %s"
- msgstr "no es pot suprimir la versió acabada d'extraure de «%.250s»"
- #: scripts/Dpkg/Source/Package/V1.pm:157
- #, fuzzy, perl-format
- msgid "failed to rename saved %s to %s"
- msgstr "no es pot canviar el nom de %s a %s"
- #: scripts/Dpkg/Source/Package/V1.pm:164 scripts/Dpkg/Source/Package/V2.pm:245
- #: scripts/Dpkg/Source/Quilt.pm:176
- #, perl-format
- msgid "applying %s"
- msgstr "s'està aplicant %s"
- #: scripts/Dpkg/Source/Package/V1.pm:169
- #, perl-format
- msgid "upstream files that have been modified: %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:179
- msgid "only supports gzip compression"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:192
- msgid ""
- "-b takes at most a directory and an orig source argument (with v1.0 source "
- "package)"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:198
- #, perl-format
- msgid "source handling style -s%s not allowed with -b"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:213
- #, fuzzy, perl-format
- msgid "packed orig `%s' exists but is not a plain file"
- msgstr "el fitxer part «%.250s» no és un fitxer normal"
- #: scripts/Dpkg/Source/Package/V1.pm:225
- #, perl-format
- msgid "cannot stat orig argument %s"
- msgstr "no es pot fer «stat» sobre l'argument original %s"
- #: scripts/Dpkg/Source/Package/V1.pm:231
- #, 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:239
- #, perl-format
- msgid ""
- "orig argument is packed but source handling style -s%s calls for unpacked (."
- "orig/)"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:244
- #, fuzzy, perl-format
- msgid "orig argument %s is not a plain file or directory"
- msgstr "el conffile «%s» no és un fitxer normal"
- #: scripts/Dpkg/Source/Package/V1.pm:250
- #, 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:264
- #, perl-format
- msgid "unpacked orig `%s' exists but is not a directory"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:269
- #, fuzzy, perl-format
- msgid "unable to stat putative unpacked orig `%s'"
- msgstr "no es pot fer «stat» sobre el fitxer nou «%.250s»"
- #: scripts/Dpkg/Source/Package/V1.pm:278
- #, perl-format
- msgid "source directory '%s' is not <sourcepackage>-<upstreamversion> '%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:287
- #, perl-format
- msgid ".orig directory name %s is not <package>-<upstreamversion> (wanted %s)"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:296
- #, perl-format
- msgid ""
- ".orig.tar name %s is not <package>_<upstreamversion>.orig.tar (wanted %s)"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:308
- #, perl-format
- msgid ""
- "tarfile `%s' already exists, not overwriting, giving up; use -sU or -sR to "
- "override"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:312
- #, fuzzy, perl-format
- msgid "unable to check for existence of `%s'"
- msgstr "no es pot comprovar l'existència de «%.250s»"
- #: scripts/Dpkg/Source/Package/V1.pm:327 scripts/Dpkg/Source/Package/V1.pm:391
- #: scripts/Dpkg/Source/Package/V3/Native.pm:106
- #, fuzzy, perl-format
- msgid "unable to rename `%s' (newly created) to `%s'"
- msgstr "no es pot canviar el nom de %s a %s"
- #: scripts/Dpkg/Source/Package/V1.pm:330 scripts/Dpkg/Source/Package/V1.pm:394
- #: scripts/Dpkg/Source/Package/V2.pm:615
- #: scripts/Dpkg/Source/Package/V3/Native.pm:110
- #: scripts/Dpkg/Source/Package/V3/Quilt.pm:234
- #: scripts/Dpkg/Source/Quilt.pm:378
- #, fuzzy, perl-format
- msgid "unable to change permission of `%s'"
- msgstr "no es poden establir els permisos d'execució en «%.250s»"
- #: scripts/Dpkg/Source/Package/V1.pm:332 scripts/Dpkg/Source/Package/V2.pm:375
- #, perl-format
- msgid "building %s using existing %s"
- msgstr "s'està construint %s emprant %s existent"
- #: scripts/Dpkg/Source/Package/V1.pm:341
- #, 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:349
- #, fuzzy, perl-format
- msgid "unable to check for existence of orig dir `%s'"
- msgstr "no es pot comprovar l'existència de «%.250s»"
- #: scripts/Dpkg/Source/Package/V1.pm:382
- #, perl-format
- msgid "the diff modifies the following upstream files: %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:384
- 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:386
- msgid "aborting due to --abort-on-upstream-changes"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V1.pm:404
- #, perl-format
- msgid "%s: unrepresentable changes to source"
- msgstr "%s: hi ha canvis no representables al font"
- #: scripts/Dpkg/Source/Package/V2.pm:125
- #, fuzzy, perl-format
- msgid "duplicate files in %s source package: %s"
- msgstr "S'està reemplaçant fitxers del paquet antic %s …\n"
- #: scripts/Dpkg/Source/Package/V2.pm:145
- msgid "missing orig.tar or debian.tar file in v2.0 source package"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:148
- #, perl-format
- msgid "mismatched orig.tar %s for signature %s in source package"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:152
- #, perl-format
- msgid "missing addon orig.tar for signature %s in source package"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:155
- #, perl-format
- msgid "mismatched addon orig.tar %s for signature %s in source package"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:177
- #, perl-format
- msgid "required removal of `%s' installed by original tarball"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:263 scripts/Dpkg/Source/Quilt.pm:206
- #, perl-format
- msgid "unapplying %s"
- msgstr "s'està desaplicant %s"
- #: scripts/Dpkg/Source/Package/V2.pm:286 scripts/Dpkg/Source/Package/V2.pm:371
- #, perl-format
- msgid "no upstream tarball found at %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:340
- msgid "patches are not applied, applying them now"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:358
- #, fuzzy, perl-format
- msgid "several orig.tar files found (%s and %s) but only one is allowed"
- msgstr ""
- "s'han trobat diverses entrades d'informació de paquets, només se'n permet una"
- #: scripts/Dpkg/Source/Package/V2.pm:397
- #, fuzzy
- msgid "copy of the debian directory"
- msgstr "no es pot llegir el directori «info»"
- #: scripts/Dpkg/Source/Package/V2.pm:422
- msgid "unrepresentable changes to source"
- msgstr "hi ha canvis no representables al font"
- #: scripts/Dpkg/Source/Package/V2.pm:425
- msgid "local changes detected, the modified files are:"
- msgstr "s'han trobat canvis locals, els fitxers modificats són:"
- #: scripts/Dpkg/Source/Package/V2.pm:444
- #: scripts/Dpkg/Source/Package/V3/Bzr.pm:100
- #: scripts/Dpkg/Source/Package/V3/Native.pm:84
- #, perl-format
- msgid "-b takes only one parameter with format `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:463
- #, fuzzy, perl-format
- msgid "unwanted binary file: %s"
- msgstr "fitxer de control binari %s"
- #: scripts/Dpkg/Source/Package/V2.pm:498
- #, perl-format
- msgid ""
- "detected %d unwanted binary file (add it in debian/source/include-binaries "
- "to allow its inclusion)."
- msgid_plural ""
- "detected %d unwanted binary files (add them in debian/source/include-"
- "binaries to allow their inclusion)."
- msgstr[0] ""
- msgstr[1] ""
- #: scripts/Dpkg/Source/Package/V2.pm:512 scripts/Dpkg/Source/Patch.pm:312
- #, perl-format
- msgid "cannot represent change to %s: %s"
- msgstr "no es pot representar el canvi a %s: %s"
- #: scripts/Dpkg/Source/Package/V2.pm:513 scripts/Dpkg/Source/Patch.pm:71
- msgid "binary file contents changed"
- msgstr "ha canviat el contingut d'un fitxer binari"
- #: scripts/Dpkg/Source/Package/V2.pm:514
- #, 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:530
- #, perl-format
- msgid "you can integrate the local changes with %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:532
- #, perl-format
- msgid "aborting due to unexpected upstream changes, see %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:543 scripts/Dpkg/Source/Package/V2.pm:693
- #, perl-format
- msgid "local changes have been recorded in a new patch: %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:547 scripts/Dpkg/Source/Package/V2.pm:622
- #: scripts/Dpkg/Source/Package/V2.pm:669 scripts/Dpkg/Source/Package/V2.pm:691
- #: scripts/Dpkg/Source/Package/V3/Quilt.pm:236
- #, perl-format
- msgid "cannot remove %s"
- msgstr "no es pot suprimir %s"
- #: scripts/Dpkg/Source/Package/V2.pm:613
- #: scripts/Dpkg/Source/Package/V3/Quilt.pm:232
- #: scripts/Dpkg/Source/Quilt.pm:376
- #, fuzzy, perl-format
- msgid "failed to copy %s to %s"
- msgstr "no es pot canviar el nom de %s a %s"
- #: scripts/Dpkg/Source/Package/V2.pm:635
- #, perl-format
- msgid "cannot register changes in %s, this patch already exists"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:652
- #, fuzzy, perl-format
- msgid "patch file '%s' doesn't exist"
- msgstr "s'ha donat --update però %s no existeix"
- #: scripts/Dpkg/Source/Package/V2.pm:670
- #, fuzzy
- #| msgid "unrepresentable changes to source"
- msgid "there are no local changes to record"
- msgstr "hi ha canvis no representables al font"
- #: scripts/Dpkg/Source/Package/V2.pm:675
- msgid "Enter the desired patch name: "
- msgstr ""
- #: scripts/Dpkg/Source/Package/V2.pm:687
- msgid "cannot find an editor"
- msgstr "no s'ha trobat un editor"
- #: scripts/Dpkg/Source/Package/V2.pm:758
- #, perl-format
- msgid "adding %s to %s"
- msgstr "s'està afegint %s a %s"
- #: scripts/Dpkg/Source/Package/V3/Bzr.pm:52
- msgid "cannot unpack bzr-format source package because bzr is not in the PATH"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/Bzr.pm:60
- #, 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:67
- #, fuzzy, perl-format
- msgid "%s is a symlink"
- msgstr "manca %s"
- #: scripts/Dpkg/Source/Package/V3/Bzr.pm:73
- #, fuzzy, perl-format
- msgid "%s is a symlink to outside %s"
- msgstr "no es pot fer l'enllaç simbòlic de %s a %s: %s"
- #: scripts/Dpkg/Source/Package/V3/Bzr.pm:85
- msgid "doesn't contain a bzr repository"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/Bzr.pm:131
- msgid "bzr status exited nonzero"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/Bzr.pm:133
- #: scripts/Dpkg/Source/Package/V3/Git.pm:137
- #, perl-format
- msgid "uncommitted, not-ignored changes in working directory: %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/Bzr.pm:183
- msgid "format v3.0 uses only one source file"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/Bzr.pm:188
- #, perl-format
- msgid "expected %s, got %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/Custom.pm:40
- msgid "Format `3.0 (custom)' is only used to create source packages"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/Custom.pm:46
- msgid "no files indicated on command line"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/Custom.pm:55
- msgid "--target-format option is missing"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/Git.pm:55
- msgid "cannot unpack git-format source package because git 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:68
- #, perl-format
- msgid "git repository %s uses submodules; this is not yet supported"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/Git.pm:91
- msgid "doesn't contain a git repository"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/Git.pm:135
- msgid "git ls-files exited nonzero"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/Git.pm:152
- #, perl-format
- msgid "creating shallow clone with depth %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/Git.pm:168
- #, fuzzy, perl-format
- msgid "bundling: %s"
- msgstr "dbg: %s"
- #: scripts/Dpkg/Source/Package/V3/Git.pm:203
- msgid "format v3.0 (git) uses only one .git file"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/Git.pm:209
- msgid "format v3.0 (git) uses only one .gitshallow file"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/Git.pm:212
- #, perl-format
- msgid "format v3.0 (git) unknown file: %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/Git.pm:216
- #, perl-format
- msgid "format v3.0 (git) expected %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/Git.pm:222
- #, perl-format
- msgid "cloning %s"
- msgstr "s'està clonant %s"
- #: scripts/Dpkg/Source/Package/V3/Git.pm:229
- msgid "setting up shallow clone"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/Native.pm:56
- #, perl-format
- msgid "unrecognized file for a native source package: %s"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/Native.pm:72
- msgid "native package version may not have a revision"
- msgstr ""
- #: scripts/Dpkg/Source/Package/V3/Quilt.pm:77
- #, fuzzy
- msgid "non-native package version does not contain a revision"
- msgstr "la cadena de versió està buida"
- #: scripts/Dpkg/Source/Package/V3/Quilt.pm:120
- #, perl-format
- msgid "can't create symlink %s"
- msgstr "no es pot crear l'enllaç simbòlic %s"
- #: scripts/Dpkg/Source/Package/V3/Quilt.pm:190
- #: scripts/Dpkg/Source/Package/V3/Quilt.pm:192
- #, perl-format
- msgid "unsupported version of the quilt metadata: %s"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:121
- #, perl-format
- msgid "file %s has no final newline (either original or modified version)"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:125
- #, fuzzy, perl-format
- msgid "unknown line from diff -u on %s: `%s'"
- msgstr "l'opció «%s» és desconeguda"
- #: scripts/Dpkg/Source/Patch.pm:128 scripts/Dpkg/Source/Patch.pm:131
- msgid "failed to write"
- msgstr "no s'ha pogut escriure"
- #: scripts/Dpkg/Source/Patch.pm:141
- #, perl-format
- msgid "diff on %s"
- msgstr "diff de %s"
- #: scripts/Dpkg/Source/Patch.pm:167 scripts/Dpkg/Source/Patch.pm:190
- #: scripts/Dpkg/Source/Patch.pm:214 scripts/Dpkg/Source/Patch.pm:227
- #, fuzzy, perl-format
- msgid "cannot stat file %s"
- msgstr "no es pot fer «stat» sobre el fitxer «%s»"
- #: scripts/Dpkg/Source/Patch.pm:177 scripts/Dpkg/Source/Patch.pm:181
- #, perl-format
- msgid "cannot read link %s"
- msgstr "no es pot llegir l'enllaç %s"
- #: scripts/Dpkg/Source/Patch.pm:210
- msgid "device or socket is not allowed"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:220
- msgid "unknown file type"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:233
- #, fuzzy, perl-format
- msgid "ignoring deletion of file %s, use --include-removal to override"
- msgstr "s'omet la supressió del fitxer %s"
- #: scripts/Dpkg/Source/Patch.pm:236
- #, perl-format
- msgid "ignoring deletion of directory %s"
- msgstr "s'omet la supressió del directori %s"
- #: scripts/Dpkg/Source/Patch.pm:238
- #, perl-format
- msgid "ignoring deletion of symlink %s"
- msgstr "s'omet la supressió de l'enllaç simbòlic %s"
- #: scripts/Dpkg/Source/Patch.pm:283
- #, perl-format
- msgid "newly created empty file '%s' will not be represented in diff"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:287
- #, perl-format
- msgid "executable mode %04o of '%s' will not be represented in diff"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:292
- #, perl-format
- msgid "special mode %04o of '%s' will not be represented in diff"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:319
- #, perl-format
- msgid "cannot represent change to %s:"
- msgstr "no es pot representar el canvi a %s:"
- #: scripts/Dpkg/Source/Patch.pm:320
- #, perl-format
- msgid " new version is %s"
- msgstr " la versió nova és %s"
- #: scripts/Dpkg/Source/Patch.pm:321
- #, perl-format
- msgid " old version is %s"
- msgstr " la versió antiga és %s"
- #: scripts/Dpkg/Source/Patch.pm:346
- #, fuzzy, perl-format
- msgid "diff %s patches file with C-style encoded filename"
- msgstr "el diff «%s» aplica pedaços a un fitxer amb nom acabat en .dpkg-orig"
- #: scripts/Dpkg/Source/Patch.pm:424
- #, perl-format
- msgid "expected ^--- in line %d of diff `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:431
- #, fuzzy, perl-format
- msgid "diff `%s' patches file with name ending .dpkg-orig"
- msgstr "el diff «%s» aplica pedaços a un fitxer amb nom acabat en .dpkg-orig"
- #: scripts/Dpkg/Source/Patch.pm:436
- #, perl-format
- msgid "diff `%s' finishes in middle of ---/+++ (line %d)"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:439
- #, perl-format
- msgid "line after --- isn't as expected in diff `%s' (line %d)"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:447
- #, perl-format
- msgid "none of the filenames in ---/+++ are valid in diff '%s' (line %d)"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:455 scripts/Dpkg/Source/Quilt.pm:342
- #, perl-format
- msgid "%s contains an insecure path: %s"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:460
- #, perl-format
- msgid "diff %s modifies file %s through a symlink: %s"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:469
- #, perl-format
- msgid "original and modified files are /dev/null in diff `%s' (line %d)"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:472
- #, perl-format
- msgid "file removal without proper filename in diff `%s' (line %d)"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:475
- #, perl-format
- msgid "diff %s removes a non-existing file %s (line %d)"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:487
- #, perl-format
- msgid "diff `%s' patches something which is not a plain file"
- msgstr "el diff «%s» aplica pedaços a alguna cosa que no és un fitxer pla"
- #: scripts/Dpkg/Source/Patch.pm:491
- #, perl-format
- msgid "diff `%s' patches file %s twice"
- msgstr "el diff «%s» aplica pedaços al fitxer %s dues vegades"
- #: scripts/Dpkg/Source/Patch.pm:509 scripts/Dpkg/Source/Patch.pm:513
- #, perl-format
- msgid "unexpected end of diff `%s'"
- msgstr "s'ha trobat un fi inesperat del diff «%s»"
- #: scripts/Dpkg/Source/Patch.pm:526
- #, perl-format
- msgid "expected [ +-] at start of line %d of diff `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:533
- #, perl-format
- msgid "expected ^@@ at line %d of diff `%s'"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:538
- #, fuzzy, perl-format
- msgid "diff `%s' doesn't contain any patch"
- msgstr "El paquet «%s» no conté cap fitxer (!)\n"
- #: scripts/Dpkg/Source/Patch.pm:604
- #, perl-format
- msgid "remove patch backup file %s"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:644
- msgid "nonexistent"
- msgstr "no existent"
- #: scripts/Dpkg/Source/Patch.pm:647
- msgid "plain file"
- msgstr "fitxer pla"
- #: scripts/Dpkg/Source/Patch.pm:648
- msgid "directory"
- msgstr "directori"
- #: scripts/Dpkg/Source/Patch.pm:649
- #, perl-format
- msgid "symlink to %s"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:650
- msgid "block device"
- msgstr "dispositiu de bloc"
- #: scripts/Dpkg/Source/Patch.pm:651
- msgid "character device"
- msgstr "dispositiu de caràcter"
- #: scripts/Dpkg/Source/Patch.pm:652
- msgid "named pipe"
- msgstr ""
- #: scripts/Dpkg/Source/Patch.pm:653
- msgid "named socket"
- msgstr ""
- #: scripts/Dpkg/Source/Quilt.pm:55
- #, perl-format
- msgid "cannot mkdir %s"
- msgstr "no es pot fer «mkdir %s»"
- #: scripts/Dpkg/Source/Quilt.pm:186
- msgid "the patch has fuzz which is not allowed, or is malformed"
- msgstr ""
- #: scripts/Dpkg/Source/Quilt.pm:187
- #, perl-format
- msgid "if patch '%s' is correctly applied by quilt, use '%s' to update it"
- msgstr ""
- #: scripts/Dpkg/Source/Quilt.pm:245
- #, perl-format
- msgid "%s should be a directory or non-existing"
- msgstr ""
- #: scripts/Dpkg/Source/Quilt.pm:249
- #, perl-format
- msgid "%s should be a file or non-existing"
- msgstr ""
- #: scripts/Dpkg/Source/Quilt.pm:335
- #, perl-format
- msgid ""
- "the series file (%s) contains unsupported options ('%s', line %s); dpkg-"
- "source might fail when applying patches"
- msgstr ""
- #: scripts/Dpkg/Source/Quilt.pm:364
- #, perl-format
- msgid "restoring quilt backup files for %s"
- msgstr ""
- #: scripts/Dpkg/Substvars.pm:206
- #, fuzzy, perl-format
- msgid "bad line in substvars file %s at line %d"
- msgstr "s'ha produït un error en llegir «%s» en la línia %d"
- #: scripts/Dpkg/Substvars.pm:283
- #, perl-format
- msgid "too many substitutions - recursive ? - in `%s'"
- msgstr ""
- #: scripts/Dpkg/Substvars.pm:293
- #, perl-format
- msgid "deprecated substitution variable ${%s}"
- msgstr "la variable de substitució ${%s} és obsoleta"
- #: scripts/Dpkg/Substvars.pm:296
- #, perl-format
- msgid "unknown substitution variable ${%s}"
- msgstr "la variable de substitució ${%s} és desconeguda"
- #: scripts/Dpkg/Substvars.pm:320
- #, perl-format
- msgid "unused substitution variable ${%s}"
- msgstr "la variable de substitució ${%s} no s'utilitza"
- #: scripts/Dpkg/Vars.pm:40
- #, fuzzy, perl-format
- msgid "source package name '%s' is illegal: %s"
- msgstr "el nom de l'activador conté un caràcter invàlid"
- #: scripts/Dpkg/Vars.pm:45
- #, perl-format
- msgid "source package has two conflicting values - %s and %s"
- msgstr ""
- #: scripts/Dpkg/Vendor/Debian.pm:93
- #, fuzzy, perl-format
- msgid "unknown %s feature in %s variable: %s"
- msgstr "l'argument «%s» és desconegut"
- #: scripts/Dpkg/Vendor/Debian.pm:98
- #, perl-format
- msgid "incorrect value in %s option of %s variable: %s"
- msgstr ""
- #: scripts/Dpkg/Vendor/Debian.pm:177
- #, perl-format
- msgid "unknown host architecture '%s'"
- msgstr "arquitectura de l'amfitrió '%s' desconeguda"
- #: scripts/Dpkg/Vendor/Ubuntu.pm:62 scripts/Dpkg/Vendor/Ubuntu.pm:64
- msgid ""
- "Version number suggests Ubuntu changes, but Maintainer: does not have Ubuntu "
- "address"
- msgstr ""
- #: scripts/Dpkg/Vendor/Ubuntu.pm:68
- msgid ""
- "Version number suggests Ubuntu changes, but there is no XSBC-Original-"
- "Maintainer field"
- msgstr ""
- #: scripts/Dpkg/Vendor/Ubuntu.pm:126
- msgid "'hardening' flag found but 'hardening-wrapper' not installed"
- msgstr ""
- #: scripts/Dpkg/Vendor/Ubuntu.pm:145
- #, perl-format
- msgid "overriding %s in environment: %s"
- msgstr ""
- #: scripts/Dpkg/Version.pm:235 scripts/Dpkg/Version.pm:237
- #, fuzzy, perl-format
- msgid "%s is not a valid version"
- msgstr "%s no és una opció vàlida per a %s"
- #: scripts/Dpkg/Version.pm:405
- #, fuzzy
- msgid "version number cannot be empty"
- msgstr "la cadena de versió està buida"
- #: scripts/Dpkg/Version.pm:410
- #, fuzzy
- msgid "version number does not start with digit"
- msgstr "la cadena de versió està buida"
- #: scripts/Dpkg/Version.pm:415
- #, fuzzy, perl-format
- msgid "version number contains illegal character `%s'"
- msgstr "el nom de l'activador conté un caràcter invàlid"
- #: scripts/Dpkg/Version.pm:420
- #, fuzzy, perl-format
- msgid "epoch part of the version number is not a number: '%s'"
- msgstr "l'època en la versió no és un número"
- #, fuzzy
- #~ msgid "binary-only upload - not including any source code"
- #~ msgstr "pujada de només binaris (no s'inclou el codi font)"
- #, fuzzy
- #~ msgid "diff %s patches file with unknown escape sequence \\%s"
- #~ msgstr ""
- #~ "el diff «%s» aplica pedaços a un fitxer amb nom acabat en .dpkg-orig"
- #, fuzzy
- #~ msgid "read old files list file"
- #~ msgstr "no es pot eliminar la llista de fitxers antiga"
- #, fuzzy
- #~ msgid "close new files list file"
- #~ msgstr "no es pot tancar el fitxer d'activadors de fitxer nou «%.250s»"
- #, fuzzy
- #~ msgid "cannot read files list file"
- #~ msgstr "no es pot eliminar la llista de fitxers antiga"
- #, fuzzy
- #~ msgid "duplicate files list entry for package %s (line %d)"
- #~ msgstr ""
- #~ "no es pot fer «sync» sobre el fitxer de nlist de fitxers actualitzats del "
- #~ "paquet %s"
- #, fuzzy
- #~ msgid "close old files list file"
- #~ msgstr "no es pot eliminar la llista de fitxers antiga"
- #~ msgid "internal error"
- #~ msgstr "error intern"
- #~ msgid "fatal error occurred while parsing input"
- #~ msgstr "s'ha produït un error fatal en analitzar l'entrada"
- #~ msgid "will probably become fatal in the future."
- #~ msgstr "probablement serà fatal en el futur."
- #~ msgid ""
- #~ "\n"
- #~ "Copyright (C) 1999-2001 Marcus Brinkmann <brinkmd@debian.org>.\n"
- #~ "Copyright (C) 2004-2005 Scott James Remnant <scott@netsplit.com>."
- #~ msgstr ""
- #~ "\n"
- #~ "Copyright © 1999-2001 Marcus Brinkmann <brinkmd@debian.org>.\n"
- #~ "Copyright © 2004-2005 Scott James Remnant <scott@netsplit.com>."
- #, fuzzy
- #~| msgid ""
- #~| "\n"
- #~| "Copyright (C) 2010 Raphael Hertzog <hertzog@debian.org>."
- #~ msgid ""
- #~ "\n"
- #~ "Copyright (C) 2010-2011 Raphael Hertzog <hertzog@debian.org>."
- #~ msgstr ""
- #~ "\n"
- #~ "Copyright © 2010 Raphael Hertzog <hertzog@debian.org>."
- #~ msgid ""
- #~ "\n"
- #~ "Copyright (C) 1996 Ian Jackson.\n"
- #~ "Copyright (C) 2000 Wichert Akkerman\n"
- #~ "Copyright (C) 2007 Frank Lichtenheld"
- #~ msgstr ""
- #~ "\n"
- #~ "Copyright © 1996 Ian Jackson.\n"
- #~ "Copyright © 2000 Wichert Akkerman.\n"
- #~ "Copyright © 2007 Frank Lichtenheld"
- #, fuzzy
- #~| msgid "%s: export %s from dpkg-buildflags (origin: %s): %s\n"
- #~ msgid "%s: dpkg-buildflags (origin: %s): %s = %s\n"
- #~ msgstr "%s: s'està exportant %s de dpkg-buildflags (origen: %s): %s\n"
- #~ msgid ""
- #~ "\n"
- #~ "Copyright (C) 1996 Ian Jackson."
- #~ msgstr ""
- #~ "\n"
- #~ "Copyright © 1996 Ian Jackson."
- #~ msgid ""
- #~ "\n"
- #~ "Copyright (C) 1996 Ian Jackson.\n"
- #~ "Copyright (C) 2000,2001 Wichert Akkerman."
- #~ msgstr ""
- #~ "\n"
- #~ "Copyright © 1996 Ian Jackson.\n"
- #~ "Copyright © 2000, 2001 Wichert Akkerman."
- #~ msgid ""
- #~ "\n"
- #~ "Copyright (C) 1996 Ian Jackson.\n"
- #~ "Copyright (C) 2000,2002 Wichert Akkerman."
- #~ msgstr ""
- #~ "\n"
- #~ "Copyright © 1996 Ian Jackson.\n"
- #~ "Copyright © 2000, 2002 Wichert Akkerman."
- #~ msgid ""
- #~ "\n"
- #~ "Copyright (C) 2007 Raphael Hertzog.\n"
- #~ msgstr ""
- #~ "\n"
- #~ "Copyright © 2007 Raphael Hertzog.\n"
- #~ msgid "Copyright (C) 2009-2010 Raphael Hertzog."
- #~ msgstr "Copyright © 2009-2010 Raphael Hertzog."
- #~ msgid ""
- #~ "\n"
- #~ "Copyright (C) 1996 Ian Jackson.\n"
- #~ "Copyright (C) 2001 Wichert Akkerman"
- #~ msgstr ""
- #~ "\n"
- #~ "Copyright © 1996 Ian Jackson.\n"
- #~ "Copyright © 2001 Wichert Akkerman"
- #~ 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 ""
- #~ "\n"
- #~ "Copyright © 1996 Ian Jackson.\n"
- #~ "Copyright © 2000 Wichert Akkerman.\n"
- #~ "Copyright © 2006 Frank Lichtenheld.\n"
- #~ "Copyright © 2007 Raphael Hertzog.\n"
- #~ msgid ""
- #~ "\n"
- #~ "Copyright (C) 1996 Ian Jackson\n"
- #~ "Copyright (C) 1997 Klee Dienes\n"
- #~ "Copyright (C) 2008 Raphael Hertzog"
- #~ msgstr ""
- #~ "\n"
- #~ "Copyright © 1996 Ian Jackson\n"
- #~ "Copyright © 1997 Klee Dienes\n"
- #~ "Copyright © 2008 Raphael Hertzog"
- #~ msgid ""
- #~ "\n"
- #~ "Copyright (C) 1996 Ian Jackson.\n"
- #~ "Copyright (C) 2005,2007 Frank Lichtenheld."
- #~ msgstr ""
- #~ "\n"
- #~ "Copyright © 1996 Ian Jackson.\n"
- #~ "Copyright © 2005,2007 Frank Lichtenheld."
- #~ msgid "no orig.tar file found"
- #~ msgstr "no s'ha trobat el fitxer orig.tar"
- #~ msgid "cannot rename %s to %s"
- #~ msgstr "no es pot canviar el nom de %s a %s"
- #, fuzzy
- #~ msgid "cannot exec dpkg"
- #~ msgstr "no es pot suprimir %s"
- #~ msgid "unable to get login information for username \"%s\""
- #~ msgstr "no s'ha pogut obtenir la informació d'entrada per a l'usuari «%s»"
- #~ msgid ""
- #~ "no utmp entry available and LOGNAME not defined; using uid of process (%d)"
- #~ msgstr ""
- #~ "no hi ha una entrada utmp disponible i LOGNAME no està definit; "
- #~ "s'utilitzarà l'uid del procés (%d)"
- #~ msgid "unable to get login information for uid %d"
- #~ msgstr "no es pot obtenir la informació d'entrada per a l'uid %d"
- #~ msgid "cannot combine -b or -B and -S"
- #~ msgstr "no es pot combinar -b o -B amb -S"
- #~ msgid "%s: error: %s"
- #~ msgstr "%s: error: %s"
|