pl.po 177 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920
  1. # Translation of dpkg scripts messages to Polish
  2. # Copyright (C) 1999 Software in the Public Interest, Inc.
  3. # This file is distributed under the same license as the dpkg package.
  4. #
  5. # Robert Luberda <robert@debian.org>, 2007-2008.
  6. # Wiktor Wandachowicz <siryes@gmail.com>, 2008-2009.
  7. # Michał Kułach <michal.kulach@gmail.com>, 2012.
  8. # Łukasz Dulny <BartekChom@poczta.onet.pl>, 2014.
  9. msgid ""
  10. msgstr ""
  11. "Project-Id-Version: dpkg-dev 1.15.4\n"
  12. "Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
  13. "POT-Creation-Date: 2017-02-01 05:48+0100\n"
  14. "PO-Revision-Date: 2015-04-07 07:05+0200\n"
  15. "Last-Translator: Łukasz Dulny <BartekChom@poczta.onet.pl>\n"
  16. "Language-Team: Polish <debian-l10n-polish@lists.debian.org>\n"
  17. "Language: pl\n"
  18. "MIME-Version: 1.0\n"
  19. "Content-Type: text/plain; charset=UTF-8\n"
  20. "Content-Transfer-Encoding: 8bit\n"
  21. "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
  22. "|| n%100>=20) ? 1 : 2;\n"
  23. "X-Generator: Lokalize 1.5\n"
  24. #: scripts/dpkg-architecture.pl scripts/dpkg-buildflags.pl
  25. #: scripts/dpkg-buildpackage.pl scripts/dpkg-checkbuilddeps.pl
  26. #: scripts/dpkg-distaddfile.pl scripts/dpkg-genbuildinfo.pl
  27. #: scripts/dpkg-genchanges.pl scripts/dpkg-gencontrol.pl
  28. #: scripts/dpkg-gensymbols.pl scripts/dpkg-mergechangelogs.pl
  29. #: scripts/dpkg-name.pl scripts/dpkg-parsechangelog.pl
  30. #: scripts/dpkg-scanpackages.pl scripts/dpkg-scansources.pl
  31. #: scripts/dpkg-shlibdeps.pl scripts/dpkg-source.pl scripts/dpkg-vendor.pl
  32. #, perl-format
  33. msgid "Debian %s version %s.\n"
  34. msgstr "Debian %s w wersji %s.\n"
  35. #: scripts/dpkg-architecture.pl scripts/dpkg-buildflags.pl
  36. #: scripts/dpkg-buildpackage.pl scripts/dpkg-distaddfile.pl
  37. #: scripts/dpkg-genbuildinfo.pl scripts/dpkg-genchanges.pl
  38. #: scripts/dpkg-gencontrol.pl scripts/dpkg-gensymbols.pl
  39. #: scripts/dpkg-parsechangelog.pl scripts/dpkg-shlibdeps.pl
  40. #: scripts/dpkg-source.pl scripts/dpkg-vendor.pl
  41. msgid ""
  42. "\n"
  43. "This is free software; see the GNU General Public License version 2 or\n"
  44. "later for copying conditions. There is NO warranty.\n"
  45. msgstr ""
  46. "\n"
  47. "Ten program jest oprogramowaniem wolnym, rozpowszechnianym na warunkach\n"
  48. "licencji GNU w wersji drugiej lub późniejszej. Brak JAKIEJKOLWIEK "
  49. "gwarancji.\n"
  50. #: scripts/dpkg-architecture.pl scripts/dpkg-vendor.pl
  51. #, perl-format
  52. msgid "Usage: %s [<option>...] [<command>]"
  53. msgstr "Użycie: %s [<opcja>...] [<polecenie>]"
  54. #: scripts/dpkg-architecture.pl
  55. msgid ""
  56. "Commands:\n"
  57. " -l, --list list variables (default).\n"
  58. " -L, --list-known list valid architectures (matching some "
  59. "criteria).\n"
  60. " -e, --equal <arch> compare with host Debian architecture.\n"
  61. " -i, --is <arch-wildcard> match against host Debian architecture.\n"
  62. " -q, --query <variable> prints only the value of <variable>.\n"
  63. " -s, --print-set print command to set environment variables.\n"
  64. " -u, --print-unset print command to unset environment variables.\n"
  65. " -c, --command <command> set environment and run the command in it.\n"
  66. " -?, --help show this help message.\n"
  67. " --version show the version."
  68. msgstr ""
  69. "Polecenia:\n"
  70. " -l, --list wyświetla listę zmiennych (domyślnie).\n"
  71. " -L, --list-known wyswietla poprawne arch. (spełniające pewne "
  72. "kryteria).\n"
  73. " -e, --equal <arch> porównuje z architekturę Debiana hosta.\n"
  74. " -i, --is <arch_wieloznacznik>\n"
  75. " dopasowuje do architektury Debiana hosta.\n"
  76. " -q, --query <zmienna> wyświetla tylko wartość <zmiennej>.\n"
  77. " -s, --print-set wyświetla polecenie ustawiające zmienne "
  78. "środowiska.\n"
  79. " -u, --print-unset wyświetla polecenie usuwające zmienne środowiska.\n"
  80. " -c, --command <polecenie>\n"
  81. " ustawia środowisko i wykonuje w nim polecenie.\n"
  82. " -?, --help wyświetla ten komunikat pomocy.\n"
  83. " --version wyświetla wersję."
  84. #: scripts/dpkg-architecture.pl
  85. msgid ""
  86. "Options:\n"
  87. " -a, --host-arch <arch> set host Debian architecture.\n"
  88. " -t, --host-type <type> set host GNU system type.\n"
  89. " -A, --target-arch <arch> set target Debian architecture.\n"
  90. " -T, --target-type <type> set target GNU system type.\n"
  91. " -W, --match-wildcard <arch-wildcard>\n"
  92. " restrict architecture list matching <arch-"
  93. "wildcard>.\n"
  94. " -B, --match-bits <arch-bits>\n"
  95. " restrict architecture list matching <arch-"
  96. "bits>.\n"
  97. " -E, --match-endian <arch-endian>\n"
  98. " restrict architecture list matching <arch-"
  99. "endian>.\n"
  100. " -f, --force force flag (override variables set in "
  101. "environment)."
  102. msgstr ""
  103. "Opcje:\n"
  104. " -a, --host-arch <arch> ustaw architekturę Debiana hosta.\n"
  105. " -t, --host-type <typ> ustaw typ systemu GNU hosta.\n"
  106. " -A, --target-arch <arch> ustaw docelową architekturę Debiana.\n"
  107. " -T, --target-type <typ> ustaw docelowy typ systemu GNU.\n"
  108. " -W, --match-wildcard <arch_wieloznacznik>\n"
  109. " tylko architektury dopasowane do "
  110. "wieloznacznika.\n"
  111. " -B, --match-bits <arch_bitów>\n"
  112. " tylko architektury z daną ilością bitów.\n"
  113. " -E, --match-endian <arch_kolejność>\n"
  114. " tylko architektury z daną kolejnością bitów.\n"
  115. " -f, --force wymuś (nadpisz zmienne ustawione w środowisku)."
  116. #: scripts/dpkg-architecture.pl
  117. #, perl-format
  118. msgid "unknown Debian architecture %s, you must specify GNU system type, too"
  119. msgstr "nieznana architektura Debiana %s, należy podać również typ systemu GNU"
  120. #: scripts/dpkg-architecture.pl
  121. #, perl-format
  122. msgid "unknown GNU system type %s, you must specify Debian architecture, too"
  123. msgstr "nieznany typ systemu GNU %s, należy podać również architekturę Debiana"
  124. #: scripts/dpkg-architecture.pl
  125. #, perl-format
  126. msgid "unknown default GNU system type for Debian architecture %s"
  127. msgstr "nieznany domyślny typ systemu GNU dla architektury Debiana %s"
  128. #: scripts/dpkg-architecture.pl
  129. #, perl-format
  130. msgid ""
  131. "default GNU system type %s for Debian arch %s does not match specified GNU "
  132. "system type %s"
  133. msgstr ""
  134. "domyślny typ systemu GNU %s dla arch. Debiana %s nie pasuje do podanego typu "
  135. "systemu GNU %s"
  136. #: scripts/dpkg-architecture.pl
  137. #, perl-format
  138. msgid "%s is not a supported variable name"
  139. msgstr "%s nie jest obsługiwaną nazwą zmiennej"
  140. #: scripts/dpkg-architecture.pl scripts/dpkg-buildflags.pl
  141. #: scripts/dpkg-distaddfile.pl scripts/dpkg-genbuildinfo.pl
  142. #: scripts/dpkg-genchanges.pl scripts/dpkg-gencontrol.pl
  143. #: scripts/dpkg-gensymbols.pl scripts/dpkg-name.pl
  144. #: scripts/dpkg-parsechangelog.pl scripts/dpkg-shlibdeps.pl
  145. #: scripts/dpkg-vendor.pl
  146. #, perl-format
  147. msgid "unknown option '%s'"
  148. msgstr "nieznana opcja \"%s\""
  149. #: scripts/dpkg-architecture.pl
  150. #, fuzzy, perl-format
  151. #| msgid ""
  152. #| "specified GNU system type %s does not match gcc system type %s, try "
  153. #| "setting a correct CC environment variable"
  154. msgid ""
  155. "specified GNU system type %s does not match CC system type %s, try setting a "
  156. "correct CC environment variable"
  157. msgstr ""
  158. "podany typ systemu GNU %s nie odpowiada typowi systemu gcc %s, proszę "
  159. "spróbować ustawić poprawną zmienną środowiskową CC"
  160. #: scripts/dpkg-buildflags.pl
  161. #, perl-format
  162. msgid "Usage: %s [<command>]"
  163. msgstr "Użycie: %s [<polecenie>]"
  164. #: scripts/dpkg-buildflags.pl
  165. msgid ""
  166. "Commands:\n"
  167. " --get <flag> output the requested flag to stdout.\n"
  168. " --origin <flag> output the origin of the flag to stdout:\n"
  169. " value is one of vendor, system, user, env.\n"
  170. " --query-features <area>\n"
  171. " output the status of features for the given area.\n"
  172. " --list output a list of the flags supported by the current "
  173. "vendor.\n"
  174. " --export=(sh|make|cmdline|configure)\n"
  175. " output something convenient to import the compilation\n"
  176. " flags in a shell script, in make, or in a command "
  177. "line.\n"
  178. " --dump output all compilation flags with their values\n"
  179. " --status print a synopsis with all parameters affecting the\n"
  180. " behaviour of dpkg-buildflags and the resulting flags\n"
  181. " and their origin.\n"
  182. " --help show this help message.\n"
  183. " --version show the version.\n"
  184. msgstr ""
  185. "Polecenia:\n"
  186. " --get <flaga> wypisuje żądaną flagę na standardowe wyjście.\n"
  187. " --origin <flaga> wypisuje pochodzenie flagi na standardowe wyjście;\n"
  188. " wartość jest jedną z: vendor, system, user, env.\n"
  189. " --query-features <obszar>\n"
  190. " wypisuje status funkcji w podanym obszarze.\n"
  191. " --list wypisuje listę flag obsługiwanych przez bieżącego "
  192. "dostawcę.\n"
  193. " --export=(sh|make|cmdline|configure)\n"
  194. " wypisuje coś przydatnego do zaimportowania flag\n"
  195. " kompilacji w skrypcie powłoki, pliku make lub\n"
  196. " wierszu polecenia.\n"
  197. " --dump wypisuje wszystkie flagi kompilacji wraz z wartościami\n"
  198. " --status wypisuje składnię wszystkich parametrów wpływających na "
  199. "zacho-\n"
  200. " wanie dpkg-buildflags oraz wynikowych flag i ich "
  201. "pochodzenia.\n"
  202. " --help wyświetla ten komunikat pomocy.\n"
  203. " --version wyświetla wersję.\n"
  204. #: scripts/dpkg-buildflags.pl scripts/dpkg-source.pl scripts/dpkg-vendor.pl
  205. #, perl-format
  206. msgid "two commands specified: --%s and --%s"
  207. msgstr "podano dwa polecenia: --%s i --%s"
  208. #: scripts/dpkg-buildflags.pl scripts/dpkg-vendor.pl
  209. #, perl-format
  210. msgid "%s needs a parameter"
  211. msgstr "%s wymaga podania parametru"
  212. #: scripts/dpkg-buildpackage.pl scripts/dpkg-genbuildinfo.pl
  213. #: scripts/dpkg-genchanges.pl scripts/dpkg-gencontrol.pl
  214. #: scripts/dpkg-gensymbols.pl scripts/dpkg-parsechangelog.pl
  215. #, perl-format
  216. msgid "Usage: %s [<option>...]"
  217. msgstr "Użycie: %s [<opcja>...]"
  218. #: scripts/dpkg-buildpackage.pl
  219. #, fuzzy
  220. #| msgid ""
  221. #| "Options:\n"
  222. #| " -F (default) normal full build (binaries and sources).\n"
  223. #| " -g source and arch-indep build.\n"
  224. #| " -G source and arch-specific build.\n"
  225. #| " -b binary-only, no source files.\n"
  226. #| " -B binary-only, only arch-specific files.\n"
  227. #| " -A binary-only, only arch-indep files.\n"
  228. #| " -S source-only, no binary files.\n"
  229. #| " -nc do not clean source tree (implies -b).\n"
  230. #| " -tc clean source tree when finished.\n"
  231. #| " -D (default) check build dependencies and conflicts.\n"
  232. #| " -d do not check build dependencies and conflicts.\n"
  233. #| " -P<profiles> assume given build profiles as active (comma-separated "
  234. #| "list).\n"
  235. #| " -R<rules> rules file to execute (default is debian/rules).\n"
  236. #| " -T<target> call debian/rules <target> with the proper environment.\n"
  237. #| " --as-root ensure -T calls the target with root rights.\n"
  238. #| " -j[<number>] specify jobs to run simultaneously (passed to <rules>).\n"
  239. #| " -r<gain-root-command>\n"
  240. #| " command to gain root privileges (default is fakeroot).\n"
  241. #| " --check-command=<check-command>\n"
  242. #| " command to check the .changes file (no default).\n"
  243. #| " --check-option=<opt>\n"
  244. #| " pass <opt> to <check-command>.\n"
  245. #| " --hook-<hook-name>=<hook-command>\n"
  246. #| " set <hook-command> as the hook <hook-name>, known "
  247. #| "hooks:\n"
  248. #| " init preclean source build binary changes postclean\n"
  249. #| " check sign done\n"
  250. #| " -p<sign-command>\n"
  251. #| " command to sign .dsc and/or .changes files\n"
  252. #| " (default is gpg2 or gpg).\n"
  253. #| " -k<keyid> the key to use for signing.\n"
  254. #| " -ap add pause before starting signature process.\n"
  255. #| " -us unsigned source package.\n"
  256. #| " -uc unsigned .changes file.\n"
  257. #| " --force-sign\n"
  258. #| " force signing the resulting files.\n"
  259. #| " --admindir=<directory>\n"
  260. #| " change the administrative directory.\n"
  261. #| " -?, --help show this help message.\n"
  262. #| " --version show the version."
  263. msgid ""
  264. "Options:\n"
  265. " --build=<type>[,...] specify the build <type>: full, source, "
  266. "binary,\n"
  267. " any, all (default is 'full').\n"
  268. " -F normal full build (source and binary; "
  269. "default).\n"
  270. " -g source and arch-indep build.\n"
  271. " -G source and arch-specific build.\n"
  272. " -b binary-only, no source files.\n"
  273. " -B binary-only, only arch-specific files.\n"
  274. " -A binary-only, only arch-indep files.\n"
  275. " -S source-only, no binary files.\n"
  276. " -nc, --no-pre-clean do not pre clean source tree (implies -b).\n"
  277. " --pre-clean pre clean source tree (default).\n"
  278. " -tc, --post-clean clean source tree when finished.\n"
  279. " -D check build dependencies and conflicts "
  280. "(default).\n"
  281. " -d do not check build dependencies and "
  282. "conflicts.\n"
  283. " --[no-]check-builddeps ditto.\n"
  284. " -P, --build-profiles=<profiles>\n"
  285. " assume comma-separated build profiles as "
  286. "active.\n"
  287. " -R, --rules-file=<rules> rules file to execute (default is debian/"
  288. "rules).\n"
  289. " -T, --rules-target=<target> call debian/rules <target>.\n"
  290. " --as-root ensure -T calls the target with root rights.\n"
  291. " -j, --jobs[=<number>|auto] jobs to run simultaneously (passed to "
  292. "<rules>),\n"
  293. " forced mode.\n"
  294. " -J, --jobs-try[=<number>|auto]\n"
  295. " jobs to run simultaneously (passed to "
  296. "<rules>),\n"
  297. " opt-in mode (default is auto).\n"
  298. " -r, --root-command=<command>\n"
  299. " command to gain root rights (default is "
  300. "fakeroot).\n"
  301. " --check-command=<command>\n"
  302. " command to check the .changes file (no "
  303. "default).\n"
  304. " --check-option=<opt> pass <opt> to check <command>.\n"
  305. " --hook-<name>=<command> set <command> as the hook <name>, known "
  306. "hooks:\n"
  307. " init preclean source build binary buildinfo\n"
  308. " changes postclean check sign done\n"
  309. " --buildinfo-option=<opt>\n"
  310. " pass option <opt> to dpkg-genbuildinfo.\n"
  311. " -p, --sign-command=<command>\n"
  312. " command to sign .dsc and/or .changes files\n"
  313. " (default is gpg2 or gpg).\n"
  314. " -k, --sign-key=<keyid> the key to use for signing.\n"
  315. " -ap, --sign-pause add pause before starting signature process.\n"
  316. " -us, --unsigned-source unsigned source package.\n"
  317. " -ui, --unsigned-buildinfo unsigned .buildinfo file.\n"
  318. " -uc, --unsigned-changes unsigned .buildinfo and .changes file.\n"
  319. " --no-sign do not sign any file.\n"
  320. " --force-sign force signing the resulting files.\n"
  321. " --admindir=<directory> change the administrative directory.\n"
  322. " -?, --help show this help message.\n"
  323. " --version show the version."
  324. msgstr ""
  325. "Opcje:\n"
  326. " -F (domyślna) normalne, pełne wydanie (pliki binarne i źródłowe).\n"
  327. " -g niezależne od architektury ze źródłami.\n"
  328. " -G zależne od architektury ze źródłami.\n"
  329. " -b tylko binarne, bez źródeł.\n"
  330. " -B tylko binarne, tylko pliki zależne od architektury.\n"
  331. " -A tylko binarne, tylko pliki niezależne od architektury.\n"
  332. " -S tylko źródła, bez plików binarnych.\n"
  333. " -nc nie czyści drzewa źródeł (implikuje -b).\n"
  334. " -tc czyście drzewo źródeł po zakończeniu.\n"
  335. " -D (domyślna) sprawdza zależności czasu budowania i konflikty.\n"
  336. " -d nie sprawdza zależności czasu budowania i konfliktów.\n"
  337. " -P<profile> przyjmuje aktywny profil budowania (lista rozdz. przec.).\n"
  338. " -R<reguły> plik reguł do wykonania (domyślnie debian/rules).\n"
  339. " -T<cel> wywołuje debian/rules <cel> z prawidłowym środowiskiem.\n"
  340. " --as-root zapewnia, że -T wywołuje cel z uprawnieniami roota.\n"
  341. " -j[<liczba>] okr. liczbę równol. wykonywanych zadań (przekaz. do "
  342. "<reguł>).\n"
  343. " -r<polecenie_do_uprawnień_roota>\n"
  344. " polecenie do otrzymania uprawnień roota (domyślnie "
  345. "fakeroot).\n"
  346. " --check-command=<polecenie_sprawdzenia>\n"
  347. " polecenie sprawdzajace plik .changes (brak domyślnego).\n"
  348. " --check-option=<opc>\n"
  349. " przekazuje <opc> do <polecenia_sprawdzenia>.\n"
  350. " --hook-<nazwa_hooka>=<polecenie_hooka>\n"
  351. " ustawia <polecenie_hooka> jako hook <nazwa_hooka>, znane "
  352. "hooki:\n"
  353. " init preclean source build binary changes postclean\n"
  354. " check sign done\n"
  355. " -p<polecenie_podpisywania>\n"
  356. " pol. do podpisyw. plików .dsc i/lub .changes (domyślnie "
  357. "gpg).\n"
  358. " -k<id_kluczba> klucz do użycia przy podpisywaniu.\n"
  359. " -ap dodaje pauzę przed rozpoczęciem procesu podpisywania.\n"
  360. " -us niepodpisany pakiet źrodłowy.\n"
  361. " -uc niepodpisywany plik .changes.\n"
  362. " --force-sign\n"
  363. " wymusza podpisywanie plików wynikowych.\n"
  364. " --admindir=<katalog>\n"
  365. " zmienia katalog administracyjny.\n"
  366. " -?, --help wyświetla ten komunikat pomocy.\n"
  367. " --version wyświetla wersję."
  368. #: scripts/dpkg-buildpackage.pl
  369. #, fuzzy
  370. #| msgid ""
  371. #| "Options passed to dpkg-architecture:\n"
  372. #| " -a, --host-arch <arch> set the host Debian architecture.\n"
  373. #| " -t, --host-type <type> set the host GNU system type.\n"
  374. #| " --target-arch <arch> set the target Debian architecture.\n"
  375. #| " --target-type <type> set the target GNU system type."
  376. msgid ""
  377. "Options passed to dpkg-architecture:\n"
  378. " -a, --host-arch <arch> set the host Debian architecture.\n"
  379. " -t, --host-type <type> set the host GNU system type.\n"
  380. " --target-arch <arch> set the target Debian architecture.\n"
  381. " --target-type <type> set the target GNU system type."
  382. msgstr ""
  383. "Opcje przekazywane do dpkg-architecture:\n"
  384. " -a, --host-arch <arch> ustaw architekturę Debiana hosta.\n"
  385. " -t, --host-type <typ> ustaw typ systemu GNU hosta.\n"
  386. " --target-arch <arch> ustaw docelową architekturę Debiana.\n"
  387. " --target-type <typ> ustaw docelowy typ systemu GNU."
  388. #: scripts/dpkg-buildpackage.pl
  389. #, fuzzy
  390. #| msgid ""
  391. #| "Options passed to dpkg-genchanges:\n"
  392. #| " -si (default) source includes orig, if new upstream.\n"
  393. #| " -sa source includes orig, always.\n"
  394. #| " -sd source is diff and .dsc only.\n"
  395. #| " -v<version> changes since version <version>.\n"
  396. #| " -m<maint> maintainer for package is <maint>.\n"
  397. #| " -e<maint> maintainer for release is <maint>.\n"
  398. #| " -C<descfile> changes are described in <descfile>.\n"
  399. #| " --changes-option=<opt>\n"
  400. #| " pass option <opt> to dpkg-genchanges."
  401. msgid ""
  402. "Options passed to dpkg-genchanges:\n"
  403. " -si source includes orig, if new upstream "
  404. "(default).\n"
  405. " -sa source includes orig, always.\n"
  406. " -sd source is diff and .dsc only.\n"
  407. " -v<version> changes since version <version>.\n"
  408. " -m, --release-by=<maint> maintainer for this release is <maint>.\n"
  409. " -e, --build-by=<maint> maintainer for this build is <maint>.\n"
  410. " -C<descfile> changes are described in <descfile>.\n"
  411. " --changes-option=<opt> pass option <opt> to dpkg-genchanges."
  412. msgstr ""
  413. "Opcje przekazywane do dpkg-genchanges:\n"
  414. " -si (domyślna) źródła zawierają orig, jeśli jest nowa wersja macierz.\n"
  415. " -sa źródła zawierają orig, zawsze.\n"
  416. " -sd źródła są różnicą i zawierają jedynie .dsc.\n"
  417. " -v<wersja> zmiany od wersji <wersja>.\n"
  418. " -m<opiekun> opiekunem pakietu jest <opiekun>.\n"
  419. " -e<opiekun> opiekunem wydania jest <opiekun>.\n"
  420. " -C<plik_opisu> zmiany są opisane w <pliku_opisu>.\n"
  421. " --changes-option=<opcja>\n"
  422. " przekazuje opcję <opcja> do dpkg-genchanges."
  423. #: scripts/dpkg-buildpackage.pl
  424. #, fuzzy
  425. #| msgid ""
  426. #| "Options passed to dpkg-source:\n"
  427. #| " -sn force Debian native source format.\n"
  428. #| " -s[sAkurKUR] see dpkg-source for explanation.\n"
  429. #| " -z<level> compression level to use for source.\n"
  430. #| " -Z<compressor> compression to use for source (gz|xz|bzip2|lzma).\n"
  431. #| " -i[<regex>] ignore diffs of files matching regex.\n"
  432. #| " -I[<pattern>] filter out files when building tarballs.\n"
  433. #| " --source-option=<opt>\n"
  434. #| " pass option <opt> to dpkg-source.\n"
  435. msgid ""
  436. "Options passed to dpkg-source:\n"
  437. " -sn force Debian native source format.\n"
  438. " -s[sAkurKUR] see dpkg-source for explanation.\n"
  439. " -z, --compression-level=<level>\n"
  440. " compression level to use for source.\n"
  441. " -Z, --compression=<compressor>\n"
  442. " compression to use for source (gz|xz|bzip2|"
  443. "lzma).\n"
  444. " -i, --diff-ignore[=<regex>] ignore diffs of files matching <regex>.\n"
  445. " -I, --tar-ignore[=<pattern>]\n"
  446. " filter out files when building tarballs.\n"
  447. " --source-option=<opt> pass option <opt> to dpkg-source.\n"
  448. msgstr ""
  449. "Opcje przekazywane do dpkg-source:\n"
  450. " -sn wymusza natywny format źródłowy Debiana.\n"
  451. " -s[sAkurKUR] dpkg-source zawiera opis tych funkcji.\n"
  452. " -z<poziom> poziom kompresji źródeł.\n"
  453. " -Z<kompresja> kompresja źródeł (gz|xz|bzip2|lzma).\n"
  454. " -i[<wyr_reg>] ignoruje różnice plików pasujących do wzorca.\n"
  455. " -I[<wzorzec>] filtruje pliki podczas budowania archiwum.\n"
  456. " --source-option=<opcja>\n"
  457. " przekazuje opcję <opcja> do dpkg-source.\n"
  458. #: scripts/dpkg-buildpackage.pl
  459. #, perl-format
  460. msgid "unknown hook name %s"
  461. msgstr "nieznana nazwa hooka %s"
  462. #: scripts/dpkg-buildpackage.pl
  463. #, perl-format
  464. msgid "missing hook %s command"
  465. msgstr "brak polecenia hooka %s"
  466. #: scripts/dpkg-buildpackage.pl
  467. #, perl-format
  468. msgid "-s%s is deprecated; always using gpg style interface"
  469. msgstr "-s%s jest przestarzałe, zawsze używany jest interfejs w stylu gpg"
  470. #: scripts/dpkg-buildpackage.pl scripts/dpkg-source.pl
  471. msgid "-E and -W are deprecated, they are without effect"
  472. msgstr "-E i -W są przestarzałe, nie mają żadnego efektu"
  473. #: scripts/dpkg-buildpackage.pl
  474. #, perl-format
  475. msgid "unknown option or argument %s"
  476. msgstr "niepoprawna opcja lub argument %s"
  477. #: scripts/dpkg-buildpackage.pl
  478. msgid "using a gain-root-command while being root"
  479. msgstr "używanie polecenia-uzysk-praw-admin podczas bycia administratorem"
  480. #: scripts/dpkg-buildpackage.pl
  481. msgid ""
  482. "fakeroot not found, either install the fakeroot\n"
  483. "package, specify a command with the -r option, or run this as root"
  484. msgstr ""
  485. "nie znaleziono fakeroot, proszę zainstalować pakiet fakeroot lub\n"
  486. "podać polecenie w opcji -r, lub uruchomić ten program jako root"
  487. #: scripts/dpkg-buildpackage.pl
  488. #, perl-format
  489. msgid "gain-root-commmand '%s' not found"
  490. msgstr "nie znaleziono polecenia-uzysk-praw-admin \"%s\""
  491. #: scripts/dpkg-buildpackage.pl
  492. #, perl-format
  493. msgid "check-commmand '%s' not found"
  494. msgstr "nie znaleziono polecenia-sprawdzenia \"%s\""
  495. #: scripts/dpkg-buildpackage.pl
  496. #, perl-format
  497. msgid "sign-commmand '%s' not found"
  498. msgstr "nie znaleziono polecenia-podpisu \"%s\""
  499. #: scripts/dpkg-buildpackage.pl
  500. msgid "source package"
  501. msgstr "pakiet źródłowy"
  502. #: scripts/dpkg-buildpackage.pl
  503. msgid "source version"
  504. msgstr "wersja pakietu źródłowego"
  505. #: scripts/dpkg-buildpackage.pl
  506. msgid "source distribution"
  507. msgstr "dystrybucja źródła"
  508. #: scripts/dpkg-buildpackage.pl
  509. msgid "source changed by"
  510. msgstr "źródła zmienione przez"
  511. #: scripts/dpkg-buildpackage.pl
  512. msgid "host architecture"
  513. msgstr "architektura gościa"
  514. #: scripts/dpkg-buildpackage.pl
  515. msgid "debian/rules is not executable; fixing that"
  516. msgstr "debian/rules nie jest plikiem wykonywalnym - naprawianie tego"
  517. #: scripts/dpkg-buildpackage.pl
  518. msgid "build dependencies/conflicts unsatisfied; aborting"
  519. msgstr "niespełnione zależności/konflikty czasu budowania - przerywanie"
  520. #: scripts/dpkg-buildpackage.pl
  521. msgid "(Use -d flag to override.)"
  522. msgstr "(Użyj opcji -d, aby nadpisać)."
  523. #: scripts/dpkg-buildpackage.pl
  524. msgid ""
  525. "building a source package without cleaning up as you asked; it might contain "
  526. "undesired files"
  527. msgstr ""
  528. "generowanie pakietu źródłowego bez wcześniejszego czyszczenia według żądania "
  529. "- może on zawierać niepotrzebne pliki"
  530. #: scripts/dpkg-buildpackage.pl
  531. msgid "parse changes file"
  532. msgstr "przetwarzanie pliku zmian"
  533. #: scripts/dpkg-buildpackage.pl
  534. msgid "dpkg-genchanges"
  535. msgstr "dpkg-genchanges"
  536. #: scripts/dpkg-buildpackage.pl
  537. #, fuzzy
  538. #| msgid "Press the return key to start signing process\n"
  539. msgid "Press <enter> to start the signing process.\n"
  540. msgstr "Naciśnij <enter>, by rozpocząć proces podpisywania\n"
  541. #: scripts/dpkg-buildpackage.pl
  542. #, fuzzy, perl-format
  543. #| msgid "failed to sign .changes file"
  544. msgid "failed to sign %s file"
  545. msgstr "błąd podpisywania pliku .changes."
  546. #: scripts/dpkg-buildpackage.pl
  547. msgid "not signing UNRELEASED build; use --force-sign to override"
  548. msgstr "nie podpisywane wydanie UNRELEASED - użyj --force-sign, aby nadpisać"
  549. #: scripts/dpkg-buildpackage.pl
  550. #, perl-format
  551. msgid "unable to determine %s"
  552. msgstr "nie można określić %s"
  553. #: scripts/dpkg-buildpackage.pl
  554. #, perl-format
  555. msgid "unknown %% substitution in hook: %%%s"
  556. msgstr "nieznane podstawienie %% w hooku: %%%s"
  557. #: scripts/dpkg-buildpackage.pl scripts/dpkg-checkbuilddeps.pl
  558. #: scripts/dpkg-genbuildinfo.pl scripts/dpkg-name.pl scripts/Dpkg/Arch.pm
  559. #: scripts/Dpkg/IPC.pm scripts/Dpkg/Shlibs.pm
  560. #, perl-format
  561. msgid "cannot open %s"
  562. msgstr "nie można otworzyć %s"
  563. #: scripts/dpkg-buildpackage.pl scripts/dpkg-distaddfile.pl
  564. #: scripts/dpkg-genbuildinfo.pl scripts/dpkg-gencontrol.pl
  565. #: scripts/Dpkg/Interface/Storable.pm scripts/Dpkg/Source/Package/V2.pm
  566. #: scripts/Dpkg/Source/Patch.pm
  567. #, perl-format
  568. msgid "cannot close %s"
  569. msgstr "nie można zamknąć %s"
  570. #: scripts/dpkg-buildpackage.pl
  571. msgid "source-only upload: Debian-native package"
  572. msgstr "wydanie tylko źródeł: natywny pakiet Debiana"
  573. #: scripts/dpkg-buildpackage.pl
  574. msgid "source-only, diff-only upload (original source NOT included)"
  575. msgstr "wydanie tylko źródeł i różnic (oryginalne źródła NIE dołączone)"
  576. #: scripts/dpkg-buildpackage.pl
  577. msgid "source-only upload (original source is included)"
  578. msgstr "wydanie tylko źródeł (oryginalne źródła dołączone)"
  579. #: scripts/dpkg-buildpackage.pl
  580. msgid "binary-only upload (no source included)"
  581. msgstr "wydanie tylko binarne (bez żadnych źródeł)"
  582. #: scripts/dpkg-buildpackage.pl
  583. msgid "full upload; Debian-native package (full source is included)"
  584. msgstr "pełne wydanie - natywny pakiet Debiana (pełne źródła dołączone)"
  585. #: scripts/dpkg-buildpackage.pl
  586. msgid "binary and diff upload (original source NOT included)"
  587. msgstr "wydanie binarne i pliku różnic (oryginalne źródła NIE dołączone)"
  588. #: scripts/dpkg-buildpackage.pl
  589. msgid "full upload (original source is included)"
  590. msgstr "pełne wydanie (oryginalne źródła dołączone)"
  591. #: scripts/dpkg-buildpackage.pl
  592. #, perl-format
  593. msgid ""
  594. "%s must be updated to support the 'build-arch' and 'build-indep' targets (at "
  595. "least '%s' seems to be missing)"
  596. msgstr ""
  597. "%s musi zostać zaktualizowane w celu obsługi celów \"build-arch\" i 'build-"
  598. "indep' (brakuje co najmniej \"%s\")"
  599. #: scripts/dpkg-checkbuilddeps.pl
  600. #, perl-format
  601. msgid "Usage: %s [<option>...] [<control-file>]"
  602. msgstr "Użycie: %s [<opcja>...] <plik-kontrolny>"
  603. #: scripts/dpkg-checkbuilddeps.pl
  604. #, fuzzy
  605. #| msgid ""
  606. #| "Options:\n"
  607. #| " -A ignore Build-Depends-Arch and Build-Conflicts-Arch.\n"
  608. #| " -B ignore Build-Depends-Indep and Build-Conflicts-Indep.\n"
  609. #| " -d build-deps use given string as build dependencies instead of\n"
  610. #| " retrieving them from control file\n"
  611. #| " -c build-conf use given string for build conflicts instead of\n"
  612. #| " retrieving them from control file\n"
  613. #| " -a arch assume given host architecture\n"
  614. #| " -P profiles assume given build profiles (comma-separated list)\n"
  615. #| " --admindir=<directory>\n"
  616. #| " change the administrative directory.\n"
  617. #| " -?, --help show this help message.\n"
  618. #| " --version show the version."
  619. msgid ""
  620. "Options:\n"
  621. " -A ignore Build-Depends-Arch and Build-Conflicts-Arch.\n"
  622. " -B ignore Build-Depends-Indep and Build-Conflicts-Indep.\n"
  623. " -I ignore built-in build dependencies and conflicts.\n"
  624. " -d build-deps use given string as build dependencies instead of\n"
  625. " retrieving them from control file\n"
  626. " -c build-conf use given string for build conflicts instead of\n"
  627. " retrieving them from control file\n"
  628. " -a arch assume given host architecture\n"
  629. " -P profiles assume given build profiles (comma-separated list)\n"
  630. " --admindir=<directory>\n"
  631. " change the administrative directory.\n"
  632. " -?, --help show this help message.\n"
  633. " --version show the version."
  634. msgstr ""
  635. "Opcje:\n"
  636. " -A ignoruje Build-Depends-Arch i Build-Conflicts-Arch.\n"
  637. " -B ignoruje Build-Depends-Indep i Build-Conflicts-Indep.\n"
  638. " -d build-zależ używa podanych zależności czasu budowania zamiast\n"
  639. " pobierać je z pliku kontrolnego\n"
  640. " -c build-konfl używa podanych konfliktów czasu budowania zamiast\n"
  641. " pobierać je z pliku kontrolnego\n"
  642. " -a architekt zakłada podaną architekturę hosta\n"
  643. " -P profil przyjmij profil budowania (lista rozdzielona przecinkami)\n"
  644. " --admindir=<katalog>\n"
  645. " zmienia katalog administracyjny.\n"
  646. " -?, --help wyświetla ten komunikat pomocy.\n"
  647. " --version wyświetla wersję."
  648. #: scripts/dpkg-checkbuilddeps.pl
  649. msgid ""
  650. "<control-file> is the control file to process (default: debian/control)."
  651. msgstr ""
  652. "<plik_kontrolny> jest plikiem kontrolnym do przetworzenia (domyślnie: debian/"
  653. "control)."
  654. #: scripts/dpkg-checkbuilddeps.pl scripts/dpkg-shlibdeps.pl
  655. #: scripts/dpkg-source.pl
  656. #, perl-format
  657. msgid "error occurred while parsing %s"
  658. msgstr "wystąpił błąd podczas przetwarzania %s"
  659. #: scripts/dpkg-checkbuilddeps.pl
  660. #, fuzzy, perl-format
  661. #| msgid "%s: Unmet build dependencies: "
  662. msgid "Unmet build dependencies: %s"
  663. msgstr "%s: Niespełnione zależności budowania pakietu:"
  664. #: scripts/dpkg-checkbuilddeps.pl
  665. #, fuzzy, perl-format
  666. #| msgid "%s: Build conflicts: "
  667. msgid "Build conflicts: %s"
  668. msgstr "%s: Konfliktu budowania pakietu:"
  669. #: scripts/dpkg-distaddfile.pl
  670. #, perl-format
  671. msgid ""
  672. "Usage: %s [<option>...] <filename> <section> <priority>\n"
  673. "\n"
  674. "Options:\n"
  675. " -f<files-list-file> write files here instead of debian/files.\n"
  676. " -?, --help show this help message.\n"
  677. " --version show the version.\n"
  678. msgstr ""
  679. "Użycie: %s [<opcja> ...] <nazwa-pliku> <sekcja> <priorytet>\n"
  680. "\n"
  681. "Opcje:\n"
  682. " -f<plikzlistąplików> zapisuje pliki do podanego pliku zamiast debian/"
  683. "files.\n"
  684. " -?, --help wyświetla ten komunikat pomocy.\n"
  685. " --version wyświetla wersję.\n"
  686. #: scripts/dpkg-distaddfile.pl
  687. msgid "need exactly a filename, section and priority"
  688. msgstr "należy podać nazwę pliku, sekcję i priorytet"
  689. #: scripts/dpkg-distaddfile.pl
  690. msgid "filename, section and priority may contain no whitespace"
  691. msgstr "nazwa pliku, sekcja i priorytet nie mogą zawierać białych znaków"
  692. #: scripts/dpkg-distaddfile.pl scripts/dpkg-genbuildinfo.pl
  693. #: scripts/dpkg-gencontrol.pl scripts/dpkg-mergechangelogs.pl
  694. #: scripts/Dpkg/Compression/FileHandle.pm scripts/Dpkg/IPC.pm
  695. #: scripts/Dpkg/Interface/Storable.pm scripts/Dpkg/Source/Functions.pm
  696. #: scripts/Dpkg/Source/Package.pm scripts/Dpkg/Source/Package/V2.pm
  697. #: scripts/Dpkg/Source/Package/V3/Quilt.pm scripts/Dpkg/Source/Quilt.pm
  698. #, perl-format
  699. msgid "cannot write %s"
  700. msgstr "nie można zapisać %s"
  701. #: scripts/dpkg-distaddfile.pl scripts/dpkg-genbuildinfo.pl
  702. #: scripts/dpkg-gencontrol.pl
  703. msgid "install new files list file"
  704. msgstr "instalowanie nowego pliku z listą plików"
  705. #: scripts/dpkg-genbuildinfo.pl
  706. msgid ""
  707. "Options:\n"
  708. " --build=<type>[,...] specify the build <type>: full, source, binary,\n"
  709. " any, all (default is 'full').\n"
  710. " -c<control-file> get control info from this file.\n"
  711. " -l<changelog-file> get per-version info from this file.\n"
  712. " -f<files-list-file> get .deb files list from this file.\n"
  713. " -F<changelog-format> force changelog format.\n"
  714. " -O[<buildinfo-file>] write to stdout (or <buildinfo-file>).\n"
  715. " -u<upload-files-dir> directory with files (default is '..').\n"
  716. " --always-include-path always include Build-Path.\n"
  717. " --admindir=<directory> change the administrative directory.\n"
  718. " -?, --help show this help message.\n"
  719. " --version show the version.\n"
  720. msgstr ""
  721. #: scripts/dpkg-genbuildinfo.pl
  722. #, fuzzy
  723. #| msgid "binary build with no binary artifacts found; cannot distribute"
  724. msgid "binary build with no binary artifacts found; .buildinfo is meaningless"
  725. msgstr ""
  726. "znaleziono wyd. binarne bez bin. artefaktów - nie można rozpowszechniać"
  727. #: scripts/dpkg-genbuildinfo.pl
  728. #, fuzzy, perl-format
  729. #| msgid "cannot install output control file '%s'"
  730. msgid "cannot install output buildinfo file '%s'"
  731. msgstr "nie można zainstalować wyjściowego pliku kontrolnego \"%s\""
  732. #: scripts/dpkg-genchanges.pl
  733. #, fuzzy
  734. #| msgid ""
  735. #| "Options:\n"
  736. #| " -g source and arch-indep build.\n"
  737. #| " -G source and arch-specific build.\n"
  738. #| " -b binary-only, no source files.\n"
  739. #| " -B binary-only, only arch-specific files.\n"
  740. #| " -A binary-only, only arch-indep files.\n"
  741. #| " -S source-only, no binary files.\n"
  742. #| " -c<control-file> get control info from this file.\n"
  743. #| " -l<changelog-file> get per-version info from this file.\n"
  744. #| " -f<files-list-file> get .deb files list from this file.\n"
  745. #| " -v<since-version> include all changes later than version.\n"
  746. #| " -C<changes-description> use change description from this file.\n"
  747. #| " -m<maintainer> override control's maintainer value.\n"
  748. #| " -e<maintainer> override changelog's maintainer value.\n"
  749. #| " -u<upload-files-dir> directory with files (default is '..').\n"
  750. #| " -si (default) source includes orig, if new upstream.\n"
  751. #| " -sa source includes orig, always.\n"
  752. #| " -sd source is diff and .dsc only.\n"
  753. #| " -q quiet - no informational messages on stderr.\n"
  754. #| " -F<changelog-format> force changelog format.\n"
  755. #| " -V<name>=<value> set a substitution variable.\n"
  756. #| " -T<substvars-file> read variables here, not debian/substvars.\n"
  757. #| " -D<field>=<value> override or add a field and value.\n"
  758. #| " -U<field> remove a field.\n"
  759. #| " -?, --help show this help message.\n"
  760. #| " --version show the version.\n"
  761. msgid ""
  762. "Options:\n"
  763. " --build=<type>[,...] specify the build <type>: full, source, binary,\n"
  764. " any, all (default is 'full').\n"
  765. " -g source and arch-indep build.\n"
  766. " -G source and arch-specific build.\n"
  767. " -b binary-only, no source files.\n"
  768. " -B binary-only, only arch-specific files.\n"
  769. " -A binary-only, only arch-indep files.\n"
  770. " -S source-only, no binary files.\n"
  771. " -c<control-file> get control info from this file.\n"
  772. " -l<changelog-file> get per-version info from this file.\n"
  773. " -f<files-list-file> get .deb files list from this file.\n"
  774. " -v<since-version> include all changes later than version.\n"
  775. " -C<changes-description> use change description from this file.\n"
  776. " -m<maintainer> override control's maintainer value.\n"
  777. " -e<maintainer> override changelog's maintainer value.\n"
  778. " -u<upload-files-dir> directory with files (default is '..').\n"
  779. " -si source includes orig, if new upstream (default).\n"
  780. " -sa source includes orig, always.\n"
  781. " -sd source is diff and .dsc only.\n"
  782. " -q quiet - no informational messages on stderr.\n"
  783. " -F<changelog-format> force changelog format.\n"
  784. " -V<name>=<value> set a substitution variable.\n"
  785. " -T<substvars-file> read variables here, not debian/substvars.\n"
  786. " -D<field>=<value> override or add a field and value.\n"
  787. " -U<field> remove a field.\n"
  788. " -O[<filename>] write to stdout (default) or <filename>.\n"
  789. " -?, --help show this help message.\n"
  790. " --version show the version.\n"
  791. msgstr ""
  792. "Opcje:\n"
  793. " -g niezależne od architektury ze źródłami.\n"
  794. " -G zależne od architektury ze źródłami.\n"
  795. " -b tylko binarne, bez źródeł.\n"
  796. " -B tylko binarne, tylko pliki zależne od architektury.\n"
  797. " -A tylko binarne, tylko pliki niezależne od architektury.\n"
  798. " -S tylko źródła, bez plików binarnych.\n"
  799. " -c<plik_kontrolny> pobiera informacje kontrolne z tego pliku.\n"
  800. " -l<plik_zmian> pobiera informacje o wersji z tego pliku.\n"
  801. " -f<plik_z_listą_plików> pobiera listę plików *.deb z tego pliku.\n"
  802. " -v<od_wersji> włącza wszystkie zmiany późniejsze niż wersja.\n"
  803. " -C<opis_zmian> używa opisu zmian z tego pliku.\n"
  804. " -m<opiekun> nadpisuje wartość opiekuna z pliku kontrolnego.\n"
  805. " -e<opiekun> nadpisuje wartość opiekuna z pliku zmian.\n"
  806. " -u<katalog_upload> katalog z wygenerowanymi plikami (domyślnie \".."
  807. "\").\n"
  808. " -si (domyślna) źródła włączają oryg. jeśli nowa wersja autora "
  809. "progr.\n"
  810. " -sa źródła włączają oryg. źródła.\n"
  811. " -sd źródła to tylko diff i .dsc.\n"
  812. " -q tryb cichy - bez komunikatów inform. na stderr.\n"
  813. " -F<format_pliku_zmian> wymusza format pliku zmian.\n"
  814. " -V<nazwa>=<wartość> ustawia zmienną podstawiania.\n"
  815. " -T<plik-zmiennych> czyta zmienne z tego pliku, a nie z debian/"
  816. "substvars.\n"
  817. " -D<pole>=<wartość> nadpisuje lub dodaje pole do .dsc wraz z "
  818. "wartością.\n"
  819. " -U<pole> usuwa pole.\n"
  820. " -?, --help wyświetla ten komunikat pomocy.\n"
  821. " --version wyświetla wersję.\n"
  822. #: scripts/dpkg-genchanges.pl
  823. #, perl-format
  824. msgid "the current version (%s) is earlier than the previous one (%s)"
  825. msgstr "bieżąca wersja (%s) jest wcześniejsza od poprzedniej (%s)"
  826. #: scripts/dpkg-genchanges.pl
  827. msgid "missing Section for source files"
  828. msgstr "brak pola Section plików źródłowych"
  829. #: scripts/dpkg-genchanges.pl
  830. msgid "missing Priority for source files"
  831. msgstr "brak pola Priority plików źródłowych"
  832. #: scripts/dpkg-genchanges.pl scripts/dpkg-source.pl scripts/Dpkg/Vendor.pm
  833. #, perl-format
  834. msgid "%s is empty"
  835. msgstr "%s jest puste"
  836. #: scripts/dpkg-genchanges.pl
  837. msgid "not including original source code in upload"
  838. msgstr "niedołączanie oryginalnych kodów źródłowych do wydania"
  839. #: scripts/dpkg-genchanges.pl
  840. msgid "ignoring -sd option for native Debian package"
  841. msgstr "natywny pakiet Debiana - ignorowanie opcji -sd "
  842. #: scripts/dpkg-genchanges.pl
  843. msgid "including full source code in upload"
  844. msgstr "dołączanie pełnych kodów źródłowych do wydania"
  845. #: scripts/dpkg-genchanges.pl
  846. msgid ""
  847. "binary-only arch-specific upload (source code and arch-indep packages not "
  848. "included)"
  849. msgstr ""
  850. "wydanie tylko binarne zależne dla arch (żródła i pakiety niezależne od arch "
  851. "niedołączone)"
  852. #: scripts/dpkg-genchanges.pl
  853. msgid ""
  854. "binary-only arch-indep upload (source code and arch-specific packages not "
  855. "included)"
  856. msgstr ""
  857. "wydanie tylko binarne niezależne dla arch (żródła i pakiety zależne od arch "
  858. "niedołączone)"
  859. #: scripts/dpkg-genchanges.pl
  860. msgid "binary-only upload (no source code included)"
  861. msgstr "wydanie tylko binarne (bez żadnych źródeł)"
  862. #: scripts/dpkg-genchanges.pl
  863. msgid "binary build with no binary artifacts found; cannot distribute"
  864. msgstr ""
  865. "znaleziono wyd. binarne bez bin. artefaktów - nie można rozpowszechniać"
  866. #: scripts/dpkg-genchanges.pl
  867. #, perl-format
  868. msgid "package %s in control file but not in files list"
  869. msgstr "pakiet %s w pliku kontrolnym, ale nie w liście plików"
  870. #: scripts/dpkg-genchanges.pl scripts/dpkg-source.pl scripts/Dpkg/BuildFlags.pm
  871. #: scripts/Dpkg/Compression/FileHandle.pm scripts/Dpkg/Interface/Storable.pm
  872. #: scripts/Dpkg/Shlibs/Objdump.pm scripts/Dpkg/Source/Package/V2.pm
  873. #: scripts/Dpkg/Source/Quilt.pm
  874. #, perl-format
  875. msgid "cannot read %s"
  876. msgstr "nie można odczytać %s"
  877. #: scripts/dpkg-genchanges.pl
  878. #, perl-format
  879. msgid "package %s listed in files list but not in control info"
  880. msgstr ""
  881. "pakiet %s wymieniony w liście plików, ale nie w informacjach kontrolnych"
  882. #: scripts/dpkg-genchanges.pl
  883. #, perl-format
  884. msgid "missing Section for binary package %s; using '-'"
  885. msgstr "brak pola Section pakietu binarnego %s - używanie \"-\""
  886. #: scripts/dpkg-genchanges.pl
  887. #, perl-format
  888. msgid "package %s has section %s in control file but %s in files list"
  889. msgstr "pakiet %s ma w pliku kontrolnym sekcję %s , a w liście plików - %s"
  890. #: scripts/dpkg-genchanges.pl
  891. #, perl-format
  892. msgid "missing Priority for binary package %s; using '-'"
  893. msgstr "brak pola Priority pakietu binarnego %s - używanie \"-\""
  894. #: scripts/dpkg-genchanges.pl
  895. #, perl-format
  896. msgid "package %s has priority %s in control file but %s in files list"
  897. msgstr "pakiet %s ma priorytet %s w pliku kontrolnym, ale %s - w liście plików"
  898. #: scripts/dpkg-genchanges.pl scripts/Dpkg/Source/Package.pm
  899. #, perl-format
  900. msgid "missing information for critical output field %s"
  901. msgstr "brak informacji o krytycznym polu wyjściowym %s"
  902. #: scripts/dpkg-genchanges.pl scripts/dpkg-gencontrol.pl
  903. #: scripts/Dpkg/Source/Package.pm
  904. #, perl-format
  905. msgid "missing information for output field %s"
  906. msgstr "brak informacji o polu wyjściowym %s"
  907. #: scripts/dpkg-gencontrol.pl
  908. #, fuzzy
  909. #| msgid ""
  910. #| "Options:\n"
  911. #| " -p<package> print control file for package.\n"
  912. #| " -c<control-file> get control info from this file.\n"
  913. #| " -l<changelog-file> get per-version info from this file.\n"
  914. #| " -F<changelog-format> force changelog format.\n"
  915. #| " -v<force-version> set version of binary package.\n"
  916. #| " -f<files-list-file> write files here instead of debian/files.\n"
  917. #| " -P<package-build-dir> temporary build dir instead of debian/tmp.\n"
  918. #| " -n<filename> assume the package filename will be "
  919. #| "<filename>.\n"
  920. #| " -O[<file>] write to stdout (or <file>), not .../DEBIAN/"
  921. #| "control.\n"
  922. #| " -is, -ip, -isp, -ips deprecated, ignored for compatibility.\n"
  923. #| " -D<field>=<value> override or add a field and value.\n"
  924. #| " -U<field> remove a field.\n"
  925. #| " -V<name>=<value> set a substitution variable.\n"
  926. #| " -T<substvars-file> read variables here, not debian/substvars.\n"
  927. #| " -?, --help show this help message.\n"
  928. #| " --version show the version.\n"
  929. msgid ""
  930. "Options:\n"
  931. " -p<package> print control file for package.\n"
  932. " -c<control-file> get control info from this file.\n"
  933. " -l<changelog-file> get per-version info from this file.\n"
  934. " -F<changelog-format> force changelog format.\n"
  935. " -v<force-version> set version of binary package.\n"
  936. " -f<files-list-file> write files here instead of debian/files.\n"
  937. " -P<package-build-dir> temporary build directory instead of debian/tmp.\n"
  938. " -n<filename> assume the package filename will be <filename>.\n"
  939. " -O[<file>] write to stdout (or <file>), not .../DEBIAN/"
  940. "control.\n"
  941. " -is, -ip, -isp, -ips deprecated, ignored for compatibility.\n"
  942. " -D<field>=<value> override or add a field and value.\n"
  943. " -U<field> remove a field.\n"
  944. " -V<name>=<value> set a substitution variable.\n"
  945. " -T<substvars-file> read variables here, not debian/substvars.\n"
  946. " -?, --help show this help message.\n"
  947. " --version show the version.\n"
  948. msgstr ""
  949. "Opcje:\n"
  950. " -p<pakiet> wyświetla plik kontrolny pakietu.\n"
  951. " -c<plik_kontrolny> pobiera informacje kontrolne z tego pliku.\n"
  952. " -l<plik_zmian> pobiera informacje o wersji z tego pliku.\n"
  953. " -F<format_pliku_zmian> wymusza format pliku zmian.\n"
  954. " -v<wymuszona-wersja> ustawia wersję pakietu binarnego.\n"
  955. " -f<plik-z-listą-plików> zapisuje pliki tam zamiast do debian/files.\n"
  956. " -P<katal-budow-pakietu> tymczasowy katalog budowania zamiast debian/tmp.\n"
  957. " -n<nazwa-pliku> przyjmuje, że plikiem pakietu będzie "
  958. "<nazwa_pliku>.\n"
  959. " -O[<plik>] zapis na stdout (lub do <plik>), zamiast do\n"
  960. " .../DEBIAN/control.\n"
  961. " -is, -ip, -isp, -ips przestarzałe, ignorowane dla zachowania\n"
  962. " kompatybilności.\n"
  963. " -D<pole>=<wartość> nadpisuje lub dodaje pole do .dsc wraz z "
  964. "wartością.\n"
  965. " -U<pole> usuwa pole.\n"
  966. " -V<nazwa>=<wartość> ustawia zmienną podstawiania.\n"
  967. " -T<plik_zmiennych> czyta zmienne z tego pliku, a nie z debian/"
  968. "substvars.\n"
  969. " -?, --help wyświetla ten komunikat pomocy.\n"
  970. " --version wyświetla wersję.\n"
  971. #: scripts/dpkg-gencontrol.pl scripts/dpkg-gensymbols.pl
  972. #, perl-format
  973. msgid "illegal package name '%s': %s"
  974. msgstr "nieprawidłowa nazwa pakietu \"%s\": %s"
  975. #: scripts/dpkg-gencontrol.pl
  976. #, perl-format
  977. msgid "-i%s is deprecated; it is without effect"
  978. msgstr "-i%s jest przestarzałe - nie ma żadnego efektu"
  979. #: scripts/dpkg-gencontrol.pl
  980. #, perl-format
  981. msgid "package %s not in control info"
  982. msgstr "brak pakietu %s w pliku kontrolnym"
  983. #: scripts/dpkg-gencontrol.pl scripts/dpkg-gensymbols.pl
  984. msgid "no package stanza found in control info"
  985. msgstr "brak wpisu o pakiecie w pliku kontrolnym"
  986. #: scripts/dpkg-gencontrol.pl scripts/dpkg-gensymbols.pl
  987. #, perl-format
  988. msgid "must specify package since control info has many (%s)"
  989. msgstr "należy podać pakiet, ponieważ plik kontrolny zawiera ich kilka (%s)"
  990. #: scripts/dpkg-gencontrol.pl
  991. #, perl-format
  992. msgid "package %s: "
  993. msgstr "pakiet %s:"
  994. #: scripts/dpkg-gencontrol.pl
  995. #, perl-format
  996. msgid ""
  997. "current host architecture '%s' does not appear in package's architecture "
  998. "list (%s)"
  999. msgstr ""
  1000. "bieżąca architektura gościa %s nie jest wymieniona w liście architektur "
  1001. "pakietu (%s)"
  1002. #: scripts/dpkg-gencontrol.pl
  1003. #, perl-format
  1004. msgid "%s field of package %s: "
  1005. msgstr "pole %s pakietu %s: "
  1006. #: scripts/dpkg-gencontrol.pl
  1007. #, perl-format
  1008. msgid "error occurred while parsing %s field: %s"
  1009. msgstr "wystąpił błąd podczas przetwarzania pola %s: %s"
  1010. #: scripts/dpkg-gencontrol.pl
  1011. #, perl-format
  1012. msgid ""
  1013. "the %s field contains an arch-specific dependency but the package is "
  1014. "architecture all"
  1015. msgstr ""
  1016. "pole %s zawiera zależność zależną od architektury, lecz pakiet ma ustawioną "
  1017. "architekturę all"
  1018. #: scripts/dpkg-gencontrol.pl
  1019. #, perl-format
  1020. msgid "%s package with udeb specific field %s"
  1021. msgstr "pakiet %s zawierający pole %s specyficzne dla udeb"
  1022. #: scripts/dpkg-gencontrol.pl scripts/Dpkg/Source/Package.pm
  1023. #: scripts/Dpkg/Source/Patch.pm
  1024. #, perl-format
  1025. msgid "cannot stat %s"
  1026. msgstr "nie można ustalić stanu %s"
  1027. #: scripts/dpkg-gencontrol.pl
  1028. #, perl-format
  1029. msgid "cannot install output control file '%s'"
  1030. msgstr "nie można zainstalować wyjściowego pliku kontrolnego \"%s\""
  1031. #: scripts/dpkg-gensymbols.pl
  1032. #, fuzzy
  1033. #| msgid ""
  1034. #| "Options:\n"
  1035. #| " -p<package> generate symbols file for package.\n"
  1036. #| " -P<package-build-dir> temporary build dir instead of debian/tmp.\n"
  1037. #| " -e<library> explicitly list libraries to scan.\n"
  1038. #| " -v<version> version of the packages (defaults to\n"
  1039. #| " version extracted from debian/changelog).\n"
  1040. #| " -c<level> compare generated symbols file with the "
  1041. #| "reference\n"
  1042. #| " template in the debian directory and fail if\n"
  1043. #| " difference is too important; level goes from 0 "
  1044. #| "for\n"
  1045. #| " no check, to 4 for all checks (default level "
  1046. #| "is 1).\n"
  1047. #| " -q keep quiet and never emit any warnings or\n"
  1048. #| " generate a diff between generated symbols\n"
  1049. #| " file and the reference template.\n"
  1050. #| " -I<file> force usage of <file> as reference symbols\n"
  1051. #| " file instead of the default file.\n"
  1052. #| " -O[<file>] write to stdout (or <file>), not .../DEBIAN/"
  1053. #| "symbols.\n"
  1054. #| " -t write in template mode (tags are not\n"
  1055. #| " processed and included in output).\n"
  1056. #| " -V verbose output; write deprecated symbols and "
  1057. #| "pattern\n"
  1058. #| " matching symbols as comments (in template mode "
  1059. #| "only).\n"
  1060. #| " -a<arch> assume <arch> as host architecture when "
  1061. #| "processing\n"
  1062. #| " symbol files.\n"
  1063. #| " -d display debug information during work.\n"
  1064. #| " -?, --help show this help message.\n"
  1065. #| " --version show the version.\n"
  1066. msgid ""
  1067. "Options:\n"
  1068. " -p<package> generate symbols file for package.\n"
  1069. " -P<package-build-dir> temporary build directory instead of debian/tmp.\n"
  1070. " -e<library> explicitly list libraries to scan.\n"
  1071. " -v<version> version of the packages (defaults to\n"
  1072. " version extracted from debian/changelog).\n"
  1073. " -c<level> compare generated symbols file with the "
  1074. "reference\n"
  1075. " template in the debian directory and fail if\n"
  1076. " difference is too important; level goes from 0 "
  1077. "for\n"
  1078. " no check, to 4 for all checks (default level is "
  1079. "1).\n"
  1080. " -q keep quiet and never emit any warnings or\n"
  1081. " generate a diff between generated symbols\n"
  1082. " file and the reference template.\n"
  1083. " -I<file> force usage of <file> as reference symbols\n"
  1084. " file instead of the default file.\n"
  1085. " -O[<file>] write to stdout (or <file>), not .../DEBIAN/"
  1086. "symbols.\n"
  1087. " -t write in template mode (tags are not\n"
  1088. " processed and included in output).\n"
  1089. " -V verbose output; write deprecated symbols and "
  1090. "pattern\n"
  1091. " matching symbols as comments (in template mode "
  1092. "only).\n"
  1093. " -a<arch> assume <arch> as host architecture when "
  1094. "processing\n"
  1095. " symbol files.\n"
  1096. " -d display debug information during work.\n"
  1097. " -?, --help show this help message.\n"
  1098. " --version show the version.\n"
  1099. msgstr ""
  1100. "Opcje:\n"
  1101. " -p<pakiet> generuje plik symboli dla pakietu.\n"
  1102. " -P<kat_budow_pakietu> tymczasowy katalog budow. pakietu zamiast debian/"
  1103. "tmp.\n"
  1104. " -e<biblioteka> bezpośrednio podana lista bibliotek do "
  1105. "skanowania.\n"
  1106. " -v<wersja> wersja pakietów (domyślnie brana\n"
  1107. " wersja wyciągnięta z debian/changelog).\n"
  1108. " -c<poziom> porównuje wygenerowany plik symboli z plikiem\n"
  1109. " reference w katalogu debian. Kończy się błędem,\n"
  1110. " jeśli różnice są zbyt ważne (poziom od 0 -\n"
  1111. " żadnych sprawdzeń do 4 - wszystkie sprawdzenia).\n"
  1112. " Domyślny poziom to 1.\n"
  1113. " -I<plik> wymusza użycie <pliku> jako pliku symboli\n"
  1114. " zamiast używać domyślnego pliku.\n"
  1115. " -O[<plik>] zapis na stdout (lub do <plik>), zamiast do\n"
  1116. " .../DEBIAN/symbols.\n"
  1117. " -t zapisuje w trybie szablonu (tagi nie są\n"
  1118. " przetwarzane i włączone na wyjściu).\n"
  1119. " -V szczegółowe wyjście - wypisuje przestarzałe "
  1120. "symbole\n"
  1121. " i wzorce pasujące do synboli jako komentarze "
  1122. "(tylko\n"
  1123. " w trybie szablonu).\n"
  1124. " -a<arch> zakłada <arch> jako architekturę hosta, podczas\n"
  1125. " przerwarzania pliku symboli.\n"
  1126. " -d podczas pracy wyświetla komunikaty debugowania.\n"
  1127. " -?, --help wyświetla ten komunikat pomocy.\n"
  1128. " --version wyświetla wersję.\n"
  1129. #: scripts/dpkg-gensymbols.pl
  1130. #, perl-format
  1131. msgid "pattern '%s' did not match any file"
  1132. msgstr "wzorzec \"%s\" nie pasuje do żadnego pliku"
  1133. #: scripts/dpkg-gensymbols.pl
  1134. #, perl-format
  1135. msgid "can't read directory %s: %s"
  1136. msgstr "nie można odczytać katalogu %s: %s"
  1137. #: scripts/dpkg-gensymbols.pl
  1138. #, perl-format
  1139. msgid "Dpkg::Shlibs::Objdump couldn't parse %s\n"
  1140. msgstr "Dpkg::Shlibs::Objdump nie może przetworzyć %s\n"
  1141. #: scripts/dpkg-gensymbols.pl
  1142. msgid "<standard output>"
  1143. msgstr "<standardowe wyjście>"
  1144. #: scripts/dpkg-gensymbols.pl
  1145. #, perl-format
  1146. msgid "new libraries appeared in the symbols file: %s"
  1147. msgstr "w pliku symboli pojawiły się nowe biblioteki: %s"
  1148. #: scripts/dpkg-gensymbols.pl
  1149. #, perl-format
  1150. msgid "some libraries disappeared in the symbols file: %s"
  1151. msgstr "pewne biblioteki zniknęły z pliku symboli: %s"
  1152. #: scripts/dpkg-gensymbols.pl
  1153. #, perl-format
  1154. msgid "some new symbols appeared in the symbols file: %s"
  1155. msgstr "pewne nowe symbole pojawiły się w pliku symboli: %s"
  1156. #: scripts/dpkg-gensymbols.pl
  1157. msgid "see diff output below"
  1158. msgstr "patrz poniższe wyjście różnic"
  1159. #: scripts/dpkg-gensymbols.pl
  1160. #, perl-format
  1161. msgid "some symbols or patterns disappeared in the symbols file: %s"
  1162. msgstr "pewne symbole lub wzorce zniknęły z pliku symboli: %s"
  1163. #: scripts/dpkg-gensymbols.pl
  1164. msgid "the generated symbols file is empty"
  1165. msgstr "wygenerowany plik symboli jest pusty"
  1166. #: scripts/dpkg-gensymbols.pl
  1167. #, perl-format
  1168. msgid "%s doesn't match completely %s"
  1169. msgstr "%s całkowicie nie pasuje do %s"
  1170. #: scripts/dpkg-gensymbols.pl
  1171. #, perl-format
  1172. msgid "no debian/symbols file used as basis for generating %s"
  1173. msgstr "do generowania %s nie użyto żadnego pliku debian/symbols"
  1174. #: scripts/dpkg-mergechangelogs.pl
  1175. msgid ""
  1176. "This is free software; see the GNU General Public License version 2 or\n"
  1177. "later for copying conditions. There is NO warranty.\n"
  1178. msgstr ""
  1179. "Ten program jest oprogramowaniem wolnym, rozpowszechnianym na warunkach\n"
  1180. "licencji GNU w wersji drugiej lub późniejszej. Brak JAKIEJKOLWIEK "
  1181. "gwarancji.\n"
  1182. #: scripts/dpkg-mergechangelogs.pl
  1183. #, perl-format
  1184. msgid ""
  1185. "Usage: %s [<option>...] <old> <new-a> <new-b> [<out>]\n"
  1186. "\n"
  1187. "Options:\n"
  1188. " -m, --merge-prereleases merge pre-releases together, ignores everything\n"
  1189. " after the last '~' in the version.\n"
  1190. " -?, --help show this help message.\n"
  1191. " --version show the version.\n"
  1192. msgstr ""
  1193. "Użycie: %s [<opcja> ...] <stary> <nowy-a> <nowy-b> [<wyjście>]\n"
  1194. "\n"
  1195. "Opcje:\n"
  1196. " -m, --merge-prereleases łączy przedwydania, ignorując wszystko po\n"
  1197. " ostatnim \"~\" w wersji.\n"
  1198. " -?, --help wyświetla ten komunikat pomocy.\n"
  1199. " --version wyświetla informacje o wersji.\n"
  1200. #: scripts/dpkg-mergechangelogs.pl
  1201. msgid "needs at least three arguments"
  1202. msgstr "wymaga co najmniej trzech argumentów"
  1203. #: scripts/dpkg-mergechangelogs.pl
  1204. msgid "file arguments need to exist"
  1205. msgstr "argumenty plikowe muszą istnieć"
  1206. #: scripts/dpkg-name.pl
  1207. #, perl-format
  1208. msgid "Usage: %s [<option>...] <file>...\n"
  1209. msgstr "Użycie: %s [<opcja>...] <plik>...\n"
  1210. #: scripts/dpkg-name.pl
  1211. #, fuzzy
  1212. #| msgid ""
  1213. #| "\n"
  1214. #| "Options:\n"
  1215. #| " -a, --no-architecture no architecture part in filename.\n"
  1216. #| " -o, --overwrite overwrite if file exists.\n"
  1217. #| " -k, --symlink don't create a new file, but a symlink.\n"
  1218. #| " -s, --subdir [dir] move file into subdir (use with care).\n"
  1219. #| " -c, --create-dir create target dir if not there (use with "
  1220. #| "care).\n"
  1221. #| " -?, --help show this help message.\n"
  1222. #| " -v, --version show the version.\n"
  1223. #| "\n"
  1224. #| "file.deb changes to <package>_<version>_<architecture>.<package_type>\n"
  1225. #| "according to the 'underscores convention'.\n"
  1226. msgid ""
  1227. "\n"
  1228. "Options:\n"
  1229. " -a, --no-architecture no architecture part in filename.\n"
  1230. " -o, --overwrite overwrite if file exists.\n"
  1231. " -k, --symlink don't create a new file, but a symlink.\n"
  1232. " -s, --subdir [dir] move file into subdirectory (use with care).\n"
  1233. " -c, --create-dir create target directory if not there (use with "
  1234. "care).\n"
  1235. " -?, --help show this help message.\n"
  1236. " -v, --version show the version.\n"
  1237. "\n"
  1238. "file.deb changes to <package>_<version>_<architecture>.<package_type>\n"
  1239. "according to the 'underscores convention'.\n"
  1240. msgstr ""
  1241. "\n"
  1242. "Opcje:\n"
  1243. " -a, --no-architecture bez określenia architektury w nazwie pliku.\n"
  1244. " -o, --overwrite nadpisywanie jeśli plik istnieje.\n"
  1245. " -k, --symlink tworzenie dowiązania zamiast nowego pliku.\n"
  1246. " -s, --subdir [katalog] przeniesienie pliku do podkatalogu (ostrożnie!).\n"
  1247. " -c, --create-dir tworzenie kat.docelowego jeśli brak "
  1248. "(ostrożnie!).\n"
  1249. " -?, --help wyświetla ten komunikat pomocy.\n"
  1250. " -v, --version wyświetla wersję.\n"
  1251. "\n"
  1252. "plik.deb jest zmieniany na <pakiet>_<wersja>_<architektura>.<typ_pakietu>\n"
  1253. "zgodnie z \"regułami podkreślania\".\n"
  1254. #: scripts/dpkg-name.pl
  1255. #, perl-format
  1256. msgid "cannot find '%s'"
  1257. msgstr "nie można odnaleźć \"%s\""
  1258. #: scripts/dpkg-name.pl
  1259. #, perl-format
  1260. msgid "binary control file %s"
  1261. msgstr "binarny plik kontrolny %s"
  1262. #: scripts/dpkg-name.pl
  1263. #, perl-format
  1264. msgid "assuming architecture '%s' for '%s'"
  1265. msgstr "przyjęcie architektury \"%s\" dla \"%s\""
  1266. #: scripts/dpkg-name.pl
  1267. #, perl-format
  1268. msgid "bad package control information for '%s'"
  1269. msgstr "zła informacja kontrolna pakietu dotycząca \"%s\""
  1270. #: scripts/dpkg-name.pl
  1271. #, perl-format
  1272. msgid "assuming section '%s' for '%s'"
  1273. msgstr "przyjęcie sekcji \"%s\" dla \"%s\""
  1274. #: scripts/dpkg-name.pl
  1275. #, fuzzy, perl-format
  1276. #| msgid "no Package field found in '%s', skipping it"
  1277. msgid "no Package field found in '%s', skipping package"
  1278. msgstr "nie znaleziono pole Package w \"%s\", pomijanie go"
  1279. #: scripts/dpkg-name.pl
  1280. #, perl-format
  1281. msgid "created directory '%s'"
  1282. msgstr "utworzono katalog \"%s\""
  1283. #: scripts/dpkg-name.pl
  1284. #, perl-format
  1285. msgid "cannot create directory '%s'"
  1286. msgstr "nie można utworzyć katalogu \"%s\""
  1287. #: scripts/dpkg-name.pl
  1288. #, perl-format
  1289. msgid "no such directory '%s', try --create-dir (-c) option"
  1290. msgstr ""
  1291. "katalog \"%s\" nie istnieje, proszę spróbować użyć opcji --create-dir (-c)"
  1292. #: scripts/dpkg-name.pl
  1293. #, perl-format
  1294. msgid "skipping '%s'"
  1295. msgstr "pomijanie \"%s\""
  1296. #: scripts/dpkg-name.pl
  1297. #, perl-format
  1298. msgid "cannot move '%s' to existing file"
  1299. msgstr "nie można przenieść \"%s\" do istniejącego pliku"
  1300. #: scripts/dpkg-name.pl
  1301. #, perl-format
  1302. msgid "moved '%s' to '%s'"
  1303. msgstr "przenoszenie \"%s\" do \"%s\""
  1304. #: scripts/dpkg-name.pl
  1305. msgid "mkdir can be used to create directory"
  1306. msgstr "do utworzenia katalogu można użyć mkdir"
  1307. #: scripts/dpkg-name.pl
  1308. msgid "need at least a filename"
  1309. msgstr "wymaga co najmniej jednego argumentu będącego nazwą pliku"
  1310. #: scripts/dpkg-parsechangelog.pl
  1311. #, fuzzy
  1312. #| msgid ""
  1313. #| "Options:\n"
  1314. #| " -l<changelog-file> get per-version info from this file.\n"
  1315. #| " -F<changelog-format> force changelog format.\n"
  1316. #| " -L<libdir> look for changelog parsers in <libdir>.\n"
  1317. #| " -S, --show-field <field> show the values for <field>.\n"
  1318. #| " -?, --help show this help message.\n"
  1319. #| " --version show the version."
  1320. msgid ""
  1321. "Options:\n"
  1322. " -l <changelog-file> get per-version info from this file.\n"
  1323. " -F <changelog-format> force changelog format.\n"
  1324. " -S, --show-field <field> show the values for <field>.\n"
  1325. " -?, --help show this help message.\n"
  1326. " --version show the version."
  1327. msgstr ""
  1328. "Opcje:\n"
  1329. " -l<plik_dziennika_zmian> otrzymanie informacji wg wersji z podanego "
  1330. "pliku.\n"
  1331. " -F<format_dzienn_zmian> wymusza format dziennika zmian.\n"
  1332. " -L<katalog_bibl> szuka parserów dziennika zmian w "
  1333. "<katalogu_bibl>.\n"
  1334. " -S, --show-field <pole> pokaż wartości dla <pola>.\n"
  1335. " -?, --help wyświetla ten komunikat pomocy.\n"
  1336. " --version wyświetla wersję."
  1337. #: scripts/dpkg-parsechangelog.pl
  1338. #, fuzzy
  1339. #| msgid ""
  1340. #| "Parser options:\n"
  1341. #| " --format <output-format> see man page for list of available\n"
  1342. #| " output formats, defaults to 'dpkg'\n"
  1343. #| " for compatibility with dpkg-dev\n"
  1344. #| " --since <version>, include all changes later than version\n"
  1345. #| " -s<version>, -v<version>\n"
  1346. #| " --until <version>, include all changes earlier than version\n"
  1347. #| " -u<version>\n"
  1348. #| " --from <version>, include all changes equal or later\n"
  1349. #| " -f<version> than version\n"
  1350. #| " --to <version>, -t<version> include all changes up to or equal\n"
  1351. #| " than version\n"
  1352. #| " --count <number>, include <number> entries from the top\n"
  1353. #| " -c<number>, -n<number> (or the tail if <number> is lower than "
  1354. #| "0)\n"
  1355. #| " --offset <number>, change the starting point for --count,\n"
  1356. #| " -o<number> counted from the top (or the tail if\n"
  1357. #| " <number> is lower than 0)\n"
  1358. #| " --all include all changes\n"
  1359. msgid ""
  1360. "Parser options:\n"
  1361. " --format <output-format>\n"
  1362. " set output format (defaults to 'dpkg').\n"
  1363. " --all include all changes.\n"
  1364. " -s, --since <version> include all changes later than <version>.\n"
  1365. " -v <version> ditto.\n"
  1366. " -u, --until <version> include all changes earlier than <version>.\n"
  1367. " -f, --from <version> include all changes equal or later than "
  1368. "<version>.\n"
  1369. " -t, --to <version> include all changes up to or equal than "
  1370. "<version>.\n"
  1371. " -c, --count <number> include <number> entries from the top (or tail\n"
  1372. " if <number> is lower than 0).\n"
  1373. " -n <number> ditto.\n"
  1374. " -o, --offset <number> change starting point for --count, counted from\n"
  1375. " the top (or tail if <number> is lower than 0).\n"
  1376. msgstr ""
  1377. "Opcje parsera:\n"
  1378. " --format <format_wyjścia> listę formatów wyjściowych można znaleźć na\n"
  1379. " stronie podręcznika, domyślnym jest \"dpkg"
  1380. "\"\n"
  1381. " dla zachowania kompatybilności z dpkg-dev\n"
  1382. " --since <wersja>, włącza wszystkie zmiany późniejsze od "
  1383. "wersji\n"
  1384. " -s<wersja>, -v<wersja>\n"
  1385. " --until <wersja>, włącza wszystkie zmiany wcześniejsze od "
  1386. "wersji\n"
  1387. " -u<wersja>\n"
  1388. " --from <wersja>, włącza wszystkie zmiany późniejsze od "
  1389. "wersji\n"
  1390. " -f<wersja> lub jej równe\n"
  1391. " --to <wersja>, -t<wersja> włącza wszystkie zmiany aż do danej wersji,\n"
  1392. " łącznie z tą wersją\n"
  1393. " --count <liczba>, włącza <liczba> początkowych wpisów (lub\n"
  1394. " -c<liczba>, -n<liczba> końcowych, gdy <liczba> jest mniejsza od 0)\n"
  1395. " --offset <liczba>, zmienia punkt początkowy dla --count,\n"
  1396. " -o<liczba> licząc od początku pliku (lub końca,\n"
  1397. " gdy <liczba> jest mniejsza od 0)\n"
  1398. " --all włącza wszystkie zmiany\n"
  1399. #: scripts/dpkg-parsechangelog.pl
  1400. #, fuzzy
  1401. #| msgid "-i%s is deprecated; it is without effect"
  1402. msgid "-L is obsolete; it is without effect"
  1403. msgstr "-i%s jest przestarzałe - nie ma żadnego efektu"
  1404. #: scripts/dpkg-parsechangelog.pl
  1405. #, fuzzy
  1406. #| msgid "changelog format %s is unknown"
  1407. msgid "bad changelog format name"
  1408. msgstr "nieznany format %s pliku zmian"
  1409. #: scripts/dpkg-parsechangelog.pl
  1410. #, fuzzy
  1411. #| msgid "no changelog file specified"
  1412. msgid "missing changelog filename"
  1413. msgstr "nie podano żadnego pliku zmian"
  1414. #: scripts/dpkg-parsechangelog.pl
  1415. msgid "takes no non-option arguments"
  1416. msgstr "wymaga niepodawania argumentu niebędącego opcją"
  1417. #: scripts/dpkg-scanpackages.pl
  1418. #, perl-format
  1419. msgid ""
  1420. "Usage: %s [<option>...] <binary-path> [<override-file> [<path-prefix>]] > "
  1421. "Packages\n"
  1422. "\n"
  1423. "Options:\n"
  1424. " -t, --type <type> scan for <type> packages (default is 'deb').\n"
  1425. " -a, --arch <arch> architecture to scan for.\n"
  1426. " -h, --hash <hash-list> only generate hashes for the specified list.\n"
  1427. " -m, --multiversion allow multiple versions of a single package.\n"
  1428. " -e, --extra-override <file>\n"
  1429. " use extra override file.\n"
  1430. " -M, --medium <medium> add X-Medium field for dselect multicd access "
  1431. "method\n"
  1432. " -?, --help show this help message.\n"
  1433. " --version show the version.\n"
  1434. msgstr ""
  1435. "Użycie: %s [<opcja> ...] <ścieżka_binariów> [<plik_nadpisań> "
  1436. "[<prefiks_ścieżki>]] > Packages\n"
  1437. "\n"
  1438. "Opcje:\n"
  1439. " -t, --type <typ> skanuje pakiety o <typie> (domyślnie \"deb\").\n"
  1440. " -a, --arch <arch> architektura, która będzie skanowana.\n"
  1441. " -h, --hash <lista-skrótów> generuje tylko skróty z listy.\n"
  1442. " -m, --multiversion dopuszcza wiele wersji pojedynczego pakietu.\n"
  1443. " -e, --extra-override <plik>\n"
  1444. " używa dodatkowego pliku nadpisań.\n"
  1445. " -M, --medium <medium> dodaje pole X-Medium do metody dostępu multicd "
  1446. "dselect.\n"
  1447. " -?, --help wyświetla ten komunikat pomocy.\n"
  1448. " --version wyświetla wersję.\n"
  1449. #: scripts/dpkg-scanpackages.pl
  1450. #, perl-format
  1451. msgid " %s (package says %s, not %s)"
  1452. msgstr " %s (pakiet zawiera %s, nie %s)"
  1453. #: scripts/dpkg-scanpackages.pl
  1454. #, perl-format
  1455. msgid "unconditional maintainer override for %s"
  1456. msgstr "bezwarunkowe nadpisanie opiekuna dla %s"
  1457. #: scripts/dpkg-scanpackages.pl scripts/dpkg-shlibdeps.pl scripts/Dpkg/IPC.pm
  1458. #: scripts/Dpkg/Shlibs/Objdump.pm
  1459. #, perl-format
  1460. msgid "cannot fork for %s"
  1461. msgstr "nie można wykonać funkcji fork dla %s"
  1462. #: scripts/dpkg-scanpackages.pl
  1463. #, perl-format
  1464. msgid "couldn't parse control information from %s"
  1465. msgstr "nie można przetworzyć informacji kontrolnej z %s"
  1466. #: scripts/dpkg-scanpackages.pl
  1467. #, perl-format
  1468. msgid "'dpkg-deb -I %s control' exited with %d, skipping package"
  1469. msgstr ""
  1470. "\"dpkg-deb -I %s control\" zakończył działanie z kodem %d, pomijanie pakietu"
  1471. #: scripts/dpkg-scanpackages.pl
  1472. #, perl-format
  1473. msgid "no Package field in control file of %s"
  1474. msgstr "brak pola Package w pliku kontrolnym %s"
  1475. #: scripts/dpkg-scanpackages.pl
  1476. #, fuzzy, perl-format
  1477. #| msgid "package %s (filename %s) is repeat but newer version;"
  1478. msgid ""
  1479. "package %s (filename %s) is repeat but newer version; used that one and "
  1480. "ignored data from %s!"
  1481. msgstr "pakiet %s (plik %s) jest powtórzony, ale w nowszej wersji;"
  1482. #: scripts/dpkg-scanpackages.pl
  1483. #, fuzzy, perl-format
  1484. #| msgid "ignored that one and using data from %s!"
  1485. msgid ""
  1486. "package %s (filename %s) is repeat; ignored that one and using data from %s!"
  1487. msgstr "zignorowanie tej wersji i użycie danych z %s!"
  1488. #: scripts/dpkg-scanpackages.pl
  1489. #, perl-format
  1490. msgid "package %s (filename %s) has Filename field!"
  1491. msgstr "pakiet %s (plik %s) zawiera pole Filename!"
  1492. #: scripts/dpkg-scanpackages.pl scripts/dpkg-scansources.pl
  1493. msgid "one to three arguments expected"
  1494. msgstr "oczekiwano od 1 do 3 argumentów"
  1495. #: scripts/dpkg-scanpackages.pl
  1496. #, perl-format
  1497. msgid "unsupported checksum '%s'"
  1498. msgstr "niewspierana suma kontrolna \"%s\""
  1499. #: scripts/dpkg-scanpackages.pl
  1500. #, fuzzy, perl-format
  1501. #| msgid "binary dir %s not found"
  1502. msgid "binary path %s not found"
  1503. msgstr "nie znaleziono katalogu binarnego %s"
  1504. #: scripts/dpkg-scanpackages.pl
  1505. #, perl-format
  1506. msgid "override file %s not found"
  1507. msgstr "nie znaleziono pliku nadpisań %s"
  1508. #: scripts/dpkg-scanpackages.pl
  1509. msgid "failed when writing stdout"
  1510. msgstr "błąd podczas wypisywania na standardowe wyjście"
  1511. #: scripts/dpkg-scanpackages.pl
  1512. msgid "couldn't close stdout"
  1513. msgstr "nie można zamknąć stdout"
  1514. #: scripts/dpkg-scanpackages.pl
  1515. msgid "Packages in override file with incorrect old maintainer value:"
  1516. msgstr ""
  1517. "Pakiety w pliku nadpisań z niepoprawną wartością poprzedniego opiekuna:"
  1518. #: scripts/dpkg-scanpackages.pl
  1519. msgid "Packages specifying same maintainer as override file:"
  1520. msgstr "Pakiety mające tego samego opiekuna, jak wymieniony w pliku nadpisań:"
  1521. #: scripts/dpkg-scanpackages.pl
  1522. msgid "Packages in archive but missing from override file:"
  1523. msgstr "Pakiety w archiwum, których brakuje w pliku nadpisań:"
  1524. #: scripts/dpkg-scanpackages.pl
  1525. msgid "Packages in override file but not in archive:"
  1526. msgstr "Pakiety w pliku nadpisań, ale nie w archiwum:"
  1527. #: scripts/dpkg-scanpackages.pl
  1528. #, perl-format
  1529. msgid "Wrote %s entries to output Packages file."
  1530. msgstr "Zapisano %s wpisów do wyjściowego pliku Packages."
  1531. #: scripts/dpkg-scansources.pl
  1532. #, perl-format
  1533. msgid ""
  1534. "Usage: %s [<option>...] <binary-path> [<override-file> [<path-prefix>]] > "
  1535. "Sources\n"
  1536. "\n"
  1537. "Options:\n"
  1538. " -n, --no-sort don't sort by package before outputting.\n"
  1539. " -e, --extra-override <file>\n"
  1540. " use extra override file.\n"
  1541. " -s, --source-override <file>\n"
  1542. " use file for additional source overrides, "
  1543. "default\n"
  1544. " is regular override file with .src appended.\n"
  1545. " --debug turn debugging on.\n"
  1546. " -?, --help show this help message.\n"
  1547. " --version show the version.\n"
  1548. "\n"
  1549. "See the man page for the full documentation.\n"
  1550. msgstr ""
  1551. "Użycie: %s [<opcja> ...] <ścieżka_binariów> [<plik_nadpisań> "
  1552. "[<prefiks_ścieżki>]] > Sources\n"
  1553. "\n"
  1554. "Opcje:\n"
  1555. " -n, --no-sort nie sortuje wyjścia po nazwach pakietów.\n"
  1556. " -e, --extra-override <plik>\n"
  1557. " używa dodatkowego pliku nadpisań.\n"
  1558. " -s, --source-override <plik>\n"
  1559. " używa pliku jako dodatkowych nadpisań źródeł, "
  1560. "domyślnie\n"
  1561. " jest to zwykły plik nadpisań z dołączonym "
  1562. "sufiksem .src \n"
  1563. " --debug włącza debugowanie.\n"
  1564. " -?, --help wyświetla ten komunikat pomocy.\n"
  1565. " --version wyświetla wersję.\n"
  1566. "\n"
  1567. "Pełną dokumentację można znaleźć na stronach podręcznika systemowego.\n"
  1568. #: scripts/dpkg-scansources.pl
  1569. #, perl-format
  1570. msgid "invalid override entry at line %d (%d fields)"
  1571. msgstr "niepoprawny wpis pliku nadpisań w linii %d (%d pól)"
  1572. #: scripts/dpkg-scansources.pl
  1573. #, perl-format
  1574. msgid "ignoring duplicate override entry for %s at line %d"
  1575. msgstr "ignorowanie zduplikowanego wpisu nadpisań dla %s w linii %d"
  1576. #: scripts/dpkg-scansources.pl
  1577. #, perl-format
  1578. msgid "ignoring override entry for %s, invalid priority %s"
  1579. msgstr "ignorowanie wpisu nadpisania dla %s, niepoprawny priorytet %s"
  1580. #: scripts/dpkg-scansources.pl
  1581. #, perl-format
  1582. msgid "invalid source override entry at line %d (%d fields)"
  1583. msgstr "niepoprawny wpis dotyczący nadpisania źródeł w linii %d (%d pól)"
  1584. #: scripts/dpkg-scansources.pl
  1585. #, perl-format
  1586. msgid "ignoring duplicate source override entry for %s at line %d"
  1587. msgstr ""
  1588. "ignorowanie zduplikowanego wpisu dotyczącego nadpisania źródeł dla %s w "
  1589. "linii %d"
  1590. #: scripts/dpkg-scansources.pl
  1591. #, perl-format
  1592. msgid "no binary packages specified in %s"
  1593. msgstr "nie podano żadnych pakietów binarnych w %s"
  1594. #: scripts/dpkg-shlibdeps.pl
  1595. #, perl-format
  1596. msgid "administrative directory '%s' does not exist"
  1597. msgstr "katalog administracyjny \"%s\" nie istnieje"
  1598. #: scripts/dpkg-shlibdeps.pl
  1599. #, perl-format
  1600. msgid "unrecognized dependency field '%s'"
  1601. msgstr "nierozpoznane pole zależności \"%s\""
  1602. #: scripts/dpkg-shlibdeps.pl
  1603. msgid "need at least one executable"
  1604. msgstr "wymaga co najmniej jednego argumentu będącego plikiem wykonywalnym"
  1605. #: scripts/dpkg-shlibdeps.pl
  1606. #, fuzzy, perl-format
  1607. #| msgid ""
  1608. #| "couldn't find library %s needed by %s (ELF format: '%s'; RPATH: '%s')"
  1609. msgid ""
  1610. "cannot find library %s needed by %s (ELF format: '%s' abi: '%s'; RPATH: '%s')"
  1611. msgstr ""
  1612. "nie można znaleźć biblioteki %s wymaganej przez %s (format ELF: \"%s\"; "
  1613. "RPATH: \"%s\")"
  1614. #: scripts/dpkg-shlibdeps.pl
  1615. #, perl-format
  1616. msgid "%s has an unexpected SONAME (%s)"
  1617. msgstr "%s ma nieoczekiwane SONAME (%s)"
  1618. #: scripts/dpkg-shlibdeps.pl
  1619. #, perl-format
  1620. msgid ""
  1621. "no dependency information found for %s (used by %s)\n"
  1622. "Hint: check if the library actually comes from a package."
  1623. msgstr ""
  1624. "nie znaleziono informacji o zależnościach dla %s (używanego przez %s)\n"
  1625. "Wskazówka: sprawdź, czy biblioteka rzeczywiście pochodzi z pakietu."
  1626. #: scripts/dpkg-shlibdeps.pl
  1627. msgid ""
  1628. "binaries to analyze should already be installed in their package's directory"
  1629. msgstr ""
  1630. "pliki binarne do analizy powinny już być zainstalowane w katalogu ich pakietu"
  1631. #: scripts/dpkg-shlibdeps.pl
  1632. #, perl-format
  1633. msgid "symbol %s used by %s found in none of the libraries"
  1634. msgstr "w żadnej z bibliotek nie znaleziono symbolu %s używanego przez %s"
  1635. #: scripts/dpkg-shlibdeps.pl
  1636. #, perl-format
  1637. msgid ""
  1638. "%s contains an unresolvable reference to symbol %s: it's probably a plugin"
  1639. msgstr ""
  1640. "%s zawiera nierozwiązywalne odniesienia do symbolu %s: prawdopodobnie jest "
  1641. "to wtyczka"
  1642. #: scripts/dpkg-shlibdeps.pl
  1643. #, perl-format
  1644. msgid "%d similar warning has been skipped (use -v to see it)"
  1645. msgid_plural ""
  1646. "%d other similar warnings have been skipped (use -v to see them all)"
  1647. msgstr[0] "pominięto %d podobne ostrzeżenie (proszę użyć -v, aby je zobaczyć)."
  1648. msgstr[1] ""
  1649. "pominięto %d podobne ostrzeżenia (proszę użyć -v, aby zobaczyć je wszystkie)."
  1650. msgstr[2] ""
  1651. "pominięto %d podobnych ostrzeżeń (proszę użyć -v, aby zobaczyć je wszystkie)."
  1652. #: scripts/dpkg-shlibdeps.pl
  1653. #, perl-format
  1654. msgid ""
  1655. "%s should not be linked against %s (it uses none of the library's symbols)"
  1656. msgstr ""
  1657. "%s nie powinien być linkowany z %s (nie są używane żadne z tamtejszych "
  1658. "symboli)"
  1659. #: scripts/dpkg-shlibdeps.pl
  1660. #, perl-format
  1661. msgid ""
  1662. "package could avoid a useless dependency if %s was not linked against %s (it "
  1663. "uses none of the library's symbols)"
  1664. msgid_plural ""
  1665. "package could avoid a useless dependency if %s were not linked against %s "
  1666. "(they use none of the library's symbols)"
  1667. msgstr[0] ""
  1668. "można by uniknąć niepotrzebnych zależności, jeśli %s nie zostałoby "
  1669. "zlinkowane wobec %s (nie używa ono żadnego z symboli biblioteki)"
  1670. msgstr[1] ""
  1671. "można by uniknąć niepotrzebnych zależności, jeśli %s nie zostałyby "
  1672. "zlinkowane wobec %s (nie używają one żadnego z symboli biblioteki)"
  1673. msgstr[2] ""
  1674. "można by uniknąć niepotrzebnych zależności, jeśli %s nie zostałyby "
  1675. "zlinkowane wobec %s (nie używają one żadnego z symboli biblioteki)"
  1676. #: scripts/dpkg-shlibdeps.pl
  1677. msgid ""
  1678. "Note: libraries are not searched in other binary packages that do not have "
  1679. "any shlibs or symbols file.\n"
  1680. "To help dpkg-shlibdeps find private libraries, you might need to use -l."
  1681. msgstr ""
  1682. "Uwaga: bibliotek nie szuka się w innych pakietach binarnych, które nie mają "
  1683. "żadnego pliku shlibs lub symbols.\n"
  1684. "Aby pomóc dpkg-shlibdeps w znajdowaniu prywatnych bibliotek, być może należy "
  1685. "użyć -l."
  1686. #: scripts/dpkg-shlibdeps.pl
  1687. msgid "cannot continue due to the error above"
  1688. msgid_plural "cannot continue due to the errors listed above"
  1689. msgstr[0] "nie można kontynuować z powodu powyższego błędu"
  1690. msgstr[1] "nie można kontynuować z powodu powyższych błędów"
  1691. msgstr[2] "nie można kontynuować z powodu powyższych błędów"
  1692. #: scripts/dpkg-shlibdeps.pl
  1693. #, perl-format
  1694. msgid "invalid dependency got generated: %s"
  1695. msgstr "wygenerowano niepoprawną zależność: %s"
  1696. #: scripts/dpkg-shlibdeps.pl
  1697. #, perl-format
  1698. msgid "install new varlist file '%s'"
  1699. msgstr "instalowanie nowego pliku z listą zmiennych \"%s\""
  1700. #: scripts/dpkg-shlibdeps.pl
  1701. #, perl-format
  1702. msgid "Usage: %s [<option>...] <executable>|-e<executable> [<option>...]"
  1703. msgstr "Użycie: %s [<opcja>...] <plik_wykonyw>|-e<plik_wykonyw> [<opcja>...]"
  1704. #: scripts/dpkg-shlibdeps.pl
  1705. msgid ""
  1706. "Positional options (order is significant):\n"
  1707. " <executable> include dependencies for <executable>,\n"
  1708. " -e<executable> (use -e if <executable> starts with '-')\n"
  1709. " -d<dependency-field> next executable(s) set shlibs:<dependency-field>."
  1710. msgstr ""
  1711. "Opcja pozycyjne (kolejność jest istotna):\n"
  1712. " <plik_wykonywalny> uwzględnia zależności <pliku_wykonywalnego>,\n"
  1713. " -e<plik_wykonywalny> (można użyć, jeśli <plik_wykonywalny> zaczyna się "
  1714. "\"-\")\n"
  1715. " -d<pole_zależności> następny plik(i) wykonywalny ustawia shlibs:"
  1716. "<pole_zależn>."
  1717. #: scripts/dpkg-shlibdeps.pl
  1718. #, fuzzy
  1719. #| msgid ""
  1720. #| "Options:\n"
  1721. #| " -l<library-dir> add directory to private shared library search "
  1722. #| "list.\n"
  1723. #| " -p<varname-prefix> set <varname-prefix>:* instead of shlibs:*.\n"
  1724. #| " -O[<file>] write variable settings to stdout (or "
  1725. #| "<file>).\n"
  1726. #| " -L<local-shlibs-file> shlibs override file, not debian/shlibs."
  1727. #| "local.\n"
  1728. #| " -T<substvars-file> update variables here, not debian/substvars.\n"
  1729. #| " -t<type> set package type (default is deb).\n"
  1730. #| " -x<package> exclude package from the generated "
  1731. #| "dependencies.\n"
  1732. #| " -S<package-build-dir> search needed libraries in the given\n"
  1733. #| " package build directory first.\n"
  1734. #| " -v enable verbose mode (can be used multiple "
  1735. #| "times).\n"
  1736. #| " --ignore-missing-info don't fail if dependency information can't be "
  1737. #| "found.\n"
  1738. #| " --warnings=<value> define set of active warnings (see manual "
  1739. #| "page).\n"
  1740. #| " --admindir=<directory> change the administrative directory.\n"
  1741. #| " -?, --help show this help message.\n"
  1742. #| " --version show the version."
  1743. msgid ""
  1744. "Options:\n"
  1745. " -l<library-dir> add directory to private shared library search "
  1746. "list.\n"
  1747. " -p<varname-prefix> set <varname-prefix>:* instead of shlibs:*.\n"
  1748. " -O[<file>] write variable settings to stdout (or <file>).\n"
  1749. " -L<local-shlibs-file> shlibs override file, not debian/shlibs.local.\n"
  1750. " -T<substvars-file> update variables here, not debian/substvars.\n"
  1751. " -t<type> set package type (default is deb).\n"
  1752. " -x<package> exclude package from the generated dependencies.\n"
  1753. " -S<package-build-dir> search needed libraries in the given\n"
  1754. " package build directory first.\n"
  1755. " -I<package-build-dir> ignore needed libraries, shlibs and symbols "
  1756. "files\n"
  1757. " in the given build directory.\n"
  1758. " -v enable verbose mode (can be used multiple "
  1759. "times).\n"
  1760. " --ignore-missing-info don't fail if dependency information can't be "
  1761. "found.\n"
  1762. " --warnings=<value> define set of active warnings (see manual page).\n"
  1763. " --admindir=<directory> change the administrative directory.\n"
  1764. " -?, --help show this help message.\n"
  1765. " --version show the version."
  1766. msgstr ""
  1767. "Opcje:\n"
  1768. " -l<kat-bibliotek> dodaje kat. do listy szukania współdzielonych "
  1769. "bibl.\n"
  1770. " -p<nazwa-prefiksu> ustawia <nazwa-prefiksu>:* zamiast shlibs:*.\n"
  1771. " -O[<plik>] wyświetla wartości zmiennych na stdout (lub w "
  1772. "<pliku>).\n"
  1773. " -L<plik_localshlibs> plik nadpisań shlibs, zamiast debian/shlibs.local.\n"
  1774. " -T<plik_varlist> plik do zaktualizowania, zamiast debian/substvars.\n"
  1775. " -t<typ> ustawia typ pakietu (domyślnie: deb).\n"
  1776. " -x<pakiet> wyłącza pakiet z generowanych zależności.\n"
  1777. " -S<kat_bud_pakietu> najpierw szuka potrzebnych bibliotek w podanym\n"
  1778. " katalogu budowania pakietu.\n"
  1779. " -v dodatkowe informacje (może być użyte wiele razy).\n"
  1780. " --ignore-missing-info kontynuacja pomimo braku informacji o "
  1781. "zależnościach.\n"
  1782. " --warnings=<wartość> definiuje zbiór aktywnych ostrzeżeń (patrz "
  1783. "manual).\n"
  1784. " --admindir=<katalog> zmienia katalog administracyjny.\n"
  1785. " -?, --help wyświetla ten komunikat pomocy.\n"
  1786. " --version wyświetla wersję."
  1787. #: scripts/dpkg-shlibdeps.pl
  1788. #, perl-format
  1789. msgid ""
  1790. "Dependency fields recognized are:\n"
  1791. " %s\n"
  1792. msgstr ""
  1793. "Rozpoznane pola zależności:\n"
  1794. " %s\n"
  1795. #: scripts/dpkg-shlibdeps.pl
  1796. #, perl-format
  1797. msgid "can't extract name and version from library name '%s'"
  1798. msgstr "nie można wydobyć nazwy i wersji z nazwy pliku biblioteki \"%s\""
  1799. #: scripts/dpkg-shlibdeps.pl
  1800. #, perl-format
  1801. msgid "unable to open shared libs info file '%s'"
  1802. msgstr ""
  1803. "nie można otworzyć pliku informacji o bibliotekach współdzielonych \"%s\""
  1804. #: scripts/dpkg-shlibdeps.pl
  1805. #, perl-format
  1806. msgid "shared libs info file '%s' line %d: bad line '%s'"
  1807. msgstr "plik bibliotek współdzielonych %s, linia %d: niepoprawna linia \"%s\""
  1808. #: scripts/dpkg-shlibdeps.pl scripts/Dpkg/Checksums.pm
  1809. #, perl-format
  1810. msgid "cannot open file %s"
  1811. msgstr "nie można otworzyć pliku %s"
  1812. #: scripts/dpkg-shlibdeps.pl
  1813. #, perl-format
  1814. msgid ""
  1815. "$ORIGIN is used in RPATH of %s and the corresponding directory could not be "
  1816. "identified due to lack of DEBIAN sub-directory in the root of package's "
  1817. "build tree"
  1818. msgstr ""
  1819. "$ORIGIN jest użyte RPATH pliku %s, ale nie można znaleźć odpowiadającego mu "
  1820. "katalogu z powodu braku podkatalogu DEBIAN w głównym katalogu budowania "
  1821. "pakietu"
  1822. #: scripts/dpkg-shlibdeps.pl scripts/Dpkg/IPC.pm scripts/Dpkg/Shlibs/Cppfilt.pm
  1823. #, perl-format
  1824. msgid "unable to execute %s"
  1825. msgstr "nie można wykonać %s"
  1826. #: scripts/dpkg-shlibdeps.pl
  1827. msgid "diversions involved - output may be incorrect"
  1828. msgstr "nadpisania użyte - wyjście może być niepoprawne"
  1829. #: scripts/dpkg-shlibdeps.pl
  1830. msgid "write diversion info to stderr"
  1831. msgstr "wypisywanie informacji o ominięciach na stderr"
  1832. #: scripts/dpkg-shlibdeps.pl
  1833. #, perl-format
  1834. msgid "unknown output from dpkg --search: '%s'"
  1835. msgstr "nierozpoznane wyjście z dpkg --search: \"%s\""
  1836. #: scripts/dpkg-source.pl
  1837. #, perl-format
  1838. msgid "--%s needs a directory"
  1839. msgstr "--%s wymaga podania katalogu"
  1840. #: scripts/dpkg-source.pl
  1841. #, perl-format
  1842. msgid "cannot stat directory %s"
  1843. msgstr "nie można ustalić stanu katalogu %s"
  1844. #: scripts/dpkg-source.pl
  1845. #, perl-format
  1846. msgid "directory argument %s is not a directory"
  1847. msgstr "argument %s nie jest katalogiem"
  1848. #: scripts/dpkg-source.pl scripts/Dpkg/Source/Package/V2.pm
  1849. #: scripts/Dpkg/Source/Package/V3/Bzr.pm scripts/Dpkg/Source/Package/V3/Git.pm
  1850. #, perl-format
  1851. msgid "unable to chdir to '%s'"
  1852. msgstr "nie można zmienić katalogu na \"%s\""
  1853. #: scripts/dpkg-source.pl
  1854. #, perl-format
  1855. msgid "using options from %s: %s"
  1856. msgstr "użycie opcji z %s: %s"
  1857. #: scripts/dpkg-source.pl scripts/Dpkg/Compression.pm
  1858. #, perl-format
  1859. msgid "%s is not a supported compression"
  1860. msgstr "%s nie jest obsługiwanym typem kompresji"
  1861. #: scripts/dpkg-source.pl scripts/Dpkg/Compression.pm
  1862. #: scripts/Dpkg/Compression/Process.pm
  1863. #, perl-format
  1864. msgid "%s is not a compression level"
  1865. msgstr " %s nie jest poziomem kompresji"
  1866. #: scripts/dpkg-source.pl scripts/dpkg-vendor.pl
  1867. msgid "need an action option"
  1868. msgstr "potrzebna opcja akcji"
  1869. #: scripts/dpkg-source.pl
  1870. #, perl-format
  1871. msgid "%s doesn't contain any information about the source package"
  1872. msgstr "%s nie zawiera żadnej informacji o pakiecie źródłowym"
  1873. #: scripts/dpkg-source.pl
  1874. #, perl-format
  1875. msgid ""
  1876. "binary package stanza %s is using an obsolete Build-Profiles field syntax"
  1877. msgstr ""
  1878. "binarny wpis o pakiecie %s używa przestarzałej składni pola Build-Profiles"
  1879. #: scripts/dpkg-source.pl
  1880. #, perl-format
  1881. msgid "'%s' is not a legal architecture string"
  1882. msgstr "\"%s\" nie jest poprawną specyfikacją architektury"
  1883. #: scripts/dpkg-source.pl
  1884. #, perl-format
  1885. msgid "architecture %s only allowed on its own (list for package %s is '%s')"
  1886. msgstr ""
  1887. "architektura %s dopuszczalna tylko sama (listą dla pakietu %s jest \"%s\")"
  1888. #: scripts/dpkg-source.pl
  1889. #, perl-format
  1890. msgid "%s doesn't list any binary package"
  1891. msgstr "%s nie zawiera wpisu o żadnym pakiecie binarnym."
  1892. #: scripts/dpkg-source.pl
  1893. msgid "building source for a binary-only release"
  1894. msgstr "budowanie źródeł do wydania wyłącznie binarnego"
  1895. #: scripts/dpkg-source.pl
  1896. #, perl-format
  1897. msgid "no source format specified in %s, see dpkg-source(1)"
  1898. msgstr "w %s nie podano formatu źródeł, patrz dpkg-source(1)"
  1899. #: scripts/dpkg-source.pl
  1900. #, perl-format
  1901. msgid "can't build with source format '%s': %s"
  1902. msgstr "nie można zbudować z formatem źródeł \"%s\": %s"
  1903. #: scripts/dpkg-source.pl
  1904. #, perl-format
  1905. msgid "using source format '%s'"
  1906. msgstr "używania formatu źródeł \"%s\""
  1907. #: scripts/dpkg-source.pl scripts/Dpkg/Source/Package/V1.pm
  1908. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Package/V3/Bzr.pm
  1909. #: scripts/Dpkg/Source/Package/V3/Native.pm
  1910. #, perl-format
  1911. msgid "building %s in %s"
  1912. msgstr "budowanie %s w %s"
  1913. #: scripts/dpkg-source.pl
  1914. #, perl-format
  1915. msgid "--%s needs at least one argument, the .dsc"
  1916. msgstr "--%s wymaga co najmniej jednego argumentu, .dsc"
  1917. #: scripts/dpkg-source.pl
  1918. #, perl-format
  1919. msgid "--%s takes no more than two arguments"
  1920. msgstr "--%s pobiera nie więcej niż dwa argumenty"
  1921. #: scripts/dpkg-source.pl
  1922. #, perl-format
  1923. msgid "--%s needs the .dsc file as first argument, not a directory"
  1924. msgstr "--%s wymaga pliku .dsc, a nie katalogu, jako pierwszego argumentu"
  1925. #: scripts/dpkg-source.pl scripts/Dpkg/Source/Package/V1.pm
  1926. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Package/V3/Bzr.pm
  1927. #: scripts/Dpkg/Source/Package/V3/Git.pm
  1928. #: scripts/Dpkg/Source/Package/V3/Native.pm
  1929. #, perl-format
  1930. msgid "unpack target exists: %s"
  1931. msgstr "cel rozpakowania istnieje: %s"
  1932. #: scripts/dpkg-source.pl
  1933. #, perl-format
  1934. msgid "%s doesn't contain a valid OpenPGP signature"
  1935. msgstr "%s nie zawiera ważnego podpisu OpenPGP"
  1936. #: scripts/dpkg-source.pl
  1937. #, perl-format
  1938. msgid "extracting unsigned source package (%s)"
  1939. msgstr "wydobywanie niepodpisanych pakietów źródłowych (%s)"
  1940. #: scripts/dpkg-source.pl
  1941. #, perl-format
  1942. msgid "extracting %s in %s"
  1943. msgstr "rozpakowywanie %s w %s"
  1944. #: scripts/dpkg-source.pl
  1945. #, fuzzy, perl-format
  1946. #| msgid "%s is not a plain file"
  1947. msgid "test control %s is not a regular file"
  1948. msgstr " %s nie jest zwykłym plikiem"
  1949. #: scripts/dpkg-source.pl
  1950. #, perl-format
  1951. msgid "%s field contains value %s, but no tests control file %s"
  1952. msgstr "pole %s zawiera wartość %s, ale nie zawiera plików kontroli testów %s"
  1953. #: scripts/dpkg-source.pl
  1954. msgctxt "source options"
  1955. msgid "<none>"
  1956. msgstr ""
  1957. #: scripts/dpkg-source.pl
  1958. #, perl-format
  1959. msgid "Usage: %s [<option>...] <command>"
  1960. msgstr "Użycie: %s [<opcja>...] <polecenie>"
  1961. #: scripts/dpkg-source.pl
  1962. msgid ""
  1963. "Commands:\n"
  1964. " -x, --extract <filename>.dsc [<output-dir>]\n"
  1965. " extract source package.\n"
  1966. " -b, --build <dir> build source package.\n"
  1967. " --print-format <dir> print the format to be used for the source "
  1968. "package.\n"
  1969. " --commit [<dir> [<patch-name>]]\n"
  1970. " store upstream changes in a new patch."
  1971. msgstr ""
  1972. "Polecenia:\n"
  1973. " -x, --extract <nazwa_pliku>.dsc [<kat_wyjściowy>]\n"
  1974. " wypakowuje pakiet źródłowy.\n"
  1975. " -b, --build <katalog> buduje pakiet źródłowy.\n"
  1976. " --print-format <katalog>\n"
  1977. " wypisuje format, który zostanie użyty\n"
  1978. " dla pakietu źródłowego.\n"
  1979. " --commit [<katalog> [<nazwa_łatki>]]\n"
  1980. " przechowuje zmiany z projektu macierzystego\n"
  1981. " jako nową łatkę."
  1982. #: scripts/dpkg-source.pl
  1983. #, fuzzy, perl-format
  1984. #| msgid ""
  1985. #| "Build options:\n"
  1986. #| " -c<control-file> get control info from this file.\n"
  1987. #| " -l<changelog-file> get per-version info from this file.\n"
  1988. #| " -F<changelog-format> force changelog format.\n"
  1989. #| " --format=<source-format> set the format to be used for the source "
  1990. #| "package.\n"
  1991. #| " -V<name>=<value> set a substitution variable.\n"
  1992. #| " -T<substvars-file> read variables here.\n"
  1993. #| " -D<field>=<value> override or add a .dsc field and value.\n"
  1994. #| " -U<field> remove a field.\n"
  1995. #| " -q quiet mode.\n"
  1996. #| " -i[<regex>] filter out files to ignore diffs of\n"
  1997. #| " (defaults to: '%s').\n"
  1998. #| " -I[<pattern>] filter out files when building tarballs\n"
  1999. #| " (defaults to: %s).\n"
  2000. #| " -Z<compression> select compression to use (defaults to '%s',\n"
  2001. #| " supported are: %s).\n"
  2002. #| " -z<level> compression level to use (defaults to '%d',\n"
  2003. #| " supported are: '1'-'9', 'best', 'fast')"
  2004. msgid ""
  2005. "Build options:\n"
  2006. " -c<control-file> get control info from this file.\n"
  2007. " -l<changelog-file> get per-version info from this file.\n"
  2008. " -F<changelog-format> force changelog format.\n"
  2009. " --format=<source-format> set the format to be used for the source "
  2010. "package.\n"
  2011. " -V<name>=<value> set a substitution variable.\n"
  2012. " -T<substvars-file> read variables here.\n"
  2013. " -D<field>=<value> override or add a .dsc field and value.\n"
  2014. " -U<field> remove a field.\n"
  2015. " -i, --diff-ignore[=<regex>]\n"
  2016. " filter out files to ignore diffs of\n"
  2017. " (defaults to: '%s').\n"
  2018. " -I, --tar-ignore[=<pattern>]\n"
  2019. " filter out files when building tarballs\n"
  2020. " (defaults to: %s).\n"
  2021. " -Z, --compression=<compression>\n"
  2022. " select compression to use (defaults to '%s',\n"
  2023. " supported are: %s).\n"
  2024. " -z, --compression-level=<level>\n"
  2025. " compression level to use (defaults to '%d',\n"
  2026. " supported are: '1'-'9', 'best', 'fast')"
  2027. msgstr ""
  2028. "Opcje budowania:\n"
  2029. " -c<plik_kontrolny> pobiera informacje kontrolne z tego pliku.\n"
  2030. " -l<plik_zmian> pobiera informacje dot. wersji z tego pliku.\n"
  2031. " -F<format_pliku_zmian> wymusza format pliku zmian.\n"
  2032. " --format=<source_format> set the format to be used for the source "
  2033. "package.\n"
  2034. " -V<nazwa>=<wartość> ustawia zmienną podstawiania.\n"
  2035. " -T<plik-zmiennych> czyta zmienne z tego pliku.\n"
  2036. " -D<pole>=<wartość> nadpisuje lub dodaje pole do .dsc wraz z "
  2037. "wartością.\n"
  2038. " -U<pole> usuwa pole.\n"
  2039. " -q tryb cichy, pomija wypisywanie ostrzeżeń.\n"
  2040. " -i[<wyraż_reg>] pomijanie plików podczas tworzenia pliku różnic\n"
  2041. " (domyślnie: \"%s\").\n"
  2042. " -I<wzorzec> pomijanie plików podczas tworzenia archiwum tar.\n"
  2043. " (domyślnie: %s)\n"
  2044. " -Z<kompresja> wybór używanej kompresji (domyślnie \"%s\",\n"
  2045. " obsługiwane: %s).\n"
  2046. " -z<poziom> używany poziom kompresji (domyślnie \"%d\",\n"
  2047. " obsługiwane: \"1\"-\"9\", \"best\", \"fast\")"
  2048. #: scripts/dpkg-source.pl
  2049. #, fuzzy
  2050. #| msgid ""
  2051. #| "Extract options:\n"
  2052. #| " --no-copy don't copy .orig tarballs\n"
  2053. #| " --no-check don't check signature and checksums before "
  2054. #| "unpacking\n"
  2055. #| " --require-valid-signature abort if the package doesn't have a valid "
  2056. #| "signature\n"
  2057. #| " --ignore-bad-version allow bad source package versions."
  2058. msgid ""
  2059. "Extract options:\n"
  2060. " --no-copy don't copy .orig tarballs\n"
  2061. " --no-check don't check signature and checksums before "
  2062. "unpacking\n"
  2063. " --no-overwrite-dir do not overwrite directory on extraction\n"
  2064. " --require-valid-signature abort if the package doesn't have a valid "
  2065. "signature\n"
  2066. " --require-strong-checksums\n"
  2067. " abort if the package contains no strong "
  2068. "checksums\n"
  2069. " --ignore-bad-version allow bad source package versions."
  2070. msgstr ""
  2071. "Opcje wypakowywania:\n"
  2072. " --no-copy nie kopiuje archiwów .orig\n"
  2073. " --no-check nie sprawdza podpisu i sum kontrolnych przed "
  2074. "wypakowaniem\n"
  2075. " --require-valid-signature przerywa, jeśli pakiet nie posiada prawidłowego "
  2076. "podpisu --ignore-bad-version pozwól na złą wersję pakietu źródłowego."
  2077. #: scripts/dpkg-source.pl
  2078. #, fuzzy
  2079. #| msgid ""
  2080. #| "General options:\n"
  2081. #| " -?, --help show this help message.\n"
  2082. #| " --version show the version."
  2083. msgid ""
  2084. "General options:\n"
  2085. " -q quiet mode.\n"
  2086. " -?, --help show this help message.\n"
  2087. " --version show the version."
  2088. msgstr ""
  2089. "Opcje ogólne:\n"
  2090. " -?, --help wyświetla ten komunikat pomocy.\n"
  2091. " --version wyświetla wersję."
  2092. #: scripts/dpkg-source.pl
  2093. msgid ""
  2094. "Source format specific build and extract options are available;\n"
  2095. "use --format with --help to see them."
  2096. msgstr ""
  2097. #: scripts/dpkg-vendor.pl
  2098. msgid ""
  2099. "Commands:\n"
  2100. " --is <vendor> returns true if current vendor is <vendor>.\n"
  2101. " --derives-from <vendor> returns true if current vendor derives from "
  2102. "<vendor>.\n"
  2103. " --query <field> print the content of the vendor-specific field.\n"
  2104. " --help show this help message.\n"
  2105. " --version show the version."
  2106. msgstr ""
  2107. "Polecenia:\n"
  2108. " --is <dost> zwraca prawdę, jeśli aktualnym dostawcą jest "
  2109. "<dost>.\n"
  2110. " --derives-from <dost> zwraca prawdę, jeśli dostawca pochodzi od <dost>.\n"
  2111. " --query <pole> zwraca wartość pola określonego dla dostawcy.\n"
  2112. " --help wyświetla ten komunikat pomocy.\n"
  2113. " --version wyświetla wersję."
  2114. #: scripts/dpkg-vendor.pl
  2115. msgid ""
  2116. "Options:\n"
  2117. " --vendor <vendor> assume <vendor> is the current vendor."
  2118. msgstr ""
  2119. "Opcje:\n"
  2120. " --vendor <dostawca> przyjmij, że <dostawca> jest aktualnym dostawcą."
  2121. #: scripts/dpkg-vendor.pl
  2122. #, perl-format
  2123. msgid "vendor %s doesn't exist in %s"
  2124. msgstr "dostawca %s nie istnieje w %s"
  2125. #: scripts/Dpkg/Arch.pm
  2126. #, fuzzy
  2127. #| msgid ""
  2128. #| "couldn't determine gcc system type, falling back to default (native "
  2129. #| "compilation)"
  2130. msgid ""
  2131. "cannot determine CC system type, falling back to default (native compilation)"
  2132. msgstr ""
  2133. "nie można określić typu systemu gcc, użycie domyślnego (kompilacja natywna)"
  2134. #: scripts/Dpkg/Arch.pm
  2135. #, fuzzy, perl-format
  2136. #| msgid ""
  2137. #| "unknown gcc system type %s, falling back to default (native compilation)"
  2138. msgid "unknown CC system type %s, falling back to default (native compilation)"
  2139. msgstr "nieznany typ systemu gcc %s, użycie domyślnego (kompilacja natywna)"
  2140. #: scripts/Dpkg/Arch.pm
  2141. #, fuzzy, perl-format
  2142. #| msgid "'%s' is not a legal architecture string"
  2143. msgid "'%s' is not a legal architecture in list '%s'"
  2144. msgstr "\"%s\" nie jest poprawną specyfikacją architektury"
  2145. #: scripts/Dpkg/BuildFlags.pm
  2146. #, perl-format
  2147. msgid "line %d of %s mentions unknown flag %s"
  2148. msgstr "wiersz %d z %s zawiera nieznaną flagę %s"
  2149. #: scripts/Dpkg/BuildFlags.pm
  2150. #, perl-format
  2151. msgid "line %d of %s is invalid, it has been ignored"
  2152. msgstr "wiersz %d z %s jest nieprawidłowy, został zignorowany"
  2153. #: scripts/Dpkg/BuildOptions.pm
  2154. #, perl-format
  2155. msgid "invalid flag in %s: %s"
  2156. msgstr "niepoprawna flaga w %s: %s"
  2157. #: scripts/Dpkg/BuildOptions.pm
  2158. #, perl-format
  2159. msgid "unknown %s feature in %s variable: %s"
  2160. msgstr "nieznana funkcja %s w zmiennej %s: %s"
  2161. #: scripts/Dpkg/BuildOptions.pm
  2162. #, perl-format
  2163. msgid "incorrect value in %s option of %s variable: %s"
  2164. msgstr "nieprawidłowa wartość w opcjach %s zmiennej %s: %s"
  2165. #: scripts/Dpkg/Build/Types.pm
  2166. #, perl-format
  2167. msgid "cannot combine %s and %s"
  2168. msgstr "nie można łączyć %s i %s"
  2169. #: scripts/Dpkg/Build/Types.pm
  2170. #, fuzzy, perl-format
  2171. #| msgid "unknown file type"
  2172. msgid "unknown build type %s"
  2173. msgstr "nieznany typ pliku"
  2174. #: scripts/Dpkg/Changelog.pm
  2175. #, perl-format
  2176. msgid ""
  2177. "%s(l%s): %s\n"
  2178. "LINE: %s"
  2179. msgstr ""
  2180. "%s(l%s): %s\n"
  2181. "LINIA: %s"
  2182. #: scripts/Dpkg/Changelog.pm
  2183. #, perl-format
  2184. msgid "%s(l%s): %s"
  2185. msgstr "%s(l%s): %s"
  2186. #: scripts/Dpkg/Changelog.pm
  2187. msgid "'offset' without 'count' has no effect"
  2188. msgstr "\"offset\" bez \"count\" nic nie zmienia"
  2189. #: scripts/Dpkg/Changelog.pm
  2190. msgid "you can't combine 'count' or 'offset' with any other range option"
  2191. msgstr ""
  2192. "nie można łączyć \"count\" lub \"offset\" z jakąkolwiek inną opcją zakresu"
  2193. #: scripts/Dpkg/Changelog.pm
  2194. msgid "you can only specify one of 'from' and 'since', using 'since'"
  2195. msgstr "można podać tylko jedno z \"from\" i \"since\", użycie \"since\""
  2196. #: scripts/Dpkg/Changelog.pm
  2197. msgid "you can only specify one of 'to' and 'until', using 'until'"
  2198. msgstr "można podać tylko jedno z \"to\" i \"until\", użycie \"until\""
  2199. #: scripts/Dpkg/Changelog.pm
  2200. #, perl-format
  2201. msgid "'%s' option specifies non-existing version"
  2202. msgstr "opcja \"%s\" określa nieistniejącą wersję"
  2203. #: scripts/Dpkg/Changelog.pm
  2204. msgid "use newest entry that is earlier than the one specified"
  2205. msgstr "użycie najnowszego wpisu, który jest wcześniejszy niż określony"
  2206. #: scripts/Dpkg/Changelog.pm
  2207. msgid "none found, starting from the oldest entry"
  2208. msgstr "nie znaleziono, rozpoczynanie od najstarszego wpisu"
  2209. #: scripts/Dpkg/Changelog.pm
  2210. msgid "use oldest entry that is later than the one specified"
  2211. msgstr "użycie najstarszego wpisu, który jest późniejszy niż określony"
  2212. #: scripts/Dpkg/Changelog.pm
  2213. #, perl-format
  2214. msgid "no such entry found, ignoring '%s' parameter"
  2215. msgstr "nie znaleziono takiego wpisu, ignorowanie parametru \"%s\""
  2216. #: scripts/Dpkg/Changelog.pm
  2217. msgid "'since' option specifies most recent version, ignoring"
  2218. msgstr "opcja \"since\" określa już najnowszą wersję, ignorowanie"
  2219. #: scripts/Dpkg/Changelog.pm
  2220. msgid "'until' option specifies oldest version, ignoring"
  2221. msgstr "opcja \"until\" określa już najstarszą wersję, ignorowanie"
  2222. #: scripts/Dpkg/Changelog/Debian.pm
  2223. msgid "first heading"
  2224. msgstr "pierwszy nagłówek"
  2225. #: scripts/Dpkg/Changelog/Debian.pm
  2226. #, fuzzy
  2227. #| msgid "next heading or eof"
  2228. msgid "next heading or end of file"
  2229. msgstr "kolejny nagłówek lub koniec pliku"
  2230. #: scripts/Dpkg/Changelog/Debian.pm
  2231. msgid "start of change data"
  2232. msgstr "początek daty zmiany"
  2233. #: scripts/Dpkg/Changelog/Debian.pm
  2234. msgid "more change data or trailer"
  2235. msgstr "więcej dat zmian lub trailera"
  2236. #: scripts/Dpkg/Changelog/Debian.pm
  2237. #, perl-format
  2238. msgid "found start of entry where expected %s"
  2239. msgstr "oczekiwano %s, a znaleziono początek wpisu"
  2240. #: scripts/Dpkg/Changelog/Debian.pm
  2241. msgid "badly formatted heading line"
  2242. msgstr "niepoprawny format linii nagłówka"
  2243. #: scripts/Dpkg/Changelog/Debian.pm
  2244. #, perl-format
  2245. msgid "found trailer where expected %s"
  2246. msgstr "oczekiwano %s, a znaleziono trailer"
  2247. #: scripts/Dpkg/Changelog/Debian.pm scripts/Dpkg/Changelog/Entry/Debian.pm
  2248. msgid "badly formatted trailer line"
  2249. msgstr "niepoprawny format linii stopki"
  2250. #: scripts/Dpkg/Changelog/Debian.pm
  2251. #, perl-format
  2252. msgid "found change data where expected %s"
  2253. msgstr "oczekiwano %s, a znaleziono datę zmian"
  2254. #: scripts/Dpkg/Changelog/Debian.pm
  2255. #, perl-format
  2256. msgid "found blank line where expected %s"
  2257. msgstr "oczekiwano %s, a znaleziono pustą linię"
  2258. #: scripts/Dpkg/Changelog/Debian.pm
  2259. msgid "unrecognized line"
  2260. msgstr "nierozpoznany wiersz"
  2261. #: scripts/Dpkg/Changelog/Debian.pm
  2262. #, fuzzy, perl-format
  2263. #| msgid "found eof where expected %s"
  2264. msgid "found end of file where expected %s"
  2265. msgstr "oczekiwano %s, a znaleziono koniec pliku"
  2266. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2267. #, perl-format
  2268. msgid "version '%s' is invalid: %s"
  2269. msgstr "wersja \"%s\" jest nieprawidłowa: %s"
  2270. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2271. #, perl-format
  2272. msgid "bad key-value after ';': '%s'"
  2273. msgstr "błędny klucz-wartość po \";\": \"%s\""
  2274. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2275. #, perl-format
  2276. msgid "repeated key-value %s"
  2277. msgstr "powtórzone klucz-wartość %s"
  2278. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2279. #, perl-format
  2280. msgid "badly formatted urgency value: %s"
  2281. msgstr "niepoprawnie sformatowana wartość pola ważności: %s"
  2282. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2283. #, perl-format
  2284. msgid "bad binary-only value: %s"
  2285. msgstr "nieprawidłowa wartość tylko binarna: %s"
  2286. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2287. #, perl-format
  2288. msgid "unknown key-value %s"
  2289. msgstr "nieznane klucz-wartość %s"
  2290. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2291. msgid "the header doesn't match the expected regex"
  2292. msgstr "nagłówek nie pasuje do oczekiwanego wyrażenia regularnego"
  2293. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2294. #, perl-format
  2295. msgid "ignoring invalid week day '%s'"
  2296. msgstr ""
  2297. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2298. #, perl-format
  2299. msgid "uses full instead of abbreviated month name '%s'"
  2300. msgstr ""
  2301. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2302. #, fuzzy, perl-format
  2303. #| msgid "invalid flag in %s: %s"
  2304. msgid "invalid abbreviated month name '%s'"
  2305. msgstr "niepoprawna flaga w %s: %s"
  2306. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2307. #, fuzzy, perl-format
  2308. #| msgid "cannot exec format parser: %s"
  2309. msgid "cannot parse non-comformant date '%s'"
  2310. msgstr "nie można uruchomić parsera formatu: %s"
  2311. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2312. msgid "the trailer doesn't match the expected regex"
  2313. msgstr "trailer nie pasuje do oczekiwanego wyrażenia regularnego"
  2314. #: scripts/Dpkg/Changelog/Parse.pm
  2315. #, perl-format
  2316. msgid "cannot create pipe for %s"
  2317. msgstr "nie można utworzyć potoku dla %s"
  2318. #: scripts/Dpkg/Changelog/Parse.pm
  2319. #, perl-format
  2320. msgid "tail of %s"
  2321. msgstr "tail na %s"
  2322. #: scripts/Dpkg/Changelog/Parse.pm
  2323. #, fuzzy, perl-format
  2324. #| msgid "changelog format %s is unknown"
  2325. msgid "changelog format %s is unknown: %s"
  2326. msgstr "nieznany format %s pliku zmian"
  2327. #: scripts/Dpkg/Changelog/Parse.pm
  2328. #, perl-format
  2329. msgid "fatal error occurred while parsing %s"
  2330. msgstr "wystąpił fatalny błąd podczas przetwarzania %s"
  2331. #: scripts/Dpkg/Changelog/Parse.pm
  2332. #, fuzzy, perl-format
  2333. #| msgid "unknown option or argument %s"
  2334. msgid "unknown output format %s"
  2335. msgstr "niepoprawna opcja lub argument %s"
  2336. #: scripts/Dpkg/Checksums.pm
  2337. #, perl-format
  2338. msgid "cannot fstat file %s"
  2339. msgstr "nie można ustalić stanu (fstat) pliku %s"
  2340. #: scripts/Dpkg/Checksums.pm
  2341. #, perl-format
  2342. msgid "file %s has size %u instead of expected %u"
  2343. msgstr "plik %s ma rozmiar %u zamiast oczekiwanego %u"
  2344. #: scripts/Dpkg/Checksums.pm
  2345. #, perl-format
  2346. msgid "file %s has checksum %s instead of expected %s (algorithm %s)"
  2347. msgstr "plik %s ma sumę kontrolną %s zamiast oczekiwanej %s (algorytm %s)"
  2348. #: scripts/Dpkg/Checksums.pm
  2349. #, perl-format
  2350. msgid "invalid line in %s checksums string: %s"
  2351. msgstr "niepoprawne wiersz w %s łańuchu sum kontrolnych: %s"
  2352. #: scripts/Dpkg/Checksums.pm
  2353. #, perl-format
  2354. msgid "conflicting checksums '%s' and '%s' for file '%s'"
  2355. msgstr "konflikt sum kontrolnych pliku \"%s\" i \"%s\" pliku \"%s\""
  2356. #: scripts/Dpkg/Checksums.pm
  2357. #, perl-format
  2358. msgid "conflicting file sizes '%u' and '%u' for file '%s'"
  2359. msgstr "konflikt rozmiarów \"%u\" i \"%u\" pliku \"%s\""
  2360. #: scripts/Dpkg/Compression/Process.pm
  2361. #, perl-format
  2362. msgid "%s is not a supported compression method"
  2363. msgstr "%s nie jest obsługiwaną metodą kompresji"
  2364. #: scripts/Dpkg/Compression/Process.pm
  2365. msgid "Dpkg::Compression::Process can only start one subprocess at a time"
  2366. msgstr ""
  2367. "Dpkg::Compression::Process może jednocześnie uruchomić tylko jeden podproces"
  2368. #: scripts/Dpkg/Conf.pm
  2369. #, perl-format
  2370. msgid "short option not allowed in %s, line %d"
  2371. msgstr "krótka opcja nie jest dozwolona w %s, wiersz %d"
  2372. #: scripts/Dpkg/Conf.pm
  2373. #, perl-format
  2374. msgid "invalid syntax for option in %s, line %d"
  2375. msgstr "błąd składni do opcji w %s, wiersz %d"
  2376. #: scripts/Dpkg/Control.pm
  2377. msgid "general section of control info file"
  2378. msgstr "sekcja ogólna pliku z informacjami kontrolnymi"
  2379. #: scripts/Dpkg/Control.pm
  2380. msgid "package's section of control info file"
  2381. msgstr "sekcja pakietu pliku z informacjami kontrolnymi"
  2382. #: scripts/Dpkg/Control.pm
  2383. msgid "parsed version of changelog"
  2384. msgstr "przetworzona wersja pliku zmian"
  2385. #: scripts/Dpkg/Control.pm
  2386. msgid "header stanza of copyright file"
  2387. msgstr ""
  2388. #: scripts/Dpkg/Control.pm
  2389. msgid "files stanza of copyright file"
  2390. msgstr ""
  2391. #: scripts/Dpkg/Control.pm
  2392. msgid "license stanza of copyright file"
  2393. msgstr ""
  2394. #: scripts/Dpkg/Control.pm
  2395. #, fuzzy
  2396. #| msgid "package's section of control info file"
  2397. msgid "package's tests control file"
  2398. msgstr "sekcja pakietu pliku z informacjami kontrolnymi"
  2399. #: scripts/Dpkg/Control.pm
  2400. #, fuzzy, perl-format
  2401. #| msgid "entry in repository's %s file"
  2402. msgid "repository's %s file"
  2403. msgstr "wpis w pliku repozytorium %s"
  2404. #: scripts/Dpkg/Control.pm
  2405. #, perl-format
  2406. msgid "entry in repository's %s file"
  2407. msgstr "wpis w pliku repozytorium %s"
  2408. #: scripts/Dpkg/Control.pm
  2409. #, perl-format
  2410. msgid "%s file"
  2411. msgstr "plik %s"
  2412. #: scripts/Dpkg/Control.pm
  2413. msgid "control info of a .deb package"
  2414. msgstr "informacje kontrolne pakietu .deb"
  2415. #: scripts/Dpkg/Control.pm
  2416. #, fuzzy
  2417. #| msgid "control information"
  2418. msgid "build information file"
  2419. msgstr "informacje kontrolne"
  2420. #: scripts/Dpkg/Control.pm
  2421. msgid "vendor file"
  2422. msgstr "plik dostawcy"
  2423. #: scripts/Dpkg/Control.pm
  2424. msgid "entry in dpkg's status file"
  2425. msgstr "wpis w pliku statusu dpkg"
  2426. #: scripts/Dpkg/Control/FieldsCore.pm
  2427. #, perl-format
  2428. msgid "unknown information field '%s' in input data in %s"
  2429. msgstr "nieznane pole informacyjne \"%s\" w danych wejściowych %s"
  2430. #: scripts/Dpkg/Control/FieldsCore.pm
  2431. msgid "control information"
  2432. msgstr "informacje kontrolne"
  2433. #: scripts/Dpkg/Control/HashCore.pm
  2434. #, perl-format
  2435. msgid "syntax error in %s at line %d: %s"
  2436. msgstr "błąd składni w %s w linii %d: %s"
  2437. #: scripts/Dpkg/Control/HashCore.pm
  2438. msgid "field cannot start with a hyphen"
  2439. msgstr "pole nie może zaczynać się myślnikiem"
  2440. #: scripts/Dpkg/Control/HashCore.pm
  2441. #, perl-format
  2442. msgid "duplicate field %s found"
  2443. msgstr "znaleziono powtórzone pole w %s"
  2444. #: scripts/Dpkg/Control/HashCore.pm
  2445. msgid "continued value line not in field"
  2446. msgstr "linia kontynuowanej wartości nie należy do pola"
  2447. #: scripts/Dpkg/Control/HashCore.pm
  2448. msgid "OpenPGP signature not allowed here"
  2449. msgstr "sygnatura OpenPGP nie może występować w tym miejscu"
  2450. #: scripts/Dpkg/Control/HashCore.pm
  2451. #, fuzzy
  2452. #| msgid "expected OpenPGP signature, found EOF after blank line"
  2453. msgid "expected OpenPGP signature, found end of file after blank line"
  2454. msgstr "po pustej linii oczekiwano sygnatury OpenPGP, a napotkano koniec pliku"
  2455. #: scripts/Dpkg/Control/HashCore.pm
  2456. #, perl-format
  2457. msgid "expected OpenPGP signature, found something else '%s'"
  2458. msgstr "oczekiwano sygnatury OpenPGP, a napotkano coś innego \"%s\""
  2459. #: scripts/Dpkg/Control/HashCore.pm
  2460. msgid "unfinished OpenPGP signature"
  2461. msgstr "niezakończona sygnatura OpenPGP"
  2462. #: scripts/Dpkg/Control/HashCore.pm
  2463. msgid "line with unknown format (not field-colon-value)"
  2464. msgstr "nieznany format linii (oczekiwano: pole-dwukropek-wartość)"
  2465. #: scripts/Dpkg/Control/HashCore.pm
  2466. msgid "write error on control data"
  2467. msgstr "błąd zapisu danych kontrolnych"
  2468. #: scripts/Dpkg/Control/Info.pm
  2469. #, fuzzy
  2470. #| msgid "first block lacks a source field"
  2471. msgid "first block lacks a Source field"
  2472. msgstr "pierwszy blok nie zawiera pola Source"
  2473. #: scripts/Dpkg/Control/Info.pm
  2474. #, perl-format
  2475. msgid "block lacks the '%s' field"
  2476. msgstr "blok nie zawiera pola \"%s\""
  2477. #: scripts/Dpkg/Deps.pm
  2478. #, perl-format
  2479. msgid "can't parse dependency %s"
  2480. msgstr "nie można przetworzyć zależności %s"
  2481. #: scripts/Dpkg/Deps.pm
  2482. msgid "an union dependency can only contain simple dependencies"
  2483. msgstr "suma zależności może zawierać jedynie proste zależności"
  2484. #: scripts/Dpkg/Dist/Files.pm
  2485. #, fuzzy, perl-format
  2486. #| msgid "badly formed line in files list file, line %d"
  2487. msgid "badly formed package name in files list file, line %d"
  2488. msgstr "niepoprawna linia w pliku z listą plików w linii %d"
  2489. #: scripts/Dpkg/Dist/Files.pm
  2490. #, perl-format
  2491. msgid "badly formed line in files list file, line %d"
  2492. msgstr "niepoprawna linia w pliku z listą plików w linii %d"
  2493. #: scripts/Dpkg/Dist/Files.pm
  2494. #, perl-format
  2495. msgid "duplicate files list entry for file %s (line %d)"
  2496. msgstr "zduplikowany wpis o pliku %s w liście plików (linia %d)"
  2497. #: scripts/Dpkg/Dist/Files.pm
  2498. #, fuzzy, perl-format
  2499. #| msgid "cannot create directory %s"
  2500. msgid "cannot open directory %s"
  2501. msgstr "nie można utworzyć katalogu %s"
  2502. #: scripts/Dpkg/Dist/Files.pm
  2503. #, fuzzy, perl-format
  2504. #| msgid "invalid flag in %s: %s"
  2505. msgid "invalid filename %s"
  2506. msgstr "niepoprawna flaga w %s: %s"
  2507. #: scripts/Dpkg/ErrorHandling.pm
  2508. msgid "info"
  2509. msgstr "info"
  2510. #: scripts/Dpkg/ErrorHandling.pm
  2511. msgid "notice"
  2512. msgstr ""
  2513. #: scripts/Dpkg/ErrorHandling.pm
  2514. msgid "warning"
  2515. msgstr "ostrzeżenie"
  2516. #: scripts/Dpkg/ErrorHandling.pm
  2517. msgid "error"
  2518. msgstr "błąd"
  2519. #: scripts/Dpkg/ErrorHandling.pm
  2520. #, perl-format
  2521. msgid "%s gave error exit status %s"
  2522. msgstr "%s zwrócił status błędu %s"
  2523. #: scripts/Dpkg/ErrorHandling.pm
  2524. #, perl-format
  2525. msgid "%s died from signal %s"
  2526. msgstr "%s zakończony z powodu sygnału %s"
  2527. #: scripts/Dpkg/ErrorHandling.pm
  2528. #, perl-format
  2529. msgid "%s failed with unknown exit code %d"
  2530. msgstr "%s zwrócił nieznany kod błędu %d"
  2531. #: scripts/Dpkg/ErrorHandling.pm
  2532. msgid "Use --help for program usage information."
  2533. msgstr "Użyj --help dla uzyskania informacji o użyciu programu"
  2534. #: scripts/Dpkg/File.pm
  2535. msgid "File::FcntlLock not available; using flock which is not NFS-safe"
  2536. msgstr ""
  2537. "File::FcntlLock niedostępny - użycie flock - nie jest bezpieczny dla NFS"
  2538. #: scripts/Dpkg/File.pm
  2539. #, perl-format
  2540. msgid "failed to get a write lock on %s"
  2541. msgstr "nie uzyskano blokady zapisu w %s"
  2542. #: scripts/Dpkg/IPC.pm
  2543. #, perl-format
  2544. msgid "pipe for %s"
  2545. msgstr "potok dla %s"
  2546. #: scripts/Dpkg/IPC.pm
  2547. #, perl-format
  2548. msgid "chdir to %s"
  2549. msgstr "zmiana katalogu na \"%s\""
  2550. #: scripts/Dpkg/IPC.pm
  2551. msgid "reopen stdin"
  2552. msgstr "ponowne otwieranie stdin"
  2553. #: scripts/Dpkg/IPC.pm
  2554. msgid "reopen stdout"
  2555. msgstr "ponowne otwieranie stdout"
  2556. #: scripts/Dpkg/IPC.pm
  2557. msgid "child process"
  2558. msgstr "proces potomny"
  2559. #: scripts/Dpkg/IPC.pm
  2560. #, perl-format
  2561. msgid "wait for %s"
  2562. msgstr "czekanie na %s"
  2563. #: scripts/Dpkg/IPC.pm
  2564. #, perl-format
  2565. msgid "%s didn't complete in %d second"
  2566. msgid_plural "%s didn't complete in %d seconds"
  2567. msgstr[0] "%s nie zakończył się w %d sekundę"
  2568. msgstr[1] "%s nie zakończył się w %d sekundy"
  2569. msgstr[2] "%s nie zakończył się w %d sekund"
  2570. #: scripts/Dpkg/Interface/Storable.pm
  2571. msgid "<standard input>"
  2572. msgstr "<standardowe wejście>"
  2573. #: scripts/Dpkg/Package.pm
  2574. msgid "may not be empty string"
  2575. msgstr "nie może być łańcuchem pustym"
  2576. #: scripts/Dpkg/Package.pm
  2577. #, perl-format
  2578. msgid "character '%s' not allowed"
  2579. msgstr "znak \"%s\" nie jest dozwolony"
  2580. #: scripts/Dpkg/Package.pm
  2581. msgid "must start with an alphanumeric character"
  2582. msgstr "musi zaczynać się literą lub cyfrą"
  2583. #: scripts/Dpkg/Shlibs/Objdump.pm
  2584. #, perl-format
  2585. msgid "couldn't parse dynamic relocation record: %s"
  2586. msgstr "nie można przetworzyć rekordu dynamicznej relokacji: %s"
  2587. #: scripts/Dpkg/Shlibs/Objdump.pm
  2588. #, perl-format
  2589. msgid "couldn't parse dynamic symbol definition: %s"
  2590. msgstr "nie można przetworzyć definicji symboli dynamicznych: %s"
  2591. #: scripts/Dpkg/Shlibs/Symbol.pm
  2592. #, perl-format
  2593. msgid "symbol name unspecified: %s"
  2594. msgstr "nieokreślona nazwa symbolu: %s"
  2595. #: scripts/Dpkg/Shlibs/Symbol.pm
  2596. #, perl-format
  2597. msgid "you can't use symver tag to catch unversioned symbols: %s"
  2598. msgstr ""
  2599. "nie można używać tagu symver, aby przechwycić niewersjonowane symbole: %s"
  2600. #: scripts/Dpkg/Shlibs/SymbolFile.pm
  2601. #, perl-format
  2602. msgid "symbol information must be preceded by a header (file %s, line %s)"
  2603. msgstr ""
  2604. "informacje o symbolach muszą być poprzedzone nagłówkiem (plik %s, wiersz %s)"
  2605. #: scripts/Dpkg/Shlibs/SymbolFile.pm
  2606. #, perl-format
  2607. msgid "failed to parse line in %s: %s"
  2608. msgstr "błąd przetwarzania linii w %s: %s"
  2609. #: scripts/Dpkg/Shlibs/SymbolFile.pm
  2610. #, perl-format
  2611. msgid "failed to parse a line in %s: %s"
  2612. msgstr "błąd przetwarzania linii w %s: %s"
  2613. #: scripts/Dpkg/Shlibs/SymbolFile.pm
  2614. #, perl-format
  2615. msgid "tried to merge the same object (%s) twice in a symfile"
  2616. msgstr "próba dwukrotnego połączenia tego samego obiektu (%s) w pliku symboli"
  2617. #: scripts/Dpkg/Shlibs/SymbolFile.pm
  2618. msgid "cannot merge symbols from objects without SONAME"
  2619. msgstr "nie można połączyć symboli z obiektu bez SONAME"
  2620. #: scripts/Dpkg/Source/Archive.pm
  2621. msgid "write on tar input"
  2622. msgstr "zapisywanie na wejściu tar"
  2623. #: scripts/Dpkg/Source/Archive.pm
  2624. msgid "close on tar input"
  2625. msgstr "zamykanie wejścia tar"
  2626. #: scripts/Dpkg/Source/Archive.pm scripts/Dpkg/Source/Patch.pm
  2627. #, perl-format
  2628. msgid "cannot create directory %s"
  2629. msgstr "nie można utworzyć katalogu %s"
  2630. #: scripts/Dpkg/Source/Archive.pm scripts/Dpkg/Source/Package.pm
  2631. #: scripts/Dpkg/Source/Package/V2.pm
  2632. #, perl-format
  2633. msgid "cannot opendir %s"
  2634. msgstr "nie można otworzyć katalogu %s"
  2635. #: scripts/Dpkg/Source/Archive.pm
  2636. #, perl-format
  2637. msgid "unable to rename %s to %s"
  2638. msgstr "nie można zmienić nazwy %s na %s"
  2639. #: scripts/Dpkg/Source/Functions.pm
  2640. #, perl-format
  2641. msgid "cannot stat directory %s (before removal)"
  2642. msgstr "nie można ustalić stanu katalogu %s (przed usunięciem)"
  2643. #: scripts/Dpkg/Source/Functions.pm
  2644. #, fuzzy, perl-format
  2645. #| msgid "unable to check for removal of dir `%s'"
  2646. msgid "unable to check for removal of directory '%s'"
  2647. msgstr "nie można sprawdzić, czy usunąć katalog \"%s\""
  2648. #: scripts/Dpkg/Source/Functions.pm
  2649. #, perl-format
  2650. msgid "rm -rf failed to remove '%s'"
  2651. msgstr "niepowodzenie rm -rf podczas usuwania \"%s\""
  2652. #: scripts/Dpkg/Source/Functions.pm scripts/Dpkg/Source/Patch.pm
  2653. #, perl-format
  2654. msgid "cannot change timestamp for %s"
  2655. msgstr "nie można zmienić czasu modyfikacji dla %s"
  2656. #: scripts/Dpkg/Source/Functions.pm
  2657. #, perl-format
  2658. msgid "cannot read timestamp from %s"
  2659. msgstr "nie można odczytać czasu modyfikacji z %s"
  2660. #: scripts/Dpkg/Source/Package.pm
  2661. #, perl-format
  2662. msgid "%s is not the name of a file"
  2663. msgstr "%s nie jest nazwą pliku"
  2664. #: scripts/Dpkg/Source/Package.pm
  2665. #, perl-format
  2666. msgid "missing critical source control field %s"
  2667. msgstr "brak krytycznego źródłowego pola kontrolnego %s "
  2668. #: scripts/Dpkg/Source/Package.pm
  2669. #, perl-format
  2670. msgid "source package format '%s' is not supported: %s"
  2671. msgstr "format \"%s\" pakietu źródłowego nie jest obsługiwany: %s"
  2672. #: scripts/Dpkg/Source/Package.pm
  2673. msgid "format variant must be in lowercase"
  2674. msgstr "wariant formatu musi być zapisany małymi literami"
  2675. #: scripts/Dpkg/Source/Package.pm
  2676. #, perl-format
  2677. msgid "invalid Format field '%s'"
  2678. msgstr "niepoprawne pole Format \"%s\""
  2679. #: scripts/Dpkg/Source/Package.pm
  2680. msgid "source package uses only weak checksums"
  2681. msgstr ""
  2682. #: scripts/Dpkg/Source/Package.pm
  2683. #, fuzzy, perl-format
  2684. #| msgid "source and version are required to compute the source basename"
  2685. msgid "%s and %s fields are required to compute the source basename"
  2686. msgstr "źródło i wersja są wymagane do określenia nazwy bazowej źródeł"
  2687. #: scripts/Dpkg/Source/Package.pm
  2688. #, perl-format
  2689. msgid "failed to verify signature on %s"
  2690. msgstr "błąd weryfikowania sygnatury w %s"
  2691. #: scripts/Dpkg/Source/Package.pm
  2692. #, fuzzy, perl-format
  2693. #| msgid "could not verify signature on %s since gpg isn't installed"
  2694. msgid "cannot verify signature on %s since GnuPG is not installed"
  2695. msgstr "nie można zweryfikować sygnatury w %s, ponieważ nie zainstalowano gpg"
  2696. #: scripts/Dpkg/Source/Package.pm
  2697. #, perl-format
  2698. msgid "%s is not a valid option for %s"
  2699. msgstr "%s nie jest prawidłową opcją dla %s"
  2700. #: scripts/Dpkg/Source/Package.pm
  2701. #, perl-format
  2702. msgid "%s does not exist"
  2703. msgstr "%s nie istnieje"
  2704. #: scripts/Dpkg/Source/Package.pm
  2705. #, perl-format
  2706. msgid "cannot make %s executable"
  2707. msgstr "nie można uczynić %s plikiem wykonywalnym"
  2708. #: scripts/Dpkg/Source/Package.pm
  2709. #, perl-format
  2710. msgid "%s is not a plain file"
  2711. msgstr " %s nie jest zwykłym plikiem"
  2712. #: scripts/Dpkg/Source/Package.pm
  2713. #, perl-format
  2714. msgid "'%s' is not supported by the source format '%s'"
  2715. msgstr "\"%s\" nie obsługiwane przez format źródeł \"%s\""
  2716. #: scripts/Dpkg/Source/Package/V1.pm
  2717. #, fuzzy
  2718. #| msgid "write original source message"
  2719. msgid "auto select original source"
  2720. msgstr "wypisywanie oryginalnego komunikatu źródłowego"
  2721. #: scripts/Dpkg/Source/Package/V1.pm
  2722. #, fuzzy
  2723. #| msgid "full upload (original source is included)"
  2724. msgid "use packed original source (unpack and keep)"
  2725. msgstr "pełne wydanie (oryginalne źródła dołączone)"
  2726. #: scripts/Dpkg/Source/Package/V1.pm
  2727. #, fuzzy
  2728. #| msgid "full upload (original source is included)"
  2729. msgid "use packed original source (unpack and remove)"
  2730. msgstr "pełne wydanie (oryginalne źródła dołączone)"
  2731. #: scripts/Dpkg/Source/Package/V1.pm
  2732. #, fuzzy
  2733. #| msgid "full upload (original source is included)"
  2734. msgid "use unpacked original source (pack and keep)"
  2735. msgstr "pełne wydanie (oryginalne źródła dołączone)"
  2736. #: scripts/Dpkg/Source/Package/V1.pm
  2737. #, fuzzy
  2738. #| msgid "full upload (original source is included)"
  2739. msgid "use unpacked original source (pack and remove)"
  2740. msgstr "pełne wydanie (oryginalne źródła dołączone)"
  2741. #: scripts/Dpkg/Source/Package/V1.pm
  2742. #, fuzzy
  2743. #| msgid "write original source message"
  2744. msgid "trust packed and unpacked original sources are same"
  2745. msgstr "wypisywanie oryginalnego komunikatu źródłowego"
  2746. #: scripts/Dpkg/Source/Package/V1.pm
  2747. msgid "there is no diff, do main tarfile only"
  2748. msgstr ""
  2749. #: scripts/Dpkg/Source/Package/V1.pm
  2750. msgid "like -sa, -sk, -sp, -su, -sr but may overwrite"
  2751. msgstr ""
  2752. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  2753. msgid "abort if generated diff has upstream files changes"
  2754. msgstr ""
  2755. #: scripts/Dpkg/Source/Package/V1.pm
  2756. msgid "leave original source packed in current directory"
  2757. msgstr ""
  2758. #: scripts/Dpkg/Source/Package/V1.pm
  2759. msgid "do not copy original source to current directory"
  2760. msgstr ""
  2761. #: scripts/Dpkg/Source/Package/V1.pm
  2762. #, fuzzy
  2763. #| msgid "write original source message"
  2764. msgid "unpack original source tree too"
  2765. msgstr "wypisywanie oryginalnego komunikatu źródłowego"
  2766. #: scripts/Dpkg/Source/Package/V1.pm
  2767. msgid "do not apply debian diff to upstream sources"
  2768. msgstr ""
  2769. #: scripts/Dpkg/Source/Package/V1.pm
  2770. #, perl-format
  2771. msgid "-s%s option overrides earlier -s%s option"
  2772. msgstr "opcja -s%s nadpisuje wcześniejszą opcję -s%s"
  2773. #: scripts/Dpkg/Source/Package/V1.pm
  2774. #, perl-format
  2775. msgid "source handling style -s%s not allowed with -x"
  2776. msgstr "opcja przetwarzania źródeł -s%s nie jest dopuszczalna z -x"
  2777. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V3/Native.pm
  2778. msgid "multiple tarfiles in v1.0 source package"
  2779. msgstr "wiele archiwów tar w pakiecie źródłowym wersji 1.0"
  2780. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  2781. #, perl-format
  2782. msgid "unrecognized file for a %s source package: %s"
  2783. msgstr "nierozpoznany plik w pakiecie źródłowym %s: %s"
  2784. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V3/Native.pm
  2785. msgid "no tarfile in Files field"
  2786. msgstr "pole Files nie zawiera nazwy archiwum tar"
  2787. #: scripts/Dpkg/Source/Package/V1.pm
  2788. msgid "native package with .orig.tar"
  2789. msgstr "pakiet natywny z rozszerzeniem .orig.tar"
  2790. #: scripts/Dpkg/Source/Package/V1.pm
  2791. #, perl-format
  2792. msgid "unable to rename '%s' to '%s'"
  2793. msgstr "nie można zmienić nazwy \"%s\" na \"%s\""
  2794. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  2795. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  2796. #: scripts/Dpkg/Source/Package/V3/Native.pm
  2797. #, perl-format
  2798. msgid "unpacking %s"
  2799. msgstr "rozpakowywanie %s"
  2800. #: scripts/Dpkg/Source/Package/V1.pm
  2801. msgid "unable to keep orig directory (already exists)"
  2802. msgstr "nie można zachować oryginalnego katalogu (już istnieje)"
  2803. #: scripts/Dpkg/Source/Package/V1.pm
  2804. #, perl-format
  2805. msgid "failed to rename newly-extracted %s to %s"
  2806. msgstr "nie można zmienić nowo wypakowanego %s na %s"
  2807. #: scripts/Dpkg/Source/Package/V1.pm
  2808. #, perl-format
  2809. msgid "failed to rename saved %s to %s"
  2810. msgstr "nie można zmienić nazwy zachowanego %s na %s"
  2811. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  2812. #: scripts/Dpkg/Source/Quilt.pm
  2813. #, perl-format
  2814. msgid "applying %s"
  2815. msgstr "aplikowanie %s"
  2816. #: scripts/Dpkg/Source/Package/V1.pm
  2817. #, perl-format
  2818. msgid "upstream files that have been modified: %s"
  2819. msgstr "pliki projektu macierzystego, które zostały zmodyfikowane: %s"
  2820. #: scripts/Dpkg/Source/Package/V1.pm
  2821. msgid "only supports gzip compression"
  2822. msgstr "obsługuje tylko kompresję gzip"
  2823. #: scripts/Dpkg/Source/Package/V1.pm
  2824. msgid ""
  2825. "-b takes at most a directory and an orig source argument (with v1.0 source "
  2826. "package)"
  2827. msgstr ""
  2828. "-b pobiera co najwyżej dwa argumenty: katalog i oryginalne źródła (z wersją "
  2829. "1.0 pakietu źródłowego)"
  2830. #: scripts/Dpkg/Source/Package/V1.pm
  2831. #, perl-format
  2832. msgid "source handling style -s%s not allowed with -b"
  2833. msgstr "nie można łączyć -s%s, odnoszącej się do obsługi źródeł, z -b"
  2834. #: scripts/Dpkg/Source/Package/V1.pm
  2835. #, perl-format
  2836. msgid "packed orig '%s' exists but is not a plain file"
  2837. msgstr "spakowany oryg. \"%s\" istnieje, ale nie jest zwykłym plikiem"
  2838. #: scripts/Dpkg/Source/Package/V1.pm
  2839. #, perl-format
  2840. msgid "cannot stat orig argument %s"
  2841. msgstr "nie można ustalić stanu dla argumentu orig %s"
  2842. #: scripts/Dpkg/Source/Package/V1.pm
  2843. #, perl-format
  2844. msgid ""
  2845. "orig argument is unpacked but source handling style -s%s calls for packed (."
  2846. "orig.tar.<ext>)"
  2847. msgstr ""
  2848. "argument orig jest niespakowany, ale opcja przetwarzania źródeł -s%s "
  2849. "oczekuje spakowanego (.orig.tar.<rozszerzenie>)"
  2850. #: scripts/Dpkg/Source/Package/V1.pm
  2851. #, perl-format
  2852. msgid ""
  2853. "orig argument is packed but source handling style -s%s calls for unpacked (."
  2854. "orig/)"
  2855. msgstr ""
  2856. "argument orig jest spakowany, ale opcja przetwarzania źródeł -s%s oczekuje "
  2857. "niespakowanego (.orig/)"
  2858. #: scripts/Dpkg/Source/Package/V1.pm
  2859. #, perl-format
  2860. msgid "orig argument %s is not a plain file or directory"
  2861. msgstr "argument oryg %s nie jest zwykłym plikiem ani katalogiem"
  2862. #: scripts/Dpkg/Source/Package/V1.pm
  2863. #, perl-format
  2864. msgid ""
  2865. "orig argument is empty (means no orig, no diff) but source handling style -s"
  2866. "%s wants something"
  2867. msgstr ""
  2868. "argument orig jest pusty (brak orig i różnic), ale opcja przetwarzania "
  2869. "źródeł -s%s oczekuje jakiegoś"
  2870. #: scripts/Dpkg/Source/Package/V1.pm
  2871. #, perl-format
  2872. msgid "unpacked orig '%s' exists but is not a directory"
  2873. msgstr "rozpakowany oryg. \"%s\" istnieje, ale nie jest katalogiem"
  2874. #: scripts/Dpkg/Source/Package/V1.pm
  2875. #, perl-format
  2876. msgid "unable to stat putative unpacked orig '%s'"
  2877. msgstr "nie można ustalić stanu domniemanego rozpakowanego oryginalnego \"%s\""
  2878. #: scripts/Dpkg/Source/Package/V1.pm
  2879. #, perl-format
  2880. msgid "source directory '%s' is not <sourcepackage>-<upstreamversion> '%s'"
  2881. msgstr "katalog źródłowy \"%s\" nie jest w postaci <pakiet_źródłowy> \"%s\""
  2882. #: scripts/Dpkg/Source/Package/V1.pm
  2883. #, perl-format
  2884. msgid ".orig directory name %s is not <package>-<upstreamversion> (wanted %s)"
  2885. msgstr ""
  2886. "nazwa katalogu .orig %s nie jest w postaci <pakiet>-<wersja_główna> "
  2887. "(oczekiwano %s)"
  2888. #: scripts/Dpkg/Source/Package/V1.pm
  2889. #, perl-format
  2890. msgid ""
  2891. ".orig.tar name %s is not <package>_<upstreamversion>.orig.tar (wanted %s)"
  2892. msgstr ""
  2893. "nazwa pliku .orig.tar %s nie jest w postaci <pakiet>-<wersja_główna>.orig."
  2894. "tar. (oczekiwano %s)"
  2895. #: scripts/Dpkg/Source/Package/V1.pm
  2896. #, perl-format
  2897. msgid ""
  2898. "tarfile '%s' already exists, not overwriting, giving up; use -sU or -sR to "
  2899. "override"
  2900. msgstr ""
  2901. "archiwum tar \"%s\" już istnieje, nie będzie nadpisane, rezygnacja - użyj -"
  2902. "sU lub -sR, aby nadpisać"
  2903. #: scripts/Dpkg/Source/Package/V1.pm
  2904. #, perl-format
  2905. msgid "unable to check for existence of '%s'"
  2906. msgstr "nie można sprawdzić istnienia \"%s\""
  2907. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V3/Native.pm
  2908. #, perl-format
  2909. msgid "unable to rename '%s' (newly created) to '%s'"
  2910. msgstr "nie można zmienić nazwy (nowo utworzonego) \"%s\" na \"%s\""
  2911. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  2912. #: scripts/Dpkg/Source/Package/V3/Native.pm
  2913. #: scripts/Dpkg/Source/Package/V3/Quilt.pm scripts/Dpkg/Source/Quilt.pm
  2914. #, perl-format
  2915. msgid "unable to change permission of '%s'"
  2916. msgstr "nie można zmienić praw dostępu \"%s\""
  2917. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  2918. #, perl-format
  2919. msgid "building %s using existing %s"
  2920. msgstr "budowanie %s, używając istniejącego %s"
  2921. #: scripts/Dpkg/Source/Package/V1.pm
  2922. #, fuzzy, perl-format
  2923. #| msgid ""
  2924. #| "orig dir `%s' already exists, not overwriting, giving up; use -sA, -sK or "
  2925. #| "-sP to override"
  2926. msgid ""
  2927. "orig directory '%s' already exists, not overwriting, giving up; use -sA, -sK "
  2928. "or -sP to override"
  2929. msgstr ""
  2930. "oryg. katalog \"%s\" już istnieje, nie będzie nadpisany, rezygnacja - użyj -"
  2931. "sA, -sK lub -sP, aby nadpisać"
  2932. #: scripts/Dpkg/Source/Package/V1.pm
  2933. #, fuzzy, perl-format
  2934. #| msgid "unable to check for existence of orig dir `%s'"
  2935. msgid "unable to check for existence of orig directory '%s'"
  2936. msgstr "nie można sprawdzić istnienia katalogu orig \"%s\""
  2937. #: scripts/Dpkg/Source/Package/V1.pm
  2938. #, perl-format
  2939. msgid "the diff modifies the following upstream files: %s"
  2940. msgstr "łatka modyfikuje następujące pliki macierzyste: %s"
  2941. #: scripts/Dpkg/Source/Package/V1.pm
  2942. msgid ""
  2943. "use the '3.0 (quilt)' format to have separate and documented changes to "
  2944. "upstream files, see dpkg-source(1)"
  2945. msgstr ""
  2946. "proszę użyć formatu \"3.0 (quilt)\", aby otrzymać oddzielne i udokumentowane "
  2947. "zmiany w stosunku do plików macierzystych, patrz dpkg-source(1)"
  2948. #: scripts/Dpkg/Source/Package/V1.pm
  2949. msgid "aborting due to --abort-on-upstream-changes"
  2950. msgstr "przerywanie ze względu na --abort-on-upstream-changes"
  2951. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  2952. msgid "unrepresentable changes to source"
  2953. msgstr "niereprezentowalne zmiany w źródle"
  2954. #: scripts/Dpkg/Source/Package/V2.pm
  2955. msgid "include removed files in the patch"
  2956. msgstr ""
  2957. #: scripts/Dpkg/Source/Package/V2.pm
  2958. msgid "include timestamp in the patch"
  2959. msgstr ""
  2960. #: scripts/Dpkg/Source/Package/V2.pm
  2961. msgid "include binary files in the tarball"
  2962. msgstr ""
  2963. #: scripts/Dpkg/Source/Package/V2.pm
  2964. #, fuzzy
  2965. #| msgid "fuzz is not allowed when applying patches"
  2966. msgid "do not prepare build tree by applying patches"
  2967. msgstr "przesunięcie nie jest dozwolone w trakcie nakładania łatek"
  2968. #: scripts/Dpkg/Source/Package/V2.pm
  2969. msgid "do not unapply patches if previously applied"
  2970. msgstr ""
  2971. #: scripts/Dpkg/Source/Package/V2.pm
  2972. msgid "unapply patches if previously applied (default)"
  2973. msgstr ""
  2974. #: scripts/Dpkg/Source/Package/V2.pm
  2975. msgid "create an empty original tarball if missing"
  2976. msgstr ""
  2977. #: scripts/Dpkg/Source/Package/V2.pm
  2978. msgid "record generated patches, instead of aborting"
  2979. msgstr ""
  2980. #: scripts/Dpkg/Source/Package/V2.pm
  2981. msgid "do not extract debian tarball into upstream sources"
  2982. msgstr ""
  2983. #: scripts/Dpkg/Source/Package/V2.pm
  2984. msgid "do not apply patches at the end of the extraction"
  2985. msgstr ""
  2986. #: scripts/Dpkg/Source/Package/V2.pm
  2987. #, perl-format
  2988. msgid "duplicate files in %s source package: %s"
  2989. msgstr "zduplikowane pliki w pakiecie źródłowym %s: %s"
  2990. #: scripts/Dpkg/Source/Package/V2.pm
  2991. msgid "missing orig.tar or debian.tar file in v2.0 source package"
  2992. msgstr ""
  2993. "brakujący plik orig.tar lub debian.tar dla wersji 2.0 pakietu źródłowego"
  2994. #: scripts/Dpkg/Source/Package/V2.pm
  2995. #, perl-format
  2996. msgid "mismatched orig.tar %s for signature %s in source package"
  2997. msgstr "niedopasowany plik orig.tar %s dla sygnatury %s w pliku źródłowym"
  2998. #: scripts/Dpkg/Source/Package/V2.pm
  2999. #, perl-format
  3000. msgid "missing addon orig.tar for signature %s in source package"
  3001. msgstr "brakujący dodatek orig.tar dla sygnatury %s w pliku źródłowym"
  3002. #: scripts/Dpkg/Source/Package/V2.pm
  3003. #, perl-format
  3004. msgid "mismatched addon orig.tar %s for signature %s in source package"
  3005. msgstr "niedopasowany dodatek orig.tar %s dla sygnatury %s w pliku źródłowym"
  3006. #: scripts/Dpkg/Source/Package/V2.pm
  3007. #, perl-format
  3008. msgid "required removal of '%s' installed by original tarball"
  3009. msgstr ""
  3010. "wymagane usunięcie \"%s\" zainstalowanego przez oryginalne archiwum tar"
  3011. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Quilt.pm
  3012. #, perl-format
  3013. msgid "unapplying %s"
  3014. msgstr "cofanie %s"
  3015. #: scripts/Dpkg/Source/Package/V2.pm
  3016. #, perl-format
  3017. msgid "no upstream tarball found at %s"
  3018. msgstr "nie znaleziono archiwum macierzystego w %s"
  3019. #: scripts/Dpkg/Source/Package/V2.pm
  3020. msgid "patches are not applied, applying them now"
  3021. msgstr "łatki nie zostały nałożone, nakładanie ich teraz"
  3022. #: scripts/Dpkg/Source/Package/V2.pm
  3023. #, perl-format
  3024. msgid "several orig.tar files found (%s and %s) but only one is allowed"
  3025. msgstr ""
  3026. "znaleziono kilka plików orig.tar (%s i %s), a dozwolony jest tylko jeden"
  3027. #: scripts/Dpkg/Source/Package/V2.pm
  3028. msgid "copy of the debian directory"
  3029. msgstr "kopia katalogu debian"
  3030. #: scripts/Dpkg/Source/Package/V2.pm
  3031. msgid "local changes detected, the modified files are:"
  3032. msgstr "wykryto lokalne zmiany, zmodyfikowane pliki to:"
  3033. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Package/V3/Bzr.pm
  3034. #: scripts/Dpkg/Source/Package/V3/Native.pm
  3035. #, perl-format
  3036. msgid "-b takes only one parameter with format '%s'"
  3037. msgstr "-b przyjmuje tylko jeden parametr w formacie \"%s\""
  3038. #: scripts/Dpkg/Source/Package/V2.pm
  3039. #, perl-format
  3040. msgid "unwanted binary file: %s"
  3041. msgstr "niechciany plik binarny: %s"
  3042. #: scripts/Dpkg/Source/Package/V2.pm
  3043. #, perl-format
  3044. msgid ""
  3045. "detected %d unwanted binary file (add it in debian/source/include-binaries "
  3046. "to allow its inclusion)."
  3047. msgid_plural ""
  3048. "detected %d unwanted binary files (add them in debian/source/include-"
  3049. "binaries to allow their inclusion)."
  3050. msgstr[0] ""
  3051. "wykryto %d niechciany plik binarny (należy go wymienić w debian/source/"
  3052. "include-binaries, aby umożliwić jego włączenie)."
  3053. msgstr[1] ""
  3054. "wykryto %d niechciane pliki binarne (należy je wymienić w debian/source/"
  3055. "include-binaries, aby umożliwić ich włączenie)."
  3056. msgstr[2] ""
  3057. "wykryto %d niechcianych plików binarnych (należy je wymienić w debian/source/"
  3058. "include-binaries, aby umożliwić ich włączenie)."
  3059. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Patch.pm
  3060. #, perl-format
  3061. msgid "cannot represent change to %s: %s"
  3062. msgstr "niereprezentowalne zmiany w %s: %s"
  3063. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Patch.pm
  3064. msgid "binary file contents changed"
  3065. msgstr "zawartość pliku binarnego zmieniła się"
  3066. #: scripts/Dpkg/Source/Package/V2.pm
  3067. #, perl-format
  3068. msgid ""
  3069. "add %s in debian/source/include-binaries if you want to store the modified "
  3070. "binary in the debian tarball"
  3071. msgstr ""
  3072. "proszę dodać %s w debian/source/include-binaries jeśli zmodyfikowane binaria "
  3073. "mają się znaleźć w wynikowym archiwum Debiana"
  3074. #: scripts/Dpkg/Source/Package/V2.pm
  3075. #, perl-format
  3076. msgid "you can integrate the local changes with %s"
  3077. msgstr "lokalne zmiany można zintegrować za pomocą %s"
  3078. #: scripts/Dpkg/Source/Package/V2.pm
  3079. #, perl-format
  3080. msgid "aborting due to unexpected upstream changes, see %s"
  3081. msgstr "przerywanie, ze względu na nieoczekiwane zmiany macierzyste, patrz %s"
  3082. #: scripts/Dpkg/Source/Package/V2.pm
  3083. #, perl-format
  3084. msgid "local changes have been recorded in a new patch: %s"
  3085. msgstr "lokalne zmiany zostały zapisane w nowej łatce: %s"
  3086. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Package/V3/Quilt.pm
  3087. #, perl-format
  3088. msgid "cannot remove %s"
  3089. msgstr "nie można usunąć %s"
  3090. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Package/V3/Quilt.pm
  3091. #: scripts/Dpkg/Source/Quilt.pm
  3092. #, perl-format
  3093. msgid "failed to copy %s to %s"
  3094. msgstr "nie udało się skopiować %s do %s"
  3095. #: scripts/Dpkg/Source/Package/V2.pm
  3096. #, perl-format
  3097. msgid "cannot register changes in %s, this patch already exists"
  3098. msgstr "nie można zarejestrować zmian w %s, ta łatka już istnieje"
  3099. #: scripts/Dpkg/Source/Package/V2.pm
  3100. #, perl-format
  3101. msgid "patch file '%s' doesn't exist"
  3102. msgstr "łatka \"%s\" nie istnieje"
  3103. #: scripts/Dpkg/Source/Package/V2.pm
  3104. msgid "there are no local changes to record"
  3105. msgstr "nie ma zmian lokalnych do zapisania"
  3106. #: scripts/Dpkg/Source/Package/V2.pm
  3107. msgid "Enter the desired patch name: "
  3108. msgstr "Proszę wpisać żądaną nazwę łatki:"
  3109. #: scripts/Dpkg/Source/Package/V2.pm
  3110. msgid "no patch name given; cannot proceed"
  3111. msgstr ""
  3112. #: scripts/Dpkg/Source/Package/V2.pm
  3113. msgid "cannot find an editor"
  3114. msgstr "nie można odnaleźć edytora"
  3115. #: scripts/Dpkg/Source/Package/V2.pm
  3116. #, perl-format
  3117. msgid "adding %s to %s"
  3118. msgstr "dodawanie %s do %s"
  3119. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  3120. msgid "cannot unpack bzr-format source package because bzr is not in the PATH"
  3121. msgstr ""
  3122. "nie można rozpakować pakietu źródłowego w formacie bzr, ponieważ bzr nie "
  3123. "znajduje się w PATH"
  3124. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  3125. #, perl-format
  3126. msgid ""
  3127. "source directory is not the top directory of a bzr repository (%s/.bzr not "
  3128. "present), but Format bzr was specified"
  3129. msgstr ""
  3130. "katalog źródłowy nie jest głównym katalogiem repozytorium bzr (nie ma %s/."
  3131. "bzr), ale został wskazany Format bzr"
  3132. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  3133. #, perl-format
  3134. msgid "%s is a symlink"
  3135. msgstr "%s jest dowiązaniem symbolicznym"
  3136. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  3137. #, perl-format
  3138. msgid "%s is a symlink to outside %s"
  3139. msgstr "%s jest dowiązaniem symbolicznym do zewnętrznego %s"
  3140. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  3141. msgid "doesn't contain a bzr repository"
  3142. msgstr "nie zawiera repozytorium git"
  3143. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  3144. msgid "bzr status exited nonzero"
  3145. msgstr "bzr status zwrócił niezerowy kod błędu"
  3146. #: scripts/Dpkg/Source/Package/V3/Bzr.pm scripts/Dpkg/Source/Package/V3/Git.pm
  3147. #, perl-format
  3148. msgid "uncommitted, not-ignored changes in working directory: %s"
  3149. msgstr "niezatwierdzone, nie ignorowane zmiany w katalogu roboczym: %s"
  3150. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  3151. msgid "format v3.0 uses only one source file"
  3152. msgstr "format 3.0 używa tylko jednego pliku źródłowego"
  3153. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  3154. #, perl-format
  3155. msgid "expected %s, got %s"
  3156. msgstr "oczekiwano %s, otrzymano %s"
  3157. #: scripts/Dpkg/Source/Package/V3/Custom.pm
  3158. #, fuzzy
  3159. #| msgid "unrecognized file for a native source package: %s"
  3160. msgid "define the format of the generated source package"
  3161. msgstr "nierozpoznany plik dla natywnego pakietu źródłowego: %s"
  3162. #: scripts/Dpkg/Source/Package/V3/Custom.pm
  3163. msgid "Format '3.0 (custom)' is only used to create source packages"
  3164. msgstr ""
  3165. "Format \"3.0 (custom)\" jest używany jedynie do tworzenia pakietów źródłowych"
  3166. #: scripts/Dpkg/Source/Package/V3/Custom.pm
  3167. msgid "no files indicated on command line"
  3168. msgstr "nie podano plików w wywołaniu programu"
  3169. #: scripts/Dpkg/Source/Package/V3/Custom.pm
  3170. msgid "--target-format option is missing"
  3171. msgstr "nie podano opcji --target-format"
  3172. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3173. msgid "cannot unpack git-format source package because git is not in the PATH"
  3174. msgstr ""
  3175. "nie można rozpakować pakietu źródłowego w formacie git, ponieważ git nie "
  3176. "jest w PATH"
  3177. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3178. #, perl-format
  3179. msgid ""
  3180. "source directory is not the top directory of a git repository (%s/.git not "
  3181. "present), but Format git was specified"
  3182. msgstr ""
  3183. "katalog źródłowy nie jest głównym katalogiem repozytorium git (nie ma %s/."
  3184. "git), ale został wskazany format git"
  3185. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3186. #, perl-format
  3187. msgid "git repository %s uses submodules; this is not yet supported"
  3188. msgstr "repozytorium git %s używa podmodułów - to nie jest jeszcze obsługiwane"
  3189. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3190. msgid "specify a git <ref> to include in the git bundle"
  3191. msgstr ""
  3192. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3193. #, fuzzy
  3194. #| msgid "creating shallow clone with depth %s"
  3195. msgid "create a shallow clone with <number> depth"
  3196. msgstr "tworzenie płytkiego klonu o głębokości %s"
  3197. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3198. msgid "doesn't contain a git repository"
  3199. msgstr "nie zawiera repozytorium git"
  3200. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3201. msgid "git ls-files exited nonzero"
  3202. msgstr "git ls-files zwrócił niezerowy kod wyjścia"
  3203. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3204. #, perl-format
  3205. msgid "creating shallow clone with depth %s"
  3206. msgstr "tworzenie płytkiego klonu o głębokości %s"
  3207. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3208. #, perl-format
  3209. msgid "bundling: %s"
  3210. msgstr "pakowanie: %s"
  3211. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3212. msgid "format v3.0 (git) uses only one .git file"
  3213. msgstr "format v3.0 (git) używa tylko jednego pliku .git"
  3214. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3215. msgid "format v3.0 (git) uses only one .gitshallow file"
  3216. msgstr "format v3.0 (git) używa tylko jednego pliku .gitshallow"
  3217. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3218. #, perl-format
  3219. msgid "format v3.0 (git) unknown file: %s"
  3220. msgstr "nieznany plik formatu v3.0 (git): %s"
  3221. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3222. #, perl-format
  3223. msgid "format v3.0 (git) expected %s"
  3224. msgstr "format v3.0 (git) oczekiwano %s"
  3225. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3226. #, perl-format
  3227. msgid "cloning %s"
  3228. msgstr "klonowanie %s"
  3229. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3230. msgid "setting up shallow clone"
  3231. msgstr "konfigurowanie płytkiego klonu"
  3232. #: scripts/Dpkg/Source/Package/V3/Native.pm
  3233. #, perl-format
  3234. msgid "unrecognized file for a native source package: %s"
  3235. msgstr "nierozpoznany plik dla natywnego pakietu źródłowego: %s"
  3236. #: scripts/Dpkg/Source/Package/V3/Native.pm
  3237. msgid "native package version may not have a revision"
  3238. msgstr "natywna wersja pakietu może nie mieć rewizji"
  3239. #: scripts/Dpkg/Source/Package/V3/Quilt.pm
  3240. msgid "use a single debianization patch"
  3241. msgstr ""
  3242. #: scripts/Dpkg/Source/Package/V3/Quilt.pm
  3243. msgid "accept quilt metadata <version> even if unknown"
  3244. msgstr ""
  3245. #: scripts/Dpkg/Source/Package/V3/Quilt.pm
  3246. msgid "non-native package version does not contain a revision"
  3247. msgstr "nienatywna wersja pakietu nie zawiera rewizji"
  3248. #: scripts/Dpkg/Source/Package/V3/Quilt.pm
  3249. #, perl-format
  3250. msgid "can't create symlink %s"
  3251. msgstr "nie można utworzyć linku symbolicznego \"%s\""
  3252. #: scripts/Dpkg/Source/Package/V3/Quilt.pm
  3253. #, perl-format
  3254. msgid "unsupported version of the quilt metadata: %s"
  3255. msgstr "nieobsługiwana wersja metadanych quilt: %s"
  3256. #: scripts/Dpkg/Source/Patch.pm
  3257. #, perl-format
  3258. msgid "file %s has no final newline (either original or modified version)"
  3259. msgstr ""
  3260. "plik %s nie kończy się znakiem nowej linii (albo oryginalny, albo "
  3261. "zmodyfikowany)"
  3262. #: scripts/Dpkg/Source/Patch.pm
  3263. #, perl-format
  3264. msgid "unknown line from diff -u on %s: '%s'"
  3265. msgstr "nieznana linia z diff -u w %s: \"%s\""
  3266. #: scripts/Dpkg/Source/Patch.pm
  3267. msgid "failed to write"
  3268. msgstr "nie można zapisać"
  3269. #: scripts/Dpkg/Source/Patch.pm
  3270. #, perl-format
  3271. msgid "diff on %s"
  3272. msgstr "diff na %s"
  3273. #: scripts/Dpkg/Source/Patch.pm
  3274. #, perl-format
  3275. msgid "cannot stat file %s"
  3276. msgstr "nie można ustalić stanu pliku %s"
  3277. #: scripts/Dpkg/Source/Patch.pm
  3278. #, perl-format
  3279. msgid "cannot read link %s"
  3280. msgstr "nie można odczytać dowiązania %s"
  3281. #: scripts/Dpkg/Source/Patch.pm
  3282. msgid "device or socket is not allowed"
  3283. msgstr "urządzenie lub gniazdo nie są dozwolone"
  3284. #: scripts/Dpkg/Source/Patch.pm
  3285. msgid "unknown file type"
  3286. msgstr "nieznany typ pliku"
  3287. #: scripts/Dpkg/Source/Patch.pm
  3288. #, perl-format
  3289. msgid "ignoring deletion of file %s, use --include-removal to override"
  3290. msgstr "zignorowano usunięcie pliku %s, użyj --include-removal, aby nadpisać"
  3291. #: scripts/Dpkg/Source/Patch.pm
  3292. #, perl-format
  3293. msgid "ignoring deletion of directory %s"
  3294. msgstr "zignorowano usunięcie katalogu %s"
  3295. #: scripts/Dpkg/Source/Patch.pm
  3296. #, perl-format
  3297. msgid "ignoring deletion of symlink %s"
  3298. msgstr "zignorowano usunięcie dowiązania symbolicznego %s"
  3299. #: scripts/Dpkg/Source/Patch.pm
  3300. #, perl-format
  3301. msgid "newly created empty file '%s' will not be represented in diff"
  3302. msgstr "nowo utworzony pusty plik \"%s\" nie będzie dołączony do pliku różnic"
  3303. #: scripts/Dpkg/Source/Patch.pm
  3304. #, perl-format
  3305. msgid "executable mode %04o of '%s' will not be represented in diff"
  3306. msgstr "prawa dostępu %04o pliku \"%s\" nie będą dołączone do pliku łatki"
  3307. #: scripts/Dpkg/Source/Patch.pm
  3308. #, perl-format
  3309. msgid "special mode %04o of '%s' will not be represented in diff"
  3310. msgstr ""
  3311. "specjalne prawa dostępu %04o pliku \"%s\" nie będą dołączone do pliku łatki"
  3312. #: scripts/Dpkg/Source/Patch.pm
  3313. #, perl-format
  3314. msgid "cannot represent change to %s:"
  3315. msgstr "niereprezentowalna zmiana w %s:"
  3316. #: scripts/Dpkg/Source/Patch.pm
  3317. #, perl-format
  3318. msgid " new version is %s"
  3319. msgstr " nową wersją jest %s"
  3320. #: scripts/Dpkg/Source/Patch.pm
  3321. #, perl-format
  3322. msgid " old version is %s"
  3323. msgstr " starą wersją jest %s"
  3324. #: scripts/Dpkg/Source/Patch.pm
  3325. #, perl-format
  3326. msgid "diff %s patches file with C-style encoded filename"
  3327. msgstr "plik łatki \"%s\" łata plik o nazwie w stylu języka C"
  3328. #: scripts/Dpkg/Source/Patch.pm
  3329. #, perl-format
  3330. msgid "expected ^--- in line %d of diff '%s'"
  3331. msgstr "oczekiwano ^--- w linii %d pliku łatki \"%s\""
  3332. #: scripts/Dpkg/Source/Patch.pm
  3333. #, fuzzy, perl-format
  3334. #| msgid "diff `%s' patches file with name ending .dpkg-orig"
  3335. msgid "diff '%s' patches file with name ending in .dpkg-orig"
  3336. msgstr "plik łatki \"%s\" łata plik o nazwie kończącej się na .dpkg-orig"
  3337. #: scripts/Dpkg/Source/Patch.pm
  3338. #, perl-format
  3339. msgid "diff '%s' finishes in middle of ---/+++ (line %d)"
  3340. msgstr "plik łatki \"%s\" kończy się w środku ---/+++ (linia %d)"
  3341. #: scripts/Dpkg/Source/Patch.pm
  3342. #, perl-format
  3343. msgid "line after --- isn't as expected in diff '%s' (line %d)"
  3344. msgstr "linia po --- nie jest oczekiwana w pliku łatki \"%s\" (linia %d)"
  3345. #: scripts/Dpkg/Source/Patch.pm
  3346. #, perl-format
  3347. msgid "none of the filenames in ---/+++ are valid in diff '%s' (line %d)"
  3348. msgstr ""
  3349. "żadna z nazw plików w ---/+++ nie jest prawidłowa w łatce \"%s\" (wiersz %d)"
  3350. #: scripts/Dpkg/Source/Patch.pm scripts/Dpkg/Source/Quilt.pm
  3351. #, perl-format
  3352. msgid "%s contains an insecure path: %s"
  3353. msgstr "%s zawiera niezaufaną ścieżkę: %s"
  3354. #: scripts/Dpkg/Source/Patch.pm
  3355. #, perl-format
  3356. msgid "diff %s modifies file %s through a symlink: %s"
  3357. msgstr "łatka %s modyfikuje plik %s za pomocą dowiązania symbolicznego: %s"
  3358. #: scripts/Dpkg/Source/Patch.pm
  3359. #, perl-format
  3360. msgid "original and modified files are /dev/null in diff '%s' (line %d)"
  3361. msgstr ""
  3362. "oryginalnym i zmodyfikowanym plikiem jest /dev/null w pliku łatki \"%s"
  3363. "\" (linia %d)"
  3364. #: scripts/Dpkg/Source/Patch.pm
  3365. #, perl-format
  3366. msgid "file removal without proper filename in diff '%s' (line %d)"
  3367. msgstr "usuwanie pliku bez właściwej nazwy w pliku łatki \"%s\" (linia %d)"
  3368. #: scripts/Dpkg/Source/Patch.pm
  3369. #, perl-format
  3370. msgid "diff %s removes a non-existing file %s (line %d)"
  3371. msgstr "plik łatki \"%s\" usuwa nieistniejący plik %s (linia %d)"
  3372. #: scripts/Dpkg/Source/Patch.pm
  3373. #, perl-format
  3374. msgid "diff '%s' patches something which is not a plain file"
  3375. msgstr "łatka \"%s\" łata coś, co nie jest zwykłym plikiem"
  3376. #: scripts/Dpkg/Source/Patch.pm
  3377. #, perl-format
  3378. msgid ""
  3379. "diff '%s' patches files multiple times; split the diff in multiple files or "
  3380. "merge the hunks into a single one"
  3381. msgstr ""
  3382. #: scripts/Dpkg/Source/Patch.pm
  3383. #, fuzzy, perl-format
  3384. #| msgid "diff '%s' patches file %s twice"
  3385. msgid "diff '%s' patches file %s more than once"
  3386. msgstr "łatka \"%s\" dwukrotnie łata plik %s"
  3387. #: scripts/Dpkg/Source/Patch.pm
  3388. #, perl-format
  3389. msgid "unexpected end of diff '%s'"
  3390. msgstr "niespodziewany koniec łatki \"%s\""
  3391. #: scripts/Dpkg/Source/Patch.pm
  3392. #, perl-format
  3393. msgid "expected [ +-] at start of line %d of diff '%s'"
  3394. msgstr "oczekiwano [+-] na początku linii %d pliku łatki \"%s\""
  3395. #: scripts/Dpkg/Source/Patch.pm
  3396. #, perl-format
  3397. msgid "expected ^@@ at line %d of diff '%s'"
  3398. msgstr "oczekiwano ^@@ w linii %d pliku łatki \"%s\""
  3399. #: scripts/Dpkg/Source/Patch.pm
  3400. #, perl-format
  3401. msgid "diff '%s' doesn't contain any patch"
  3402. msgstr "łatka \"%s\" nie zawiera żadnej łatki"
  3403. #: scripts/Dpkg/Source/Patch.pm
  3404. #, perl-format
  3405. msgid "remove patch backup file %s"
  3406. msgstr "usuwanie kopii zapasowej pliku łatki %s"
  3407. #: scripts/Dpkg/Source/Patch.pm
  3408. msgid "nonexistent"
  3409. msgstr "nieistniejące"
  3410. #: scripts/Dpkg/Source/Patch.pm
  3411. msgid "plain file"
  3412. msgstr "zwykły plik"
  3413. #: scripts/Dpkg/Source/Patch.pm
  3414. msgid "directory"
  3415. msgstr "katalog"
  3416. #: scripts/Dpkg/Source/Patch.pm
  3417. #, perl-format
  3418. msgid "symlink to %s"
  3419. msgstr "dowiązanie symboliczne do %s"
  3420. #: scripts/Dpkg/Source/Patch.pm
  3421. msgid "block device"
  3422. msgstr "urządzenie blokowe"
  3423. #: scripts/Dpkg/Source/Patch.pm
  3424. msgid "character device"
  3425. msgstr "urządzenie znakowe"
  3426. #: scripts/Dpkg/Source/Patch.pm
  3427. msgid "named pipe"
  3428. msgstr "nazwany potok"
  3429. #: scripts/Dpkg/Source/Patch.pm
  3430. msgid "named socket"
  3431. msgstr "nazwane gniazdo"
  3432. #: scripts/Dpkg/Source/Quilt.pm
  3433. #, perl-format
  3434. msgid "cannot mkdir %s"
  3435. msgstr "nie można wykonać mkdir %s"
  3436. #: scripts/Dpkg/Source/Quilt.pm
  3437. msgid "the patch has fuzz which is not allowed, or is malformed"
  3438. msgstr ""
  3439. "łatka ma rozmycie, które nie jest dozwolone, lub jest niepoprawnie "
  3440. "sformatowana"
  3441. #: scripts/Dpkg/Source/Quilt.pm
  3442. #, perl-format
  3443. msgid "if patch '%s' is correctly applied by quilt, use '%s' to update it"
  3444. msgstr ""
  3445. "jeśli łatka \"%s\" została poprawnie nałożona przez quilt, użyj \"%s\", aby "
  3446. "ją zaktualizować"
  3447. #: scripts/Dpkg/Source/Quilt.pm
  3448. #, perl-format
  3449. msgid "%s should be a directory or non-existing"
  3450. msgstr "%s powinno być katalogiem lub nie powinno istnieć"
  3451. #: scripts/Dpkg/Source/Quilt.pm
  3452. #, perl-format
  3453. msgid "%s should be a file or non-existing"
  3454. msgstr "%s powinno być plikiem lub nie powinno istnieć"
  3455. #: scripts/Dpkg/Source/Quilt.pm
  3456. #, perl-format
  3457. msgid ""
  3458. "the series file (%s) contains unsupported options ('%s', line %s); dpkg-"
  3459. "source might fail when applying patches"
  3460. msgstr ""
  3461. "plik serii (%s) zawiera nieobsługiwane opcje (\"%s\", wiersz %s) - dpkg-"
  3462. "source może zawieść przy nakładaniu łatek"
  3463. #: scripts/Dpkg/Source/Quilt.pm
  3464. #, perl-format
  3465. msgid "restoring quilt backup files for %s"
  3466. msgstr "przywracanie plików kopii quilt do %s"
  3467. #: scripts/Dpkg/Substvars.pm
  3468. #, perl-format
  3469. msgid "bad line in substvars file %s at line %d"
  3470. msgstr "błędna linia w pliku podstawień %s, w linii %d"
  3471. #: scripts/Dpkg/Substvars.pm
  3472. #, fuzzy, perl-format
  3473. #| msgid "invalid source field in %s"
  3474. msgid "invalid source version %s"
  3475. msgstr "niepoprawne pole źródłowe w %s"
  3476. #: scripts/Dpkg/Substvars.pm
  3477. #, perl-format
  3478. msgid "too many substitutions - recursive ? - in '%s'"
  3479. msgstr "za dużo podstawień - rekursja? - w \"%s\""
  3480. #: scripts/Dpkg/Substvars.pm
  3481. #, fuzzy, perl-format
  3482. #| msgid "unused substitution variable ${%s}"
  3483. msgid "obsolete substitution variable ${%s}"
  3484. msgstr "nieużywana zmienna podstawiania ${%s}"
  3485. #: scripts/Dpkg/Substvars.pm
  3486. #, perl-format
  3487. msgid "unknown substitution variable ${%s}"
  3488. msgstr "nieznana zmienna podstawiania ${%s}"
  3489. #: scripts/Dpkg/Substvars.pm
  3490. #, perl-format
  3491. msgid "unused substitution variable ${%s}"
  3492. msgstr "nieużywana zmienna podstawiania ${%s}"
  3493. #: scripts/Dpkg/Vars.pm
  3494. #, perl-format
  3495. msgid "source package name '%s' is illegal: %s"
  3496. msgstr "nazwa pakietu źródłowego \"%s\" jest nieprawidłowa: \"%s\""
  3497. #: scripts/Dpkg/Vars.pm
  3498. #, perl-format
  3499. msgid "source package has two conflicting values - %s and %s"
  3500. msgstr "pakiet źródłowy ma dwie wartości będące w konflikcie ze sobą - %s i %s"
  3501. #: scripts/Dpkg/Vendor/Debian.pm
  3502. #, perl-format
  3503. msgid "unknown host architecture '%s'"
  3504. msgstr "nieznana architektura hosta \"%s\""
  3505. #: scripts/Dpkg/Vendor/Ubuntu.pm
  3506. msgid ""
  3507. "Version number suggests Ubuntu changes, but Maintainer: does not have Ubuntu "
  3508. "address"
  3509. msgstr ""
  3510. "Numer wersji sugeruje zmiany z Ubuntu, ale Maintainer: nie określa adresu z "
  3511. "Ubuntu"
  3512. #: scripts/Dpkg/Vendor/Ubuntu.pm
  3513. msgid ""
  3514. "Version number suggests Ubuntu changes, but there is no XSBC-Original-"
  3515. "Maintainer field"
  3516. msgstr ""
  3517. "Numer wersji sugeruje zmiany z Ubuntu, ale brak pola XSBC-Original-Maintainer"
  3518. #: scripts/Dpkg/Vendor/Ubuntu.pm
  3519. msgid "'hardening' flag found but 'hardening-wrapper' not installed"
  3520. msgstr ""
  3521. "znaleziono flagę \"hardening\", lecz \"hardening-wrapper\" nie jest "
  3522. "zainstalowany"
  3523. #: scripts/Dpkg/Vendor/Ubuntu.pm
  3524. #, perl-format
  3525. msgid "overriding %s in environment: %s"
  3526. msgstr "przesłanianie %s w środowisku: %s"
  3527. #: scripts/Dpkg/Version.pm
  3528. #, perl-format
  3529. msgid "%s is not a valid version"
  3530. msgstr "%s nie jest prawidłową wersją"
  3531. #: scripts/Dpkg/Version.pm
  3532. msgid "version number cannot be empty"
  3533. msgstr "numer wersji nie może być pusty"
  3534. #: scripts/Dpkg/Version.pm
  3535. #, fuzzy
  3536. #| msgid "epoch part of the version number is not a number: '%s'"
  3537. msgid "epoch part of the version number cannot be empty"
  3538. msgstr "częśc epoki w numerze wersji nie jest liczbą: \"%s\""
  3539. #: scripts/Dpkg/Version.pm
  3540. #, fuzzy
  3541. #| msgid "version number cannot be empty"
  3542. msgid "upstream version cannot be empty"
  3543. msgstr "numer wersji nie może być pusty"
  3544. #: scripts/Dpkg/Version.pm
  3545. #, fuzzy
  3546. #| msgid "version number cannot be empty"
  3547. msgid "revision cannot be empty"
  3548. msgstr "numer wersji nie może być pusty"
  3549. #: scripts/Dpkg/Version.pm
  3550. msgid "version number does not start with digit"
  3551. msgstr "numer wersji nie zaczyna się cyfrą"
  3552. #: scripts/Dpkg/Version.pm
  3553. #, perl-format
  3554. msgid "version number contains illegal character '%s'"
  3555. msgstr "numer wersji zawiera niepoprawny znak \"%s\""
  3556. #: scripts/Dpkg/Version.pm
  3557. #, perl-format
  3558. msgid "epoch part of the version number is not a number: '%s'"
  3559. msgstr "częśc epoki w numerze wersji nie jest liczbą: \"%s\""
  3560. #~ msgid "failed to sign .dsc and .changes file"
  3561. #~ msgstr "błąd podpisywania plików .dsc i .changes"
  3562. #, fuzzy
  3563. #~| msgid "illegal package name '%s': %s"
  3564. #~ msgid "illegal .buildinfo ID '%s': %s"
  3565. #~ msgstr "nieprawidłowa nazwa pakietu \"%s\": %s"
  3566. #~ msgid "cannot open new output control file '%s'"
  3567. #~ msgstr "nie można otworzyć nowego pliku kontrolnego \"%s\""
  3568. #~ msgid "deprecated substitution variable ${%s}"
  3569. #~ msgstr "przestarzała zmienna podstawiania ${%s}"
  3570. #, fuzzy
  3571. #~| msgid "Usage: %s [<option>...] [<control-file>]"
  3572. #~ msgid "Usage: %s [<option>...] [<changelog-file>]"
  3573. #~ msgstr "Użycie: %s [<opcja>...] <plik-kontrolny>"
  3574. #, fuzzy
  3575. #~| msgid ""
  3576. #~| "Parser options:\n"
  3577. #~| " --format <output-format> see man page for list of available\n"
  3578. #~| " output formats, defaults to 'dpkg'\n"
  3579. #~| " for compatibility with dpkg-dev\n"
  3580. #~| " --since <version>, include all changes later than version\n"
  3581. #~| " -s<version>, -v<version>\n"
  3582. #~| " --until <version>, include all changes earlier than "
  3583. #~| "version\n"
  3584. #~| " -u<version>\n"
  3585. #~| " --from <version>, include all changes equal or later\n"
  3586. #~| " -f<version> than version\n"
  3587. #~| " --to <version>, -t<version> include all changes up to or equal\n"
  3588. #~| " than version\n"
  3589. #~| " --count <number>, include <number> entries from the top\n"
  3590. #~| " -c<number>, -n<number> (or the tail if <number> is lower than "
  3591. #~| "0)\n"
  3592. #~| " --offset <number>, change the starting point for --count,\n"
  3593. #~| " -o<number> counted from the top (or the tail if\n"
  3594. #~| " <number> is lower than 0)\n"
  3595. #~| " --all include all changes\n"
  3596. #~ msgid ""
  3597. #~ "Options:\n"
  3598. #~ " --file <file> changelog <file> to parse (defaults to '-').\n"
  3599. #~ " -l, --label <file> changelog <file> name to use in error "
  3600. #~ "messages.\n"
  3601. #~ " --format <output-format>\n"
  3602. #~ " set the output format (defaults to 'dpkg').\n"
  3603. #~ " --all include all changes.\n"
  3604. #~ " -s, --since <version> include all changes later than <version>.\n"
  3605. #~ " -v <version> ditto.\n"
  3606. #~ " -u, --until <version> include all changes earlier than <version>.\n"
  3607. #~ " -f, --from <version> include all changes equal or later than "
  3608. #~ "<version>.\n"
  3609. #~ " -t, --to <version> include all changes up to or equal than "
  3610. #~ "<version>.\n"
  3611. #~ " -c, --count <number> include <number> entries from the top (or tail "
  3612. #~ "if\n"
  3613. #~ " <number> is lower than 0).\n"
  3614. #~ " -n <number> ditto.\n"
  3615. #~ " -o, --offset <number> change starting point for --count, counted "
  3616. #~ "from\n"
  3617. #~ " the top (or tail if <number> is lower than "
  3618. #~ "0).\n"
  3619. #~ " -?, --help print usage information.\n"
  3620. #~ " -V, --version print version information.\n"
  3621. #~ msgstr ""
  3622. #~ "Opcje parsera:\n"
  3623. #~ " --format <format_wyjścia> listę formatów wyjściowych można znaleźć "
  3624. #~ "na\n"
  3625. #~ " stronie podręcznika, domyślnym jest \"dpkg"
  3626. #~ "\"\n"
  3627. #~ " dla zachowania kompatybilności z dpkg-"
  3628. #~ "dev\n"
  3629. #~ " --since <wersja>, włącza wszystkie zmiany późniejsze od "
  3630. #~ "wersji\n"
  3631. #~ " -s<wersja>, -v<wersja>\n"
  3632. #~ " --until <wersja>, włącza wszystkie zmiany wcześniejsze od "
  3633. #~ "wersji\n"
  3634. #~ " -u<wersja>\n"
  3635. #~ " --from <wersja>, włącza wszystkie zmiany późniejsze od "
  3636. #~ "wersji\n"
  3637. #~ " -f<wersja> lub jej równe\n"
  3638. #~ " --to <wersja>, -t<wersja> włącza wszystkie zmiany aż do danej "
  3639. #~ "wersji,\n"
  3640. #~ " łącznie z tą wersją\n"
  3641. #~ " --count <liczba>, włącza <liczba> początkowych wpisów (lub\n"
  3642. #~ " -c<liczba>, -n<liczba> końcowych, gdy <liczba> jest mniejsza od "
  3643. #~ "0)\n"
  3644. #~ " --offset <liczba>, zmienia punkt początkowy dla --count,\n"
  3645. #~ " -o<liczba> licząc od początku pliku (lub końca,\n"
  3646. #~ " gdy <liczba> jest mniejsza od 0)\n"
  3647. #~ " --all włącza wszystkie zmiany\n"
  3648. #~ msgid "output format %s not supported"
  3649. #~ msgstr "wyjściowy format %s nie jest wspierany"
  3650. #~ msgid "more than one file specified (%s and %s)"
  3651. #~ msgstr "podano więcej niż jeden plik (%s i %s)"
  3652. #~ msgid "format parser %s not executable"
  3653. #~ msgstr "parsera formatu %s nie jest plikiem wykonywalnym"
  3654. #, fuzzy
  3655. #~| msgid "cannot exec format parser: %s"
  3656. #~ msgid "cannot execute format parser: %s"
  3657. #~ msgstr "nie można uruchomić parsera formatu: %s"
  3658. #~ msgid "output of changelog parser"
  3659. #~ msgstr "wyjście parsera pliku zmian"
  3660. #~ msgid "changelog parser %s"
  3661. #~ msgstr "parser pliku zmian %s"
  3662. #~ msgid "'%s' is not a legal architecture string."
  3663. #~ msgid_plural "'%s' are not legal architecture strings."
  3664. #~ msgstr[0] "\"%s\" nie jest poprawnym łańcuchem określającym architekturę."
  3665. #~ msgstr[1] "\"%s\" nie są poprawnymi łańcuchami określającymi architekturę."
  3666. #~ msgstr[2] "\"%s\" nie są poprawnymi łańcuchami określającymi architekturę."
  3667. #~ msgid ""
  3668. #~ "More options are available but they depend on the source package format.\n"
  3669. #~ "See dpkg-source(1) for more info."
  3670. #~ msgstr ""
  3671. #~ "Dostępnych jest więcej opcji, ale są zależne od formatu pakeitu "
  3672. #~ "źrółowego.\n"
  3673. #~ "Podręcznik dpkg-source(1) zawiera więcej informacji."
  3674. #~ msgid "couldn't open %s for reading"
  3675. #~ msgstr "nie można otworzyć %s do odczytu"
  3676. #, fuzzy
  3677. #~| msgid "error closing %s: %s"
  3678. #~ msgid "error closing %s (%s)"
  3679. #~ msgstr "błąd zamykania %s: %s"
  3680. #~ msgid "couldn't parse date %s"
  3681. #~ msgstr "nie można przetworzyć daty %s"
  3682. #~ msgid "%s: unrepresentable changes to source"
  3683. #~ msgstr "%s: niereprezentowalne zmiany w źródle"
  3684. #~ msgid "error closing %s ($? %d, $! '%s')"
  3685. #~ msgstr "nie można zamknąć %s ($? %d, $! \"%s\")"
  3686. #~ msgid "open new substvars file '%s'"
  3687. #~ msgstr "otwieranie nowego pliku podstawień \"%s\""
  3688. #~ msgid "open old varlist file '%s' for reading"
  3689. #~ msgstr "otwieranie do odczytu pliku listy zmiennych \"%s\""
  3690. #~ msgid "copy old entry to new varlist file '%s'"
  3691. #~ msgstr "kopiowanie starego wpisu do nowego pliku z listą zmiennych \"%s\""
  3692. #~ msgid ""
  3693. #~ "this is currently a non-fatal warning with -S, but will probably become "
  3694. #~ "fatal in the future"
  3695. #~ msgstr ""
  3696. #~ "obecnie jest to tylko niekrytyczne ostrzeżenie generowane, gdy użyje się -"
  3697. #~ "S, lecz prawdopodobnie stanie się krytyczne w przyszłości"
  3698. #~ msgid "read changesdescription"
  3699. #~ msgstr "odczytywanie opisu zmian"
  3700. #~ msgid "chdir for du to `%s'"
  3701. #~ msgstr "zmiana katalogu dla du na \"%s\""
  3702. #~ msgid "du in `%s'"
  3703. #~ msgstr "du na \"%s\""
  3704. #~ msgid "du gave unexpected output `%s'"
  3705. #~ msgstr "du wypisało dziwny komunikat \"%s\""
  3706. #~ msgid "used that one and ignored data from %s!"
  3707. #~ msgstr "użycie tej wersji i zignorowanie danych z %s!"
  3708. #~ msgid "package %s (filename %s) is repeat;"
  3709. #~ msgstr "pakiet %s (plik %s) jest powtórzony;"
  3710. #~ msgid ""
  3711. #~ "Usage: %s [<option>...] [<changelogfile>]\n"
  3712. #~ "\n"
  3713. #~ "Options:\n"
  3714. #~ " -?, --help print usage information\n"
  3715. #~ " --version, -V print version information\n"
  3716. #~ " --label, -l <file> name of the changelog file to\n"
  3717. #~ " use in error messages\n"
  3718. #~ " --file <file> changelog file to parse, defaults\n"
  3719. #~ " to '-' (standard input)\n"
  3720. #~ " --format <outputformat> see man page for list of available\n"
  3721. #~ " output formats, defaults to 'dpkg'\n"
  3722. #~ " for compatibility with dpkg-dev\n"
  3723. #~ " --since, -s, -v <version> include all changes later than version\n"
  3724. #~ " --until, -u <version> include all changes earlier than version\n"
  3725. #~ " --from, -f <version> include all changes equal or later\n"
  3726. #~ " than version\n"
  3727. #~ " --to, -t <version> include all changes up to or equal\n"
  3728. #~ " than version\n"
  3729. #~ " --count, -c, -n <number> include <number> entries from the top\n"
  3730. #~ " (or the tail if <number> is lower than "
  3731. #~ "0)\n"
  3732. #~ " --offset, -o <number> change the starting point for --count,\n"
  3733. #~ " counted from the top (or the tail if\n"
  3734. #~ " <number> is lower than 0)\n"
  3735. #~ " --all include all changes\n"
  3736. #~ msgstr ""
  3737. #~ "Użycie: %s [<opcja>...] [<plik_zmian>]\n"
  3738. #~ "\n"
  3739. #~ "Opcje:\n"
  3740. #~ " -?, --help wyświetla ten komunikat pomocy.\n"
  3741. #~ " --version, -V wyświetla informacje o wersji programu.\n"
  3742. #~ " --label, -l <plik> nazwa pliku zmian używana w komunikatach\n"
  3743. #~ " o błędach\n"
  3744. #~ " --file <plik> plik zmian do przetworzenia, domyślnie "
  3745. #~ "jest\n"
  3746. #~ " nim \"-\" (standardowe wejście)\n"
  3747. #~ " --format <format_wyjścia> listę formatów wyjściowych można znaleźć "
  3748. #~ "na\n"
  3749. #~ " stronie podręcznika, domyślnym jest \"dpkg"
  3750. #~ "\"\n"
  3751. #~ " dla zachowania kompatybilności z dpkg-"
  3752. #~ "dev\n"
  3753. #~ " --since, -s, -v <wersja> włącza wszystkie zmianty późniejsze od "
  3754. #~ "wersji\n"
  3755. #~ " --until, -u <wersja> włącza wszystkie zmiany wcześniejsze od "
  3756. #~ "wersji\n"
  3757. #~ " --from, -f <wersja> włącza wszystkie zmiany późniejsze od "
  3758. #~ "wersji\n"
  3759. #~ " lub jej równe\n"
  3760. #~ " --to, -t <wersja> włącza wszystkie zmiany aż do danej "
  3761. #~ "wersji,\n"
  3762. #~ " łącznie z tą wersją\n"
  3763. #~ " --count, -c, -n <liczba> włącza <liczba> początkowych wpisów (lub\n"
  3764. #~ " końcowych, gdy <liczba> jest mniejsza od "
  3765. #~ "0)\n"
  3766. #~ " --offset, -o <liczba> zmienia punkt początkowy dla --count,\n"
  3767. #~ " licząc od początku pliku (lub końca,\n"
  3768. #~ " gdy <liczba> jest mniejsza od 0)\n"
  3769. #~ " --all włącza wszystkie zmiany\n"
  3770. #~ msgid "checksum program gave bogus output `%s'"
  3771. #~ msgstr "dziwne wyjście programu sprawdzania sum kontrolnych: \"%s\""
  3772. #~ msgid ""
  3773. #~ "Options passed to dpkg-architecture:\n"
  3774. #~ " -a<arch> Debian architecture we build for.\n"
  3775. #~ " -t<system> set GNU system type."
  3776. #~ msgstr ""
  3777. #~ "Opcje przekazywane do dpkg-architecture:\n"
  3778. #~ " -a<arch> architektura Debiana, na którą odbywa się budowanie.\n"
  3779. #~ " -t<system> ustawia typ systemu GNU."
  3780. #~ msgid ""
  3781. #~ "Options:\n"
  3782. #~ " -a<debian-arch> set current Debian architecture.\n"
  3783. #~ " -t<gnu-system> set current GNU system type.\n"
  3784. #~ " -f force flag (override variables set in environment)."
  3785. #~ msgstr ""
  3786. #~ "Opcja:\n"
  3787. #~ " -a<arch_debiana> ustawia bieżącą architekturę Debiana.\n"
  3788. #~ " -t<system_gnu> ustawia bieżący typ systemu GNU.\n"
  3789. #~ " -f wymusza flagę (przesłania zmienne w środowisku)."
  3790. #~ msgid ""
  3791. #~ "need a command (-x, -b, --before-build, --after-build, --print-format, --"
  3792. #~ "commit)"
  3793. #~ msgstr ""
  3794. #~ "wymaga polecenia (-x, -b, --before-build, --after-build, --print-format, "
  3795. #~ "--commit)"
  3796. #~ msgid "only one of -x, -b or --print-format allowed, and only once"
  3797. #~ msgstr "dozwolona tylko jedna z opcji -x, -b lub --print-format i tylko raz"
  3798. #~ msgid "binary-only upload - not including any source code"
  3799. #~ msgstr "wydanie tylko binarne - niedołączanie żadnych kodów źródłowych"
  3800. #~ msgid "diff %s patches file with unknown escape sequence \\%s"
  3801. #~ msgstr "plik łatki \"%s\" łata plik z nieznaną sekwencją cytowania \\%s"
  3802. #~ msgid "open new files list file"
  3803. #~ msgstr "otwieranie nowego pliku z listą plików"
  3804. #~ msgid "copy old entry to new files list file"
  3805. #~ msgstr "kopiowanie starego pliku do nowego pliku z listą plików"
  3806. #~ msgid "read old files list file"
  3807. #~ msgstr "czytanie starego pliku z listą plików"
  3808. #~ msgid "write new entry to new files list file"
  3809. #~ msgstr "zapisywanie nowego wpisu do nowego pliku z listą plików"
  3810. #~ msgid "close new files list file"
  3811. #~ msgstr "zamykanie nowego pliku z listą plików"
  3812. #~ msgid "cannot read files list file"
  3813. #~ msgstr "nie można odczytać pliku z listą plików"
  3814. #~ msgid "duplicate files list entry for package %s (line %d)"
  3815. #~ msgstr "zduplikowany wpis o pakiecie %s w liście plików (linia %d)"
  3816. #~ msgid "close old files list file"
  3817. #~ msgstr "zamykanie starego pliku z listą plików"
  3818. #~ msgid "internal error"
  3819. #~ msgstr "błąd wewnętrzny"
  3820. #~ msgid "fatal error occurred while parsing input"
  3821. #~ msgstr "wystąpił fatalny błąd podczas przetwarzania wejścia"
  3822. #~ msgid ""
  3823. #~ "\n"
  3824. #~ "Usage: %s [<options> ...]\n"
  3825. #~ "\n"
  3826. #~ "Options:\n"
  3827. #~ " -r<gain-root-command>\n"
  3828. #~ " command to gain root privileges (default is fakeroot).\n"
  3829. #~ " -R<rules> rules file to execute (default is debian/rules).\n"
  3830. #~ " -p<sign-command>\n"
  3831. #~ " -d do not check build dependencies and conflicts.\n"
  3832. #~ " -D check build dependencies and conflicts.\n"
  3833. #~ " -T<target> call debian/rules <target> with the proper environment\n"
  3834. #~ " --as-root ensure -T calls the target with root rights\n"
  3835. #~ " -j[<number>] specify jobs to run simultaneously } passed to debian/"
  3836. #~ "rules\n"
  3837. #~ " -k<keyid> the key to use for signing.\n"
  3838. #~ " -sgpg the sign-command is called like GPG.\n"
  3839. #~ " -spgp the sign-command is called like PGP.\n"
  3840. #~ " -us unsigned source.\n"
  3841. #~ " -uc unsigned changes.\n"
  3842. #~ " -a<arch> Debian architecture we build for (implies -d).\n"
  3843. #~ " -b binary-only, do not build source. } also passed to\n"
  3844. #~ " -B binary-only, no arch-indep files. } dpkg-genchanges\n"
  3845. #~ " -A binary-only, only arch-indep files. }\n"
  3846. #~ " -S source only, no binary files. }\n"
  3847. #~ " -F normal full build (binaries and sources).\n"
  3848. #~ " -t<system> set GNU system type. } passed to dpkg-"
  3849. #~ "architecture\n"
  3850. #~ " -v<version> changes since version <version>. }\n"
  3851. #~ " -m<maint> maintainer for package is <maint>. }\n"
  3852. #~ " -e<maint> maintainer for release is <maint>. } only passed\n"
  3853. #~ " -C<descfile> changes are described in <descfile>. } to dpkg-"
  3854. #~ "genchanges\n"
  3855. #~ " -si (default) src includes orig if new upstream. }\n"
  3856. #~ " -sa uploaded src always includes orig. }\n"
  3857. #~ " -sd uploaded src is diff and .dsc only. }\n"
  3858. #~ " -sn force Debian native source format. }\n"
  3859. #~ " -s[sAkurKUR] see dpkg-source for explanation. } only passed\n"
  3860. #~ " -z<level> compression level of source } to dpkg-"
  3861. #~ "source\n"
  3862. #~ " -Z<compressor> compression to use for source }\n"
  3863. #~ " -nc do not clean source tree (implies -b).\n"
  3864. #~ " -tc clean source tree when finished.\n"
  3865. #~ " -ap add pause before starting signature process.\n"
  3866. #~ " -i[<regex>] ignore diffs of files matching regex. } only passed\n"
  3867. #~ " -I[<pattern>] filter out files when building tarballs. } to dpkg-"
  3868. #~ "source\n"
  3869. #~ " --source-option=<opt>\n"
  3870. #~ "\t\t pass option <opt> to dpkg-source\n"
  3871. #~ " --changes-option=<opt>\n"
  3872. #~ "\t\t pass option <opt> to dpkg-genchanges\n"
  3873. #~ " --admindir=<directory>\n"
  3874. #~ " change the administrative directory.\n"
  3875. #~ " -h, --help show this help message.\n"
  3876. #~ " --version show the version.\n"
  3877. #~ msgstr ""
  3878. #~ "\n"
  3879. #~ "Użycie: %s [<opcje> ...]\n"
  3880. #~ "\n"
  3881. #~ "Opcje:\n"
  3882. #~ " -r<polecenie_uzysk_praw_administratora>\n"
  3883. #~ " polecenie uzyskiwania praw admin. (domyślnie fakeroot).\n"
  3884. #~ " -R<rules> plik rules do uruchomienia (domyślnie debian/rules).\n"
  3885. #~ " -p<polecenie_podpisywania>\n"
  3886. #~ " -d nie sprawdza zależności i konfliktów czasu budowania.\n"
  3887. #~ " -D sprawdza zależności i konflikty czasu budowania.\n"
  3888. #~ " -T<cel> wywołanie debian/rules <cel> z odpowiednim środowiskiem\n"
  3889. #~ " --as-root zapewnienie, że -T wywoła cel z prawami administratora\n"
  3890. #~ " -j[<liczba>] liczba zadań wykonywanych jednocześnie } przekazywane "
  3891. #~ "do\n"
  3892. #~ " } debian/rules\n"
  3893. #~ " -k<id-klucza> klucz używany do podpisywania.\n"
  3894. #~ " -sgpg polecenie-podpisywania jest wywoływane jak GPG.\n"
  3895. #~ " -spgp polecenie-podpisywania jest wywoływane jak PGP.\n"
  3896. #~ " -us niepodpisywanie źródeł.\n"
  3897. #~ " -uc niepodpisywanie zmian.\n"
  3898. #~ " -a<arch> architektura Debiana, dla której budujemy (implikuje -"
  3899. #~ "d).\n"
  3900. #~ " -b tylko binarne, bez źródeł. } przekazywane\n"
  3901. #~ " -B tylko binarne, bez niezal. od arch. } również do\n"
  3902. #~ " -A tylko binarne, tylko niezal. od arch.} dpkg-genchanges\n"
  3903. #~ " -S tylko źródła, bez binarów. }\n"
  3904. #~ " -F zwykłe pełne wydanie (binaria i źródła).\n"
  3905. #~ " -t<system> ustawia typ systemu GNU. } przekazywane do dpkg-"
  3906. #~ "architecture\n"
  3907. #~ " -v<wersja> zmiany od wersji <wersja>. }\n"
  3908. #~ " -m<opiek> opiekunem pakietu jest <opiek>. }\n"
  3909. #~ " -e<opiek> opiekunem wydania jest <opiek>. } tylko\n"
  3910. #~ " -C<plik-desc> zmiany są opisane w <pliku-desc>. } przekazywane "
  3911. #~ "do\n"
  3912. #~ " -si (domyślne) źródła włączają oryg, jeśli nowsze } dpkg-"
  3913. #~ "genchanges\n"
  3914. #~ " -sa źródła zawsze włączają oryg. }\n"
  3915. #~ " -sd wydanie składa się z tylko diff i .dsc.}\n"
  3916. #~ " -sn wymusza format natywnych źródeł Debiana. } tylko\n"
  3917. #~ " -s[sAkurKUR] patrz opis w dpkg-source } przekazywane "
  3918. #~ "do\n"
  3919. #~ " -z<poziom> poziom kompresji źródeł } dpkg-source\n"
  3920. #~ " -Z<kompresor> typ używanej kompresji źródeł }\n"
  3921. #~ " -nc nie czyści drzewa źródeł (wymusza -b).\n"
  3922. #~ " -tc czyści drzewo źródeł po zakończeniu.\n"
  3923. #~ " -ap dodaje pauzę przez rozpoczęciem podpisywania.\n"
  3924. #~ " -i[<wyr_reg>] ignorowanie różnic pasujących plików. } tylko "
  3925. #~ "przek.\n"
  3926. #~ " -I[<wzorzec>] odfiltrowanie plików podczas budowania tar} do dpkg-"
  3927. #~ "source\n"
  3928. #~ " --source-option=<opc>\n"
  3929. #~ "\t\t przekaż opcję <opc> do dpkg-source\n"
  3930. #~ " --changes-option=<opc>\n"
  3931. #~ "\t\t przekaż opcję <opc> do dpkg-genchanges\n"
  3932. #~ " --admindir=<katalog>\n"
  3933. #~ " zmienia katalog administracyjny.\n"
  3934. #~ " -h, --help wyświetla ten komunikat pomocy.\n"
  3935. #~ " --version wyświetla wersję.\n"
  3936. #~ msgid "PGP support is deprecated (see README.feature-removal-schedule)"
  3937. #~ msgstr ""
  3938. #~ "Wsparcie dla PGP jest przestarzałe (patrz README.feature-removal-schedule)"
  3939. #~ msgid "will probably become fatal in the future."
  3940. #~ msgstr "jednak w przyszłości zostanie przekształcone w błąd krytyczny."
  3941. #~ msgid ""
  3942. #~ "-u, --udeb option is deprecated (see README.feature-removal-schedule)"
  3943. #~ msgstr ""
  3944. #~ "-u, --udeb są opcjami przestarzałymi (patrz README.feature-removal-"
  3945. #~ "schedule)"
  3946. #~ msgid ""
  3947. #~ "This source package can only be manipulated using bzr, which is not in "
  3948. #~ "the PATH."
  3949. #~ msgstr ""
  3950. #~ "Tym pakietem źródłowym można zarządzać z użyciem bzr, ale nie ma go w "
  3951. #~ "ścieżce zmiennej PATH."
  3952. #~ msgid "source package name `%s' starts with non-alphanum"
  3953. #~ msgstr ""
  3954. #~ "nazwa pakietu źródłowego \"%s\"nie zaczyna się od znaku alfanumerycznego"
  3955. #~ msgid ""
  3956. #~ "\n"
  3957. #~ "Copyright (C) 1999-2001 Marcus Brinkmann <brinkmd@debian.org>.\n"
  3958. #~ "Copyright (C) 2004-2005 Scott James Remnant <scott@netsplit.com>."
  3959. #~ msgstr ""
  3960. #~ "\n"
  3961. #~ "Copyright (C) 1999-2001 Marcus Brinkmann <brinkmd@debian.org>.\n"
  3962. #~ "Copyright (C) 2004-2005 Scott James Remnant <scott@netsplit.com>."
  3963. #~ msgid ""
  3964. #~ "\n"
  3965. #~ "Copyright (C) 2010-2011 Raphael Hertzog <hertzog@debian.org>."
  3966. #~ msgstr ""
  3967. #~ "\n"
  3968. #~ "Copyright (C) 2010-2011 Raphael Hertzog <hertzog@debian.org>."
  3969. #~ msgid ""
  3970. #~ "\n"
  3971. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3972. #~ "Copyright (C) 2000 Wichert Akkerman\n"
  3973. #~ "Copyright (C) 2007 Frank Lichtenheld"
  3974. #~ msgstr ""
  3975. #~ "\n"
  3976. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3977. #~ "Copyright (C) 2000 Wichert Akkerman\n"
  3978. #~ "Copyright (C) 2007 Frank Lichtenheld"
  3979. #~ msgid ""
  3980. #~ "\n"
  3981. #~ "Copyright (C) 1996 Ian Jackson."
  3982. #~ msgstr ""
  3983. #~ "\n"
  3984. #~ "Copyright (C) 1996 Ian Jackson."
  3985. #~ msgid ""
  3986. #~ "\n"
  3987. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3988. #~ "Copyright (C) 2000,2001 Wichert Akkerman."
  3989. #~ msgstr ""
  3990. #~ "\n"
  3991. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3992. #~ "Copyright (C) 2000,2001 Wichert Akkerman."
  3993. #~ msgid ""
  3994. #~ "\n"
  3995. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3996. #~ "Copyright (C) 2000,2002 Wichert Akkerman."
  3997. #~ msgstr ""
  3998. #~ "\n"
  3999. #~ "Copyright (C) 1996 Ian Jackson.\n"
  4000. #~ "Copyright (C) 2000,2002 Wichert Akkerman."
  4001. #~ msgid ""
  4002. #~ "\n"
  4003. #~ "Copyright (C) 2007 Raphael Hertzog.\n"
  4004. #~ msgstr ""
  4005. #~ "\n"
  4006. #~ "Copyright (C) 2007 Raphael Hertzog.\n"
  4007. #~ msgid "Copyright (C) 2009-2010 Raphael Hertzog."
  4008. #~ msgstr "Copyright (C) 2009-2010 Raphael Hertzog."
  4009. #~ msgid ""
  4010. #~ "\n"
  4011. #~ "Copyright (C) 1996 Ian Jackson.\n"
  4012. #~ "Copyright (C) 2001 Wichert Akkerman"
  4013. #~ msgstr ""
  4014. #~ "\n"
  4015. #~ "Copyright (C) 1996 Ian Jackson.\n"
  4016. #~ "Copyright (C) 2001 Wichert Akkerman"
  4017. #~ msgid ""
  4018. #~ "\n"
  4019. #~ "Copyright (C) 1996 Ian Jackson.\n"
  4020. #~ "Copyright (C) 2000 Wichert Akkerman.\n"
  4021. #~ "Copyright (C) 2006 Frank Lichtenheld.\n"
  4022. #~ "Copyright (C) 2007 Raphael Hertzog.\n"
  4023. #~ msgstr ""
  4024. #~ "\n"
  4025. #~ "Copyright (C) 1996 Ian Jackson.\n"
  4026. #~ "Copyright (C) 2000 Wichert Akkerman.\n"
  4027. #~ "Copyright (C) 2006 Frank Lichtenheld.\n"
  4028. #~ "Copyright (C) 2007 Raphael Hertzog.\n"
  4029. #~ msgid ""
  4030. #~ "\n"
  4031. #~ "Copyright (C) 1996 Ian Jackson\n"
  4032. #~ "Copyright (C) 1997 Klee Dienes\n"
  4033. #~ "Copyright (C) 2008 Raphael Hertzog"
  4034. #~ msgstr ""
  4035. #~ "\n"
  4036. #~ "Copyright (C) 1996 Ian Jackson\n"
  4037. #~ "Copyright (C) 1997 Klee Dienes\n"
  4038. #~ "Copyright (C) 2008 Raphael Hertzog"
  4039. #~ msgid ""
  4040. #~ "\n"
  4041. #~ "Copyright (C) 1996 Ian Jackson.\n"
  4042. #~ "Copyright (C) 2005,2007 Frank Lichtenheld."
  4043. #~ msgstr ""
  4044. #~ "\n"
  4045. #~ "Copyright (C) 1996 Ian Jackson.\n"
  4046. #~ "Copyright (C) 2005,2007 Frank Lichtenheld."
  4047. #~ msgid "1 to 3 args expected\n"
  4048. #~ msgstr "Oczekiwano od 1 do 3 argumentów\n"
  4049. #~ msgid "no orig.tar file found"
  4050. #~ msgstr "nie znaleziono pliku orig.tar"
  4051. #~ msgid "cannot rename %s to %s"
  4052. #~ msgstr "nie można przemianować %s na %s"
  4053. #~ msgid "exec %s"
  4054. #~ msgstr "uruchamianie %s"
  4055. #~ msgid "cannot exec dpkg"
  4056. #~ msgstr "uruchamianie dpkg nie powiodło się"
  4057. #~ msgid "git config exited nonzero"
  4058. #~ msgstr "git config zwrócił niezerowy kod wyjścia"
  4059. #~ msgid "executable bit set on %s; clearing"
  4060. #~ msgstr "bit wykonywania ustawiony dla %s, usuwanie"
  4061. #~ msgid "unable to remove `%s'"
  4062. #~ msgstr "nie można usunąć \"%s\""
  4063. #~ msgid "modifying .git/config to comment out some settings"
  4064. #~ msgstr ""
  4065. #~ "modyfikowanie .git/config w celu zamiany na komentarz niektórych ustawień"
  4066. #~ msgid "unable to append to %s"
  4067. #~ msgstr "nie można dopisać do %s"
  4068. #~ msgid "The following setting(s) were disabled by dpkg-source"
  4069. #~ msgstr "dpkg-source wyłączy następujące ustawienia"
  4070. #~ msgid "need -x or -b"
  4071. #~ msgstr "potrzeba -x lub -b"
  4072. #~ msgid "objdump on `%s'"
  4073. #~ msgstr "objdump na \"%s\""
  4074. #~ msgid "%s: set %s to default value: %s\n"
  4075. #~ msgstr "%s: ustawianie %s na domyślną wartość: %s\n"
  4076. #~ msgid "cannot open .dsc file %s"
  4077. #~ msgstr "nie można otworzyć pliku .dsc %s"
  4078. #~ msgid "source control file %s"
  4079. #~ msgstr "źródłowy plik kontrolny %s"
  4080. #~ msgid "Files field contains bad line `%s'"
  4081. #~ msgstr "Pole Files zawiera niepoprawną linię \"%s\""
  4082. #~ msgid "Conflicting sizes `%u' and `%u' for file `%s'"
  4083. #~ msgstr "Konflikt rozmiarów \"%u\" i \"%u\" pliku \"%s\""
  4084. #~ msgid "fork for du"
  4085. #~ msgstr "fork dla du"
  4086. #~ msgid "source format `%s' discarded: %s"
  4087. #~ msgstr "odrzucony format źródeł \"%s\": %s"
  4088. #~ msgid "fork for %s"
  4089. #~ msgstr "fork dla %s"
  4090. #~ msgid "Unknown checksum algorithm `%s', ignoring"
  4091. #~ msgstr "Nieznany algorytm sprawdzania sum kontrolnych \"%s\", ignorowanie"
  4092. #~ msgid "Checksums-%s field contains bad line `%s'"
  4093. #~ msgstr "Pole Checksums-%s zawiera niepoprawną linię \"%s\""
  4094. #~ msgid "file `%s' listed twice in Files field"
  4095. #~ msgstr "plik \"%s\" dwukrotnie wymieniony w polu Fields"
  4096. #~ msgid "applying all patches with %s"
  4097. #~ msgstr "nakładanie wszystkich łatek z użyciem %s"
  4098. #~ msgid "unable to open substvars file %s: %s"
  4099. #~ msgstr "nie można otworzyć pliku podstawień %s: %s"
  4100. #~ msgid "Couldn't call dpkg-deb on %s: %s, skipping package"
  4101. #~ msgstr "Nie można uruchomić dpkg-deb na %s: %s, pomijanie pakietu"
  4102. #~ msgid "Couldn't open override file %s"
  4103. #~ msgstr "Nie można otworzyć pliku nadpisań %s"
  4104. #~ msgid ""
  4105. #~ "Unprocessed text from %s control file; info:\n"
  4106. #~ "%s / %s"
  4107. #~ msgstr ""
  4108. #~ "Nieprzetworzony tekst z pliku kontrolnego %s - informacje:\n"
  4109. #~ "%s / %s"
  4110. #~ msgid "can't read override file %s"
  4111. #~ msgstr "nie można odczytać pliku nadpisań %s"
  4112. #~ msgid "error closing override file"
  4113. #~ msgstr "błąd zamknięcia pliku nadpisań"
  4114. #~ msgid "can't read source override file %s"
  4115. #~ msgstr "nie można czytać pliku nadpisań źródeł %s"
  4116. #~ msgid "error closing source override file"
  4117. #~ msgstr "błąd zapisywania pliku nadpisań źródeł"
  4118. #~ msgid "parsing an empty file %s"
  4119. #~ msgstr "przetwarzanie pustego pliku %s"
  4120. #~ msgid "fatal error"
  4121. #~ msgstr "fatalny błąd"
  4122. #~ msgid "can't open file %s: %s"
  4123. #~ msgstr "nie można otworzyć pliku %s: %s"
  4124. #~ msgid "can't load IO::String: %s"
  4125. #~ msgstr "nie można załadować IO::String: %s"
  4126. #~ msgid "can't close file %s: %s"
  4127. #~ msgstr "nie można zamknąć pliku %s: %s"
  4128. #~ msgid "exec du"
  4129. #~ msgstr "uruchamianie du"
  4130. #~ msgid "%s has PGP start token but not end token"
  4131. #~ msgstr ""
  4132. #~ "%s zawiera początkowy znacznik PGP, ale nie zawiera znacznika końcowego"
  4133. #~ msgid "can't read %s: %s"
  4134. #~ msgstr "nie można odczytać %s: %s"
  4135. #~ msgid "%s invalid (contains blank line)"
  4136. #~ msgstr "niepoprawny %s (zawiera pustą linię)"
  4137. #~ msgid "duplicate source field in %s"
  4138. #~ msgstr "zduplikowane pole źródłowe w %s"
  4139. #~ msgid "duplicate binary field in %s"
  4140. #~ msgstr "zduplikowane pole binarne w %s"
  4141. #~ msgid "can't fork"
  4142. #~ msgstr "błąd fork"
  4143. #~ msgid "cannot fork for dpkg --search"
  4144. #~ msgstr "błąd fork dla dpkg --search"
  4145. #~ msgid "unable to open ostable"
  4146. #~ msgstr "nie można otworzyć ostable"
  4147. #~ msgid "unable to open triplettable"
  4148. #~ msgstr "nie można otworzyć triplettable"
  4149. #~ msgid "cannot fork for objdump"
  4150. #~ msgstr "niepowodzenie fork dla objdump"
  4151. #~ msgid "can't write %s"
  4152. #~ msgstr "nie można zapisać %s"
  4153. #~ msgid "can't read %s"
  4154. #~ msgstr "nie można odczytać %s"
  4155. #~ msgid "Strange text from 'md5sum < %s': '%s'"
  4156. #~ msgstr "Dziwny tekst od \"md5sum < %s\": \"%s\""
  4157. #~ msgid "Couldn't stat %s"
  4158. #~ msgstr "Nie można ustalić stanu %s"
  4159. #~ msgid "error doing fstat on %s:"
  4160. #~ msgstr "błąd przy ustalaniu stanu (fstat) dla %s:"
  4161. #~ msgid "can't dup %s:"
  4162. #~ msgstr "nie można dup %s:"
  4163. #~ msgid "can't rewind %s:"
  4164. #~ msgstr "nie można przewinąć %s:"
  4165. #~ msgid "can't exec md5sum:"
  4166. #~ msgstr "nie można uruchomić md5sum:"
  4167. #~ msgid "invalid md5 output for %s (%s)"
  4168. #~ msgstr "niepoprawny skrót md5 dla (%s) %s"
  4169. #~ msgid "Usage: 822-date"
  4170. #~ msgstr "Użycie: 822-date"
  4171. #~ msgid "This program is deprecated. Please use 'date -R' instead."
  4172. #~ msgstr "Ten program jest przestarzały. Proszę używać \"date -R\"."
  4173. #~ msgid "cannot combine %s and -S"
  4174. #~ msgstr "nie można łączyć %s i -S"
  4175. #~ msgid ""
  4176. #~ "substvars support is deprecated (see README.feature-removal-schedule)"
  4177. #~ msgstr ""
  4178. #~ "wsparcie dla substvars jest przestarzałe (patrz README.feature-removal-"
  4179. #~ "schedule)"
  4180. #~ msgid "Dpkg::Deps::Simple can't evaluate implication with a %s!"
  4181. #~ msgstr "Dpkg::Deps::Simple nie może przetworzyć wynikania zależności z %s!"
  4182. #~ msgid "failure"
  4183. #~ msgstr "niepowodzenie"
  4184. #~ msgid "field %s has newline then non whitespace >%s<"
  4185. #~ msgstr ""
  4186. #~ "pole %s ma znak nowej linii, po której nie następuje biały znak >%s<"
  4187. #~ msgid "field %s has blank lines >%s<"
  4188. #~ msgstr "pole %s ma puste linie >%s<"
  4189. #~ msgid "field %s has trailing newline >%s<"
  4190. #~ msgstr "pole %s kończy się znakiem nowej linii >%s<"
  4191. #~ msgid "invalid exec parameter in fork_and_exec()"
  4192. #~ msgstr "niepoprawny parametr \"exec\" w fork_and_exec()"
  4193. #~ msgid "no PID set, cannot wait end of process"
  4194. #~ msgstr "nie ustawiono PID, nie można oczekiwać na zakończenie procesu"
  4195. #~ msgid "tried to add file `%s' twice"
  4196. #~ msgstr "próbowano dwukrotnie dodać plik \"%s\""