pl.po 125 KB

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