pl.po 123 KB

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