pl.po 95 KB

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