pl.po 131 KB

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