pl.po 124 KB

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