pl.po 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152
  1. # Advanced Package Transfer - APT message translation catalog
  2. # Polish translation by:
  3. #
  4. # Nazewnictwo i spójność tłumaczeń programów apt, aptitude, synaptic i innych:
  5. # http://wiki.debian.org/PolishL10N/PackageInstallers
  6. # Marcin Owsiany <porridge@debian.org>, 2002, 2003, 2004.
  7. # Bartosz Fenski <fenio@debian.org>, 2005, 2006.
  8. # Wiktor Wandachowicz <siryes@gmail.com>, 2008, 2009.
  9. # Michał Kułach <michal.kulach@gmail.com>, 2012.
  10. msgid ""
  11. msgstr ""
  12. "Project-Id-Version: apt 0.9.7.3\n"
  13. "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
  14. "POT-Creation-Date: 2015-09-11 23:36+0200\n"
  15. "PO-Revision-Date: 2012-07-28 21:53+0200\n"
  16. "Last-Translator: Michał Kułach <michal.kulach@gmail.com>\n"
  17. "Language-Team: Polish <debian-l10n-polish@lists.debian.org>\n"
  18. "Language: pl\n"
  19. "MIME-Version: 1.0\n"
  20. "Content-Type: text/plain; charset=UTF-8\n"
  21. "Content-Transfer-Encoding: 8bit\n"
  22. "X-Generator: Lokalize 1.2\n"
  23. "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
  24. "|| n%100>=20) ? 1 : 2);\n"
  25. #: cmdline/apt-cache.cc:149
  26. #, c-format
  27. msgid "Package %s version %s has an unmet dep:\n"
  28. msgstr "Pakiet %s w wersji %s ma niespełnione zależności:\n"
  29. #: cmdline/apt-cache.cc:319
  30. #, fuzzy
  31. msgid "apt-cache stats does not take any arguments"
  32. msgstr "Polecenie update nie wymaga żadnych argumentów"
  33. #: cmdline/apt-cache.cc:325
  34. msgid "Total package names: "
  35. msgstr "Liczba nazw pakietów: "
  36. #: cmdline/apt-cache.cc:327
  37. msgid "Total package structures: "
  38. msgstr "Liczba wszystkich typów pakietów: "
  39. #: cmdline/apt-cache.cc:367
  40. msgid " Normal packages: "
  41. msgstr " Zwykłych pakietów: "
  42. #: cmdline/apt-cache.cc:368
  43. msgid " Pure virtual packages: "
  44. msgstr " Czysto wirtualnych pakietów: "
  45. #: cmdline/apt-cache.cc:369
  46. msgid " Single virtual packages: "
  47. msgstr " Pojedynczych pakietów wirtualnych: "
  48. #: cmdline/apt-cache.cc:370
  49. msgid " Mixed virtual packages: "
  50. msgstr " Mieszanych pakietów wirtualnych: "
  51. #: cmdline/apt-cache.cc:371
  52. msgid " Missing: "
  53. msgstr " Brakujących: "
  54. #: cmdline/apt-cache.cc:373
  55. msgid "Total distinct versions: "
  56. msgstr "W sumie różnych wersji: "
  57. #: cmdline/apt-cache.cc:375
  58. msgid "Total distinct descriptions: "
  59. msgstr "W sumie różnych opisów: "
  60. #: cmdline/apt-cache.cc:377
  61. msgid "Total dependencies: "
  62. msgstr "W sumie zależności: "
  63. #: cmdline/apt-cache.cc:380
  64. msgid "Total ver/file relations: "
  65. msgstr "W sumie zależności wersja/plik: "
  66. #: cmdline/apt-cache.cc:382
  67. msgid "Total Desc/File relations: "
  68. msgstr "W sumie zależności opis/plik: "
  69. #: cmdline/apt-cache.cc:384
  70. msgid "Total Provides mappings: "
  71. msgstr "W sumie mapowań zapewnień: "
  72. #: cmdline/apt-cache.cc:440
  73. msgid "Total globbed strings: "
  74. msgstr "W sumie dopasowanych napisów: "
  75. #: cmdline/apt-cache.cc:446
  76. msgid "Total slack space: "
  77. msgstr "Sumaryczny rozmiar niewykorzystanego miejsca: "
  78. #: cmdline/apt-cache.cc:463
  79. msgid "Total space accounted for: "
  80. msgstr "Całkowity rozmiar: "
  81. #: cmdline/apt-cache.cc:605 cmdline/apt-cache.cc:1256
  82. #: apt-private/private-show.cc:58
  83. #, c-format
  84. msgid "Package file %s is out of sync."
  85. msgstr "Plik pakietu %s jest przestarzały."
  86. #: cmdline/apt-cache.cc:680 cmdline/apt-cache.cc:1541 cmdline/apt-cache.cc:1543
  87. #: cmdline/apt-cache.cc:1624 cmdline/apt-mark.cc:56 cmdline/apt-mark.cc:103
  88. #: cmdline/apt-mark.cc:229 apt-private/private-show.cc:173
  89. #: apt-private/private-show.cc:175
  90. msgid "No packages found"
  91. msgstr "Nie znaleziono żadnych pakietów"
  92. #: cmdline/apt-cache.cc:1356 apt-private/private-search.cc:41
  93. msgid "You must give at least one search pattern"
  94. msgstr "Należy podać przynajmniej jeden wzorzec"
  95. #: cmdline/apt-cache.cc:1520
  96. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  97. msgstr "To polecenie jest przestarzałe. Prosimy używać \"apt-mark showauto\"."
  98. #: cmdline/apt-cache.cc:1619 apt-pkg/cacheset.cc:754
  99. #, c-format
  100. msgid "Unable to locate package %s"
  101. msgstr "Nie udało się odnaleźć pakietu %s"
  102. #: cmdline/apt-cache.cc:1649
  103. msgid "Package files:"
  104. msgstr "Plików pakietów:"
  105. #: cmdline/apt-cache.cc:1658 cmdline/apt-cache.cc:1766
  106. msgid "Cache is out of sync, can't x-ref a package file"
  107. msgstr ""
  108. "Magazyn podręczny jest przestarzały, nie można odwołać się (x-ref) do pliku "
  109. "pakietu."
  110. #. Show any packages have explicit pins
  111. #: cmdline/apt-cache.cc:1672
  112. msgid "Pinned packages:"
  113. msgstr "Przypięte pakiety:"
  114. #: cmdline/apt-cache.cc:1686 cmdline/apt-cache.cc:1743
  115. msgid "(not found)"
  116. msgstr "(nie znaleziono)"
  117. #. Print the package name and the version we are forcing to
  118. #: cmdline/apt-cache.cc:1700
  119. #, c-format
  120. msgid "%s -> %s with priority %d\n"
  121. msgstr ""
  122. #: cmdline/apt-cache.cc:1706
  123. msgid " Installed: "
  124. msgstr " Zainstalowana: "
  125. #: cmdline/apt-cache.cc:1707
  126. msgid " Candidate: "
  127. msgstr " Kandydująca: "
  128. #: cmdline/apt-cache.cc:1725 cmdline/apt-cache.cc:1733
  129. msgid "(none)"
  130. msgstr "(brak)"
  131. #: cmdline/apt-cache.cc:1740
  132. msgid " Package pin: "
  133. msgstr " Sposób przypięcia: "
  134. #. Show the priority tables
  135. #: cmdline/apt-cache.cc:1749
  136. msgid " Version table:"
  137. msgstr " Tabela wersji:"
  138. #: cmdline/apt-cache.cc:1871
  139. msgid ""
  140. "Usage: apt-cache [options] command\n"
  141. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  142. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  143. "\n"
  144. "apt-cache is a low-level tool used to query information\n"
  145. "from APT's binary cache files\n"
  146. "\n"
  147. "Commands:\n"
  148. " gencaches - Build both the package and source cache\n"
  149. " showpkg - Show some general information for a single package\n"
  150. " showsrc - Show source records\n"
  151. " stats - Show some basic statistics\n"
  152. " dump - Show the entire file in a terse form\n"
  153. " dumpavail - Print an available file to stdout\n"
  154. " unmet - Show unmet dependencies\n"
  155. " search - Search the package list for a regex pattern\n"
  156. " show - Show a readable record for the package\n"
  157. " depends - Show raw dependency information for a package\n"
  158. " rdepends - Show reverse dependency information for a package\n"
  159. " pkgnames - List the names of all packages in the system\n"
  160. " dotty - Generate package graphs for GraphViz\n"
  161. " xvcg - Generate package graphs for xvcg\n"
  162. " policy - Show policy settings\n"
  163. "\n"
  164. "Options:\n"
  165. " -h This help text.\n"
  166. " -p=? The package cache.\n"
  167. " -s=? The source cache.\n"
  168. " -q Disable progress indicator.\n"
  169. " -i Show only important deps for the unmet command.\n"
  170. " -c=? Read this configuration file\n"
  171. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  172. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  173. msgstr ""
  174. "Użycie: apt-cache [opcje] polecenie\n"
  175. " apt-cache [opcje] showpkg pakiet1 [pakiet2 ...]\n"
  176. " apt-cache [opcje] showsrc pakiet1 [pakiet2 ...]\n"
  177. "\n"
  178. "apt-cache to niskopoziomowe narzędzie służące pobierania informacji\n"
  179. "z podręcznego magazynu plików binarnych APT-a.\n"
  180. "\n"
  181. "Polecenia:\n"
  182. " gencaches - Buduje magazyn podręczny pakietów i źródeł\n"
  183. " showpkg - Pokazuje ogólne informacje na temat pojedynczego pakietu\n"
  184. " showsrc - Pokazuje informacje dla źródeł\n"
  185. " stats - Pokazuje podstawowe statystyki\n"
  186. " dump - Pokazuje cały plik w skrótowej formie\n"
  187. " dumpavail - Wypisuje plik dostępnych pakietów na standardowe wyjście\n"
  188. " unmet - Pokazuje niespełnione zależności\n"
  189. " search - Przeszukuje listę pakietów według wyrażenia regularnego\n"
  190. " show - Pokazuje informacje dla danego pakietu\n"
  191. " depends - Pokazuje surowe informacje o zależnościach danego pakietu\n"
  192. " rdepends - Pokazuje informacje o zależnościach OD danego pakietu\n"
  193. " pkgnames - Pokazuje listę nazw wszystkich pakietów w systemie\n"
  194. " dotty - Generuje grafy pakietów dla programu GraphViz\n"
  195. " xvcg - Generuje grafy pakietów dla programu xvcg\n"
  196. " policy - Pokazuje ustawienia polityki\n"
  197. "\n"
  198. "Opcje:\n"
  199. " -h Ten tekst pomocy.\n"
  200. " -p=? Podręczny magazyn pakietów.\n"
  201. " -s=? Podręczny magazyn źródeł.\n"
  202. " -q Wyłącza wskaźnik postępu.\n"
  203. " -i Pokazuje tylko ważne zależności przy poleceniu unmet.\n"
  204. " -c=? Czyta wskazany plik konfiguracyjny.\n"
  205. " -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n"
  206. "Więcej informacji można znaleźć na stronach podręcznika apt-cache(8)\n"
  207. "oraz apt.conf(5).\n"
  208. #: cmdline/apt-cdrom.cc:77
  209. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  210. msgstr "Proszę wprowadzić nazwę dla tej płyty, np. \"Debian 5.0.3 Disk 1\""
  211. #: cmdline/apt-cdrom.cc:92
  212. #, fuzzy
  213. msgid "Please insert a Disc in the drive and press [Enter]"
  214. msgstr "Proszę włożyć dysk do napędu i nacisnąć enter"
  215. #: cmdline/apt-cdrom.cc:140
  216. #, c-format
  217. msgid "Failed to mount '%s' to '%s'"
  218. msgstr "Nie udało się zamontować \"%s\" w \"%s\""
  219. #: cmdline/apt-cdrom.cc:179
  220. msgid ""
  221. "No CD-ROM could be auto-detected or found using the default mount point.\n"
  222. "You may try the --cdrom option to set the CD-ROM mount point.\n"
  223. "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and "
  224. "mount point."
  225. msgstr ""
  226. #: cmdline/apt-cdrom.cc:183
  227. msgid "Repeat this process for the rest of the CDs in your set."
  228. msgstr "Należy powtórzyć ten proces dla reszty płyt."
  229. #: cmdline/apt-config.cc:48
  230. msgid "Arguments not in pairs"
  231. msgstr "Argumenty nie są w parach"
  232. #: cmdline/apt-config.cc:88
  233. msgid ""
  234. "Usage: apt-config [options] command\n"
  235. "\n"
  236. "apt-config is a simple tool to read the APT config file\n"
  237. "\n"
  238. "Commands:\n"
  239. " shell - Shell mode\n"
  240. " dump - Show the configuration\n"
  241. "\n"
  242. "Options:\n"
  243. " -h This help text.\n"
  244. " -c=? Read this configuration file\n"
  245. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  246. msgstr ""
  247. "Użycie: apt-config [opcje] polecenie\n"
  248. "\n"
  249. "apt-config to proste narzędzie do czytania pliku konfiguracyjnego APT\n"
  250. "\n"
  251. "Polecenia:\n"
  252. " shell - Tryb powłoki\n"
  253. " dump - Pokazuje konfigurację\n"
  254. "\n"
  255. "Opcje:\n"
  256. " -h Ten tekst pomocy.\n"
  257. " -c=? Czyta wskazany plik konfiguracyjny.\n"
  258. " -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n"
  259. #: cmdline/apt-get.cc:211
  260. #, fuzzy, c-format
  261. msgid "Can not find a package for architecture '%s'"
  262. msgstr ""
  263. "Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\""
  264. #: cmdline/apt-get.cc:287
  265. #, fuzzy, c-format
  266. msgid "Can not find a package '%s' with version '%s'"
  267. msgstr ""
  268. "Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\""
  269. #: cmdline/apt-get.cc:290
  270. #, fuzzy, c-format
  271. msgid "Can not find a package '%s' with release '%s'"
  272. msgstr ""
  273. "Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\""
  274. #: cmdline/apt-get.cc:327
  275. #, c-format
  276. msgid "Picking '%s' as source package instead of '%s'\n"
  277. msgstr "Zmieniono wybrany pakiet źródłowy na \"%s\" z \"%s\"\n"
  278. #: cmdline/apt-get.cc:386
  279. #, fuzzy, c-format
  280. msgid "Can not find version '%s' of package '%s'"
  281. msgstr "Ignorowanie niedostępnej wersji \"%s\" pakietu \"%s\""
  282. #: cmdline/apt-get.cc:417
  283. #, c-format
  284. msgid "Couldn't find package %s"
  285. msgstr "Nie udało się odnaleźć pakietu %s"
  286. #: cmdline/apt-get.cc:422 cmdline/apt-mark.cc:78
  287. #: apt-private/private-install.cc:851
  288. #, c-format
  289. msgid "%s set to manually installed.\n"
  290. msgstr "%s zaznaczony jako zainstalowany ręcznie.\n"
  291. #: cmdline/apt-get.cc:424 cmdline/apt-mark.cc:80
  292. #, c-format
  293. msgid "%s set to automatically installed.\n"
  294. msgstr "%s zaznaczony jako zainstalowany automatycznie.\n"
  295. #: cmdline/apt-get.cc:432 cmdline/apt-mark.cc:124
  296. msgid ""
  297. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  298. "instead."
  299. msgstr ""
  300. "To polecenie jest przestarzałe. Prosimy używać \"apt-mark auto\" i \"apt-"
  301. "mark manual\"."
  302. #: cmdline/apt-get.cc:501 cmdline/apt-get.cc:509
  303. msgid "Internal error, problem resolver broke stuff"
  304. msgstr "Błąd wewnętrzny, spowodowany przez moduł rozwiązywania problemów"
  305. #: cmdline/apt-get.cc:570
  306. msgid "Unable to lock the download directory"
  307. msgstr "Nie udało się zablokować katalogu pobierania"
  308. #: cmdline/apt-get.cc:685
  309. msgid "Must specify at least one package to fetch source for"
  310. msgstr ""
  311. "Należy podać przynajmniej jeden pakiet, dla którego mają zostać pobrane "
  312. "źródła"
  313. #: cmdline/apt-get.cc:722 cmdline/apt-get.cc:1029
  314. #, c-format
  315. msgid "Unable to find a source package for %s"
  316. msgstr "Nie udało się odnaleźć źródła dla pakietu %s"
  317. #: cmdline/apt-get.cc:742
  318. #, c-format
  319. msgid ""
  320. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  321. "%s\n"
  322. msgstr ""
  323. "UWAGA: pakietowanie \"%s\" jest zarządzane w systemie kontroli wersji \"%s\" "
  324. "pod adresem:\n"
  325. "%s\n"
  326. #: cmdline/apt-get.cc:747
  327. #, c-format
  328. msgid ""
  329. "Please use:\n"
  330. "bzr branch %s\n"
  331. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  332. msgstr ""
  333. "Proszę użyć:\n"
  334. "bzr branch %s\n"
  335. "by pobrać najnowsze (prawdopodobnie jeszcze niewydane) poprawki tego "
  336. "pakietu.\n"
  337. #: cmdline/apt-get.cc:795
  338. #, c-format
  339. msgid "Skipping already downloaded file '%s'\n"
  340. msgstr "Pomijanie już pobranego pliku \"%s\"\n"
  341. #. TRANSLATOR: The required space between number and unit is already included
  342. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  343. #: cmdline/apt-get.cc:825
  344. #, c-format
  345. msgid "Need to get %sB/%sB of source archives.\n"
  346. msgstr "Konieczne pobranie %sB/%sB archiwów źródeł.\n"
  347. #. TRANSLATOR: The required space between number and unit is already included
  348. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  349. #: cmdline/apt-get.cc:830
  350. #, c-format
  351. msgid "Need to get %sB of source archives.\n"
  352. msgstr "Konieczne pobranie %sB archiwów źródeł.\n"
  353. #: cmdline/apt-get.cc:836
  354. #, c-format
  355. msgid "Fetch source %s\n"
  356. msgstr "Pobieranie źródeł %s\n"
  357. #: cmdline/apt-get.cc:858
  358. msgid "Failed to fetch some archives."
  359. msgstr "Nie udało się pobrać niektórych archiwów."
  360. #: cmdline/apt-get.cc:863 apt-private/private-install.cc:300
  361. msgid "Download complete and in download only mode"
  362. msgstr "Ukończono pobieranie w trybie samego pobierania"
  363. #: cmdline/apt-get.cc:888
  364. #, c-format
  365. msgid "Skipping unpack of already unpacked source in %s\n"
  366. msgstr "Pomijanie rozpakowania już rozpakowanego źródła w %s\n"
  367. #: cmdline/apt-get.cc:901
  368. #, c-format
  369. msgid "Unpack command '%s' failed.\n"
  370. msgstr "Polecenie rozpakowania \"%s\" zawiodło.\n"
  371. #: cmdline/apt-get.cc:902
  372. #, c-format
  373. msgid "Check if the 'dpkg-dev' package is installed.\n"
  374. msgstr "Proszę sprawdzić czy pakiet \"dpkg-dev\" jest zainstalowany.\n"
  375. #: cmdline/apt-get.cc:930
  376. #, c-format
  377. msgid "Build command '%s' failed.\n"
  378. msgstr "Polecenie budowania \"%s\" zawiodło.\n"
  379. #: cmdline/apt-get.cc:949
  380. msgid "Child process failed"
  381. msgstr "Proces potomny zawiódł"
  382. #: cmdline/apt-get.cc:970
  383. msgid "Must specify at least one package to check builddeps for"
  384. msgstr ""
  385. "Należy podać przynajmniej jeden pakiet, dla którego mają zostać sprawdzone "
  386. "zależności dla budowania"
  387. #: cmdline/apt-get.cc:988
  388. #, c-format
  389. msgid ""
  390. "No architecture information available for %s. See apt.conf(5) APT::"
  391. "Architectures for setup"
  392. msgstr ""
  393. "Nie znaleziono informacji o architekturze dla %s. Proszę zapoznać się z apt."
  394. "conf(5) APT::Architectures"
  395. #: cmdline/apt-get.cc:1006
  396. #, c-format
  397. msgid "Note, using directory '%s' to get the build dependencies\n"
  398. msgstr ""
  399. #: cmdline/apt-get.cc:1016
  400. #, fuzzy, c-format
  401. msgid "Note, using file '%s' to get the build dependencies\n"
  402. msgstr "Nie udało się przetworzyć zależności dla budowania"
  403. #: cmdline/apt-get.cc:1041 cmdline/apt-get.cc:1044
  404. #, c-format
  405. msgid "Unable to get build-dependency information for %s"
  406. msgstr "Nie udało się pobrać informacji o zależnościach dla budowania %s"
  407. #: cmdline/apt-get.cc:1064
  408. #, c-format
  409. msgid "%s has no build depends.\n"
  410. msgstr "%s nie ma zależności dla budowania.\n"
  411. #: cmdline/apt-get.cc:1234
  412. #, c-format
  413. msgid ""
  414. "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  415. "packages"
  416. msgstr ""
  417. "Zależność %s od %s nie może zostać spełniona, ponieważ %s nie jest dozwolone "
  418. "w pakietach \"%s\""
  419. #: cmdline/apt-get.cc:1252
  420. #, c-format
  421. msgid ""
  422. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  423. "found"
  424. msgstr ""
  425. "Zależność %s od %s nie może zostać spełniona, ponieważ nie znaleziono "
  426. "pakietu %s"
  427. #: cmdline/apt-get.cc:1275
  428. #, c-format
  429. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  430. msgstr ""
  431. "Nie udało się spełnić zależności %s od %s: Zainstalowany pakiet %s jest zbyt "
  432. "nowy"
  433. #: cmdline/apt-get.cc:1314
  434. #, c-format
  435. msgid ""
  436. "%s dependency for %s cannot be satisfied because candidate version of "
  437. "package %s can't satisfy version requirements"
  438. msgstr ""
  439. "Zależność %s od %s nie może zostać spełniona, ponieważ kandydująca wersja "
  440. "pakietu %s nie spełnia wymagań wersji"
  441. #: cmdline/apt-get.cc:1320
  442. #, c-format
  443. msgid ""
  444. "%s dependency for %s cannot be satisfied because package %s has no candidate "
  445. "version"
  446. msgstr ""
  447. "Zależność %s od %s nie może zostać spełniona, ponieważ pakiet %s nie ma "
  448. "wersji kandydującej"
  449. #: cmdline/apt-get.cc:1343
  450. #, c-format
  451. msgid "Failed to satisfy %s dependency for %s: %s"
  452. msgstr "Nie udało się spełnić zależności %s od %s: %s"
  453. #: cmdline/apt-get.cc:1358
  454. #, c-format
  455. msgid "Build-dependencies for %s could not be satisfied."
  456. msgstr "Nie udało się spełnić zależności dla budowania %s."
  457. #: cmdline/apt-get.cc:1363
  458. msgid "Failed to process build dependencies"
  459. msgstr "Nie udało się przetworzyć zależności dla budowania"
  460. #: cmdline/apt-get.cc:1553
  461. msgid "Supported modules:"
  462. msgstr "Obsługiwane moduły:"
  463. #: cmdline/apt-get.cc:1594
  464. msgid ""
  465. "Usage: apt-get [options] command\n"
  466. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  467. " apt-get [options] source pkg1 [pkg2 ...]\n"
  468. "\n"
  469. "apt-get is a simple command line interface for downloading and\n"
  470. "installing packages. The most frequently used commands are update\n"
  471. "and install.\n"
  472. "\n"
  473. "Commands:\n"
  474. " update - Retrieve new lists of packages\n"
  475. " upgrade - Perform an upgrade\n"
  476. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  477. " remove - Remove packages\n"
  478. " autoremove - Remove automatically all unused packages\n"
  479. " purge - Remove packages and config files\n"
  480. " source - Download source archives\n"
  481. " build-dep - Configure build-dependencies for source packages\n"
  482. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  483. " dselect-upgrade - Follow dselect selections\n"
  484. " clean - Erase downloaded archive files\n"
  485. " autoclean - Erase old downloaded archive files\n"
  486. " check - Verify that there are no broken dependencies\n"
  487. " changelog - Download and display the changelog for the given package\n"
  488. " download - Download the binary package into the current directory\n"
  489. "\n"
  490. "Options:\n"
  491. " -h This help text.\n"
  492. " -q Loggable output - no progress indicator\n"
  493. " -qq No output except for errors\n"
  494. " -d Download only - do NOT install or unpack archives\n"
  495. " -s No-act. Perform ordering simulation\n"
  496. " -y Assume Yes to all queries and do not prompt\n"
  497. " -f Attempt to correct a system with broken dependencies in place\n"
  498. " -m Attempt to continue if archives are unlocatable\n"
  499. " -u Show a list of upgraded packages as well\n"
  500. " -b Build the source package after fetching it\n"
  501. " -V Show verbose version numbers\n"
  502. " -c=? Read this configuration file\n"
  503. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  504. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  505. "pages for more information and options.\n"
  506. " This APT has Super Cow Powers.\n"
  507. msgstr ""
  508. "Użycie: apt-get [opcje] polecenie\n"
  509. " apt-get [opcje] install|remove pakiet1 [pakiet2 ...]\n"
  510. " apt-get [opcje] source pakiet1 [pakiet2 ...]\n"
  511. "\n"
  512. "apt-get to prosty interfejs wiersza poleceń do pobierania i instalacji\n"
  513. "pakietów. Najczęściej używane polecenia to update i install.\n"
  514. "\n"
  515. "Polecenia:\n"
  516. " update - Pobiera nowe listy pakietów\n"
  517. " upgrade - Wykonuje aktualizację\n"
  518. " install - Instaluje nowe pakiety (pakiet to np. libc6, nie libc6.deb)\n"
  519. " remove - Usuwa pakiety\n"
  520. " autoremove - Usuwa automatycznie wszystkie nieużywane pakiety\n"
  521. " purge - Usuwa pakiety łącznie z plikami konfiguracyjnymi\n"
  522. " source - Pobiera archiwa źródłowe\n"
  523. " build-dep - Konfiguruje zależności dla budowania pakietów źródłowych\n"
  524. " dist-upgrade - Aktualizacja dystrybucji, patrz apt-get(8)\n"
  525. " dselect-upgrade - Instaluje według wyborów dselect\n"
  526. " clean - Usuwa pobrane pliki archiwów\n"
  527. " autoclean - Usuwa stare pobrane pliki archiwów\n"
  528. " check - Sprawdza, czy wszystkie zależności są spełnione\n"
  529. " changelog - Pobiera i wyświetla dziennika zmian wybranych pakietów\n"
  530. " download - Pobiera pakiet binarny do bieżącego katalogu\n"
  531. "\n"
  532. "Opcje:\n"
  533. " -h Ten tekst pomocy\n"
  534. " -q Nie pokazuje wskaźnika postępu (przydatne przy rejestrowaniu "
  535. "działania)\n"
  536. " -qq Nie wypisuje nic oprócz komunikatów błędów\n"
  537. " -d Tylko pobiera - NIE instaluje ani nie rozpakowuje archiwów\n"
  538. " -s Bez działania. Wykonuje tylko symulację ustalenia kolejności\n"
  539. " -y Zakłada odpowiedź \"tak\" na wszystkie pytania, nie pyta\n"
  540. " -f Próbuje naprawić system, w którym występują niespełnione zależności\n"
  541. " -m Próbuje działać nawet jeśli nie można znaleźć niektórych archiwów\n"
  542. " -u Pokazuje też listę aktualizowanych pakietów\n"
  543. " -b Buduje pakiet po pobraniu archiwum źródłowego\n"
  544. " -V Pokazuje pełną informację na temat wersji\n"
  545. " -c=? Czyta wskazany plik konfiguracyjny.\n"
  546. " -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n"
  547. "Więcej informacji i opcji można znaleźć na stronach podręcznika\n"
  548. "apt-get(8), sources.list(5) i apt.conf(5).\n"
  549. " Ten APT ma moce Super Krowy.\n"
  550. #: cmdline/apt-helper.cc:37
  551. msgid "Need one URL as argument"
  552. msgstr ""
  553. #: cmdline/apt-helper.cc:50
  554. #, fuzzy
  555. msgid "Must specify at least one pair url/filename"
  556. msgstr ""
  557. "Należy podać przynajmniej jeden pakiet, dla którego mają zostać pobrane "
  558. "źródła"
  559. #: cmdline/apt-helper.cc:73 cmdline/apt-helper.cc:77
  560. msgid "Download Failed"
  561. msgstr ""
  562. #: cmdline/apt-helper.cc:98 cmdline/apt-helper.cc:101
  563. #, c-format
  564. msgid "GetSrvRec failed for %s"
  565. msgstr ""
  566. #: cmdline/apt-helper.cc:117
  567. msgid ""
  568. "Usage: apt-helper [options] command\n"
  569. " apt-helper [options] download-file uri target-path\n"
  570. "\n"
  571. "apt-helper is a internal helper for apt\n"
  572. "\n"
  573. "Commands:\n"
  574. " download-file - download the given uri to the target-path\n"
  575. " srv-lookup - lookup a SRV record (e.g. _http._tcp.ftp.debian.org)\n"
  576. " auto-detect-proxy - detect proxy using apt.conf\n"
  577. "\n"
  578. " This APT helper has Super Meep Powers.\n"
  579. msgstr ""
  580. #: cmdline/apt-mark.cc:65
  581. #, c-format
  582. msgid "%s can not be marked as it is not installed.\n"
  583. msgstr "%s nie może zostać oznaczony, ponieważ nie jest zainstalowany.\n"
  584. #: cmdline/apt-mark.cc:71
  585. #, c-format
  586. msgid "%s was already set to manually installed.\n"
  587. msgstr "%s został już ustawiony jako zainstalowany ręcznie.\n"
  588. #: cmdline/apt-mark.cc:73
  589. #, c-format
  590. msgid "%s was already set to automatically installed.\n"
  591. msgstr "%s został już ustawiony jako zainstalowany automatycznie.\n"
  592. #: cmdline/apt-mark.cc:238
  593. #, c-format
  594. msgid "%s was already set on hold.\n"
  595. msgstr "%s został już zatrzymany.\n"
  596. #: cmdline/apt-mark.cc:240
  597. #, c-format
  598. msgid "%s was already not hold.\n"
  599. msgstr "%s został już odznaczony jako zatrzymany.\n"
  600. #: cmdline/apt-mark.cc:255 cmdline/apt-mark.cc:333 cmdline/apt-mark.cc:397
  601. #: apt-pkg/deb/dpkgpm.cc:1302 apt-pkg/contrib/fileutl.cc:850
  602. #: apt-pkg/contrib/gpgv.cc:207
  603. #, c-format
  604. msgid "Waited for %s but it wasn't there"
  605. msgstr "Oczekiwano na proces %s, ale nie było go"
  606. #: cmdline/apt-mark.cc:270 cmdline/apt-mark.cc:380
  607. #, c-format
  608. msgid "%s set on hold.\n"
  609. msgstr "%s został zatrzymany.\n"
  610. #: cmdline/apt-mark.cc:272 cmdline/apt-mark.cc:385
  611. #, c-format
  612. msgid "Canceled hold on %s.\n"
  613. msgstr "Odznaczono zatrzymanie %s\n"
  614. # Musi pasować do su i sudo.
  615. #: cmdline/apt-mark.cc:337 cmdline/apt-mark.cc:403
  616. msgid "Executing dpkg failed. Are you root?"
  617. msgstr ""
  618. "Uruchomienie dpkg nie powiodło się. Czy użyto uprawnień administratora?"
  619. #: cmdline/apt-mark.cc:449
  620. #, fuzzy
  621. msgid ""
  622. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  623. "\n"
  624. "apt-mark is a simple command line interface for marking packages\n"
  625. "as manually or automatically installed. It can also list marks.\n"
  626. "\n"
  627. "Commands:\n"
  628. " auto - Mark the given packages as automatically installed\n"
  629. " manual - Mark the given packages as manually installed\n"
  630. " hold - Mark a package as held back\n"
  631. " unhold - Unset a package set as held back\n"
  632. " showauto - Print the list of automatically installed packages\n"
  633. " showmanual - Print the list of manually installed packages\n"
  634. " showhold - Print the list of package on hold\n"
  635. "\n"
  636. "Options:\n"
  637. " -h This help text.\n"
  638. " -q Loggable output - no progress indicator\n"
  639. " -qq No output except for errors\n"
  640. " -s No-act. Just prints what would be done.\n"
  641. " -f read/write auto/manual marking in the given file\n"
  642. " -c=? Read this configuration file\n"
  643. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  644. "See the apt-mark(8) and apt.conf(5) manual pages for more information."
  645. msgstr ""
  646. "Użycie: apt-mark [opcje] {auto|manual} pakiet1 [pakiet2 ...]\n"
  647. "\n"
  648. "apt-mark jest prostym poleceniem wiersza poleceń do oznaczania pakietów\n"
  649. "jako zainstalowane automatycznie lub ręcznie. Może także służyć\n"
  650. "do wyświetlania stanu oznaczeń.\n"
  651. "\n"
  652. "Polecenia:\n"
  653. " auto - Oznacza dany pakiet jako zainstalowany automatycznie\n"
  654. " manual - Oznacza dany pakiet jako zainstalowany ręcznie\n"
  655. "\n"
  656. "Opcje:\n"
  657. " -h Ten tekst pomocy\n"
  658. " -q Nie pokazuje wskaźnika postępu (przydatne przy rejestrowaniu "
  659. "działania)\n"
  660. " -qq Nie wypisuje nic oprócz komunikatów błędów\n"
  661. " -s Symulacja - wyświetla jedynie co powinno zostać zrobione\n"
  662. " -f zapis/odczyt oznaczenia jako automatyczny/ręczny danego pliku\n"
  663. " -c=? Czyta wskazany plik konfiguracyjny.\n"
  664. " -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n"
  665. "Proszę zapoznać się ze stronami podręcznika systemowego apt-mark(8)\n"
  666. "i apt.conf(5), aby uzyskać więcej informacji."
  667. #: cmdline/apt.cc:46
  668. msgid ""
  669. "Usage: apt [options] command\n"
  670. "\n"
  671. "CLI for apt.\n"
  672. "Basic commands: \n"
  673. " list - list packages based on package names\n"
  674. " search - search in package descriptions\n"
  675. " show - show package details\n"
  676. "\n"
  677. " update - update list of available packages\n"
  678. "\n"
  679. " install - install packages\n"
  680. " remove - remove packages\n"
  681. " autoremove - Remove automatically all unused packages\n"
  682. "\n"
  683. " upgrade - upgrade the system by installing/upgrading packages\n"
  684. " full-upgrade - upgrade the system by removing/installing/upgrading "
  685. "packages\n"
  686. "\n"
  687. " edit-sources - edit the source information file\n"
  688. msgstr ""
  689. #: methods/cdrom.cc:203
  690. #, c-format
  691. msgid "Unable to read the cdrom database %s"
  692. msgstr "Nie można odczytać bazy danych CD-ROM-ów %s"
  693. #: methods/cdrom.cc:212
  694. msgid ""
  695. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  696. "cannot be used to add new CD-ROMs"
  697. msgstr ""
  698. "Proszę użyć programu apt-cdrom, aby APT mógł rozpoznać tę płytę CD. Nowych "
  699. "płyt nie można dodawać przy pomocy polecenia apt-get update"
  700. #: methods/cdrom.cc:222
  701. msgid "Wrong CD-ROM"
  702. msgstr "Niewłaściwa płyta CD"
  703. #: methods/cdrom.cc:249
  704. #, c-format
  705. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  706. msgstr "Nie udało się odmontować CD-ROM-u w %s, być może wciąż jest używany."
  707. #: methods/cdrom.cc:254
  708. msgid "Disk not found."
  709. msgstr "Nie odnaleziono dysku."
  710. #: methods/cdrom.cc:262 methods/file.cc:121 methods/rsh.cc:299
  711. msgid "File not found"
  712. msgstr "Nie odnaleziono pliku"
  713. #: methods/copy.cc:57 methods/gzip.cc:127 methods/rred.cc:663
  714. #: methods/rred.cc:673
  715. msgid "Failed to stat"
  716. msgstr "Nie udało się wykonać operacji stat"
  717. #: methods/copy.cc:101 methods/gzip.cc:134 methods/rred.cc:670
  718. msgid "Failed to set modification time"
  719. msgstr "Nie udało się ustawić czasu modyfikacji"
  720. #: methods/file.cc:49
  721. msgid "Invalid URI, local URIS must not start with //"
  722. msgstr "Nieprawidłowe URI, lokalne URI nie mogą zaczynać się od //"
  723. #. Login must be before getpeername otherwise dante won't work.
  724. #: methods/ftp.cc:177
  725. msgid "Logging in"
  726. msgstr "Logowanie się"
  727. #: methods/ftp.cc:183
  728. msgid "Unable to determine the peer name"
  729. msgstr "Nie można określić nazwy zdalnego systemu"
  730. #: methods/ftp.cc:188
  731. msgid "Unable to determine the local name"
  732. msgstr "Nie udało się określić nazwy lokalnego systemu"
  733. #: methods/ftp.cc:219 methods/ftp.cc:247
  734. #, c-format
  735. msgid "The server refused the connection and said: %s"
  736. msgstr "Serwer odrzucił połączenie, otrzymana odpowiedź: %s"
  737. #: methods/ftp.cc:225
  738. #, c-format
  739. msgid "USER failed, server said: %s"
  740. msgstr "Polecenie USER nie powiodło się, odpowiedź serwera: %s"
  741. #: methods/ftp.cc:232
  742. #, c-format
  743. msgid "PASS failed, server said: %s"
  744. msgstr "Polecenie PASS nie powiodło się, odpowiedź serwera: %s"
  745. #: methods/ftp.cc:252
  746. msgid ""
  747. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  748. "is empty."
  749. msgstr ""
  750. "Określono serwer pośredniczący, ale nie określono skryptu rejestrowania, "
  751. "Acquire::ftp::ProxyLogin jest puste."
  752. #: methods/ftp.cc:282
  753. #, c-format
  754. msgid "Login script command '%s' failed, server said: %s"
  755. msgstr ""
  756. "Polecenie skryptu rejestrowania \"%s\" nie powiodło się, odpowiedź serwera: "
  757. "%s"
  758. #: methods/ftp.cc:308
  759. #, c-format
  760. msgid "TYPE failed, server said: %s"
  761. msgstr "Polecenie TYPE nie powiodło się, odpowiedź serwera: %s"
  762. #: methods/ftp.cc:346 methods/ftp.cc:458 methods/rsh.cc:213 methods/rsh.cc:261
  763. msgid "Connection timeout"
  764. msgstr "Przekroczenie czasu połączenia"
  765. #: methods/ftp.cc:352
  766. msgid "Server closed the connection"
  767. msgstr "Serwer zamknął połączenie"
  768. #: methods/ftp.cc:355 methods/rsh.cc:220 apt-pkg/contrib/fileutl.cc:1569
  769. #: apt-pkg/contrib/fileutl.cc:1578 apt-pkg/contrib/fileutl.cc:1583
  770. #: apt-pkg/contrib/fileutl.cc:1585
  771. msgid "Read error"
  772. msgstr "Błąd odczytu"
  773. #: methods/ftp.cc:362 methods/rsh.cc:227
  774. msgid "A response overflowed the buffer."
  775. msgstr "Odpowiedź przepełniła bufor."
  776. #: methods/ftp.cc:379 methods/ftp.cc:391
  777. msgid "Protocol corruption"
  778. msgstr "Naruszenie zasad protokołu"
  779. #: methods/ftp.cc:464 methods/rsh.cc:267 apt-pkg/contrib/fileutl.cc:946
  780. #: apt-pkg/contrib/fileutl.cc:1691 apt-pkg/contrib/fileutl.cc:1700
  781. #: apt-pkg/contrib/fileutl.cc:1705 apt-pkg/contrib/fileutl.cc:1707
  782. #: apt-pkg/contrib/fileutl.cc:1732
  783. msgid "Write error"
  784. msgstr "Błąd zapisu"
  785. #: methods/ftp.cc:703 methods/ftp.cc:709 methods/ftp.cc:744
  786. msgid "Could not create a socket"
  787. msgstr "Nie udało się utworzyć gniazda"
  788. #: methods/ftp.cc:714
  789. msgid "Could not connect data socket, connection timed out"
  790. msgstr "Nie udało się połączyć gniazda danych, przekroczenie czasu połączenia"
  791. #: methods/ftp.cc:718 methods/connect.cc:119 methods/rsh.cc:102
  792. msgid "Failed"
  793. msgstr "Nie udało się"
  794. #: methods/ftp.cc:720
  795. msgid "Could not connect passive socket."
  796. msgstr "Nie udało się połączyć pasywnego gniazda."
  797. #: methods/ftp.cc:737
  798. msgid "getaddrinfo was unable to get a listening socket"
  799. msgstr "getaddrinfo nie było w stanie uzyskać nasłuchującego gniazda"
  800. #: methods/ftp.cc:751
  801. msgid "Could not bind a socket"
  802. msgstr "Nie udało się przyłączyć gniazda"
  803. #: methods/ftp.cc:755
  804. msgid "Could not listen on the socket"
  805. msgstr "Nie udało się nasłuchiwać na gnieździe"
  806. #: methods/ftp.cc:762
  807. msgid "Could not determine the socket's name"
  808. msgstr "Nie udało się określić nazwy gniazda"
  809. #: methods/ftp.cc:794
  810. msgid "Unable to send PORT command"
  811. msgstr "Nie można wysłać polecenia PORT"
  812. #: methods/ftp.cc:804
  813. #, c-format
  814. msgid "Unknown address family %u (AF_*)"
  815. msgstr "Nieznana rodzina adresów %u (AF_*)"
  816. #: methods/ftp.cc:813
  817. #, c-format
  818. msgid "EPRT failed, server said: %s"
  819. msgstr "Polecenie EPRT nie powiodło się, odpowiedź serwera: %s"
  820. #: methods/ftp.cc:833
  821. msgid "Data socket connect timed out"
  822. msgstr "Przekroczony czas połączenia gniazda danych"
  823. #: methods/ftp.cc:840
  824. msgid "Unable to accept connection"
  825. msgstr "Nie udało się przyjąć połączenia"
  826. #: methods/ftp.cc:880 methods/server.cc:391 methods/rsh.cc:337
  827. msgid "Problem hashing file"
  828. msgstr "Nie udało się obliczyć skrótu pliku"
  829. #: methods/ftp.cc:893
  830. #, c-format
  831. msgid "Unable to fetch file, server said '%s'"
  832. msgstr "Nie można pobrać pliku, odpowiedź serwera: %s"
  833. #: methods/ftp.cc:908 methods/rsh.cc:356
  834. msgid "Data socket timed out"
  835. msgstr "Przekroczony czas oczekiwania na dane"
  836. #: methods/ftp.cc:945
  837. #, c-format
  838. msgid "Data transfer failed, server said '%s'"
  839. msgstr "Nie udało się przesłać danych, odpowiedź serwera: %s"
  840. #. Get the files information
  841. #: methods/ftp.cc:1028
  842. msgid "Query"
  843. msgstr "Info"
  844. #: methods/ftp.cc:1142
  845. msgid "Unable to invoke "
  846. msgstr "Nie można wywołać "
  847. #: methods/connect.cc:79
  848. #, c-format
  849. msgid "Connecting to %s (%s)"
  850. msgstr "Łączenie z %s (%s)"
  851. #: methods/connect.cc:90
  852. #, c-format
  853. msgid "[IP: %s %s]"
  854. msgstr "[IP: %s %s]"
  855. #: methods/connect.cc:97
  856. #, c-format
  857. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  858. msgstr "Nie udało się utworzyć gniazda dla %s (f=%u t=%u p=%u)"
  859. #: methods/connect.cc:103
  860. #, c-format
  861. msgid "Cannot initiate the connection to %s:%s (%s)."
  862. msgstr "Nie udało się zainicjalizować połączenia z %s:%s (%s)."
  863. #: methods/connect.cc:111
  864. #, c-format
  865. msgid "Could not connect to %s:%s (%s), connection timed out"
  866. msgstr "Nie udało się połączyć z %s:%s (%s), przekroczenie czasu połączenia"
  867. #: methods/connect.cc:129
  868. #, c-format
  869. msgid "Could not connect to %s:%s (%s)."
  870. msgstr "Nie udało się połączyć z %s:%s (%s)."
  871. #. We say this mainly because the pause here is for the
  872. #. ssh connection that is still going
  873. #: methods/connect.cc:153 methods/rsh.cc:460
  874. #, c-format
  875. msgid "Connecting to %s"
  876. msgstr "Łączenie z %s"
  877. #: methods/connect.cc:179 methods/connect.cc:198
  878. #, c-format
  879. msgid "Could not resolve '%s'"
  880. msgstr "Nie udało się przetłumaczyć nazwy \"%s\""
  881. #: methods/connect.cc:204
  882. #, c-format
  883. msgid "Temporary failure resolving '%s'"
  884. msgstr "Tymczasowy błąd przy tłumaczeniu \"%s\""
  885. #: methods/connect.cc:208
  886. #, fuzzy, c-format
  887. msgid "System error resolving '%s:%s'"
  888. msgstr "Coś niewłaściwego stało się przy tłumaczeniu \"%s:%s\" (%i - %s)"
  889. #: methods/connect.cc:210
  890. #, c-format
  891. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  892. msgstr "Coś niewłaściwego stało się przy tłumaczeniu \"%s:%s\" (%i - %s)"
  893. #: methods/connect.cc:257
  894. #, c-format
  895. msgid "Unable to connect to %s:%s:"
  896. msgstr "Nie udało się połączyć z %s:%s:"
  897. #: methods/gpgv.cc:205 methods/gpgv.cc:215
  898. msgid "At least one invalid signature was encountered."
  899. msgstr "Napotkano przynajmniej jeden nieprawidłowy podpis."
  900. #: methods/gpgv.cc:210
  901. msgid ""
  902. "Internal error: Good signature, but could not determine key fingerprint?!"
  903. msgstr ""
  904. "Błąd wewnętrzny: Prawidłowy podpis, ale nie udało się ustalić odcisku klucza!"
  905. #: methods/gpgv.cc:217
  906. msgid "Could not execute 'apt-key' to verify signature (is gnupg installed?)"
  907. msgstr ""
  908. "Nie udało się uruchomić apt-key by zweryfikować podpis (czy gnupg jest "
  909. "zainstalowane?)"
  910. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  911. #: methods/gpgv.cc:223 apt-pkg/acquire-item.cc:650
  912. #, c-format
  913. msgid ""
  914. "Clearsigned file isn't valid, got '%s' (does the network require "
  915. "authentication?)"
  916. msgstr ""
  917. #: methods/gpgv.cc:227
  918. msgid "Unknown error executing apt-key"
  919. msgstr "Nieznany błąd podczas uruchamiania apt-key"
  920. #: methods/gpgv.cc:260 methods/gpgv.cc:267
  921. msgid "The following signatures were invalid:\n"
  922. msgstr "Następujące podpisy były błędne:\n"
  923. #: methods/gpgv.cc:274
  924. msgid ""
  925. "The following signatures couldn't be verified because the public key is not "
  926. "available:\n"
  927. msgstr ""
  928. "Następujące podpisy nie mogły zostać zweryfikowane z powodu braku klucza "
  929. "publicznego:\n"
  930. #: methods/gzip.cc:79
  931. msgid "Empty files can't be valid archives"
  932. msgstr "Puste pliki nie mogą być prawidłowymi archiwami"
  933. #: methods/http.cc:515
  934. msgid "Error writing to the file"
  935. msgstr "Błąd przy pisaniu do pliku"
  936. #: methods/http.cc:529
  937. msgid "Error reading from server. Remote end closed connection"
  938. msgstr "Błąd czytania z serwera: Zdalna strona zamknęła połączenie"
  939. #: methods/http.cc:531
  940. msgid "Error reading from server"
  941. msgstr "Błąd czytania z serwera"
  942. #: methods/http.cc:567
  943. msgid "Error writing to file"
  944. msgstr "Błąd przy pisaniu do pliku"
  945. #: methods/http.cc:627
  946. msgid "Select failed"
  947. msgstr "Operacja select nie powiodła się"
  948. #: methods/http.cc:632
  949. msgid "Connection timed out"
  950. msgstr "Przekroczenie czasu połączenia"
  951. #: methods/http.cc:655
  952. msgid "Error writing to output file"
  953. msgstr "Błąd przy pisaniu do pliku wyjściowego"
  954. #: methods/server.cc:52
  955. msgid "Waiting for headers"
  956. msgstr "Oczekiwanie na nagłówki"
  957. #: methods/server.cc:111
  958. msgid "Bad header line"
  959. msgstr "Nieprawidłowa linia nagłówka"
  960. #: methods/server.cc:136 methods/server.cc:143
  961. msgid "The HTTP server sent an invalid reply header"
  962. msgstr "Serwer HTTP przysłał nieprawidłowy nagłówek odpowiedzi"
  963. #: methods/server.cc:173
  964. msgid "The HTTP server sent an invalid Content-Length header"
  965. msgstr "Serwer HTTP przysłał nieprawidłowy nagłówek Content-Length"
  966. #: methods/server.cc:200
  967. msgid "The HTTP server sent an invalid Content-Range header"
  968. msgstr "Serwer HTTP przysłał nieprawidłowy nagłówek Content-Range"
  969. #: methods/server.cc:202
  970. msgid "This HTTP server has broken range support"
  971. msgstr "Ten serwer HTTP nieprawidłowo obsługuje zakresy (ranges)"
  972. #: methods/server.cc:229
  973. msgid "Unknown date format"
  974. msgstr "Nieznany format daty"
  975. #: methods/server.cc:535
  976. msgid "Bad header data"
  977. msgstr "Błędne dane nagłówka"
  978. #: methods/server.cc:552 methods/server.cc:646
  979. msgid "Connection failed"
  980. msgstr "Połączenie nie powiodło się"
  981. #: methods/server.cc:618
  982. #, c-format
  983. msgid ""
  984. "Automatically disabled %s due to incorrect response from server/proxy. (man "
  985. "5 apt.conf)"
  986. msgstr ""
  987. #: methods/server.cc:741
  988. msgid "Internal error"
  989. msgstr "Błąd wewnętrzny"
  990. #: apt-private/private-cacheset.cc:38 apt-private/private-search.cc:65
  991. msgid "Sorting"
  992. msgstr ""
  993. #: apt-private/private-cacheset.cc:127
  994. #, c-format
  995. msgid "Note, selecting '%s' for task '%s'\n"
  996. msgstr "Uwaga, wybieranie %s dla zadania \"%s\"\n"
  997. #: apt-private/private-cacheset.cc:133
  998. #, fuzzy, c-format
  999. msgid "Note, selecting '%s' for glob '%s'\n"
  1000. msgstr "Uwaga, wybieranie %s dla wyrażenia \"%s\"\n"
  1001. #: apt-private/private-cacheset.cc:139
  1002. #, c-format
  1003. msgid "Note, selecting '%s' for regex '%s'\n"
  1004. msgstr "Uwaga, wybieranie %s dla wyrażenia \"%s\"\n"
  1005. #: apt-private/private-cacheset.cc:157
  1006. #, c-format
  1007. msgid "Package %s is a virtual package provided by:\n"
  1008. msgstr "Pakiet %s jest pakietem wirtualnym zapewnianym przez:\n"
  1009. #: apt-private/private-cacheset.cc:168
  1010. #, fuzzy
  1011. msgid " [Installed]"
  1012. msgstr " [Zainstalowany]"
  1013. #: apt-private/private-cacheset.cc:177
  1014. msgid " [Not candidate version]"
  1015. msgstr " [Brak wersji kandydującej]"
  1016. #: apt-private/private-cacheset.cc:179
  1017. msgid "You should explicitly select one to install."
  1018. msgstr "Należy jednoznacznie wybrać jeden z nich do instalacji."
  1019. #: apt-private/private-cacheset.cc:182
  1020. #, c-format
  1021. msgid ""
  1022. "Package %s is not available, but is referred to by another package.\n"
  1023. "This may mean that the package is missing, has been obsoleted, or\n"
  1024. "is only available from another source\n"
  1025. msgstr ""
  1026. "Pakiet %s nie ma dostępnej wersji, ale odnosi się do niego inny pakiet.\n"
  1027. "Zazwyczaj oznacza to, że pakietu brakuje, został zastąpiony przez inny\n"
  1028. "pakiet lub nie jest dostępny przy pomocy obecnie ustawionych źródeł.\n"
  1029. #: apt-private/private-cacheset.cc:200
  1030. msgid "However the following packages replace it:"
  1031. msgstr "Jednak następujące pakiety go zastępują:"
  1032. #: apt-private/private-cacheset.cc:213
  1033. #, c-format
  1034. msgid "Package '%s' has no installation candidate"
  1035. msgstr "Pakiet %s nie ma kandydata do instalacji"
  1036. #: apt-private/private-cacheset.cc:226
  1037. #, c-format
  1038. msgid "Virtual packages like '%s' can't be removed\n"
  1039. msgstr "Pakiety wirtualne, takie jak \"%s\" nie mogą być usunięte\n"
  1040. #. TRANSLATORS: Note, this is not an interactive question
  1041. #: apt-private/private-cacheset.cc:238 apt-private/private-install.cc:927
  1042. #, c-format
  1043. msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
  1044. msgstr ""
  1045. "Pakiet %s nie jest zainstalowany, więc nie zostanie usunięty. Czy chodziło o "
  1046. "\"%s\"?\n"
  1047. #: apt-private/private-cacheset.cc:244 apt-private/private-install.cc:933
  1048. #, c-format
  1049. msgid "Package '%s' is not installed, so not removed\n"
  1050. msgstr "Pakiet \"%s\" nie jest zainstalowany, więc nie zostanie usunięty\n"
  1051. #: apt-private/private-cacheset.cc:289
  1052. #, c-format
  1053. msgid "Note, selecting '%s' instead of '%s'\n"
  1054. msgstr "Uwaga, wybieranie \"%s\" zamiast \"%s\"\n"
  1055. #: apt-private/private-install.cc:87
  1056. msgid "Internal error, InstallPackages was called with broken packages!"
  1057. msgstr "Błąd wewnętrzny, użyto InstallPackages z uszkodzonymi pakietami!"
  1058. #: apt-private/private-install.cc:96
  1059. msgid "Packages need to be removed but remove is disabled."
  1060. msgstr "Pakiety powinny zostać usunięte, ale Remove jest wyłączone."
  1061. #: apt-private/private-install.cc:103 apt-private/private-download.cc:69
  1062. msgid ""
  1063. "--force-yes is deprecated, use one of the options starting with --allow "
  1064. "instead."
  1065. msgstr ""
  1066. #: apt-private/private-install.cc:108
  1067. #, fuzzy
  1068. msgid ""
  1069. "Essential packages were removed and -y was used without --allow-remove-"
  1070. "essential."
  1071. msgstr "Wystąpiły problemy, a użyto -y bez --force-yes"
  1072. #: apt-private/private-install.cc:110
  1073. #, fuzzy
  1074. msgid "Packages were downgraded and -y was used without --allow-downgrades."
  1075. msgstr "Wystąpiły problemy, a użyto -y bez --force-yes"
  1076. #: apt-private/private-install.cc:112
  1077. msgid ""
  1078. "Held packages were changed and -y was used without --allow-change-held-"
  1079. "packages."
  1080. msgstr ""
  1081. #: apt-private/private-install.cc:128
  1082. msgid "Internal error, Ordering didn't finish"
  1083. msgstr "Błąd wewnętrzny, sortowanie niezakończone"
  1084. #: apt-private/private-install.cc:166
  1085. msgid "How odd... The sizes didn't match, email apt@packages.debian.org"
  1086. msgstr ""
  1087. "Wystąpił dziwny błąd - rozmiary się nie zgadzają. Proszę to zgłosić pod "
  1088. "apt@packages.debian.org"
  1089. #. TRANSLATOR: The required space between number and unit is already included
  1090. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  1091. #: apt-private/private-install.cc:173
  1092. #, c-format
  1093. msgid "Need to get %sB/%sB of archives.\n"
  1094. msgstr "Konieczne pobranie %sB/%sB archiwów.\n"
  1095. #. TRANSLATOR: The required space between number and unit is already included
  1096. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1097. #: apt-private/private-install.cc:178
  1098. #, c-format
  1099. msgid "Need to get %sB of archives.\n"
  1100. msgstr "Konieczne pobranie %sB archiwów.\n"
  1101. #. TRANSLATOR: The required space between number and unit is already included
  1102. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1103. #: apt-private/private-install.cc:185
  1104. #, c-format
  1105. msgid "After this operation, %sB of additional disk space will be used.\n"
  1106. msgstr "Po tej operacji zostanie dodatkowo użyte %sB miejsca na dysku.\n"
  1107. #. TRANSLATOR: The required space between number and unit is already included
  1108. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1109. #: apt-private/private-install.cc:190
  1110. #, c-format
  1111. msgid "After this operation, %sB disk space will be freed.\n"
  1112. msgstr "Po tej operacji zostanie zwolnione %sB miejsca na dysku.\n"
  1113. #: apt-private/private-install.cc:202 apt-private/private-install.cc:224
  1114. msgid "Trivial Only specified but this is not a trivial operation."
  1115. msgstr "Nakazano wykonywać tylko trywialne operacje, a ta do nich nie należy."
  1116. # Bezpieczniej jest nie używać tu polskich znaków.
  1117. #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
  1118. #. careful with hard to type or special characters (like non-breaking spaces)
  1119. #: apt-private/private-install.cc:206
  1120. msgid "Yes, do as I say!"
  1121. msgstr "Tak, jestem pewien!"
  1122. #: apt-private/private-install.cc:208
  1123. #, c-format
  1124. msgid ""
  1125. "You are about to do something potentially harmful.\n"
  1126. "To continue type in the phrase '%s'\n"
  1127. " ?] "
  1128. msgstr ""
  1129. "Zaraz stanie się coś potencjalnie szkodliwego.\n"
  1130. "Aby kontynuować proszę napisać zdanie \"%s\"\n"
  1131. " ?] "
  1132. #: apt-private/private-install.cc:214 apt-private/private-install.cc:232
  1133. msgid "Abort."
  1134. msgstr "Przerwane."
  1135. #: apt-private/private-install.cc:229
  1136. msgid "Do you want to continue?"
  1137. msgstr "Kontynuować?"
  1138. #: apt-private/private-install.cc:299
  1139. msgid "Some files failed to download"
  1140. msgstr "Nie udało się pobrać niektórych plików"
  1141. #: apt-private/private-install.cc:306
  1142. msgid ""
  1143. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  1144. "missing?"
  1145. msgstr ""
  1146. "Nie udało się pobrać niektórych archiwów, proszę spróbować uruchomić apt-get "
  1147. "update lub użyć opcji --fix-missing."
  1148. #: apt-private/private-install.cc:310
  1149. msgid "--fix-missing and media swapping is not currently supported"
  1150. msgstr "--fix-missing i zamiana nośników nie są obecnie obsługiwane"
  1151. #: apt-private/private-install.cc:315
  1152. msgid "Unable to correct missing packages."
  1153. msgstr "Nie udało się poprawić brakujących pakietów."
  1154. #: apt-private/private-install.cc:316
  1155. msgid "Aborting install."
  1156. msgstr "Przerywanie instalacji"
  1157. #: apt-private/private-install.cc:341
  1158. msgid ""
  1159. "The following package disappeared from your system as\n"
  1160. "all files have been overwritten by other packages:"
  1161. msgid_plural ""
  1162. "The following packages disappeared from your system as\n"
  1163. "all files have been overwritten by other packages:"
  1164. msgstr[0] ""
  1165. "Następujący pakiet zniknął z tego systemu, ponieważ wszystkie jego pliki "
  1166. "zostały nadpisane przez inne pakiety:"
  1167. msgstr[1] ""
  1168. "Następujące pakiety zniknęły z tego systemu, ponieważ wszystkie ich pliki "
  1169. "zostały nadpisane przez inne pakiety:"
  1170. msgstr[2] ""
  1171. "Następujące pakiety zniknęły z tego systemu, ponieważ wszystkie ich pliki "
  1172. "zostały nadpisane przez inne pakiety:"
  1173. #: apt-private/private-install.cc:348
  1174. msgid "Note: This is done automatically and on purpose by dpkg."
  1175. msgstr "Uwaga: dpkg wykonał to automatycznie i celowo."
  1176. #: apt-private/private-install.cc:370
  1177. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  1178. msgstr "Nic nie powinno być usuwane, AutoRemover nie zostanie uruchomiony"
  1179. #: apt-private/private-install.cc:463
  1180. msgid ""
  1181. "Hmm, seems like the AutoRemover destroyed something which really\n"
  1182. "shouldn't happen. Please file a bug report against apt."
  1183. msgstr ""
  1184. "Wygląda na to, że AutoRemover coś uszkodził, a to naprawdę nie\n"
  1185. "powinno się zdarzyć. Prosimy o zgłoszenie błędu w pakiecie apt."
  1186. #.
  1187. #. if (Packages == 1)
  1188. #. {
  1189. #. c1out << std::endl;
  1190. #. c1out <<
  1191. #. _("Since you only requested a single operation it is extremely likely that\n"
  1192. #. "the package is simply not installable and a bug report against\n"
  1193. #. "that package should be filed.") << std::endl;
  1194. #. }
  1195. #.
  1196. #: apt-private/private-install.cc:466 apt-private/private-install.cc:622
  1197. msgid "The following information may help to resolve the situation:"
  1198. msgstr "Następujące informacje mogą pomóc rozwiązać sytuację:"
  1199. #: apt-private/private-install.cc:470
  1200. msgid "Internal Error, AutoRemover broke stuff"
  1201. msgstr "Błąd wewnętrzny spowodowany przez AutoRemover"
  1202. #: apt-private/private-install.cc:479
  1203. msgid ""
  1204. "The following package was automatically installed and is no longer required:"
  1205. msgid_plural ""
  1206. "The following packages were automatically installed and are no longer "
  1207. "required:"
  1208. msgstr[0] ""
  1209. "Następujący pakiet został zainstalowany automatycznie i nie jest już więcej "
  1210. "wymagany:"
  1211. msgstr[1] ""
  1212. "Następujące pakiety zostały zainstalowane automatycznie i nie są już więcej "
  1213. "wymagane:"
  1214. msgstr[2] ""
  1215. "Następujące pakiety zostały zainstalowane automatycznie i nie są już więcej "
  1216. "wymagane:"
  1217. #: apt-private/private-install.cc:486
  1218. #, c-format
  1219. msgid "%lu package was automatically installed and is no longer required.\n"
  1220. msgid_plural ""
  1221. "%lu packages were automatically installed and are no longer required.\n"
  1222. msgstr[0] ""
  1223. "%lu pakiet został zainstalowany automatycznie i nie jest już więcej "
  1224. "wymagany.\n"
  1225. msgstr[1] ""
  1226. "%lu pakiety zostały zainstalowane automatycznie i nie są już więcej "
  1227. "wymagane.\n"
  1228. msgstr[2] ""
  1229. "%lu pakietów zostało zainstalowanych automatycznie i nie są już więcej "
  1230. "wymagane.\n"
  1231. #: apt-private/private-install.cc:488
  1232. msgid "Use 'apt-get autoremove' to remove it."
  1233. msgid_plural "Use 'apt-get autoremove' to remove them."
  1234. msgstr[0] "Aby go usunąć należy użyć \"apt-get autoremove\"."
  1235. msgstr[1] "Aby je usunąć należy użyć \"apt-get autoremove\"."
  1236. msgstr[2] "Aby je usunąć należy użyć \"apt-get autoremove\"."
  1237. #: apt-private/private-install.cc:582
  1238. msgid "You might want to run 'apt-get -f install' to correct these:"
  1239. msgstr ""
  1240. "Należy uruchomić \"apt-get -f install\", aby naprawić poniższe problemy:"
  1241. #: apt-private/private-install.cc:584
  1242. msgid ""
  1243. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  1244. "solution)."
  1245. msgstr ""
  1246. "Niespełnione zależności. Proszę spróbować wykonać \"apt-get -f install\" bez "
  1247. "pakietów (lub podać rozwiązanie)."
  1248. #: apt-private/private-install.cc:607
  1249. msgid ""
  1250. "Some packages could not be installed. This may mean that you have\n"
  1251. "requested an impossible situation or if you are using the unstable\n"
  1252. "distribution that some required packages have not yet been created\n"
  1253. "or been moved out of Incoming."
  1254. msgstr ""
  1255. "Nie udało się zainstalować niektórych pakietów. Może to oznaczać,\n"
  1256. "że zażądano niemożliwej sytuacji lub użyto dystrybucji niestabilnej,\n"
  1257. "w której niektóre pakiety nie zostały jeszcze utworzone lub przeniesione\n"
  1258. "z katalogu Incoming (\"Przychodzące\")."
  1259. #: apt-private/private-install.cc:628
  1260. msgid "Broken packages"
  1261. msgstr "Pakiety są uszkodzone"
  1262. #: apt-private/private-install.cc:697
  1263. #, fuzzy
  1264. msgid "The following additional packages will be installed:"
  1265. msgstr "Zostaną zainstalowane następujące dodatkowe pakiety:"
  1266. #: apt-private/private-install.cc:786
  1267. msgid "Suggested packages:"
  1268. msgstr "Sugerowane pakiety:"
  1269. #: apt-private/private-install.cc:788
  1270. msgid "Recommended packages:"
  1271. msgstr "Polecane pakiety:"
  1272. #: apt-private/private-install.cc:810
  1273. #, c-format
  1274. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  1275. msgstr ""
  1276. "Pomijanie %s, jest już zainstalowane, a nie została wybrana aktualizacja.\n"
  1277. #: apt-private/private-install.cc:814
  1278. #, c-format
  1279. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  1280. msgstr ""
  1281. "Pomijanie %s, nie jest zainstalowane, a wybrano wyłącznie aktualizacje.\n"
  1282. #: apt-private/private-install.cc:826
  1283. #, c-format
  1284. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  1285. msgstr ""
  1286. "Ponowna instalacja pakietu %s nie jest możliwa, nie może on zostać pobrany.\n"
  1287. #. TRANSLATORS: First string is package name, second is version
  1288. #: apt-private/private-install.cc:832
  1289. #, fuzzy, c-format
  1290. msgid "%s is already the newest version (%s).\n"
  1291. msgstr "%s jest już w najnowszej wersji.\n"
  1292. #: apt-private/private-install.cc:880
  1293. #, c-format
  1294. msgid "Selected version '%s' (%s) for '%s'\n"
  1295. msgstr "Wybrano wersję \"%s\" (%s) pakietu \"%s\"\n"
  1296. #: apt-private/private-install.cc:885
  1297. #, c-format
  1298. msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  1299. msgstr "Wybrano wersję \"%s\" (%s) pakietu \"%s\", z powodu \"%s\"\n"
  1300. #: apt-private/private-list.cc:121
  1301. msgid "Listing"
  1302. msgstr ""
  1303. #: apt-private/private-list.cc:151
  1304. #, c-format
  1305. msgid "There is %i additional version. Please use the '-a' switch to see it"
  1306. msgid_plural ""
  1307. "There are %i additional versions. Please use the '-a' switch to see them."
  1308. msgstr[0] ""
  1309. msgstr[1] ""
  1310. msgstr[2] ""
  1311. #: apt-private/private-cachefile.cc:96
  1312. msgid "Correcting dependencies..."
  1313. msgstr "Naprawianie zależności..."
  1314. #: apt-private/private-cachefile.cc:99
  1315. msgid " failed."
  1316. msgstr " nie udało się."
  1317. #: apt-private/private-cachefile.cc:102
  1318. msgid "Unable to correct dependencies"
  1319. msgstr "Nie udało się naprawić zależności"
  1320. #: apt-private/private-cachefile.cc:105
  1321. msgid "Unable to minimize the upgrade set"
  1322. msgstr "Nie udało się zminimalizować zbioru aktualizacji"
  1323. #: apt-private/private-cachefile.cc:107
  1324. msgid " Done"
  1325. msgstr " Gotowe"
  1326. #: apt-private/private-cachefile.cc:111
  1327. msgid "You might want to run 'apt-get -f install' to correct these."
  1328. msgstr "Należy uruchomić \"apt-get -f install\", aby je naprawić."
  1329. #: apt-private/private-cachefile.cc:114
  1330. msgid "Unmet dependencies. Try using -f."
  1331. msgstr "Niespełnione zależności. Proszę spróbować użyć -f."
  1332. #: apt-private/private-output.cc:105 apt-private/private-show.cc:84
  1333. #: apt-private/private-show.cc:89
  1334. msgid "unknown"
  1335. msgstr ""
  1336. #: apt-private/private-output.cc:272
  1337. #, fuzzy, c-format
  1338. msgid "[installed,upgradable to: %s]"
  1339. msgstr " [Zainstalowany]"
  1340. #: apt-private/private-output.cc:275
  1341. #, fuzzy
  1342. msgid "[installed,local]"
  1343. msgstr " [Zainstalowany]"
  1344. #: apt-private/private-output.cc:277
  1345. msgid "[installed,auto-removable]"
  1346. msgstr ""
  1347. #: apt-private/private-output.cc:279
  1348. #, fuzzy
  1349. msgid "[installed,automatic]"
  1350. msgstr " [Zainstalowany]"
  1351. #: apt-private/private-output.cc:281
  1352. #, fuzzy
  1353. msgid "[installed]"
  1354. msgstr " [Zainstalowany]"
  1355. #: apt-private/private-output.cc:284
  1356. #, c-format
  1357. msgid "[upgradable from: %s]"
  1358. msgstr ""
  1359. #: apt-private/private-output.cc:288
  1360. msgid "[residual-config]"
  1361. msgstr ""
  1362. #: apt-private/private-output.cc:402
  1363. #, c-format
  1364. msgid "but %s is installed"
  1365. msgstr "ale %s jest zainstalowany"
  1366. #: apt-private/private-output.cc:404
  1367. #, c-format
  1368. msgid "but %s is to be installed"
  1369. msgstr "ale %s ma zostać zainstalowany"
  1370. #: apt-private/private-output.cc:411
  1371. msgid "but it is not installable"
  1372. msgstr "ale nie da się go zainstalować"
  1373. #: apt-private/private-output.cc:413
  1374. msgid "but it is a virtual package"
  1375. msgstr "ale jest pakietem wirtualnym"
  1376. #: apt-private/private-output.cc:416
  1377. msgid "but it is not installed"
  1378. msgstr "ale nie jest zainstalowany"
  1379. #: apt-private/private-output.cc:416
  1380. msgid "but it is not going to be installed"
  1381. msgstr "ale nie zostanie zainstalowany"
  1382. #: apt-private/private-output.cc:421
  1383. msgid " or"
  1384. msgstr " lub"
  1385. #: apt-private/private-output.cc:435 apt-private/private-output.cc:445
  1386. msgid "The following packages have unmet dependencies:"
  1387. msgstr "Następujące pakiety mają niespełnione zależności:"
  1388. #: apt-private/private-output.cc:455
  1389. msgid "The following NEW packages will be installed:"
  1390. msgstr "Zostaną zainstalowane następujące NOWE pakiety:"
  1391. #: apt-private/private-output.cc:465
  1392. msgid "The following packages will be REMOVED:"
  1393. msgstr "Następujące pakiety zostaną USUNIĘTE:"
  1394. #: apt-private/private-output.cc:481
  1395. msgid "The following packages have been kept back:"
  1396. msgstr "Następujące pakiety zostały zatrzymane:"
  1397. #: apt-private/private-output.cc:497
  1398. msgid "The following packages will be upgraded:"
  1399. msgstr "Następujące pakiety zostaną zaktualizowane:"
  1400. #: apt-private/private-output.cc:512
  1401. msgid "The following packages will be DOWNGRADED:"
  1402. msgstr "Zostaną zainstalowane STARE wersje następujących pakietów:"
  1403. #: apt-private/private-output.cc:525
  1404. msgid "The following held packages will be changed:"
  1405. msgstr "Zostaną zmienione następujące zatrzymane pakiety:"
  1406. #: apt-private/private-output.cc:552
  1407. #, c-format
  1408. msgid "%s (due to %s)"
  1409. msgstr "%s (z powodu %s)"
  1410. #: apt-private/private-output.cc:602
  1411. msgid ""
  1412. "WARNING: The following essential packages will be removed.\n"
  1413. "This should NOT be done unless you know exactly what you are doing!"
  1414. msgstr ""
  1415. "UWAGA: Zostaną usunięte następujące istotne pakiety.\n"
  1416. "NIE należy kontynuować, jeśli nie jest się pewnym tego co się robi!"
  1417. #: apt-private/private-output.cc:633
  1418. #, c-format
  1419. msgid "%lu upgraded, %lu newly installed, "
  1420. msgstr "%lu aktualizowanych, %lu nowo instalowanych, "
  1421. #: apt-private/private-output.cc:637
  1422. #, c-format
  1423. msgid "%lu reinstalled, "
  1424. msgstr "%lu ponownie instalowanych, "
  1425. #: apt-private/private-output.cc:639
  1426. #, c-format
  1427. msgid "%lu downgraded, "
  1428. msgstr "%lu cofniętych wersji, "
  1429. #: apt-private/private-output.cc:641
  1430. #, c-format
  1431. msgid "%lu to remove and %lu not upgraded.\n"
  1432. msgstr "%lu usuwanych i %lu nieaktualizowanych.\n"
  1433. #: apt-private/private-output.cc:645
  1434. #, c-format
  1435. msgid "%lu not fully installed or removed.\n"
  1436. msgstr "%lu nie w pełni zainstalowanych lub usuniętych.\n"
  1437. #. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
  1438. #. e.g. "Do you want to continue? [Y/n] "
  1439. #. The user has to answer with an input matching the
  1440. #. YESEXPR/NOEXPR defined in your l10n.
  1441. #: apt-private/private-output.cc:667
  1442. msgid "[Y/n]"
  1443. msgstr "[T/n]"
  1444. #. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
  1445. #. e.g. "Should this file be removed? [y/N] "
  1446. #. The user has to answer with an input matching the
  1447. #. YESEXPR/NOEXPR defined in your l10n.
  1448. #: apt-private/private-output.cc:673
  1449. msgid "[y/N]"
  1450. msgstr "[t/N]"
  1451. #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
  1452. #: apt-private/private-output.cc:684
  1453. msgid "Y"
  1454. msgstr "T"
  1455. #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
  1456. #: apt-private/private-output.cc:690
  1457. msgid "N"
  1458. msgstr "N"
  1459. #: apt-private/private-output.cc:712 apt-pkg/cachefilter.cc:40
  1460. #, c-format
  1461. msgid "Regex compilation error - %s"
  1462. msgstr "Błąd kompilacji wyrażenia regularnego - %s"
  1463. #: apt-private/private-update.cc:31
  1464. msgid "The update command takes no arguments"
  1465. msgstr "Polecenie update nie wymaga żadnych argumentów"
  1466. #: apt-private/private-update.cc:96
  1467. #, c-format
  1468. msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n"
  1469. msgid_plural ""
  1470. "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n"
  1471. msgstr[0] ""
  1472. msgstr[1] ""
  1473. msgstr[2] ""
  1474. #: apt-private/private-update.cc:100
  1475. msgid "All packages are up to date."
  1476. msgstr ""
  1477. #: apt-private/private-show.cc:158
  1478. #, c-format
  1479. msgid "There is %i additional record. Please use the '-a' switch to see it"
  1480. msgid_plural ""
  1481. "There are %i additional records. Please use the '-a' switch to see them."
  1482. msgstr[0] ""
  1483. msgstr[1] ""
  1484. msgstr[2] ""
  1485. #: apt-private/private-show.cc:165
  1486. msgid "not a real package (virtual)"
  1487. msgstr ""
  1488. #: apt-private/private-main.cc:34
  1489. msgid ""
  1490. "NOTE: This is only a simulation!\n"
  1491. " apt-get needs root privileges for real execution.\n"
  1492. " Keep also in mind that locking is deactivated,\n"
  1493. " so don't depend on the relevance to the real current situation!"
  1494. msgstr ""
  1495. "UWAGA: To jest tylko symulacja!\n"
  1496. " apt-get wymaga do normalnego działania uprawnień administratora.\n"
  1497. " Aktualnie blokowanie jest wyłączone, więc nie należy polegać\n"
  1498. " na związku z rzeczywistą sytuacją!"
  1499. #: apt-private/private-download.cc:45
  1500. msgid "WARNING: The following packages cannot be authenticated!"
  1501. msgstr "UWAGA: Następujące pakiety nie mogą zostać zweryfikowane!"
  1502. #: apt-private/private-download.cc:52
  1503. msgid "Authentication warning overridden.\n"
  1504. msgstr "Zignorowano ostrzeżenie uwierzytelniania.\n"
  1505. #: apt-private/private-download.cc:57 apt-private/private-download.cc:64
  1506. msgid "Some packages could not be authenticated"
  1507. msgstr "Niektóre pakiety nie mogły zostać zweryfikowane"
  1508. #: apt-private/private-download.cc:62
  1509. msgid "Install these packages without verification?"
  1510. msgstr "Zainstalować te pakiety bez weryfikacji?"
  1511. #: apt-private/private-download.cc:73
  1512. #, fuzzy
  1513. msgid ""
  1514. "There were unauthenticated packages and -y was used without --allow-"
  1515. "unauthenticated"
  1516. msgstr "Wystąpiły problemy, a użyto -y bez --force-yes"
  1517. #: apt-private/private-download.cc:105
  1518. #, c-format
  1519. msgid "Failed to fetch %s %s\n"
  1520. msgstr "Nie udało się pobrać %s %s\n"
  1521. #: apt-private/private-download.cc:127 apt-private/private-download.cc:130
  1522. #, c-format
  1523. msgid "Couldn't determine free space in %s"
  1524. msgstr "Nie udało się ustalić ilości wolnego miejsca w %s"
  1525. #: apt-private/private-download.cc:144
  1526. #, c-format
  1527. msgid "You don't have enough free space in %s."
  1528. msgstr "Niestety w %s nie ma wystarczającej ilości wolnego miejsca."
  1529. #: apt-private/private-sources.cc:58
  1530. #, fuzzy, c-format
  1531. msgid "Failed to parse %s. Edit again? "
  1532. msgstr "Nie udało się zmienić nazwy %s na %s"
  1533. #: apt-private/private-sources.cc:70
  1534. #, c-format
  1535. msgid "Your '%s' file changed, please run 'apt-get update'."
  1536. msgstr ""
  1537. #: apt-private/private-search.cc:69
  1538. msgid "Full Text Search"
  1539. msgstr ""
  1540. # Ujednolicono z aptitude
  1541. #. TRANSLATOR: Very short word to be displayed before unchanged files in 'apt-get update'
  1542. #: apt-private/acqprogress.cc:74
  1543. #, c-format
  1544. msgid "Hit:%lu %s"
  1545. msgstr "Stary:%lu %s"
  1546. #. TRANSLATOR: Very short word to be displayed for files processed in 'apt-get update'
  1547. #. Potentially replaced later by "Hit:", "Ign:" or "Err:" if something (bad) happens
  1548. #: apt-private/acqprogress.cc:96
  1549. #, c-format
  1550. msgid "Get:%lu %s"
  1551. msgstr "Pobieranie:%lu %s"
  1552. # Wyrównane do Hit i Err.
  1553. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  1554. #. which failed to download, but the error is ignored (compare "Err:")
  1555. #: apt-private/acqprogress.cc:126
  1556. #, c-format
  1557. msgid "Ign:%lu %s"
  1558. msgstr ""
  1559. # Wyrównane do Hit i Ign.
  1560. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  1561. #. which failed to download and the error is critical (compare "Ign:")
  1562. #: apt-private/acqprogress.cc:136
  1563. #, c-format
  1564. msgid "Err:%lu %s"
  1565. msgstr "Błąd:%lu %s"
  1566. #: apt-private/acqprogress.cc:159
  1567. #, c-format
  1568. msgid "Fetched %sB in %s (%sB/s)\n"
  1569. msgstr "Pobrano %sB w %s (%sB/s)\n"
  1570. #: apt-private/acqprogress.cc:229
  1571. msgid " [Working]"
  1572. msgstr " [Pracuje]"
  1573. #: apt-private/acqprogress.cc:297
  1574. #, fuzzy, c-format
  1575. msgid ""
  1576. "Media change: please insert the disc labeled\n"
  1577. " '%s'\n"
  1578. "in the drive '%s' and press [Enter]\n"
  1579. msgstr ""
  1580. "Zmiana nośnika: Proszę włożyć dysk oznaczony\n"
  1581. " \"%s\"\n"
  1582. "do napędu \"%s\" i nacisnąć enter\n"
  1583. #. Only warn if there are no sources.list.d.
  1584. #. Only warn if there is no sources.list file.
  1585. #: methods/mirror.cc:95 apt-pkg/init.cc:133 apt-pkg/init.cc:141
  1586. #: apt-pkg/acquire.cc:622 apt-pkg/clean.cc:43 apt-pkg/policy.cc:412
  1587. #: apt-pkg/sourcelist.cc:318 apt-pkg/sourcelist.cc:324
  1588. #: apt-pkg/contrib/fileutl.cc:375 apt-pkg/contrib/fileutl.cc:488
  1589. #: apt-pkg/contrib/cdromutl.cc:205 apt-inst/extract.cc:471
  1590. #, c-format
  1591. msgid "Unable to read %s"
  1592. msgstr "Nie można czytać %s"
  1593. #: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/acquire.cc:628
  1594. #: apt-pkg/acquire.cc:653 apt-pkg/clean.cc:49 apt-pkg/clean.cc:67
  1595. #: apt-pkg/clean.cc:130 apt-pkg/contrib/cdromutl.cc:201
  1596. #: apt-pkg/contrib/cdromutl.cc:235
  1597. #, c-format
  1598. msgid "Unable to change to %s"
  1599. msgstr "Nie udało się przejść do %s"
  1600. #. FIXME: fallback to a default mirror here instead
  1601. #. and provide a config option to define that default
  1602. #: methods/mirror.cc:280
  1603. #, c-format
  1604. msgid "No mirror file '%s' found "
  1605. msgstr "Nie znaleziono pliku serwera lustrzanego \"%s\""
  1606. #. FIXME: fallback to a default mirror here instead
  1607. #. and provide a config option to define that default
  1608. #: methods/mirror.cc:287
  1609. #, c-format
  1610. msgid "Can not read mirror file '%s'"
  1611. msgstr "Nie udało się otworzyć pliku serwera lustrzanego \"%s\""
  1612. #: methods/mirror.cc:315
  1613. #, fuzzy, c-format
  1614. msgid "No entry found in mirror file '%s'"
  1615. msgstr "Nie udało się otworzyć pliku serwera lustrzanego \"%s\""
  1616. #: methods/mirror.cc:445
  1617. #, c-format
  1618. msgid "[Mirror: %s]"
  1619. msgstr "[Serwer lustrzany: %s]"
  1620. #: methods/rsh.cc:109 ftparchive/multicompress.cc:170
  1621. msgid "Failed to create IPC pipe to subprocess"
  1622. msgstr "Nie udało się utworzyć potoku IPC do podprocesu"
  1623. #: methods/rsh.cc:364
  1624. msgid "Connection closed prematurely"
  1625. msgstr "Połączenie zostało przedwcześnie zamknięte"
  1626. #: dselect/install:33
  1627. msgid "Bad default setting!"
  1628. msgstr "Nieprawidłowe ustawienie domyślne!"
  1629. #: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
  1630. #: dselect/install:106 dselect/update:45
  1631. #, fuzzy
  1632. msgid "Press [Enter] to continue."
  1633. msgstr "Proszę nacisnąć enter, aby kontynuować."
  1634. #: dselect/install:92
  1635. msgid "Do you want to erase any previously downloaded .deb files?"
  1636. msgstr "Czy usunąć wszystkie pobrane wcześniej pliki .deb?"
  1637. # Note to translators: The following four messages belong together. It doesn't
  1638. # matter where sentences start, but it has to fit in just these four lines, and
  1639. # at only 80 characters per line, if possible.
  1640. #: dselect/install:102
  1641. msgid "Some errors occurred while unpacking. Packages that were installed"
  1642. msgstr "Wystąpiły problemy przy rozpakowywaniu. Zainstalowane pakiety zostaną"
  1643. #: dselect/install:103
  1644. msgid "will be configured. This may result in duplicate errors"
  1645. msgstr "skonfigurowane. Może to spowodować podwójne błędy lub błędy"
  1646. #: dselect/install:104
  1647. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1648. msgstr ""
  1649. "spowodowane brakującymi zależnościami. Jest to normalne. Tylko błędy nad tym"
  1650. #: dselect/install:105
  1651. msgid ""
  1652. "above this message are important. Please fix them and run [I]nstall again"
  1653. msgstr ""
  1654. "komunikatem są istotne. Proszę je poprawić i ponownie wybrać [I]nstalację."
  1655. #: dselect/update:30
  1656. msgid "Merging available information"
  1657. msgstr "Łączenie informacji o dostępnych pakietach"
  1658. #: apt-pkg/install-progress.cc:58
  1659. #, c-format
  1660. msgid "Progress: [%3i%%]"
  1661. msgstr ""
  1662. #: apt-pkg/install-progress.cc:93 apt-pkg/install-progress.cc:177
  1663. msgid "Running dpkg"
  1664. msgstr "Uruchamianie dpkg"
  1665. #: apt-pkg/init.cc:176
  1666. #, c-format
  1667. msgid "Packaging system '%s' is not supported"
  1668. msgstr "System pakietów \"%s\" nie jest obsługiwany"
  1669. #: apt-pkg/init.cc:192
  1670. msgid "Unable to determine a suitable packaging system type"
  1671. msgstr "Nie udało się określić odpowiedniego typu systemu pakietów"
  1672. #: apt-pkg/indexcopy.cc:228 apt-pkg/indexcopy.cc:753
  1673. #, c-format
  1674. msgid "Wrote %i records.\n"
  1675. msgstr "Zapisano %i rekordów.\n"
  1676. #: apt-pkg/indexcopy.cc:230 apt-pkg/indexcopy.cc:755
  1677. #, c-format
  1678. msgid "Wrote %i records with %i missing files.\n"
  1679. msgstr "Zapisano %i rekordów z %i brakującymi plikami.\n"
  1680. #: apt-pkg/indexcopy.cc:233 apt-pkg/indexcopy.cc:758
  1681. #, c-format
  1682. msgid "Wrote %i records with %i mismatched files\n"
  1683. msgstr "Zapisano %i rekordów z %i niepasującymi plikami\n"
  1684. #: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:761
  1685. #, c-format
  1686. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  1687. msgstr "Zapisano %i rekordów z %i brakującymi plikami i %i niepasującymi\n"
  1688. #: apt-pkg/indexcopy.cc:498
  1689. #, c-format
  1690. msgid "Can't find authentication record for: %s"
  1691. msgstr "Nie udało się znaleźć wpisu uwierzytelnienia dla: %s"
  1692. #: apt-pkg/indexcopy.cc:504
  1693. #, c-format
  1694. msgid "Hash mismatch for: %s"
  1695. msgstr "Błędna suma kontrolna dla: %s"
  1696. #: apt-pkg/cachefile.cc:98
  1697. msgid "The package lists or status file could not be parsed or opened."
  1698. msgstr "Nie udało się otworzyć lub zanalizować zawartości list pakietów."
  1699. #: apt-pkg/cachefile.cc:102
  1700. msgid "You may want to run apt-get update to correct these problems"
  1701. msgstr "Należy uruchomić apt-get update aby naprawić te problemy."
  1702. #: apt-pkg/cachefile.cc:120
  1703. msgid "The list of sources could not be read."
  1704. msgstr "Nie udało się odczytać list źródeł."
  1705. #: apt-pkg/pkgcache.cc:163
  1706. msgid "Empty package cache"
  1707. msgstr "Pusty magazyn podręczny pakietów"
  1708. #: apt-pkg/pkgcache.cc:169 apt-pkg/pkgcache.cc:180
  1709. msgid "The package cache file is corrupted"
  1710. msgstr "Magazyn podręczny pakietów jest uszkodzony"
  1711. #: apt-pkg/pkgcache.cc:174
  1712. msgid "The package cache file is an incompatible version"
  1713. msgstr "Magazyn podręczny pakietów jest w niezgodnej wersji"
  1714. #: apt-pkg/pkgcache.cc:177
  1715. msgid "The package cache file is corrupted, it is too small"
  1716. msgstr "Magazyn podręczny pakietów jest uszkodzony - jest zbyt mały"
  1717. #: apt-pkg/pkgcache.cc:184
  1718. #, c-format
  1719. msgid "This APT does not support the versioning system '%s'"
  1720. msgstr "Ta wersja APT nie obsługuje systemu wersji \"%s\""
  1721. #: apt-pkg/pkgcache.cc:194
  1722. #, fuzzy, c-format
  1723. msgid "The package cache was built for different architectures: %s vs %s"
  1724. msgstr "Ten magazyn podręczny pakietów został zbudowany dla innej architektury"
  1725. #: apt-pkg/pkgcache.cc:319
  1726. msgid "Depends"
  1727. msgstr "Wymaga"
  1728. #: apt-pkg/pkgcache.cc:319
  1729. msgid "PreDepends"
  1730. msgstr "Wymaga wstępnie"
  1731. #: apt-pkg/pkgcache.cc:319
  1732. msgid "Suggests"
  1733. msgstr "Sugeruje"
  1734. #: apt-pkg/pkgcache.cc:320
  1735. msgid "Recommends"
  1736. msgstr "Poleca"
  1737. #: apt-pkg/pkgcache.cc:320
  1738. msgid "Conflicts"
  1739. msgstr "W konflikcie z"
  1740. #: apt-pkg/pkgcache.cc:320
  1741. msgid "Replaces"
  1742. msgstr "Zastępuje"
  1743. #: apt-pkg/pkgcache.cc:321
  1744. msgid "Obsoletes"
  1745. msgstr "Dezaktualizuje"
  1746. #: apt-pkg/pkgcache.cc:321
  1747. msgid "Breaks"
  1748. msgstr "Narusza zależności"
  1749. #: apt-pkg/pkgcache.cc:321
  1750. msgid "Enhances"
  1751. msgstr "Rozszerza"
  1752. #: apt-pkg/pkgcache.cc:332
  1753. msgid "important"
  1754. msgstr "ważny"
  1755. #: apt-pkg/pkgcache.cc:332
  1756. msgid "required"
  1757. msgstr "wymagany"
  1758. #: apt-pkg/pkgcache.cc:332
  1759. msgid "standard"
  1760. msgstr "standardowy"
  1761. #: apt-pkg/pkgcache.cc:333
  1762. msgid "optional"
  1763. msgstr "opcjonalny"
  1764. #: apt-pkg/pkgcache.cc:333
  1765. msgid "extra"
  1766. msgstr "dodatkowy"
  1767. #: apt-pkg/upgrade.cc:34 apt-pkg/upgrade.cc:136 apt-pkg/upgrade.cc:182
  1768. msgid "Calculating upgrade"
  1769. msgstr "Obliczanie aktualizacji"
  1770. #: apt-pkg/acquire-worker.cc:111
  1771. #, c-format
  1772. msgid "The method driver %s could not be found."
  1773. msgstr "Nie udało się odnaleźć sterownika metody %s."
  1774. #: apt-pkg/acquire-worker.cc:113
  1775. #, fuzzy, c-format
  1776. msgid "Is the package %s installed?"
  1777. msgstr "Proszę sprawdzić czy pakiet \"dpkg-dev\" jest zainstalowany.\n"
  1778. #: apt-pkg/acquire-worker.cc:164
  1779. #, c-format
  1780. msgid "Method %s did not start correctly"
  1781. msgstr "Metoda %s nie uruchomiła się poprawnie"
  1782. #: apt-pkg/acquire-worker.cc:543
  1783. #, fuzzy, c-format
  1784. msgid ""
  1785. "Please insert the disc labeled: '%s' in the drive '%s' and press [Enter]."
  1786. msgstr "Proszę włożyć do napędu \"%s\" dysk o nazwie: \"%s\" i nacisnąć enter."
  1787. #: apt-pkg/depcache.cc:139 apt-pkg/depcache.cc:167
  1788. msgid "Building dependency tree"
  1789. msgstr "Budowanie drzewa zależności"
  1790. #: apt-pkg/depcache.cc:140
  1791. msgid "Candidate versions"
  1792. msgstr "Kandydujące wersje"
  1793. #: apt-pkg/depcache.cc:168
  1794. msgid "Dependency generation"
  1795. msgstr "Generowanie zależności"
  1796. #: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225
  1797. msgid "Reading state information"
  1798. msgstr "Odczyt informacji o stanie"
  1799. #: apt-pkg/depcache.cc:252
  1800. #, c-format
  1801. msgid "Failed to open StateFile %s"
  1802. msgstr "Nie udało się otworzyć pliku stanu %s"
  1803. #: apt-pkg/depcache.cc:257
  1804. #, c-format
  1805. msgid "Failed to write temporary StateFile %s"
  1806. msgstr "Nie udało się zapisać tymczasowego pliku stanu %s"
  1807. #: apt-pkg/acquire-item.cc:156
  1808. msgid "Use --allow-insecure-repositories to force the update"
  1809. msgstr ""
  1810. #: apt-pkg/acquire-item.cc:607 apt-pkg/contrib/fileutl.cc:2189
  1811. #, c-format
  1812. msgid "rename failed, %s (%s -> %s)."
  1813. msgstr "nie udało się zmienić nazwy, %s (%s -> %s)"
  1814. #: apt-pkg/acquire-item.cc:631
  1815. msgid "Hash Sum mismatch"
  1816. msgstr "Błędna suma kontrolna"
  1817. #: apt-pkg/acquire-item.cc:636
  1818. msgid "Size mismatch"
  1819. msgstr "Błędny rozmiar"
  1820. #: apt-pkg/acquire-item.cc:641
  1821. #, fuzzy
  1822. msgid "Invalid file format"
  1823. msgstr "Nieprawidłowa operacja %s"
  1824. #: apt-pkg/acquire-item.cc:646
  1825. #, fuzzy
  1826. msgid "Signature error"
  1827. msgstr "Błąd zapisu"
  1828. #: apt-pkg/acquire-item.cc:835
  1829. #, fuzzy, c-format
  1830. msgid ""
  1831. "An error occurred during the signature verification. The repository is not "
  1832. "updated and the previous index files will be used. GPG error: %s: %s"
  1833. msgstr ""
  1834. "Podczas weryfikacji podpisu wystąpił błąd. Nie zaktualizowano repozytorium i "
  1835. "w dalszym ciągu będą używane poprzednie pliki indeksu. Błąd GPG %s: %s\n"
  1836. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  1837. #: apt-pkg/acquire-item.cc:845 apt-pkg/acquire-item.cc:851
  1838. #, c-format
  1839. msgid "GPG error: %s: %s"
  1840. msgstr "Błąd GPG: %s: %s"
  1841. #: apt-pkg/acquire-item.cc:1016
  1842. #, c-format
  1843. msgid ""
  1844. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  1845. "or malformed file)"
  1846. msgstr ""
  1847. "Nie udało się znaleźć oczekiwanego wpisu \"%s\" w pliku Release "
  1848. "(nieprawidłowy wpis sources.list lub nieprawidłowy plik)"
  1849. #: apt-pkg/acquire-item.cc:1122
  1850. msgid "There is no public key available for the following key IDs:\n"
  1851. msgstr "Dla następujących identyfikatorów kluczy brakuje klucza publicznego:\n"
  1852. #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is
  1853. #. the time since then the file is invalid - formatted in the same way as in
  1854. #. the download progress display (e.g. 7d 3h 42min 1s)
  1855. #: apt-pkg/acquire-item.cc:1162
  1856. #, c-format
  1857. msgid ""
  1858. "Release file for %s is expired (invalid since %s). Updates for this "
  1859. "repository will not be applied."
  1860. msgstr ""
  1861. "Plik Release dla %s wygasnął (nieprawidłowy od %s). Aktualizacje z tego "
  1862. "repozytorium nie będą wykonywane."
  1863. #: apt-pkg/acquire-item.cc:1203
  1864. #, c-format
  1865. msgid "Conflicting distribution: %s (expected %s but got %s)"
  1866. msgstr "Nieprawidłowa dystrybucja: %s (oczekiwano %s, a otrzymano %s)"
  1867. #: apt-pkg/acquire-item.cc:1320 apt-pkg/acquire-item.cc:1576
  1868. #, c-format
  1869. msgid ""
  1870. "The data from '%s' is not signed. Packages from that repository can not be "
  1871. "authenticated."
  1872. msgstr ""
  1873. #: apt-pkg/acquire-item.cc:1422
  1874. #, c-format
  1875. msgid ""
  1876. "The repository '%s' does not have a Release file. This is deprecated, please "
  1877. "contact the owner of the repository."
  1878. msgstr ""
  1879. #: apt-pkg/acquire-item.cc:1555
  1880. #, fuzzy, c-format
  1881. msgid "The repository '%s' is no longer signed."
  1882. msgstr "Ominięcie katalogu %s"
  1883. #: apt-pkg/acquire-item.cc:1562
  1884. msgid ""
  1885. "This is normally not allowed, but the option Acquire::"
  1886. "AllowDowngradeToInsecureRepositories was given to override it."
  1887. msgstr ""
  1888. #: apt-pkg/acquire-item.cc:2685
  1889. #, c-format
  1890. msgid ""
  1891. "I wasn't able to locate a file for the %s package. This might mean you need "
  1892. "to manually fix this package. (due to missing arch)"
  1893. msgstr ""
  1894. "Nie udało się odnaleźć pliku dla pakietu %s. Może to oznaczać, że trzeba "
  1895. "będzie ręcznie naprawić ten pakiet (z powodu brakującej architektury)."
  1896. #: apt-pkg/acquire-item.cc:2751
  1897. #, c-format
  1898. msgid "Can't find a source to download version '%s' of '%s'"
  1899. msgstr "Nie można znaleźć źródła do pobrania wersji \"%s\" pakietu \"%s\""
  1900. #: apt-pkg/acquire-item.cc:2789
  1901. #, c-format
  1902. msgid ""
  1903. "The package index files are corrupted. No Filename: field for package %s."
  1904. msgstr ""
  1905. "Pliki indeksu pakietów są uszkodzone. Brak pola Filename: dla pakietu %s."
  1906. #. TRANSLATOR: %s=%s is sourcename=sourceversion, e.g. apt=1.1
  1907. #: apt-pkg/acquire-item.cc:2990 apt-pkg/acquire-item.cc:3132
  1908. #, fuzzy, c-format
  1909. msgid "Changelog unavailable for %s=%s"
  1910. msgstr "Dziennik zmian %s (%s)"
  1911. #: apt-pkg/pkgcachegen.cc:112
  1912. msgid "Cache has an incompatible versioning system"
  1913. msgstr "Magazyn podręczny ma niezgodny system wersji"
  1914. #. TRANSLATOR: The first placeholder is a package name,
  1915. #. the other two should be copied verbatim as they include debug info
  1916. #: apt-pkg/pkgcachegen.cc:237 apt-pkg/pkgcachegen.cc:299
  1917. #: apt-pkg/pkgcachegen.cc:365 apt-pkg/pkgcachegen.cc:369
  1918. #: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:394
  1919. #: apt-pkg/pkgcachegen.cc:398 apt-pkg/pkgcachegen.cc:402
  1920. #: apt-pkg/pkgcachegen.cc:423 apt-pkg/pkgcachegen.cc:428
  1921. #: apt-pkg/pkgcachegen.cc:474 apt-pkg/pkgcachegen.cc:488
  1922. #, c-format
  1923. msgid "Error occurred while processing %s (%s%d)"
  1924. msgstr "Wystąpił błąd podczas przetwarzania %s (%s%d)"
  1925. #: apt-pkg/pkgcachegen.cc:257
  1926. msgid "Wow, you exceeded the number of package names this APT is capable of."
  1927. msgstr "Przekroczono liczbę pakietów, którą ten APT jest w stanie obsłużyć."
  1928. #: apt-pkg/pkgcachegen.cc:260
  1929. msgid "Wow, you exceeded the number of versions this APT is capable of."
  1930. msgstr "Przekroczono liczbę wersji, którą ten APT jest w stanie obsłużyć."
  1931. #: apt-pkg/pkgcachegen.cc:263
  1932. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  1933. msgstr "Przekroczono liczbę opisów, którą ten APT jest w stanie obsłużyć."
  1934. #: apt-pkg/pkgcachegen.cc:266
  1935. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  1936. msgstr "Przekroczono liczbę zależności, którą ten APT jest w stanie obsłużyć."
  1937. #: apt-pkg/pkgcachegen.cc:1419 apt-pkg/pkgcachegen.cc:1546
  1938. #: apt-pkg/pkgcachegen.cc:1572 apt-pkg/pkgcachegen.cc:1681
  1939. msgid "Reading package lists"
  1940. msgstr "Czytanie list pakietów"
  1941. #: apt-pkg/pkgcachegen.cc:1490 apt-pkg/pkgcachegen.cc:1497
  1942. msgid "IO Error saving source cache"
  1943. msgstr "Błąd wejścia/wyjścia przy zapisywaniu podręcznego magazynu źródeł"
  1944. #: apt-pkg/acquire.cc:127 apt-pkg/acquire.cc:147 apt-pkg/cdrom.cc:833
  1945. #, c-format
  1946. msgid "List directory %spartial is missing."
  1947. msgstr "Brakuje katalogu list %spartial."
  1948. #: apt-pkg/acquire.cc:130 apt-pkg/acquire.cc:152
  1949. #, c-format
  1950. msgid "Archives directory %spartial is missing."
  1951. msgstr "Brakuje katalogu archiwów %spartial."
  1952. #: apt-pkg/acquire.cc:163
  1953. #, c-format
  1954. msgid "Unable to lock directory %s"
  1955. msgstr "Nie udało się zablokować katalogu %s"
  1956. #: apt-pkg/acquire.cc:500
  1957. #, c-format
  1958. msgid ""
  1959. "Can't drop privileges for downloading as file '%s' couldn't be accessed by "
  1960. "user '%s'."
  1961. msgstr ""
  1962. #: apt-pkg/acquire.cc:618 apt-pkg/clean.cc:39
  1963. #, fuzzy, c-format
  1964. msgid "Clean of %s is not supported"
  1965. msgstr "Plik indeksu typu \"%s\" nie jest obsługiwany"
  1966. #. only show the ETA if it makes sense
  1967. #. two days
  1968. #: apt-pkg/acquire.cc:1146
  1969. #, c-format
  1970. msgid "Retrieving file %li of %li (%s remaining)"
  1971. msgstr "Pobieranie pliku %li z %li (pozostało %s)"
  1972. #: apt-pkg/acquire.cc:1148
  1973. #, c-format
  1974. msgid "Retrieving file %li of %li"
  1975. msgstr "Pobieranie pliku %li z %li"
  1976. #: apt-pkg/update.cc:76
  1977. #, fuzzy, c-format
  1978. msgid "Failed to fetch %s %s"
  1979. msgstr "Nie udało się pobrać %s %s\n"
  1980. #: apt-pkg/update.cc:102 apt-pkg/update.cc:104
  1981. msgid ""
  1982. "Some index files failed to download. They have been ignored, or old ones "
  1983. "used instead."
  1984. msgstr ""
  1985. "Nie udało się pobrać niektórych plików indeksu, zostały one zignorowane lub "
  1986. "użyto ich starszej wersji."
  1987. #: apt-pkg/srcrecords.cc:53
  1988. msgid "You must put some 'source' URIs in your sources.list"
  1989. msgstr "Należy dopisać jakieś URI pakietów źródłowych do pliku sources.list"
  1990. #: apt-pkg/clean.cc:64
  1991. #, c-format
  1992. msgid "Unable to stat %s."
  1993. msgstr "Nie udało się wykonać operacji stat na pliku %s."
  1994. #: apt-pkg/policy.cc:77
  1995. #, c-format
  1996. msgid ""
  1997. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  1998. "available in the sources"
  1999. msgstr ""
  2000. "Wartość %s jest nieprawidłowa dla APT::Default-Release, ponieważ takie "
  2001. "wydanie nie jest dostępne w źródłach"
  2002. #: apt-pkg/policy.cc:453
  2003. #, c-format
  2004. msgid "Invalid record in the preferences file %s, no Package header"
  2005. msgstr "Nieprawidłowe informacje w pliku ustawień %s, brak nagłówka Package"
  2006. #: apt-pkg/policy.cc:475
  2007. #, c-format
  2008. msgid "Did not understand pin type %s"
  2009. msgstr "Nierozpoznany typ przypinania %s"
  2010. #: apt-pkg/policy.cc:484
  2011. #, c-format
  2012. msgid "%s: Value %s is outside the range of valid pin priorities (%d to %d)"
  2013. msgstr ""
  2014. #: apt-pkg/policy.cc:491
  2015. msgid "No priority (or zero) specified for pin"
  2016. msgstr "Brak (lub zerowy) priorytet przypięcia"
  2017. #: apt-pkg/packagemanager.cc:330 apt-pkg/packagemanager.cc:1018
  2018. #, c-format
  2019. msgid ""
  2020. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  2021. "under APT::Immediate-Configure for details. (%d)"
  2022. msgstr ""
  2023. "Nie udało się wykonać natychmiastowej konfiguracji %s. Proszę wykonać \"man "
  2024. "5 apt.conf\" i zapoznać się z wpisem APT::Immediate-Configure aby dowiedzieć "
  2025. "się więcej. (%d)"
  2026. #: apt-pkg/packagemanager.cc:589 apt-pkg/packagemanager.cc:627
  2027. #, c-format
  2028. msgid "Could not configure '%s'. "
  2029. msgstr "Nie udało się skonfigurować \"%s\". "
  2030. #: apt-pkg/packagemanager.cc:677
  2031. #, c-format
  2032. msgid ""
  2033. "This installation run will require temporarily removing the essential "
  2034. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2035. "you really want to do it, activate the APT::Force-LoopBreak option."
  2036. msgstr ""
  2037. "To uruchomienie programu będzie wymagało tymczasowego usunięcia istotnego "
  2038. "pakietu %s z powodu pętli konfliktów/wymagań wstępnych. Często jest to złe "
  2039. "rozwiązanie, ale jeśli jest się pewnym swoich działań, należy włączyć opcję "
  2040. "APT::Force-LoopBreak."
  2041. #: apt-pkg/cdrom.cc:498
  2042. #, c-format
  2043. msgid "Line %u too long in source list %s."
  2044. msgstr "Linia %u w liście źródeł %s jest zbyt długa."
  2045. #: apt-pkg/cdrom.cc:572
  2046. msgid "Unmounting CD-ROM...\n"
  2047. msgstr "Odmontowanie CD-ROM-u...\n"
  2048. #: apt-pkg/cdrom.cc:587
  2049. #, c-format
  2050. msgid "Using CD-ROM mount point %s\n"
  2051. msgstr "Użycie %s jako punktu montowania CD-ROM-u\n"
  2052. #: apt-pkg/cdrom.cc:600
  2053. msgid "Waiting for disc...\n"
  2054. msgstr "Oczekiwanie na płytę...\n"
  2055. #: apt-pkg/cdrom.cc:610
  2056. msgid "Mounting CD-ROM...\n"
  2057. msgstr "Montowanie CD-ROM-u...\n"
  2058. #: apt-pkg/cdrom.cc:621
  2059. msgid "Identifying... "
  2060. msgstr "Identyfikacja... "
  2061. #: apt-pkg/cdrom.cc:663
  2062. #, c-format
  2063. msgid "Stored label: %s\n"
  2064. msgstr "Etykieta: %s \n"
  2065. #: apt-pkg/cdrom.cc:681
  2066. msgid "Scanning disc for index files...\n"
  2067. msgstr "Skanowanie płyty w poszukiwaniu plików indeksu...\n"
  2068. #: apt-pkg/cdrom.cc:735
  2069. #, c-format
  2070. msgid ""
  2071. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2072. "%zu signatures\n"
  2073. msgstr ""
  2074. "Znaleziono %zu indeksów pakietów, %zu indeksów źródłowych, %zu indeksów "
  2075. "tłumaczeń i %zu podpisów\n"
  2076. #: apt-pkg/cdrom.cc:745
  2077. msgid ""
  2078. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2079. "wrong architecture?"
  2080. msgstr ""
  2081. "Nie można odnaleźć żadnych plików pakietów, być może nie jest to dysk "
  2082. "Debiana lub jest to inna architektura?"
  2083. #: apt-pkg/cdrom.cc:772
  2084. #, c-format
  2085. msgid "Found label '%s'\n"
  2086. msgstr "Znaleziono etykietę \"%s\"\n"
  2087. #: apt-pkg/cdrom.cc:801
  2088. msgid "That is not a valid name, try again.\n"
  2089. msgstr "To nie jest prawidłowa nazwa, proszę spróbować ponownie.\n"
  2090. #: apt-pkg/cdrom.cc:818
  2091. #, c-format
  2092. msgid ""
  2093. "This disc is called: \n"
  2094. "'%s'\n"
  2095. msgstr ""
  2096. "Płyta nosi nazwę: \n"
  2097. "\"%s\"\n"
  2098. #: apt-pkg/cdrom.cc:820
  2099. msgid "Copying package lists..."
  2100. msgstr "Kopiowanie list pakietów..."
  2101. #: apt-pkg/cdrom.cc:867
  2102. msgid "Writing new source list\n"
  2103. msgstr "Zapisywanie nowej listy źródeł\n"
  2104. #: apt-pkg/cdrom.cc:878
  2105. msgid "Source list entries for this disc are:\n"
  2106. msgstr "Źródła dla tej płyty to:\n"
  2107. #: apt-pkg/algorithms.cc:263
  2108. #, c-format
  2109. msgid ""
  2110. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2111. msgstr ""
  2112. "Pakiet %s ma zostać ponownie zainstalowany, ale nie można znaleźć jego "
  2113. "archiwum."
  2114. #: apt-pkg/algorithms.cc:1080
  2115. msgid ""
  2116. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2117. "held packages."
  2118. msgstr ""
  2119. "Błąd, pkgProblemResolver::Resolve zwrócił błąd, może to być spowodowane "
  2120. "zatrzymanymi pakietami."
  2121. #: apt-pkg/algorithms.cc:1082
  2122. msgid "Unable to correct problems, you have held broken packages."
  2123. msgstr "Nie udało się naprawić problemów, zatrzymano uszkodzone pakiety."
  2124. #: apt-pkg/edsp.cc:184 apt-pkg/edsp.cc:210
  2125. msgid "Send scenario to solver"
  2126. msgstr "Wysyłanie scenariusza do mechanizmu rozwiązywania zależności"
  2127. #: apt-pkg/edsp.cc:232
  2128. msgid "Send request to solver"
  2129. msgstr "Wysyłanie żądania do mechanizmu rozwiązywania zależności"
  2130. #: apt-pkg/edsp.cc:311
  2131. msgid "Prepare for receiving solution"
  2132. msgstr "Przygotowywanie na otrzymanie rozwiązania"
  2133. #: apt-pkg/edsp.cc:318
  2134. msgid "External solver failed without a proper error message"
  2135. msgstr ""
  2136. "Zewnętrzny mechanizm rozwiązywania zależności zawiódł, bez podania "
  2137. "prawidłowego komunikatu o błędzie"
  2138. #: apt-pkg/edsp.cc:610 apt-pkg/edsp.cc:613 apt-pkg/edsp.cc:618
  2139. msgid "Execute external solver"
  2140. msgstr "Wykonywanie zewnętrznego mechanizmu rozwiązywania zależności"
  2141. #: apt-pkg/pkgrecords.cc:38
  2142. #, c-format
  2143. msgid "Index file type '%s' is not supported"
  2144. msgstr "Plik indeksu typu \"%s\" nie jest obsługiwany"
  2145. #: apt-pkg/tagfile.cc:196 apt-pkg/tagfile.cc:296 apt-pkg/deb/debrecords.cc:212
  2146. #, c-format
  2147. msgid "Unable to parse package file %s (%d)"
  2148. msgstr "Nie udało się zanalizować pliku pakietu %s (%d)"
  2149. #: apt-pkg/tagfile.cc:541 apt-pkg/tagfile.cc:544
  2150. #, c-format
  2151. msgid "Cannot convert %s to integer"
  2152. msgstr ""
  2153. #. TRANSLATOR: %u is a line number, the first %s is a filename of a file with the extension "second %s" and the third %s is a unique identifier for bugreports
  2154. #: apt-pkg/sourcelist.cc:140 apt-pkg/sourcelist.cc:147
  2155. #: apt-pkg/sourcelist.cc:150 apt-pkg/sourcelist.cc:158
  2156. #: apt-pkg/sourcelist.cc:165 apt-pkg/sourcelist.cc:209
  2157. #: apt-pkg/sourcelist.cc:212 apt-pkg/sourcelist.cc:223
  2158. #: apt-pkg/sourcelist.cc:229 apt-pkg/sourcelist.cc:232
  2159. #: apt-pkg/sourcelist.cc:245 apt-pkg/sourcelist.cc:247
  2160. #: apt-pkg/sourcelist.cc:250 apt-pkg/sourcelist.cc:256
  2161. #: apt-pkg/sourcelist.cc:263
  2162. #, fuzzy, c-format
  2163. msgid "Malformed entry %u in %s file %s (%s)"
  2164. msgstr "Nieprawidłowa linia %llu #1 pliku override %s"
  2165. #: apt-pkg/sourcelist.cc:367
  2166. #, c-format
  2167. msgid "Opening %s"
  2168. msgstr "Otwieranie %s"
  2169. #: apt-pkg/sourcelist.cc:401
  2170. #, c-format
  2171. msgid "Malformed line %u in source list %s (type)"
  2172. msgstr "Nieprawidłowa linia %u w liście źródeł %s (typ)"
  2173. #: apt-pkg/sourcelist.cc:405
  2174. #, c-format
  2175. msgid "Type '%s' is not known on line %u in source list %s"
  2176. msgstr "Typ \"%s\" jest nieznany w linii %u listy źródeł %s"
  2177. #: apt-pkg/sourcelist.cc:425 apt-pkg/sourcelist.cc:431
  2178. #, fuzzy, c-format
  2179. msgid "Malformed stanza %u in source list %s (type)"
  2180. msgstr "Nieprawidłowa linia %u w liście źródeł %s (typ)"
  2181. #: apt-pkg/sourcelist.cc:441
  2182. #, fuzzy, c-format
  2183. msgid "Type '%s' is not known on stanza %u in source list %s"
  2184. msgstr "Typ \"%s\" jest nieznany w linii %u listy źródeł %s"
  2185. #: apt-pkg/cacheset.cc:492
  2186. #, c-format
  2187. msgid "Release '%s' for '%s' was not found"
  2188. msgstr "Wydanie \"%s\" dla \"%s\" nie zostało znalezione"
  2189. #: apt-pkg/cacheset.cc:495
  2190. #, c-format
  2191. msgid "Version '%s' for '%s' was not found"
  2192. msgstr "Wersja \"%s\" dla \"%s\" nie została znaleziona"
  2193. #: apt-pkg/cacheset.cc:730
  2194. #, c-format
  2195. msgid "Couldn't find task '%s'"
  2196. msgstr "Nie udało się odnaleźć zadania \"%s\""
  2197. #: apt-pkg/cacheset.cc:736
  2198. #, c-format
  2199. msgid "Couldn't find any package by regex '%s'"
  2200. msgstr ""
  2201. "Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\""
  2202. #: apt-pkg/cacheset.cc:742
  2203. #, fuzzy, c-format
  2204. msgid "Couldn't find any package by glob '%s'"
  2205. msgstr ""
  2206. "Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\""
  2207. #: apt-pkg/cacheset.cc:781
  2208. #, c-format
  2209. msgid "Can't select versions from package '%s' as it is purely virtual"
  2210. msgstr ""
  2211. "Nie udało się wybrać wersji z pakietu \"%s\", ponieważ jest on czysto "
  2212. "wirtualny"
  2213. #: apt-pkg/cacheset.cc:820
  2214. #, c-format
  2215. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2216. msgstr ""
  2217. "Nie udało się wybrać najnowszej wersji pakietu \"%s\", ponieważ jest on "
  2218. "czysto wirtualny"
  2219. #: apt-pkg/cacheset.cc:828
  2220. #, c-format
  2221. msgid "Can't select candidate version from package %s as it has no candidate"
  2222. msgstr ""
  2223. "Nie udało się wybrać wersji kandydującej pakietu %s, ponieważ nie ma "
  2224. "kandydata"
  2225. #: apt-pkg/cacheset.cc:836
  2226. #, c-format
  2227. msgid "Can't select installed version from package %s as it is not installed"
  2228. msgstr ""
  2229. "Nie udało się wybrać zainstalowanej wersji z pakietu %s, ponieważ nie jest "
  2230. "zainstalowany"
  2231. #: apt-pkg/cacheset.cc:844 apt-pkg/cacheset.cc:852
  2232. #, c-format
  2233. msgid ""
  2234. "Can't select installed nor candidate version from package '%s' as it has "
  2235. "neither of them"
  2236. msgstr ""
  2237. "Nie udało się wybrać zainstalowanej ani kandydującej wersji pakietu \"%s\", "
  2238. "ponieważ nie ma żadnej z nich"
  2239. #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
  2240. #. a file like main/binary-amd64/Packages; another identifier like Contents;
  2241. #. filename and linenumber of the sources.list entry currently parsed
  2242. #: apt-pkg/deb/debmetaindex.cc:215
  2243. #, c-format
  2244. msgid "Target %s wants to acquire the same file (%s) as %s from source %s"
  2245. msgstr ""
  2246. #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
  2247. #. a file like main/binary-amd64/Packages; filename and linenumber of
  2248. #. two sources.list entries
  2249. #: apt-pkg/deb/debmetaindex.cc:234
  2250. #, c-format
  2251. msgid "Target %s (%s) is configured multiple times in %s and %s"
  2252. msgstr ""
  2253. #: apt-pkg/deb/debmetaindex.cc:314
  2254. #, c-format
  2255. msgid "Unable to parse Release file %s"
  2256. msgstr "Nie udało się przeanalizować pliku Release %s"
  2257. #: apt-pkg/deb/debmetaindex.cc:323
  2258. #, c-format
  2259. msgid "No sections in Release file %s"
  2260. msgstr "Brak sekcji w pliku Release %s"
  2261. #: apt-pkg/deb/debmetaindex.cc:363
  2262. #, c-format
  2263. msgid "No Hash entry in Release file %s"
  2264. msgstr "Brak wpisu Hash w pliku Release %s"
  2265. #: apt-pkg/deb/debmetaindex.cc:371
  2266. #, c-format
  2267. msgid "Invalid 'Date' entry in Release file %s"
  2268. msgstr "Nieprawidłowy wpis Date w pliku Release %s"
  2269. #: apt-pkg/deb/debmetaindex.cc:392
  2270. #, c-format
  2271. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2272. msgstr "Nieprawidłowy wpis Valid-Until w pliku Release %s"
  2273. #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
  2274. #: apt-pkg/deb/debmetaindex.cc:521 apt-pkg/deb/debmetaindex.cc:529
  2275. #: apt-pkg/deb/debmetaindex.cc:537 apt-pkg/deb/debmetaindex.cc:545
  2276. #: apt-pkg/deb/debmetaindex.cc:568
  2277. #, c-format
  2278. msgid "Conflicting values set for option %s concerning source %s %s"
  2279. msgstr ""
  2280. #: apt-pkg/deb/debmetaindex.cc:563
  2281. #, c-format
  2282. msgid "Invalid value set for option %s concerning source %s %s (%s)"
  2283. msgstr ""
  2284. #: apt-pkg/deb/dpkgpm.cc:110
  2285. #, c-format
  2286. msgid "Installing %s"
  2287. msgstr "Instalowanie %s"
  2288. #: apt-pkg/deb/dpkgpm.cc:111 apt-pkg/deb/dpkgpm.cc:1007
  2289. #, c-format
  2290. msgid "Configuring %s"
  2291. msgstr "Konfigurowanie %s"
  2292. #: apt-pkg/deb/dpkgpm.cc:112 apt-pkg/deb/dpkgpm.cc:1014
  2293. #, c-format
  2294. msgid "Removing %s"
  2295. msgstr "Usuwanie %s"
  2296. #: apt-pkg/deb/dpkgpm.cc:113
  2297. #, c-format
  2298. msgid "Completely removing %s"
  2299. msgstr "Całkowite usuwanie %s"
  2300. #: apt-pkg/deb/dpkgpm.cc:114
  2301. #, c-format
  2302. msgid "Noting disappearance of %s"
  2303. msgstr "Proszę odnotować zniknięcie %s"
  2304. #: apt-pkg/deb/dpkgpm.cc:115
  2305. #, c-format
  2306. msgid "Running post-installation trigger %s"
  2307. msgstr "Uruchamianie wyzwalacza post-installation %s"
  2308. #. FIXME: use a better string after freeze
  2309. #: apt-pkg/deb/dpkgpm.cc:838
  2310. #, c-format
  2311. msgid "Directory '%s' missing"
  2312. msgstr "Brakuje katalogu \"%s\""
  2313. #: apt-pkg/deb/dpkgpm.cc:853 apt-pkg/deb/dpkgpm.cc:875
  2314. #, c-format
  2315. msgid "Could not open file '%s'"
  2316. msgstr "Nie udało się otworzyć pliku \"%s\""
  2317. #: apt-pkg/deb/dpkgpm.cc:1000
  2318. #, c-format
  2319. msgid "Preparing %s"
  2320. msgstr "Przygotowywanie %s"
  2321. #: apt-pkg/deb/dpkgpm.cc:1001
  2322. #, c-format
  2323. msgid "Unpacking %s"
  2324. msgstr "Rozpakowywanie %s"
  2325. #: apt-pkg/deb/dpkgpm.cc:1006
  2326. #, c-format
  2327. msgid "Preparing to configure %s"
  2328. msgstr "Przygotowywanie do konfiguracji %s"
  2329. #: apt-pkg/deb/dpkgpm.cc:1008
  2330. #, c-format
  2331. msgid "Installed %s"
  2332. msgstr "Pakiet %s został zainstalowany"
  2333. #: apt-pkg/deb/dpkgpm.cc:1013
  2334. #, c-format
  2335. msgid "Preparing for removal of %s"
  2336. msgstr "Przygotowywanie do usunięcia %s"
  2337. #: apt-pkg/deb/dpkgpm.cc:1015
  2338. #, c-format
  2339. msgid "Removed %s"
  2340. msgstr "Pakiet %s został usunięty"
  2341. #: apt-pkg/deb/dpkgpm.cc:1020
  2342. #, c-format
  2343. msgid "Preparing to completely remove %s"
  2344. msgstr "Przygotowywanie do całkowitego usunięcia %s"
  2345. #: apt-pkg/deb/dpkgpm.cc:1021
  2346. #, c-format
  2347. msgid "Completely removed %s"
  2348. msgstr "Pakiet %s został całkowicie usunięty"
  2349. #: apt-pkg/deb/dpkgpm.cc:1080 apt-pkg/deb/dpkgpm.cc:1168
  2350. #, fuzzy, c-format
  2351. msgid "Can not write log (%s)"
  2352. msgstr "Nie udało się pisać do %s"
  2353. #: apt-pkg/deb/dpkgpm.cc:1080 apt-pkg/deb/dpkgpm.cc:1168
  2354. msgid "Is /dev/pts mounted?"
  2355. msgstr ""
  2356. #: apt-pkg/deb/dpkgpm.cc:1656
  2357. msgid "Operation was interrupted before it could finish"
  2358. msgstr "Operacja została przerwana, zanim mogła zostać zakończona"
  2359. #: apt-pkg/deb/dpkgpm.cc:1718
  2360. msgid "No apport report written because MaxReports is reached already"
  2361. msgstr "Brak raportu programu apport, ponieważ osiągnięto limit MaxReports"
  2362. #. check if its not a follow up error
  2363. #: apt-pkg/deb/dpkgpm.cc:1723
  2364. msgid "dependency problems - leaving unconfigured"
  2365. msgstr "problemy z zależnościami - pozostawianie nieskonfigurowanego"
  2366. #: apt-pkg/deb/dpkgpm.cc:1725
  2367. msgid ""
  2368. "No apport report written because the error message indicates its a followup "
  2369. "error from a previous failure."
  2370. msgstr ""
  2371. "Brak raportu programu apport, ponieważ komunikat błędu wskazuje, że "
  2372. "przyczyna niepowodzenia leży w poprzednim błędzie."
  2373. #: apt-pkg/deb/dpkgpm.cc:1731
  2374. msgid ""
  2375. "No apport report written because the error message indicates a disk full "
  2376. "error"
  2377. msgstr ""
  2378. "Brak raportu programu apport, ponieważ komunikat błędu wskazuje na "
  2379. "przepełnienie dysku"
  2380. #: apt-pkg/deb/dpkgpm.cc:1738
  2381. msgid ""
  2382. "No apport report written because the error message indicates a out of memory "
  2383. "error"
  2384. msgstr ""
  2385. "Brak raportu programu apport, ponieważ komunikat błędu wskazuje na błąd "
  2386. "braku wolnej pamięci"
  2387. #: apt-pkg/deb/dpkgpm.cc:1745 apt-pkg/deb/dpkgpm.cc:1751
  2388. #, fuzzy
  2389. msgid ""
  2390. "No apport report written because the error message indicates an issue on the "
  2391. "local system"
  2392. msgstr ""
  2393. "Brak raportu programu apport, ponieważ komunikat błędu wskazuje na "
  2394. "przepełnienie dysku"
  2395. #: apt-pkg/deb/dpkgpm.cc:1773
  2396. msgid ""
  2397. "No apport report written because the error message indicates a dpkg I/O error"
  2398. msgstr ""
  2399. "Brak raportu programu apport, ponieważ komunikat błędu wskazuje na błąd "
  2400. "wejścia/wyjścia dpkg"
  2401. #: apt-pkg/deb/debsystem.cc:88
  2402. #, c-format
  2403. msgid ""
  2404. "Unable to lock the administration directory (%s), is another process using "
  2405. "it?"
  2406. msgstr ""
  2407. "Nie udało się zablokować katalogu administracyjnego (%s), czy inny proces go "
  2408. "używa?"
  2409. # Musi pasować do su i sudo.
  2410. #: apt-pkg/deb/debsystem.cc:91
  2411. #, c-format
  2412. msgid "Unable to lock the administration directory (%s), are you root?"
  2413. msgstr ""
  2414. "Nie udało się zablokować katalogu administracyjnego (%s), czy użyto "
  2415. "uprawnień administratora?"
  2416. #. TRANSLATORS: the %s contains the recovery command, usually
  2417. #. dpkg --configure -a
  2418. #: apt-pkg/deb/debsystem.cc:107
  2419. #, c-format
  2420. msgid ""
  2421. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2422. msgstr ""
  2423. "dpkg został przerwany, należy wykonać ręcznie \"%s\", aby naprawić problem."
  2424. #: apt-pkg/deb/debsystem.cc:125
  2425. msgid "Not locked"
  2426. msgstr "Niezablokowany"
  2427. #: apt-pkg/contrib/fileutl.cc:197
  2428. #, c-format
  2429. msgid "Not using locking for read only lock file %s"
  2430. msgstr "Dla pliku blokady %s tylko do odczytu nie zostanie użyta blokada"
  2431. #: apt-pkg/contrib/fileutl.cc:202
  2432. #, c-format
  2433. msgid "Could not open lock file %s"
  2434. msgstr "Nie udało się otworzyć pliku blokady %s"
  2435. #: apt-pkg/contrib/fileutl.cc:225
  2436. #, c-format
  2437. msgid "Not using locking for nfs mounted lock file %s"
  2438. msgstr "Dla pliku blokady %s montowanego przez NFS nie zostanie użyta blokada"
  2439. #: apt-pkg/contrib/fileutl.cc:230
  2440. #, c-format
  2441. msgid "Could not get lock %s"
  2442. msgstr "Nie udało się uzyskać blokady %s"
  2443. #: apt-pkg/contrib/fileutl.cc:367 apt-pkg/contrib/fileutl.cc:481
  2444. #, c-format
  2445. msgid "List of files can't be created as '%s' is not a directory"
  2446. msgstr ""
  2447. "Lista plików nie może zostać stworzona, ponieważ \"%s\" nie jest katalogiem"
  2448. #: apt-pkg/contrib/fileutl.cc:401
  2449. #, c-format
  2450. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  2451. msgstr "Ignorowanie \"%s\" w katalogu \"%s\", ponieważ nie jest to zwykły plik"
  2452. #: apt-pkg/contrib/fileutl.cc:419
  2453. #, c-format
  2454. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  2455. msgstr ""
  2456. "Ignorowanie pliku \"%s\" w katalogu \"%s\", ponieważ nie ma on rozszerzenia "
  2457. "pliku"
  2458. #: apt-pkg/contrib/fileutl.cc:428
  2459. #, c-format
  2460. msgid ""
  2461. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  2462. msgstr ""
  2463. "Ignorowanie pliku \"%s\" w katalogu \"%s\", ponieważ ma on nieprawidłowe "
  2464. "rozszerzenie pliku"
  2465. #: apt-pkg/contrib/fileutl.cc:862
  2466. #, c-format
  2467. msgid "Sub-process %s received a segmentation fault."
  2468. msgstr "Podproces %s spowodował naruszenie ochrony pamięci."
  2469. #: apt-pkg/contrib/fileutl.cc:864
  2470. #, c-format
  2471. msgid "Sub-process %s received signal %u."
  2472. msgstr "Podproces %s otrzymał sygnał %u."
  2473. #: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:227
  2474. #, c-format
  2475. msgid "Sub-process %s returned an error code (%u)"
  2476. msgstr "Podproces %s zwrócił kod błędu (%u)"
  2477. #: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:220
  2478. #, c-format
  2479. msgid "Sub-process %s exited unexpectedly"
  2480. msgstr "Podproces %s zakończył się niespodziewanie"
  2481. #: apt-pkg/contrib/fileutl.cc:987
  2482. #, c-format
  2483. msgid "Problem closing the gzip file %s"
  2484. msgstr "Problem przy zamykaniu pliku gzip %s"
  2485. #: apt-pkg/contrib/fileutl.cc:1194
  2486. #, c-format
  2487. msgid "Could not open file %s"
  2488. msgstr "Nie udało się otworzyć pliku %s"
  2489. #: apt-pkg/contrib/fileutl.cc:1253 apt-pkg/contrib/fileutl.cc:1300
  2490. #, c-format
  2491. msgid "Could not open file descriptor %d"
  2492. msgstr "Nie udało się otworzyć deskryptora pliku %d"
  2493. #: apt-pkg/contrib/fileutl.cc:1408 apt-pkg/contrib/fileutl.cc:2204
  2494. msgid "Failed to create subprocess IPC"
  2495. msgstr "Nie udało się utworzyć IPC z podprocesem"
  2496. #: apt-pkg/contrib/fileutl.cc:1466
  2497. msgid "Failed to exec compressor "
  2498. msgstr "Nie udało się uruchomić kompresora "
  2499. #: apt-pkg/contrib/fileutl.cc:1607
  2500. #, c-format
  2501. msgid "read, still have %llu to read but none left"
  2502. msgstr "należało przeczytać jeszcze %llu, ale nic nie zostało"
  2503. #: apt-pkg/contrib/fileutl.cc:1720 apt-pkg/contrib/fileutl.cc:1742
  2504. #, c-format
  2505. msgid "write, still have %llu to write but couldn't"
  2506. msgstr "należało zapisać jeszcze %llu, ale nie udało się to"
  2507. #: apt-pkg/contrib/fileutl.cc:2008
  2508. #, c-format
  2509. msgid "Problem closing the file %s"
  2510. msgstr "Problem przy zamykaniu pliku %s"
  2511. #: apt-pkg/contrib/fileutl.cc:2020
  2512. #, c-format
  2513. msgid "Problem renaming the file %s to %s"
  2514. msgstr "Problem przy zapisywaniu pliku %s w %s"
  2515. #: apt-pkg/contrib/fileutl.cc:2031
  2516. #, c-format
  2517. msgid "Problem unlinking the file %s"
  2518. msgstr "Problem przy odlinkowywaniu pliku %s"
  2519. #: apt-pkg/contrib/fileutl.cc:2044
  2520. msgid "Problem syncing the file"
  2521. msgstr "Problem przy zapisywaniu pliku na dysk"
  2522. #: apt-pkg/contrib/fileutl.cc:2174 cmdline/apt-extracttemplates.cc:258
  2523. #, fuzzy, c-format
  2524. msgid "Unable to mkstemp %s"
  2525. msgstr "Nie można wykonać operacji stat na %s"
  2526. #: apt-pkg/contrib/fileutl.cc:2179 cmdline/apt-extracttemplates.cc:263
  2527. #, c-format
  2528. msgid "Unable to write to %s"
  2529. msgstr "Nie udało się pisać do %s"
  2530. #: apt-pkg/contrib/progress.cc:148
  2531. #, c-format
  2532. msgid "%c%s... Error!"
  2533. msgstr "%c%s... Błąd!"
  2534. #: apt-pkg/contrib/progress.cc:150
  2535. #, c-format
  2536. msgid "%c%s... Done"
  2537. msgstr "%c%s... Gotowe"
  2538. #: apt-pkg/contrib/progress.cc:181
  2539. msgid "..."
  2540. msgstr ""
  2541. #. Print the spinner
  2542. #: apt-pkg/contrib/progress.cc:197
  2543. #, fuzzy, c-format
  2544. msgid "%c%s... %u%%"
  2545. msgstr "%c%s... Gotowe"
  2546. #. TRANSLATOR: d means days, h means hours, min means minutes, s means seconds
  2547. #: apt-pkg/contrib/strutl.cc:420
  2548. #, c-format
  2549. msgid "%lid %lih %limin %lis"
  2550. msgstr "%lidni %lig %limin %lis"
  2551. #. TRANSLATOR: h means hours, min means minutes, s means seconds
  2552. #: apt-pkg/contrib/strutl.cc:425
  2553. #, c-format
  2554. msgid "%lih %limin %lis"
  2555. msgstr "%lig %limin %lis"
  2556. #. TRANSLATOR: min means minutes, s means seconds
  2557. #: apt-pkg/contrib/strutl.cc:430
  2558. #, c-format
  2559. msgid "%limin %lis"
  2560. msgstr "%limin %lis"
  2561. #. TRANSLATOR: s means seconds
  2562. #: apt-pkg/contrib/strutl.cc:435
  2563. #, c-format
  2564. msgid "%lis"
  2565. msgstr "%lis"
  2566. #: apt-pkg/contrib/strutl.cc:1279
  2567. #, c-format
  2568. msgid "Selection %s not found"
  2569. msgstr "Nie odnaleziono wyboru %s"
  2570. #: apt-pkg/contrib/mmap.cc:79
  2571. msgid "Can't mmap an empty file"
  2572. msgstr "Nie można wykonać mmap na pustym pliku"
  2573. #: apt-pkg/contrib/mmap.cc:111
  2574. #, c-format
  2575. msgid "Couldn't duplicate file descriptor %i"
  2576. msgstr "Nie udało się zduplikować deskryptora pliku %i"
  2577. #: apt-pkg/contrib/mmap.cc:119
  2578. #, c-format
  2579. msgid "Couldn't make mmap of %llu bytes"
  2580. msgstr "Nie udało się wykonać mmap %llu bajtów"
  2581. #: apt-pkg/contrib/mmap.cc:146
  2582. msgid "Unable to close mmap"
  2583. msgstr "Nie udało się zamknąć mmap"
  2584. #: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202
  2585. msgid "Unable to synchronize mmap"
  2586. msgstr "Nie udało się zsynchronizować mmap"
  2587. #: apt-pkg/contrib/mmap.cc:290
  2588. #, c-format
  2589. msgid "Couldn't make mmap of %lu bytes"
  2590. msgstr "Nie udało się wykonać mmap %lu bajtów"
  2591. #: apt-pkg/contrib/mmap.cc:322
  2592. msgid "Failed to truncate file"
  2593. msgstr "Nie udało się uciąć zawartości pliku %s"
  2594. #: apt-pkg/contrib/mmap.cc:341
  2595. #, c-format
  2596. msgid ""
  2597. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  2598. "Current value: %lu. (man 5 apt.conf)"
  2599. msgstr ""
  2600. "Brak miejsca dla dynamicznego MMap. Proszę zwiększyć rozmiar APT::Cache-"
  2601. "Start. Bieżąca wartość: %lu. (man 5 apt.conf)"
  2602. #: apt-pkg/contrib/mmap.cc:446
  2603. #, c-format
  2604. msgid ""
  2605. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  2606. "reached."
  2607. msgstr ""
  2608. "Nie udało się zwiększyć rozmiaru MMap, ponieważ limit %lu bajtów został już "
  2609. "osiągnięty."
  2610. #: apt-pkg/contrib/mmap.cc:449
  2611. msgid ""
  2612. "Unable to increase size of the MMap as automatic growing is disabled by user."
  2613. msgstr ""
  2614. "Nie udało się zwiększyć rozmiaru MMap, ponieważ automatycznie powiększanie "
  2615. "zostało wyłączone przez użytkownika."
  2616. #: apt-pkg/contrib/cdromutl.cc:65
  2617. #, c-format
  2618. msgid "Unable to stat the mount point %s"
  2619. msgstr "Nie udało się wykonać operacji stat na punkcie montowania %s"
  2620. #: apt-pkg/contrib/cdromutl.cc:247
  2621. msgid "Failed to stat the cdrom"
  2622. msgstr "Nie udało się wykonać operacji stat na CDROM-ie"
  2623. #: apt-pkg/contrib/configuration.cc:516
  2624. #, c-format
  2625. msgid "Unrecognized type abbreviation: '%c'"
  2626. msgstr "Nierozpoznany skrót typu: \"%c\""
  2627. #: apt-pkg/contrib/configuration.cc:630
  2628. #, c-format
  2629. msgid "Opening configuration file %s"
  2630. msgstr "Otwieranie pliku konfiguracyjnego %s"
  2631. #: apt-pkg/contrib/configuration.cc:798
  2632. #, c-format
  2633. msgid "Syntax error %s:%u: Block starts with no name."
  2634. msgstr "Błąd składniowy %s:%u: Blok nie zaczyna się nazwą."
  2635. #: apt-pkg/contrib/configuration.cc:817
  2636. #, c-format
  2637. msgid "Syntax error %s:%u: Malformed tag"
  2638. msgstr "Błąd składniowy %s:%u: Błędny znacznik"
  2639. #: apt-pkg/contrib/configuration.cc:834
  2640. #, c-format
  2641. msgid "Syntax error %s:%u: Extra junk after value"
  2642. msgstr "Błąd składniowy %s:%u: Po wartości występują śmieci"
  2643. #: apt-pkg/contrib/configuration.cc:874
  2644. #, c-format
  2645. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  2646. msgstr ""
  2647. "Błąd składniowy %s:%u: Dyrektywy mogą występować tylko na najwyższym poziomie"
  2648. #: apt-pkg/contrib/configuration.cc:881
  2649. #, c-format
  2650. msgid "Syntax error %s:%u: Too many nested includes"
  2651. msgstr "Błąd składniowy %s:%u: Zbyt wiele zagnieżdżonych operacji include"
  2652. #: apt-pkg/contrib/configuration.cc:885 apt-pkg/contrib/configuration.cc:890
  2653. #, c-format
  2654. msgid "Syntax error %s:%u: Included from here"
  2655. msgstr "Błąd składniowy %s:%u: Włączony tutaj"
  2656. #: apt-pkg/contrib/configuration.cc:894
  2657. #, c-format
  2658. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  2659. msgstr "Błąd składniowy %s:%u: Nieobsługiwana dyrektywa \"%s\""
  2660. #: apt-pkg/contrib/configuration.cc:897
  2661. #, c-format
  2662. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  2663. msgstr ""
  2664. "Błąd składniowy %s:%u: czysta dyrektywa wymaga drzewa opcji jako argumentu"
  2665. #: apt-pkg/contrib/configuration.cc:947
  2666. #, c-format
  2667. msgid "Syntax error %s:%u: Extra junk at end of file"
  2668. msgstr "Błąd składniowy %s:%u: Śmieci na końcu pliku"
  2669. #: apt-pkg/contrib/cmndline.cc:127
  2670. #, fuzzy, c-format
  2671. msgid ""
  2672. "Command line option '%c' [from %s] is not understood in combination with the "
  2673. "other options."
  2674. msgstr "Opcja linii poleceń \"%c\" [z %s] jest nieznana."
  2675. #: apt-pkg/contrib/cmndline.cc:152 apt-pkg/contrib/cmndline.cc:161
  2676. #: apt-pkg/contrib/cmndline.cc:169
  2677. #, fuzzy, c-format
  2678. msgid ""
  2679. "Command line option %s is not understood in combination with the other "
  2680. "options"
  2681. msgstr "Niezrozumiała opcja linii poleceń %s"
  2682. #: apt-pkg/contrib/cmndline.cc:174
  2683. #, c-format
  2684. msgid "Command line option %s is not boolean"
  2685. msgstr "Opcja linii poleceń %s nie jest typu logicznego"
  2686. #: apt-pkg/contrib/cmndline.cc:215 apt-pkg/contrib/cmndline.cc:236
  2687. #, c-format
  2688. msgid "Option %s requires an argument."
  2689. msgstr "Opcja %s wymaga argumentu."
  2690. #: apt-pkg/contrib/cmndline.cc:249 apt-pkg/contrib/cmndline.cc:255
  2691. #, c-format
  2692. msgid "Option %s: Configuration item specification must have an =<val>."
  2693. msgstr "Opcja %s: Specyfikacja elementu konfiguracji musi zawierać =<wartość>."
  2694. #: apt-pkg/contrib/cmndline.cc:284
  2695. #, c-format
  2696. msgid "Option %s requires an integer argument, not '%s'"
  2697. msgstr "Opcja %s wymaga argumentu typu całkowitego, nie \"%s\""
  2698. #: apt-pkg/contrib/cmndline.cc:315
  2699. #, c-format
  2700. msgid "Option '%s' is too long"
  2701. msgstr "Opcja \"%s\" jest zbyt długa"
  2702. #: apt-pkg/contrib/cmndline.cc:347
  2703. #, c-format
  2704. msgid "Sense %s is not understood, try true or false."
  2705. msgstr "Znaczenie %s jest nieznane, proszę spróbować true lub false."
  2706. #: apt-pkg/contrib/cmndline.cc:397
  2707. #, c-format
  2708. msgid "Invalid operation %s"
  2709. msgstr "Nieprawidłowa operacja %s"
  2710. #: cmdline/apt-extracttemplates.cc:228
  2711. msgid ""
  2712. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  2713. "\n"
  2714. "apt-extracttemplates is a tool to extract config and template info\n"
  2715. "from debian packages\n"
  2716. "\n"
  2717. "Options:\n"
  2718. " -h This help text\n"
  2719. " -t Set the temp dir\n"
  2720. " -c=? Read this configuration file\n"
  2721. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  2722. msgstr ""
  2723. "Użycie: apt-extracttemplates plik1 [plik2 ...]\n"
  2724. "\n"
  2725. "apt-extracttemplates to narzędzie służące do pobierania informacji\n"
  2726. "i konfiguracji i szablonach z pakietów Debiana.\n"
  2727. "\n"
  2728. "Opcje:\n"
  2729. " -h Ten tekst pomocy.\n"
  2730. " -t Ustawia katalog tymczasowy\n"
  2731. " -c=? Czyta wskazany plik konfiguracyjny.\n"
  2732. " -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n"
  2733. #: cmdline/apt-extracttemplates.cc:304
  2734. msgid "Cannot get debconf version. Is debconf installed?"
  2735. msgstr "Nie udało się pobrać wersji debconf. Czy debconf jest zainstalowany?"
  2736. #: ftparchive/apt-ftparchive.cc:188 ftparchive/apt-ftparchive.cc:368
  2737. msgid "Package extension list is too long"
  2738. msgstr "Lista rozszerzeń pakietów jest zbyt długa"
  2739. #: ftparchive/apt-ftparchive.cc:190 ftparchive/apt-ftparchive.cc:202
  2740. #: ftparchive/apt-ftparchive.cc:225 ftparchive/apt-ftparchive.cc:281
  2741. #: ftparchive/apt-ftparchive.cc:291 ftparchive/apt-ftparchive.cc:313
  2742. #, c-format
  2743. msgid "Error processing directory %s"
  2744. msgstr "Błąd przetwarzania katalogu %s"
  2745. #: ftparchive/apt-ftparchive.cc:279
  2746. msgid "Source extension list is too long"
  2747. msgstr "Lista rozszerzeń źródeł jest zbyt długa"
  2748. #: ftparchive/apt-ftparchive.cc:394
  2749. msgid "Error writing header to contents file"
  2750. msgstr "Błąd przy zapisywaniu nagłówka do pliku zawartości"
  2751. #: ftparchive/apt-ftparchive.cc:424
  2752. #, c-format
  2753. msgid "Error processing contents %s"
  2754. msgstr "Błąd podczas przetwarzania zawartości %s"
  2755. #: ftparchive/apt-ftparchive.cc:616
  2756. msgid ""
  2757. "Usage: apt-ftparchive [options] command\n"
  2758. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  2759. " sources srcpath [overridefile [pathprefix]]\n"
  2760. " contents path\n"
  2761. " release path\n"
  2762. " generate config [groups]\n"
  2763. " clean config\n"
  2764. "\n"
  2765. "apt-ftparchive generates index files for Debian archives. It supports\n"
  2766. "many styles of generation from fully automated to functional replacements\n"
  2767. "for dpkg-scanpackages and dpkg-scansources\n"
  2768. "\n"
  2769. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  2770. "Package file contains the contents of all the control fields from\n"
  2771. "each package as well as the MD5 hash and filesize. An override file\n"
  2772. "is supported to force the value of Priority and Section.\n"
  2773. "\n"
  2774. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  2775. "The --source-override option can be used to specify a src override file\n"
  2776. "\n"
  2777. "The 'packages' and 'sources' command should be run in the root of the\n"
  2778. "tree. BinaryPath should point to the base of the recursive search and \n"
  2779. "override file should contain the override flags. Pathprefix is\n"
  2780. "appended to the filename fields if present. Example usage from the \n"
  2781. "Debian archive:\n"
  2782. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  2783. " dists/potato/main/binary-i386/Packages\n"
  2784. "\n"
  2785. "Options:\n"
  2786. " -h This help text\n"
  2787. " --md5 Control MD5 generation\n"
  2788. " -s=? Source override file\n"
  2789. " -q Quiet\n"
  2790. " -d=? Select the optional caching database\n"
  2791. " --no-delink Enable delinking debug mode\n"
  2792. " --contents Control contents file generation\n"
  2793. " -c=? Read this configuration file\n"
  2794. " -o=? Set an arbitrary configuration option"
  2795. msgstr ""
  2796. "Użycie: apt-ftparchive [opcje] polecenie\n"
  2797. "Polecenia: packages ścieżka_do_binariów [plik_override [przedrostek]]\n"
  2798. " sources ścieżka_do_źródeł [plik_override [przedrostek]]\n"
  2799. " contents ścieżka\n"
  2800. " release ścieżka\n"
  2801. " generate konfiguracja [grupy]\n"
  2802. " clean konfiguracja\n"
  2803. "\n"
  2804. "apt-ftparchive generuje pliki indeksów dla archiwów Debiana. Obsługuje\n"
  2805. "różne rodzaje generowania, od w pełni zautomatyzowanych po funkcjonalne\n"
  2806. "zamienniki programów dpkg-scanpackages i dpkg-scansources.\n"
  2807. "\n"
  2808. "apt-ftparchive generuje pliki Package na postawie drzewa plików .deb.\n"
  2809. "Wygenerowany plik zawiera pola kontrolne wszystkich pakietów oraz ich\n"
  2810. "skróty MD5 i rozmiary. Obsługiwany jest plik override, pozwalający wymusić\n"
  2811. "priorytet i dział pakietu.\n"
  2812. "\n"
  2813. "apt-ftparchive podobnie generuje pliki Sources na podstawie drzewa plików\n"
  2814. ".dsc. Przy pomocy opcji --source-override można podać plik override dla\n"
  2815. "źródeł.\n"
  2816. "\n"
  2817. "Polecenia \"packages\" i \"sources\" powinny być wykonywane w katalogu "
  2818. "głównym\n"
  2819. "drzewa. \"ścieżka_do_binariów\" powinna wskazywać na katalog, od którego "
  2820. "zacznie\n"
  2821. "się wyszukiwanie, a plik override powinien zawierać odpowiednie flagi.\n"
  2822. "Przedrostek (o ile został podany) jest dodawany przed ścieżką do każdego\n"
  2823. "pliku. Przykładowe użycie, z archiwum Debiana:\n"
  2824. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  2825. " dists/potato/main/binary-i386/Packages\n"
  2826. "\n"
  2827. "Opcje:\n"
  2828. " -h Ten tekst pomocy\n"
  2829. " --md5 Generuje sumy kontrolne MD5\n"
  2830. " -s=? Plik override dla źródeł\n"
  2831. " -q \"Ciche\" działanie\n"
  2832. " -d=? Opcjonalna podręczna baza danych\n"
  2833. " --no-delink Włącza tryb diagnostyczny odłączania\n"
  2834. " --contents Generuje plik zawartości (Contents)\n"
  2835. " -c=? Czyta wskazany plik konfiguracyjny\n"
  2836. " -o=? Ustawia dowolną opcję konfiguracji"
  2837. #: ftparchive/apt-ftparchive.cc:812
  2838. msgid "No selections matched"
  2839. msgstr "Nie dopasowano żadnej nazwy"
  2840. #: ftparchive/apt-ftparchive.cc:892
  2841. #, c-format
  2842. msgid "Some files are missing in the package file group `%s'"
  2843. msgstr "Brakuje pewnych plików w grupie plików pakietów \"%s\""
  2844. #: ftparchive/cachedb.cc:68
  2845. #, c-format
  2846. msgid "DB was corrupted, file renamed to %s.old"
  2847. msgstr "Baza była uszkodzona, plik został przeniesiony do %s.old"
  2848. #: ftparchive/cachedb.cc:86
  2849. #, c-format
  2850. msgid "DB is old, attempting to upgrade %s"
  2851. msgstr "Baza jest przestarzała, próbuję zaktualizować %s"
  2852. #: ftparchive/cachedb.cc:97
  2853. msgid ""
  2854. "DB format is invalid. If you upgraded from an older version of apt, please "
  2855. "remove and re-create the database."
  2856. msgstr ""
  2857. "Niepoprawny format bazy. Jeśli zaktualizowano ze starszej wersji apt, proszę "
  2858. "usunąć i utworzyć ponownie bazę danych."
  2859. #: ftparchive/cachedb.cc:102
  2860. #, c-format
  2861. msgid "Unable to open DB file %s: %s"
  2862. msgstr "Nie udało się otworzyć pliku bazy %s: %s"
  2863. #: ftparchive/cachedb.cc:185 apt-inst/extract.cc:186 apt-inst/extract.cc:199
  2864. #: apt-inst/extract.cc:216
  2865. #, c-format
  2866. msgid "Failed to stat %s"
  2867. msgstr "Nie udało się wykonać operacji stat na %s"
  2868. #: ftparchive/cachedb.cc:327
  2869. #, fuzzy
  2870. msgid "Failed to read .dsc"
  2871. msgstr "Nie udało się odczytać dowiązania %s"
  2872. #: ftparchive/cachedb.cc:360
  2873. msgid "Archive has no control record"
  2874. msgstr "Archiwum nie posiada rekordu kontrolnego"
  2875. #: ftparchive/cachedb.cc:527
  2876. msgid "Unable to get a cursor"
  2877. msgstr "Nie udało się pobrać kursora"
  2878. #: ftparchive/writer.cc:106
  2879. #, c-format
  2880. msgid "W: Unable to read directory %s\n"
  2881. msgstr "W: Nie udało się odczytać katalogu %s\n"
  2882. #: ftparchive/writer.cc:111
  2883. #, c-format
  2884. msgid "W: Unable to stat %s\n"
  2885. msgstr "W: Nie można wykonać operacji stat na %s\n"
  2886. #: ftparchive/writer.cc:167
  2887. msgid "E: "
  2888. msgstr "E: "
  2889. #: ftparchive/writer.cc:169
  2890. msgid "W: "
  2891. msgstr "W: "
  2892. #: ftparchive/writer.cc:176
  2893. msgid "E: Errors apply to file "
  2894. msgstr "E: Błędy odnoszą się do pliku "
  2895. #: ftparchive/writer.cc:194 ftparchive/writer.cc:226
  2896. #, c-format
  2897. msgid "Failed to resolve %s"
  2898. msgstr "Nie udało się przetłumaczyć nazwy %s"
  2899. #: ftparchive/writer.cc:207
  2900. msgid "Tree walking failed"
  2901. msgstr "Przejście po drzewie nie powiodło się"
  2902. #: ftparchive/writer.cc:234
  2903. #, c-format
  2904. msgid "Failed to open %s"
  2905. msgstr "Nie udało się otworzyć %s"
  2906. #: ftparchive/writer.cc:293
  2907. #, c-format
  2908. msgid " DeLink %s [%s]\n"
  2909. msgstr " Odłączenie %s [%s]\n"
  2910. #: ftparchive/writer.cc:301
  2911. #, c-format
  2912. msgid "Failed to readlink %s"
  2913. msgstr "Nie udało się odczytać dowiązania %s"
  2914. #: ftparchive/writer.cc:305
  2915. #, c-format
  2916. msgid "Failed to unlink %s"
  2917. msgstr "Nie udało się usunąć %s"
  2918. #: ftparchive/writer.cc:313
  2919. #, c-format
  2920. msgid "*** Failed to link %s to %s"
  2921. msgstr "*** Nie udało się dowiązać %s do %s"
  2922. #: ftparchive/writer.cc:323
  2923. #, c-format
  2924. msgid " DeLink limit of %sB hit.\n"
  2925. msgstr " Osiągnięto ograniczenie odłączania %sB.\n"
  2926. #: ftparchive/writer.cc:428
  2927. msgid "Archive had no package field"
  2928. msgstr "Archiwum nie posiadało pola pakietu"
  2929. #: ftparchive/writer.cc:436 ftparchive/writer.cc:700
  2930. #, c-format
  2931. msgid " %s has no override entry\n"
  2932. msgstr " %s nie posiada wpisu w pliku override\n"
  2933. #: ftparchive/writer.cc:503 ftparchive/writer.cc:857
  2934. #, c-format
  2935. msgid " %s maintainer is %s not %s\n"
  2936. msgstr " opiekunem %s jest %s, a nie %s\n"
  2937. #: ftparchive/writer.cc:714
  2938. #, c-format
  2939. msgid " %s has no source override entry\n"
  2940. msgstr " %s nie posiada wpisu w pliku override źródeł\n"
  2941. #: ftparchive/writer.cc:718
  2942. #, c-format
  2943. msgid " %s has no binary override entry either\n"
  2944. msgstr " %s nie posiada również wpisu w pliku override binariów\n"
  2945. #: ftparchive/contents.cc:353 ftparchive/contents.cc:384
  2946. msgid "realloc - Failed to allocate memory"
  2947. msgstr "realloc - Nie udało się zaalokować pamięci"
  2948. #: ftparchive/override.cc:38 ftparchive/override.cc:142
  2949. #, c-format
  2950. msgid "Unable to open %s"
  2951. msgstr "Nie można otworzyć %s"
  2952. #. skip spaces
  2953. #. find end of word
  2954. #: ftparchive/override.cc:68
  2955. #, fuzzy, c-format
  2956. msgid "Malformed override %s line %llu (%s)"
  2957. msgstr "Nieprawidłowa linia %llu #1 pliku override %s"
  2958. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  2959. #, c-format
  2960. msgid "Failed to read the override file %s"
  2961. msgstr "Nie udało się czytać pliku override %s"
  2962. #: ftparchive/override.cc:166
  2963. #, c-format
  2964. msgid "Malformed override %s line %llu #1"
  2965. msgstr "Nieprawidłowa linia %2$llu #1 pliku override %1$s"
  2966. #: ftparchive/override.cc:178
  2967. #, c-format
  2968. msgid "Malformed override %s line %llu #2"
  2969. msgstr "Nieprawidłowa linia %2$llu #2 pliku override %1$s"
  2970. #: ftparchive/override.cc:191
  2971. #, c-format
  2972. msgid "Malformed override %s line %llu #3"
  2973. msgstr "Nieprawidłowa linia %2$llu #3 pliku override %1$s"
  2974. #: ftparchive/multicompress.cc:72
  2975. #, c-format
  2976. msgid "Unknown compression algorithm '%s'"
  2977. msgstr "Nieznany algorytm kompresji \"%s\""
  2978. #: ftparchive/multicompress.cc:102
  2979. #, c-format
  2980. msgid "Compressed output %s needs a compression set"
  2981. msgstr "Skompresowany plik wynikowy %s wymaga podania kompresji"
  2982. #: ftparchive/multicompress.cc:193
  2983. msgid "Failed to fork"
  2984. msgstr "Nie udało się utworzyć procesu potomnego"
  2985. #: ftparchive/multicompress.cc:206
  2986. msgid "Compress child"
  2987. msgstr "Potomny proces kompresujący"
  2988. #: ftparchive/multicompress.cc:229
  2989. #, c-format
  2990. msgid "Internal error, failed to create %s"
  2991. msgstr "Błąd wewnętrzny, nie udało się utworzyć %s"
  2992. #: ftparchive/multicompress.cc:302
  2993. msgid "IO to subprocess/file failed"
  2994. msgstr "Zawiodła operacja IO na pliku/podprocesie"
  2995. #: ftparchive/multicompress.cc:340
  2996. msgid "Failed to read while computing MD5"
  2997. msgstr "Nie udało się czytanie w czasie liczenia skrótu MD5"
  2998. #: ftparchive/multicompress.cc:356
  2999. #, c-format
  3000. msgid "Problem unlinking %s"
  3001. msgstr "Problem przy usuwaniu %s"
  3002. #: ftparchive/multicompress.cc:371 apt-inst/extract.cc:194
  3003. #, c-format
  3004. msgid "Failed to rename %s to %s"
  3005. msgstr "Nie udało się zmienić nazwy %s na %s"
  3006. #: cmdline/apt-internal-solver.cc:50
  3007. msgid ""
  3008. "Usage: apt-internal-solver\n"
  3009. "\n"
  3010. "apt-internal-solver is an interface to use the current internal\n"
  3011. "like an external resolver for the APT family for debugging or alike\n"
  3012. "\n"
  3013. "Options:\n"
  3014. " -h This help text.\n"
  3015. " -q Loggable output - no progress indicator\n"
  3016. " -c=? Read this configuration file\n"
  3017. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3018. msgstr ""
  3019. "Użycie: apt-internal-solver\n"
  3020. "\n"
  3021. "apt-internal-solver jest interfejsem do używania bieżącego, wewnętrznego\n"
  3022. "mechanizmu rozwiązywania zależności - w sposób podobny jak zewnętrznego\n"
  3023. "mechanizmu rodziny APT - do celów debugowania itp.\n"
  3024. "\n"
  3025. "Opcje:\n"
  3026. " -h Ten tekst pomocy.\n"
  3027. " -q Zapisywalne wyjście - brak wskaźnika postępu\n"
  3028. " -c=? Czyta wskazany plik konfiguracyjny\n"
  3029. " -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n"
  3030. #: cmdline/apt-sortpkgs.cc:91
  3031. msgid "Unknown package record!"
  3032. msgstr "Nieznane informacje o pakiecie!"
  3033. #: cmdline/apt-sortpkgs.cc:154
  3034. msgid ""
  3035. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  3036. "\n"
  3037. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  3038. "to indicate what kind of file it is.\n"
  3039. "\n"
  3040. "Options:\n"
  3041. " -h This help text\n"
  3042. " -s Use source file sorting\n"
  3043. " -c=? Read this configuration file\n"
  3044. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3045. msgstr ""
  3046. "Użycie: apt-sortpkgs [opcje] plik1 [plik2 ...]\n"
  3047. "\n"
  3048. "apt-sortpkgs to proste narzędzie służące do sortowania plików pakietów.\n"
  3049. "Opcji -s używa się do wskazania typu pliku.\n"
  3050. "\n"
  3051. "Opcje:\n"
  3052. " -h Ten tekst pomocy.\n"
  3053. " -s Sortowanie pliku źródeł.\n"
  3054. " -c=? Czyta wskazany plik konfiguracyjny.\n"
  3055. " -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n"
  3056. #: apt-inst/filelist.cc:380
  3057. msgid "DropNode called on still linked node"
  3058. msgstr "DropNode wywołane na wciąż podłączonym węźle"
  3059. #: apt-inst/filelist.cc:412
  3060. msgid "Failed to locate the hash element!"
  3061. msgstr "Nie udało się odnaleźć elementu tablicy haszującej!"
  3062. #: apt-inst/filelist.cc:459
  3063. msgid "Failed to allocate diversion"
  3064. msgstr "Nie udało się utworzyć ominięcia"
  3065. #: apt-inst/filelist.cc:464
  3066. msgid "Internal error in AddDiversion"
  3067. msgstr "Błąd wewnętrzny w AddDiversion"
  3068. #: apt-inst/filelist.cc:477
  3069. #, c-format
  3070. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  3071. msgstr "Próba nadpisania ominięcia, %s -> %s i %s/%s"
  3072. #: apt-inst/filelist.cc:506
  3073. #, c-format
  3074. msgid "Double add of diversion %s -> %s"
  3075. msgstr "Podwójne dodanie ominięcia %s -> %s"
  3076. #: apt-inst/filelist.cc:549
  3077. #, c-format
  3078. msgid "Duplicate conf file %s/%s"
  3079. msgstr "Zduplikowany plik konfiguracyjny %s/%s"
  3080. #: apt-inst/extract.cc:101 apt-inst/extract.cc:172
  3081. #, c-format
  3082. msgid "The path %s is too long"
  3083. msgstr "Ścieżka %s jest zbyt długa"
  3084. #: apt-inst/extract.cc:132
  3085. #, c-format
  3086. msgid "Unpacking %s more than once"
  3087. msgstr "Wypakowanie %s więcej niż raz"
  3088. #: apt-inst/extract.cc:142
  3089. #, c-format
  3090. msgid "The directory %s is diverted"
  3091. msgstr "Ominięcie katalogu %s"
  3092. #: apt-inst/extract.cc:152
  3093. #, c-format
  3094. msgid "The package is trying to write to the diversion target %s/%s"
  3095. msgstr "Pakiet próbuje pisać do celu ominięcia %s/%s"
  3096. #: apt-inst/extract.cc:162 apt-inst/extract.cc:306
  3097. msgid "The diversion path is too long"
  3098. msgstr "Zbyt długa ścieżka ominięcia"
  3099. #: apt-inst/extract.cc:249
  3100. #, c-format
  3101. msgid "The directory %s is being replaced by a non-directory"
  3102. msgstr "Katalog %s został zastąpiony obiektem nie będącym katalogiem"
  3103. #: apt-inst/extract.cc:289
  3104. msgid "Failed to locate node in its hash bucket"
  3105. msgstr "Nie udało się znaleźć węzła w jego kubełku haszującym"
  3106. #: apt-inst/extract.cc:293
  3107. msgid "The path is too long"
  3108. msgstr "Ścieżka jest zbyt długa"
  3109. #: apt-inst/extract.cc:421
  3110. #, c-format
  3111. msgid "Overwrite package match with no version for %s"
  3112. msgstr "Nadpisujący pakiet nie pasuje z wersją %s"
  3113. #: apt-inst/extract.cc:438
  3114. #, c-format
  3115. msgid "File %s/%s overwrites the one in the package %s"
  3116. msgstr "Plik %s/%s nadpisuje plik w pakiecie %s"
  3117. #: apt-inst/extract.cc:498
  3118. #, c-format
  3119. msgid "Unable to stat %s"
  3120. msgstr "Nie można wykonać operacji stat na %s"
  3121. #: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54
  3122. #, c-format
  3123. msgid "Failed to write file %s"
  3124. msgstr "Nie udało się zapisać pliku %s"
  3125. #: apt-inst/dirstream.cc:104
  3126. #, c-format
  3127. msgid "Failed to close file %s"
  3128. msgstr "Nie udało się zamknąć pliku %s"
  3129. #: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54
  3130. #: apt-inst/deb/debfile.cc:63
  3131. #, c-format
  3132. msgid "This is not a valid DEB archive, missing '%s' member"
  3133. msgstr "To nie jest poprawne archiwum DEB, brakuje składnika \"%s\""
  3134. #: apt-inst/deb/debfile.cc:132
  3135. #, c-format
  3136. msgid "Internal error, could not locate member %s"
  3137. msgstr "Błąd wewnętrzny, nie udało się odnaleźć składnika %s"
  3138. #: apt-inst/deb/debfile.cc:227
  3139. msgid "Unparsable control file"
  3140. msgstr "Plik kontrolny nie może zostać poprawnie zinterpretowany"
  3141. #: apt-inst/contrib/arfile.cc:76
  3142. msgid "Invalid archive signature"
  3143. msgstr "Nieprawidłowy podpis archiwum"
  3144. #: apt-inst/contrib/arfile.cc:84
  3145. msgid "Error reading archive member header"
  3146. msgstr "Błąd przy czytaniu nagłówka składnika archiwum"
  3147. #: apt-inst/contrib/arfile.cc:96
  3148. #, c-format
  3149. msgid "Invalid archive member header %s"
  3150. msgstr "Nieprawidłowy nagłówek składnika archiwum: %s"
  3151. #: apt-inst/contrib/arfile.cc:108
  3152. msgid "Invalid archive member header"
  3153. msgstr "Nieprawidłowy nagłówek składnika archiwum"
  3154. #: apt-inst/contrib/arfile.cc:137
  3155. msgid "Archive is too short"
  3156. msgstr "Archiwum jest za krótkie"
  3157. #: apt-inst/contrib/arfile.cc:141
  3158. msgid "Failed to read the archive headers"
  3159. msgstr "Nie udało się odczytać nagłówków archiwum"
  3160. #: apt-inst/contrib/extracttar.cc:110
  3161. #, fuzzy, c-format
  3162. msgid "Cannot find a configured compressor for '%s'"
  3163. msgstr "Nie udało się znaleźć wpisu uwierzytelnienia dla: %s"
  3164. #: apt-inst/contrib/extracttar.cc:142 apt-inst/contrib/extracttar.cc:172
  3165. msgid "Corrupted archive"
  3166. msgstr "Uszkodzone archiwum"
  3167. #: apt-inst/contrib/extracttar.cc:157
  3168. msgid "Tar checksum failed, archive corrupted"
  3169. msgstr "Niepoprawna suma kontrolna tar, archiwum jest uszkodzone"
  3170. #: apt-inst/contrib/extracttar.cc:262
  3171. #, c-format
  3172. msgid "Unknown TAR header type %u, member %s"
  3173. msgstr "Nieznany typ nagłówka TAR %u, składnik %s"
  3174. #, fuzzy
  3175. #~ msgid "Must specifc at least one srv record"
  3176. #~ msgstr ""
  3177. #~ "Należy podać przynajmniej jeden pakiet, dla którego mają zostać pobrane "
  3178. #~ "źródła"
  3179. #~ msgid "Failed to create pipes"
  3180. #~ msgstr "Nie udało się utworzyć potoków"
  3181. #~ msgid "Failed to exec gzip "
  3182. #~ msgstr "Nie udało się uruchomić programu gzip "
  3183. #~ msgid "%s %s for %s compiled on %s %s\n"
  3184. #~ msgstr "%s %s dla %s skompilowany %s %s\n"
  3185. #~ msgid "Failed to create FILE*"
  3186. #~ msgstr "Nie udało się utworzyć obiektu FILE*"
  3187. #, fuzzy
  3188. #~ msgid "Malformed stanza %u in source list %s (URI parse)"
  3189. #~ msgstr "Nieprawidłowa linia %lu w liście źródeł %s (analiza URI)"
  3190. #~ msgid "Malformed line %lu in source list %s ([option] unparseable)"
  3191. #~ msgstr ""
  3192. #~ "Nieprawidłowa linia %lu w liście źródeł %s ([opcja] nie dająca się "
  3193. #~ "sparsować)"
  3194. #~ msgid "Malformed line %lu in source list %s ([option] too short)"
  3195. #~ msgstr "Nieprawidłowa linia %lu w liście źródeł %s ([opcja] zbyt krótka)"
  3196. #~ msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  3197. #~ msgstr ""
  3198. #~ "Nieprawidłowa linia %lu w liście źródeł %s ([%s] nie jest przypisane)"
  3199. #~ msgid "Malformed line %lu in source list %s ([%s] has no key)"
  3200. #~ msgstr "Nieprawidłowa linia %lu w liście źródeł %s ([%s] nie ma klucza)"
  3201. #~ msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  3202. #~ msgstr ""
  3203. #~ "Nieprawidłowa linia %lu w liście źródeł %s ([%s] klucz %s nie ma wartości)"
  3204. #~ msgid "Malformed line %lu in source list %s (URI)"
  3205. #~ msgstr "Nieprawidłowa linia %lu w liście źródeł %s (URI)"
  3206. #~ msgid "Malformed line %lu in source list %s (dist)"
  3207. #~ msgstr "Nieprawidłowa linia %lu w liście źródeł %s (dystrybucja)"
  3208. #~ msgid "Malformed line %lu in source list %s (URI parse)"
  3209. #~ msgstr "Nieprawidłowa linia %lu w liście źródeł %s (analiza URI)"
  3210. #~ msgid "Malformed line %lu in source list %s (absolute dist)"
  3211. #~ msgstr ""
  3212. #~ "Nieprawidłowa linia %lu w liście źródeł %s (bezwzględna dystrybucja)"
  3213. #~ msgid "Malformed line %lu in source list %s (dist parse)"
  3214. #~ msgstr "Nieprawidłowa linia %lu w liście źródeł %s (analiza dystrybucji)"
  3215. #~ msgid "Package %s %s was not found while processing file dependencies"
  3216. #~ msgstr ""
  3217. #~ "Pakiet %s %s nie został odnaleziony podczas przetwarzania zależności "
  3218. #~ "plików"
  3219. #~ msgid "Couldn't stat source package list %s"
  3220. #~ msgstr ""
  3221. #~ "Nie udało się wykonać operacji stat na liście pakietów źródłowych %s"
  3222. #~ msgid "Collecting File Provides"
  3223. #~ msgstr "Zbieranie zapewnień plików"
  3224. #, fuzzy
  3225. #~ msgid "Does not start with a cleartext signature"
  3226. #~ msgstr "Plik %s nie zaczyna się wiadomością podpisaną w trybie clearsign"
  3227. #~ msgid "Unable to find hash sum for '%s' in Release file"
  3228. #~ msgstr "Nie udało się znaleźć sumy kontrolnej \"%s\" w pliku Release"
  3229. #~ msgid "Vendor block %s contains no fingerprint"
  3230. #~ msgstr "Blok producenta %s nie zawiera odcisku"
  3231. #~ msgid "Total dependency version space: "
  3232. #~ msgstr "Sumaryczny rozmiar obszaru zależności od wersji: "
  3233. #~ msgid "You don't have enough free space in %s"
  3234. #~ msgstr "W %s nie ma wystarczającej ilości wolnego miejsca"
  3235. #~ msgid "Done"
  3236. #~ msgstr "Gotowe"
  3237. #~ msgid "No keyring installed in %s."
  3238. #~ msgstr "Brak zainstalowanej bazy kluczy w %s."
  3239. #, fuzzy
  3240. #~ msgid "Internal error, Upgrade broke stuff"
  3241. #~ msgstr "Błąd wewnętrzny spowodowany przez AllUpgrade"
  3242. #~ msgid "%s not a valid DEB package."
  3243. #~ msgstr "%s nie jest prawidłowym pakietem DEB."
  3244. #~ msgid ""
  3245. #~ "Using CD-ROM mount point %s\n"
  3246. #~ "Mounting CD-ROM\n"
  3247. #~ msgstr ""
  3248. #~ "Użycie %s jako punktu montowania CD-ROM-u\n"
  3249. #~ "Montowanie CD-ROM-u\n"
  3250. #~ msgid ""
  3251. #~ "Could not patch %s with mmap and with file operation usage - the patch "
  3252. #~ "seems to be corrupt."
  3253. #~ msgstr ""
  3254. #~ "Nie udało się nałożyć łatki %s przy użyciu mmap i operacji plikowej - "
  3255. #~ "łatka wygląda na uszkodzoną."
  3256. #~ msgid ""
  3257. #~ "Could not patch %s with mmap (but no mmap specific fail) - the patch "
  3258. #~ "seems to be corrupt."
  3259. #~ msgstr ""
  3260. #~ "Nie udało się nałożyć łatki %s przy użyciu mmap, ale błąd nie pochodzi z "
  3261. #~ "mmap - łatka wygląda na uszkodzoną"
  3262. #~ msgid "Ignore unavailable target release '%s' of package '%s'"
  3263. #~ msgstr "Ignorowanie niedostępnego wydania docelowego %s pakietu %s"
  3264. #~ msgid "Downloading %s %s"
  3265. #~ msgstr "Pobieranie %s %s"
  3266. #~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  3267. #~ msgstr ""
  3268. #~ "To nie jest poprawne archiwum DEB, brakuje składnika \"%s\", \"%s\" lub "
  3269. #~ "\"%s\""
  3270. #~ msgid "MD5Sum mismatch"
  3271. #~ msgstr "Błędna suma MD5"
  3272. #~ msgid ""
  3273. #~ "I wasn't able to locate a file for the %s package. This might mean you "
  3274. #~ "need to manually fix this package."
  3275. #~ msgstr ""
  3276. #~ "Nie udało się odnaleźć pliku dla pakietu %s. Może to oznaczać, że trzeba "
  3277. #~ "będzie ręcznie naprawić ten pakiet."
  3278. #~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  3279. #~ msgstr ""
  3280. #~ "Nie można zapisać dziennika, openpty() nie powiodło się (/dev/pts nie "
  3281. #~ "jest zamontowane?)\n"
  3282. #~ msgid "Skipping nonexistent file %s"
  3283. #~ msgstr "Pomijanie nieistniejącego pliku %s"
  3284. #~ msgid "Failed to remove %s"
  3285. #~ msgstr "Nie udało się usunąć %s"
  3286. #~ msgid "Unable to create %s"
  3287. #~ msgstr "Nie można utworzyć %s"
  3288. #~ msgid "Failed to stat %sinfo"
  3289. #~ msgstr "Nie udało się wykonać operacji stat na %sinfo"
  3290. #~ msgid "The info and temp directories need to be on the same filesystem"
  3291. #~ msgstr ""
  3292. #~ "Pliki info i katalog tymczasowy muszą być w tym samym systemie plików"
  3293. #~ msgid "Failed to change to the admin dir %sinfo"
  3294. #~ msgstr "Nie udało się przejść do katalogu administracyjnego %sinfo"
  3295. #~ msgid "Internal error getting a package name"
  3296. #~ msgstr "Błąd wewnętrzny podczas pobierania nazwy pakietu"
  3297. #~ msgid "Reading file listing"
  3298. #~ msgstr "Czytanie listy plików"
  3299. #~ msgid ""
  3300. #~ "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  3301. #~ "then make it empty and immediately re-install the same version of the "
  3302. #~ "package!"
  3303. #~ msgstr ""
  3304. #~ "Nie udało się otworzyć pliku listy \"%sinfo/%s\". Jeśli nie można "
  3305. #~ "przywrócić tego pliku, należy utworzyć go jako pusty plik i bezzwłocznie "
  3306. #~ "przeinstalować tę samą wersję pakietu!"
  3307. #~ msgid "Failed reading the list file %sinfo/%s"
  3308. #~ msgstr "Nie udało się przeczytać pliku listy %sinfo/%s"
  3309. #~ msgid "Internal error getting a node"
  3310. #~ msgstr "Błąd wewnętrzny przy pobieraniu węzła"
  3311. #~ msgid "Failed to open the diversions file %sdiversions"
  3312. #~ msgstr "Nie udało się otworzyć pliku ominięć %sdiversions"
  3313. #~ msgid "The diversion file is corrupted"
  3314. #~ msgstr "Plik ominięć jest uszkodzony"
  3315. #~ msgid "Invalid line in the diversion file: %s"
  3316. #~ msgstr "Nieprawidłowa linia w pliku ominięć: %s"
  3317. #~ msgid "Internal error adding a diversion"
  3318. #~ msgstr "Błąd wewnętrzny przy dodawaniu ominięcia"
  3319. #~ msgid "The pkg cache must be initialized first"
  3320. #~ msgstr "Magazyn podręczny pakietów musi zostać wcześniej zainicjalizowany"
  3321. #~ msgid "Failed to find a Package: header, offset %lu"
  3322. #~ msgstr "Nie udało się znaleźć nagłówka Package:, offset %lu"
  3323. #~ msgid "Bad ConfFile section in the status file. Offset %lu"
  3324. #~ msgstr "Błędna sekcja ConfFile w pliku stanu. Offset %lu"
  3325. #~ msgid "Error parsing MD5. Offset %lu"
  3326. #~ msgstr "Błąd przy czytaniu skrótu MD5. Offset %lu"
  3327. #~ msgid "Couldn't change to %s"
  3328. #~ msgstr "Nie udało się przejść do %s"
  3329. #~ msgid "Failed to locate a valid control file"
  3330. #~ msgstr "Nie udało się odnaleźć poprawnego pliku kontrolnego"
  3331. #~ msgid "Couldn't open pipe for %s"
  3332. #~ msgstr "Nie udało się otworzyć potoku dla %s"
  3333. #~ msgid "Read error from %s process"
  3334. #~ msgstr "Błąd odczytu z procesu %s"
  3335. #~ msgid "Got a single header line over %u chars"
  3336. #~ msgstr "Otrzymano pojedynczą linię nagłówka o długości ponad %u znaków"
  3337. #~ msgid "Note: This is done automatic and on purpose by dpkg."
  3338. #~ msgstr "Uwaga: dpkg wykonał to automatycznie i celowo."
  3339. #~ msgid "Malformed override %s line %lu #1"
  3340. #~ msgstr "Nieprawidłowa linia %2$lu #1 pliku override %1$s"
  3341. #~ msgid "Malformed override %s line %lu #2"
  3342. #~ msgstr "Nieprawidłowa linia %2$lu #2 pliku override %1$s"
  3343. #~ msgid "Malformed override %s line %lu #3"
  3344. #~ msgstr "Nieprawidłowa linia %2$lu #3 pliku override %1$s"
  3345. #~ msgid "decompressor"
  3346. #~ msgstr "dekompresor"
  3347. #~ msgid "read, still have %lu to read but none left"
  3348. #~ msgstr "należało przeczytać jeszcze %lu, ale nic nie zostało"
  3349. #~ msgid "write, still have %lu to write but couldn't"
  3350. #~ msgstr "należało zapisać jeszcze %lu, ale nie udało się to"
  3351. #~ msgid ""
  3352. #~ "Could not perform immediate configuration on already unpacked '%s'. "
  3353. #~ "Please see man 5 apt.conf under APT::Immediate-Configure for details."
  3354. #~ msgstr ""
  3355. #~ "Nie udało się wykonać natychmiastowej konfiguracji rozpakowanego pakietu "
  3356. #~ "%s. Proszę wykonać \"man 5 apt.conf\" i zapoznać się z wpisem APT::"
  3357. #~ "Immediate-Configure aby dowiedzieć się więcej."
  3358. #~ msgid "Error occurred while processing %s (NewPackage)"
  3359. #~ msgstr "Wystąpił błąd podczas przetwarzania %s (NewPackage)"
  3360. #~ msgid "Error occurred while processing %s (UsePackage1)"
  3361. #~ msgstr "Wystąpił błąd podczas przetwarzania %s (UsePackage1)"
  3362. #~ msgid "Error occurred while processing %s (NewFileDesc1)"
  3363. #~ msgstr "Wystąpił błąd podczas przetwarzania %s (NewFileDesc1)"
  3364. #~ msgid "Error occurred while processing %s (UsePackage2)"
  3365. #~ msgstr "Wystąpił błąd podczas przetwarzania %s (UsePackage2)"
  3366. #~ msgid "Error occurred while processing %s (NewFileVer1)"
  3367. #~ msgstr "Wystąpił błąd podczas przetwarzania %s (NewFileVer1)"
  3368. #~ msgid "Error occurred while processing %s (NewVersion%d)"
  3369. #~ msgstr "Wystąpił błąd podczas przetwarzania %s (NewVersion%d)"
  3370. #~ msgid "Error occurred while processing %s (UsePackage3)"
  3371. #~ msgstr "Wystąpił błąd podczas przetwarzania %s (UsePackage3)"
  3372. #~ msgid "Error occurred while processing %s (NewFileDesc2)"
  3373. #~ msgstr "Wystąpił błąd podczas przetwarzania %s (NewFileDesc2)"
  3374. #~ msgid "Error occurred while processing %s (FindPkg)"
  3375. #~ msgstr "Wystąpił błąd podczas przetwarzania %s (FindPkg)"
  3376. #~ msgid "Error occurred while processing %s (CollectFileProvides)"
  3377. #~ msgstr "Wystąpił błąd podczas przetwarzania %s (CollectFileProvides)"
  3378. #~ msgid "Internal error, could not locate member"
  3379. #~ msgstr "Błąd wewnętrzny, nie udało się odnaleźć składnika"
  3380. #~ msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  3381. #~ msgstr "E: Lista argumentów Acquire::gpgv::Options zbyt długa. Zakończenie."
  3382. #~ msgid "Error occurred while processing %s (NewVersion2)"
  3383. #~ msgstr "Wystąpił błąd podczas przetwarzania %s (NewVersion2)"
  3384. #~ msgid "Malformed line %u in source list %s (vendor id)"
  3385. #~ msgstr ""
  3386. #~ "Nieprawidłowa linia %u w liście źródeł %s (identyfikator producenta)"
  3387. #~ msgid "Couldn't access keyring: '%s'"
  3388. #~ msgstr "Nie udało się uzyskać dostępu do bazy kluczy: \"%s\""
  3389. #~ msgid "Could not patch file"
  3390. #~ msgstr "Nie udało się nałożyć łatki na plik"
  3391. #~ msgid " %4i %s\n"
  3392. #~ msgstr " %4i %s\n"
  3393. #~ msgid "No source package '%s' picking '%s' instead\n"
  3394. #~ msgstr "Brak pakietu źródłowego \"%s\", wybieranie \"%s\" zamiast niego\n"
  3395. #~ msgid "%4i %s\n"
  3396. #~ msgstr "%4i %s\n"
  3397. #~ msgid "Processing triggers for %s"
  3398. #~ msgstr "Przetwarzanie wyzwalaczy dla %s"
  3399. #~ msgid "Dynamic MMap ran out of room"
  3400. #~ msgstr "Brak miejsca dla dynamicznego MMap"
  3401. #~ msgid ""
  3402. #~ "Since you only requested a single operation it is extremely likely that\n"
  3403. #~ "the package is simply not installable and a bug report against\n"
  3404. #~ "that package should be filed."
  3405. #~ msgstr ""
  3406. #~ "Ponieważ zażądano tylko jednej operacji, jest bardzo prawdopodobne, że\n"
  3407. #~ "danego pakietu po prostu nie da się zainstalować i należy zgłosić w nim\n"
  3408. #~ "błąd."
  3409. #~ msgid "Line %d too long (max %lu)"
  3410. #~ msgstr "Linia %d jest zbyt długa (max %lu)"