pl.po 128 KB

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