pl.po 97 KB

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