pl.po 155 KB

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