pl.po 165 KB

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