pl.po 105 KB

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