pl.po 107 KB

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