pl.po 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR Free Software Foundation, Inc.
  3. # This file is distributed under the same license as the mc package.
  4. #
  5. # Translators:
  6. # Piotr Drąg <piotrdrag@gmail.com>, 2011-2024
  7. # Slava Zanko <slavazanko@gmail.com>, 2011
  8. # Waldemar Stoczkowski, 2021
  9. msgid ""
  10. msgstr ""
  11. "Project-Id-Version: Midnight Commander\n"
  12. "Report-Msgid-Bugs-To: https://www.midnight-commander.org/\n"
  13. "POT-Creation-Date: 2024-06-02 12:47+0300\n"
  14. "PO-Revision-Date: 2010-12-29 10:19+0000\n"
  15. "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>, 2011-2024\n"
  16. "Language-Team: Polish (http://app.transifex.com/mc/mc/language/pl/)\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. "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n"
  22. "%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
  23. "%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
  24. # "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
  25. msgid "Warning: cannot load codepages list"
  26. msgstr "Ostrzeżenie: nie można wczytać listy stron kodowych"
  27. msgid "7-bit ASCII"
  28. msgstr "7-bitowe ASCII"
  29. #, c-format
  30. msgid "Cannot translate from %s to %s"
  31. msgstr "Nie można przetłumaczyć z %s na %s"
  32. msgid "Event system already initialized"
  33. msgstr "System zdarzeń został już zainicjowany"
  34. msgid "Failed to initialize event system"
  35. msgstr "Zainicjowanie systemu zdarzeń się nie powiodło"
  36. msgid "Event system not initialized"
  37. msgstr "System zdarzeń nie został zainicjowany"
  38. msgid "Check input data! Some of parameters are NULL!"
  39. msgstr "Proszę sprawdzić dane wejściowe. Niektóre parametry są PUSTE."
  40. #, c-format
  41. msgid "Unable to create group '%s' for events!"
  42. msgstr "Nie można utworzyć grupy „%s” dla zdarzeń."
  43. #, c-format
  44. msgid "Unable to create event '%s'!"
  45. msgstr "Nie można utworzyć zdarzenia „%s”."
  46. #, c-format
  47. msgid ""
  48. "File \"%s\" is already being edited.\n"
  49. "User: %s\n"
  50. "Process ID: %d"
  51. msgstr ""
  52. "Plik „%s” jest teraz modyfikowany.\n"
  53. "Użytkownik: %s\n"
  54. "Identyfikator procesu: %d"
  55. msgid "File locked"
  56. msgstr "Zablokowany plik"
  57. msgid "&Grab lock"
  58. msgstr "&Ustaw blokadę"
  59. msgid "&Ignore lock"
  60. msgstr "Z&ignoruj blokadę"
  61. #, c-format
  62. msgid "Cannot create %s directory"
  63. msgstr "Nie można utworzyć katalogu %s"
  64. msgid "FATAL: not a directory:"
  65. msgstr "KRYTYCZNE: nie jest katalogiem:"
  66. msgid ""
  67. "Number out of range (should be in byte range, 0 <= n <= 0xFF, expressed in "
  68. "hex)"
  69. msgstr ""
  70. "Liczba jest poza zakresem (powinna być w zakresie bajtów, 0 <= n <= 0xFF, "
  71. "wyrażone szesnastkowo)"
  72. msgid "Invalid character"
  73. msgstr "Nieprawidłowy znak"
  74. msgid "Unmatched quotes character"
  75. msgstr "Niepasujący cudzysłów"
  76. #, c-format
  77. msgid ""
  78. "Hex pattern error at position %d:\n"
  79. "%s."
  80. msgstr ""
  81. "Błąd wzoru szesnastkowego w miejscu %d:\n"
  82. "%s."
  83. msgid "Search string not found"
  84. msgstr "Nie odnaleziono wyszukiwanego napisu"
  85. msgid "Not implemented yet"
  86. msgstr "Jeszcze nie zaimplementowane"
  87. msgid "Num of replace tokens not equal to num of found tokens"
  88. msgstr ""
  89. "Liczba tokenów zastąpienia nie jest równa liczbie odnalezionych tokenów"
  90. #, c-format
  91. msgid "Invalid token number %d"
  92. msgstr "Nieprawidłowy token o numerze %d"
  93. msgid "Regular expression error"
  94. msgstr "Błąd wyrażenia regularnego"
  95. msgid "No&rmal"
  96. msgstr "&Zwykły"
  97. msgid "Re&gular expression"
  98. msgstr "Wyrażenie re&gularne"
  99. msgid "He&xadecimal"
  100. msgstr "&Szesnastkowo"
  101. msgid "Wil&dcard search"
  102. msgstr "&Wyszuk. wieloznaczników"
  103. #, c-format
  104. msgid ""
  105. "Unable to load '%s' skin.\n"
  106. "Default skin has been loaded"
  107. msgstr ""
  108. "Nie można wczytać skórki „%s”.\n"
  109. "Wczytano domyślną"
  110. #, c-format
  111. msgid ""
  112. "Unable to parse '%s' skin.\n"
  113. "Default skin has been loaded"
  114. msgstr ""
  115. "Nie można przetworzyć skórki „%s”.\n"
  116. "Wczytano domyślną"
  117. #, c-format
  118. msgid ""
  119. "Unable to use '%s' skin with true colors support:\n"
  120. "%s\n"
  121. "Default skin has been loaded"
  122. msgstr ""
  123. "Nie można użyć skórki „%s” za pomocą obsługi kolorów 24-bitowych:\n"
  124. "%s\n"
  125. "Wczytano domyślną"
  126. #, c-format
  127. msgid ""
  128. "Unable to use '%s' skin with 256 colors support\n"
  129. "on non-256 colors terminal.\n"
  130. "Default skin has been loaded"
  131. msgstr ""
  132. "Nie można użyć skórki „%s” za pomocą obsługi 256\n"
  133. "kolorów na terminalu nie dysponującym 256 kolorami.\n"
  134. "Domyślna skórka nie została wczytana"
  135. msgid "True color not supported with ncurses."
  136. msgstr "Kolory 24-bitowe nie są obsługiwane za pomocą biblioteki ncurses."
  137. msgid "Your terminal doesn't even seem to support 256 colors."
  138. msgstr "Terminal nie obsługuje nawet 256 kolorów."
  139. msgid "True color not supported in this slang version."
  140. msgstr "Kolory 24-bitowe nie są obsługiwane w tej wersji biblioteki S-Lang."
  141. msgid "Set COLORTERM=truecolor if your terminal really supports true colors."
  142. msgstr ""
  143. "Należy ustawić „COLORTERM=truecolor”, jeśli terminal naprawdę obsługuje "
  144. "kolory 24-bitowe."
  145. msgid "Escape"
  146. msgstr "Escape"
  147. msgid "Function key 1"
  148. msgstr "1 klaw. funkcyjny"
  149. msgid "Function key 2"
  150. msgstr "2 klaw. funkcyjny"
  151. msgid "Function key 3"
  152. msgstr "3 klaw. funkcyjny"
  153. msgid "Function key 4"
  154. msgstr "4 klaw. funkcyjny"
  155. msgid "Function key 5"
  156. msgstr "5 klaw. funkcyjny"
  157. msgid "Function key 6"
  158. msgstr "6 klaw. funkcyjny"
  159. msgid "Function key 7"
  160. msgstr "7 klaw. funkcyjny"
  161. msgid "Function key 8"
  162. msgstr "8 klaw. funkcyjny"
  163. msgid "Function key 9"
  164. msgstr "9 klaw. funkcyjny"
  165. msgid "Function key 10"
  166. msgstr "10 klaw. funkcyjny"
  167. msgid "Function key 11"
  168. msgstr "11 klaw. funkcyjny"
  169. msgid "Function key 12"
  170. msgstr "12 klaw. funkcyjny"
  171. msgid "Function key 13"
  172. msgstr "13 klaw. funkcyjny"
  173. msgid "Function key 14"
  174. msgstr "14 klaw. funkcyjny"
  175. msgid "Function key 15"
  176. msgstr "15 klaw. funkcyjny"
  177. msgid "Function key 16"
  178. msgstr "16 klaw. funkcyjny"
  179. msgid "Function key 17"
  180. msgstr "17 klaw. funkcyjny"
  181. msgid "Function key 18"
  182. msgstr "18 klaw. funkcyjny"
  183. msgid "Function key 19"
  184. msgstr "19 klaw. funkcyjny"
  185. msgid "Function key 20"
  186. msgstr "20 klaw. funkcyjny"
  187. msgid "Completion/M-tab"
  188. msgstr "Uzupełnianie/M-tab"
  189. msgid "BackTab/S-tab"
  190. msgstr "BackTab/S-tab"
  191. msgid "Backspace"
  192. msgstr "Backspace"
  193. msgid "Up arrow"
  194. msgstr "Strzałka w górę"
  195. msgid "Down arrow"
  196. msgstr "Strzałka w dół"
  197. msgid "Left arrow"
  198. msgstr "Strzałka w lewo"
  199. msgid "Right arrow"
  200. msgstr "Strzałka w prawo"
  201. msgid "Insert"
  202. msgstr "Insert"
  203. msgid "Delete"
  204. msgstr "Delete"
  205. msgid "Home"
  206. msgstr "Home"
  207. msgid "End key"
  208. msgstr "Klawisz End"
  209. msgid "Page Up"
  210. msgstr "Page Up"
  211. msgid "Page Down"
  212. msgstr "Page Down"
  213. msgid "/ on keypad"
  214. msgstr "/ na klaw. numer."
  215. msgid "* on keypad"
  216. msgstr "* na klaw. numer."
  217. msgid "- on keypad"
  218. msgstr "- na klaw. numer."
  219. msgid "+ on keypad"
  220. msgstr "+ na klaw. numer."
  221. msgid "Left arrow keypad"
  222. msgstr "Strzałka w lewo na klaw. numer."
  223. msgid "Right arrow keypad"
  224. msgstr "Strzałka w prawo na klaw. numer."
  225. msgid "Up arrow keypad"
  226. msgstr "Strzałka w górę na klaw. numer."
  227. msgid "Down arrow keypad"
  228. msgstr "Strzałka w dół na klaw. numer."
  229. msgid "Home on keypad"
  230. msgstr "Home na klaw. numer."
  231. msgid "End on keypad"
  232. msgstr "End na klaw. numer."
  233. msgid "Page Down keypad"
  234. msgstr "Page Down na klaw. numer."
  235. msgid "Page Up keypad"
  236. msgstr "Page Up na klaw. numer."
  237. msgid "Insert on keypad"
  238. msgstr "Insert na klaw. numer."
  239. msgid "Delete on keypad"
  240. msgstr "Delete na klaw. numer."
  241. msgid "Enter on keypad"
  242. msgstr "Enter na klaw. numer."
  243. msgid "Function key 21"
  244. msgstr "21 klaw. funkcyjny"
  245. msgid "Function key 22"
  246. msgstr "22 klaw. funkcyjny"
  247. msgid "Function key 23"
  248. msgstr "23 klaw. funkcyjny"
  249. msgid "Function key 24"
  250. msgstr "24 klaw. funkcyjny"
  251. msgid "A1 key"
  252. msgstr "Klawisz A1"
  253. msgid "C1 key"
  254. msgstr "Klawisz C1"
  255. msgid "Asterisk"
  256. msgstr "Gwiazdka"
  257. msgid "Minus"
  258. msgstr "Minus"
  259. msgid "Plus"
  260. msgstr "Plus"
  261. msgid "Dot"
  262. msgstr "Kropka"
  263. msgid "Less than"
  264. msgstr "Mniej niż"
  265. msgid "Great than"
  266. msgstr "Więcej niż"
  267. msgid "Equal"
  268. msgstr "Znak równości"
  269. msgid "Comma"
  270. msgstr "Przecinek"
  271. msgid "Apostrophe"
  272. msgstr "Apostrof"
  273. msgid "Colon"
  274. msgstr "Dwukropek"
  275. msgid "Semicolon"
  276. msgstr "Średnik"
  277. msgid "Exclamation mark"
  278. msgstr "Wykrzyknik"
  279. msgid "Question mark"
  280. msgstr "Znak zapytania"
  281. msgid "Ampersand"
  282. msgstr "Et"
  283. msgid "Dollar sign"
  284. msgstr "Znak dolara"
  285. msgid "Quotation mark"
  286. msgstr "Cudzysłów"
  287. msgid "Percent sign"
  288. msgstr "Znak procenta"
  289. msgid "Caret"
  290. msgstr "Kareta"
  291. msgid "Tilda"
  292. msgstr "Tylda"
  293. msgid "Prime"
  294. msgstr "Prim"
  295. msgid "Underline"
  296. msgstr "Podkreślenie"
  297. msgid "Understrike"
  298. msgstr "Przekreślenie"
  299. msgid "Pipe"
  300. msgstr "Potok"
  301. msgid "Left parenthesis"
  302. msgstr "Lewy nawias okrągły"
  303. msgid "Right parenthesis"
  304. msgstr "Prawy nawias okrągły"
  305. msgid "Left bracket"
  306. msgstr "Lewy nawias"
  307. msgid "Right bracket"
  308. msgstr "Prawy nawias"
  309. msgid "Left brace"
  310. msgstr "Lewy nawias klamrowy"
  311. msgid "Right brace"
  312. msgstr "Prawy nawias klamrowy"
  313. msgid "Enter"
  314. msgstr "Enter"
  315. msgid "Tab key"
  316. msgstr "Klawisz Tab"
  317. msgid "Space key"
  318. msgstr "Klawisz spacji"
  319. msgid "Slash key"
  320. msgstr "Klawisz ukośnika"
  321. msgid "Backslash key"
  322. msgstr "Klawisz odwrotnego ukośnika"
  323. msgid "Number sign #"
  324. msgstr "Znak liczby #"
  325. #. TRANSLATORS: Please translate as in "at sign" (@).
  326. msgid "At sign"
  327. msgstr "Znak at"
  328. msgid "Ctrl"
  329. msgstr "Ctrl"
  330. msgid "Alt"
  331. msgstr "Alt"
  332. msgid "Shift"
  333. msgstr "Shift"
  334. msgid "The TERM environment variable is unset!\n"
  335. msgstr "Zmienna środowiskowa TERM nie jest ustawiona.\n"
  336. msgid "Cannot check SIGWINCH pipe"
  337. msgstr "Nie można sprawdzić potoku SIGWINCH"
  338. #, c-format
  339. msgid ""
  340. "\n"
  341. "Cannot create pipe for SIGWINCH: %s (%d)\n"
  342. msgstr ""
  343. "\n"
  344. "Nie można utworzyć potoku dla SIGWINCH: %s (%d)\n"
  345. #, c-format
  346. msgid ""
  347. "\n"
  348. "Cannot configure write end of SIGWINCH pipe: %s (%d)\n"
  349. msgstr ""
  350. "\n"
  351. "Nie można skonfigurować końca zapisu potoku SIGWINCH: %s (%d)\n"
  352. #, c-format
  353. msgid ""
  354. "\n"
  355. "Cannot configure read end of SIGWINCH pipe: %s (%d)\n"
  356. msgstr ""
  357. "\n"
  358. "Nie można skonfigurować końca odczytu potoku SIGWINCH: %s (%d)\n"
  359. #, c-format
  360. msgid ""
  361. "Screen size %dx%d is not supported.\n"
  362. "Check the TERM environment variable.\n"
  363. msgstr ""
  364. "Rozmiar ekranu %d×%d nie jest obsługiwany.\n"
  365. "Proszę sprawdzić zmienną środowiskową TERM.\n"
  366. msgid "B"
  367. msgstr "B"
  368. msgid "kB"
  369. msgstr "kB"
  370. msgid "KiB"
  371. msgstr "KiB"
  372. msgid "MB"
  373. msgstr "MB"
  374. msgid "MiB"
  375. msgstr "MiB"
  376. msgid "GB"
  377. msgstr "GB"
  378. msgid "GiB"
  379. msgstr "GiB"
  380. msgid "Cannot create pipe descriptor"
  381. msgstr "Nie można utworzyć deskryptora potoku"
  382. msgid "Cannot create pipe streams"
  383. msgstr "Nie można utworzyć strumieni potoku"
  384. #, c-format
  385. msgid ""
  386. "Unexpected error in select() reading data from a child process:\n"
  387. "%s"
  388. msgstr ""
  389. "Nieoczekiwany błąd w select() podczas odczytywania danych z procesu "
  390. "potomnego:\n"
  391. "%s"
  392. msgid "Cannot close pipe descriptor (p == NULL)"
  393. msgstr "Nie można zamknąć deskryptora potoku (p == NULL)"
  394. #, c-format
  395. msgid ""
  396. "Unexpected error in waitpid():\n"
  397. "%s"
  398. msgstr ""
  399. "Nieoczekiwany błąd w waitpid():\n"
  400. "%s"
  401. #, c-format
  402. msgid "Directory cache expired for %s"
  403. msgstr "Pamięć podręczna katalogu dla %s wygasła"
  404. #, c-format
  405. msgid "%s: %s: %s %3d%% (%lld) bytes transferred"
  406. msgstr "%s: %s: %s %3d%% (%lld) przesłanych bajtów"
  407. #, c-format
  408. msgid "%s: %s: %s %lld bytes transferred"
  409. msgstr "%s: %s: %s %lld przesłanych bajtów"
  410. msgid "Starting linear transfer..."
  411. msgstr "Rozpoczynanie przesyłu liniowego…"
  412. msgid "Getting file"
  413. msgstr "Pobieranie pliku"
  414. msgid "Changes to file lost"
  415. msgstr "Utracono zmiany w pliku"
  416. #, fuzzy, c-format
  417. msgid ""
  418. "Cannot create temporary directory %s: %s.\n"
  419. "Temporary files will not be created\n"
  420. msgstr "Nie można utworzyć katalogu tymczasowego %s: %s\n"
  421. msgid "Press any key to continue..."
  422. msgstr "Naciśnięcie dowolnego klawisza kontynuuje…"
  423. msgid "Cannot parse:"
  424. msgstr "Nie można przetworzyć:"
  425. msgid "More parsing errors will be ignored."
  426. msgstr "Kolejne błędy przetwarzania zostaną zignorowane."
  427. msgid "Internal error:"
  428. msgstr "Błąd wewnętrzny:"
  429. msgid "Password:"
  430. msgstr "Hasło:"
  431. msgid "Screens"
  432. msgstr "Ekrany"
  433. msgid "History"
  434. msgstr "Historia"
  435. #. TRANSLATORS: no need to translate 'DialogTitle', it's just a context prefix
  436. msgid "DialogTitle|History cleanup"
  437. msgstr "Czyszczenie historii"
  438. msgid "Do you want clean this history?"
  439. msgstr "Wyczyścić tę historię?"
  440. msgid "&Yes"
  441. msgstr "&Tak"
  442. msgid "&No"
  443. msgstr "&Nie"
  444. msgid "&OK"
  445. msgstr "&OK"
  446. msgid "&Cancel"
  447. msgstr "&Anuluj"
  448. msgid "Background process:"
  449. msgstr "Proces w tle:"
  450. msgid "Error"
  451. msgstr "Błąd"
  452. #, c-format
  453. msgid "%s (%d)"
  454. msgstr "%s (%d)"
  455. msgid "&Abort"
  456. msgstr "&Przerwij"
  457. msgid "Displays the current version"
  458. msgstr "Wyświetla bieżącą wersję"
  459. msgid "Print data directory"
  460. msgstr "Wyświetla katalog danych"
  461. msgid "Print extended info about used data directories"
  462. msgstr "Wyświetla rozszerzone informacje o używanych katalogach danych"
  463. msgid "Print configure options"
  464. msgstr "Wyświetla opcje konfiguracji"
  465. msgid "Print last working directory to specified file"
  466. msgstr "Wyświetla ostatni katalog roboczy do podanego pliku"
  467. msgid "<file>"
  468. msgstr "<plik>"
  469. msgid "Enables subshell support (default)"
  470. msgstr "Włącza obsługę podpowłoki (domyślne)"
  471. msgid "Disables subshell support"
  472. msgstr "Wyłącza obsługę podpowłoki"
  473. msgid "Log ftp dialog to specified file"
  474. msgstr "Zapisuje dziennik FTP do podanego pliku"
  475. msgid "Launches the file viewer on a file"
  476. msgstr "Uruchamia podgląd pliku"
  477. msgid "Edit files"
  478. msgstr "Modyfikuje pliki"
  479. msgid "<file> ..."
  480. msgstr "<plik> …"
  481. msgid "Forces xterm features"
  482. msgstr "Wymusza funkcje programu xterm"
  483. msgid "Disable X11 support"
  484. msgstr "Wyłącza obsługę X11"
  485. msgid "Tries to use an old highlight mouse tracking"
  486. msgstr "Próbuje użyć poprzedniej metody śledzenia wyróżnienia myszy"
  487. msgid "Disable mouse support in text version"
  488. msgstr "Wyłącza obsługę myszy w trybie tekstowym"
  489. msgid "Tries to use termcap instead of terminfo"
  490. msgstr "Próbuje użyć termcap zamiast terminfo"
  491. msgid "To run on slow terminals"
  492. msgstr "Aby uruchomić na powolnych terminalach"
  493. msgid "Use stickchars to draw"
  494. msgstr "Używa prostych znaków do rysowania"
  495. msgid "Resets soft keys on HP terminals"
  496. msgstr "Przywraca klawisze programowe na terminalach HP"
  497. msgid "Load definitions of key bindings from specified file"
  498. msgstr "Wczytuje definicje skrótów klawiszowych z podanego pliku"
  499. msgid "Don't load definitions of key bindings from file, use defaults"
  500. msgstr ""
  501. "Bez wczytywania definicji skrótów klawiszowych z podanego pliku, użycie "
  502. "domyślnych"
  503. msgid "Requests to run in black and white"
  504. msgstr "Żąda uruchomienia w trybie czarno-białym"
  505. msgid "Request to run in color mode"
  506. msgstr "Żąda uruchomienia w trybie kolorowym"
  507. msgid "Specifies a color configuration"
  508. msgstr "Podaje konfigurację kolorów"
  509. msgid "<string>"
  510. msgstr "<ciąg>"
  511. msgid "Show mc with specified skin"
  512. msgstr "Wyświetla program mc za pomocą podanej skórki"
  513. #. TRANSLATORS: don't translate keywords
  514. msgid ""
  515. "--colors KEYWORD={FORE},{BACK},{ATTR}:KEYWORD2=...\n"
  516. "\n"
  517. "{FORE}, {BACK} and {ATTR} can be omitted, and the default will be used\n"
  518. "\n"
  519. " Keywords:\n"
  520. " Global: errors, disabled, reverse, gauge, header\n"
  521. " input, inputmark, inputunchanged, commandlinemark\n"
  522. " bbarhotkey, bbarbutton, statusbar\n"
  523. " File display: normal, selected, marked, markselect\n"
  524. " Dialog boxes: dnormal, dfocus, dhotnormal, dhotfocus, errdhotnormal,\n"
  525. " errdhotfocus\n"
  526. " Menus: menunormal, menuhot, menusel, menuhotsel, menuinactive\n"
  527. " Popup menus: pmenunormal, pmenusel, pmenutitle\n"
  528. " Editor: editnormal, editbold, editmarked, editwhitespace, "
  529. "editnonprintable,\n"
  530. " editlinestate, editbg, editframe, editframeactive\n"
  531. " editframedrag\n"
  532. " Viewer: viewnormal,viewbold, viewunderline, viewselected\n"
  533. " Help: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
  534. msgstr ""
  535. "--colors SŁOWO_KLUCZOWE={TEKST},{TŁO},{ATR}:SŁOWO_KLUCZOWE2=…\n"
  536. "\n"
  537. "{TEKST}, {TŁO} i {ATR} można pominąć, zostaną użyte wartości domyślne\n"
  538. "\n"
  539. " Słowa kluczowe:\n"
  540. " Globalne: errors, disabled, reverse, gauge, header\n"
  541. " input, inputmark, inputunchanged, commandlinemark\n"
  542. " bbarhotkey, bbarbutton, statusbar\n"
  543. " Wyświetlanie plików: normal, selected, marked, markselect\n"
  544. " Okna dialogowe: dnormal, dfocus, dhotnormal, dhotfocus, errdhotnormal,\n"
  545. " errdhotfocus\n"
  546. " Menu: menunormal, menuhot, menusel, menuhotsel, menuinactive\n"
  547. " Menu wyskakujące: pmenunormal, pmenusel, pmenutitle\n"
  548. " Edytor: editnormal, editbold, editmarked, editwhitespace, "
  549. "editnonprintable,\n"
  550. " editlinestate, editbg, editframe, editframeactive\n"
  551. " editframedrag\n"
  552. " Przeglądarka: viewnormal,viewbold, viewunderline, viewselected\n"
  553. " Pomoc: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
  554. #. TRANSLATORS: don't translate color names and attributes
  555. msgid ""
  556. "Standard Colors:\n"
  557. " black, gray, red, brightred, green, brightgreen, brown,\n"
  558. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  559. " brightcyan, lightgray and white\n"
  560. "\n"
  561. "Extended colors, when 256 colors are available:\n"
  562. " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
  563. "\n"
  564. "Attributes:\n"
  565. " bold, italic, underline, reverse, blink; append more with '+'\n"
  566. msgstr ""
  567. "Standardowe kolory:\n"
  568. " black, gray, red, brightred, green, brightgreen, brown,\n"
  569. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  570. " brightcyan, lightgray i white\n"
  571. "\n"
  572. "Rozszerzone kolory, kiedy dostępnych jest 256 kolorów:\n"
  573. " color16 do color255 lub rgb000 do rgb555 i gray0 do gray23\n"
  574. "\n"
  575. "Atrybuty:\n"
  576. " bold, italic, underline, reverse, blink; można dołączyć więcej za pomocą "
  577. "„+”\n"
  578. msgid "Color options"
  579. msgstr "Opcje kolorów"
  580. msgid "[+lineno] file1[:lineno] [file2[:lineno]...]"
  581. msgstr "[+nr-wiersza] plik1[:nr-wiersza] [plik2[:nr-wiersza]…]"
  582. msgid "file"
  583. msgstr "plik"
  584. msgid "file1 file2"
  585. msgstr "plik1 plik2"
  586. msgid "[this_dir] [other_panel_dir]"
  587. msgstr "[ten_katalog] [katalog_w_drugim_panelu]"
  588. msgid ""
  589. "\n"
  590. "Please send any bug reports (including the output of 'mc -V')\n"
  591. "as tickets at www.midnight-commander.org\n"
  592. msgstr ""
  593. "\n"
  594. "Proszę wysyłać raporty błędów (w języku angielskim, wraz\n"
  595. "z wyjściem polecenia „mc -V”) jako zgłoszenia na stronie\n"
  596. "www.midnight-commander.org\n"
  597. #, c-format
  598. msgid "GNU Midnight Commander %s\n"
  599. msgstr "GNU Midnight Commander %s\n"
  600. msgid "Main options"
  601. msgstr "Główne opcje"
  602. msgid "Terminal options"
  603. msgstr "Opcje terminala"
  604. msgid "Arguments parse error!"
  605. msgstr "Błąd podczas przetwarzania parametrów."
  606. #, fuzzy
  607. msgid "MC is built without builtin editor."
  608. msgstr "Z wbudowanym edytorem"
  609. msgid "No arguments given to the viewer."
  610. msgstr "Nie podano parametrów dla przeglądarki."
  611. msgid "Two files are required to invoke the diffviewer."
  612. msgstr "Wymagane są dwa pliki, aby wywołać program diffviewer."
  613. msgid "Background protocol error"
  614. msgstr "Błąd protokołu komunikacji w tle"
  615. msgid "Reading failed"
  616. msgstr "Odczytanie się nie powiodło"
  617. msgid "Background process error"
  618. msgstr "Błąd procesu w tle"
  619. msgid "Unknown error in child"
  620. msgstr "Nieznany błąd procesu potomnego"
  621. msgid "Child died unexpectedly"
  622. msgstr "Proces potomny został niespodziewanie zakończony"
  623. msgid ""
  624. "Background process sent us a request for more arguments\n"
  625. "than we can handle."
  626. msgstr ""
  627. "Proces w tle próbuje przesłać więcej parametrów, niż\n"
  628. "można obsłużyć."
  629. msgid "&Dismiss"
  630. msgstr "&Odrzuć"
  631. msgid "Enter search string:"
  632. msgstr "Wyszukiwany napis:"
  633. msgid "Cas&e sensitive"
  634. msgstr "Rozróżniani&e wielkości"
  635. msgid "&Backwards"
  636. msgstr "&Wstecz"
  637. msgid "&Whole words"
  638. msgstr "&Całe słowa"
  639. msgid "&All charsets"
  640. msgstr "W&szystkie zestawy znaków"
  641. msgid "Search"
  642. msgstr "Wyszukiwanie"
  643. msgid "Search is disabled"
  644. msgstr "Wyszukiwanie jest wyłączone"
  645. #, c-format
  646. msgid ""
  647. "Cannot create temporary diff file\n"
  648. "%s"
  649. msgstr ""
  650. "Nie można utworzyć tymczasowego pliku różnicy\n"
  651. "%s"
  652. #, c-format
  653. msgid ""
  654. "Cannot create backup file\n"
  655. "%s%s\n"
  656. "%s"
  657. msgstr ""
  658. "Nie można utworzyć pliku zapasowego\n"
  659. "%s%s\n"
  660. "%s"
  661. #, c-format
  662. msgid ""
  663. "Cannot create temporary merge file\n"
  664. "%s"
  665. msgstr ""
  666. "Nie można utworzyć tymczasowego pliku łączenia\n"
  667. "%s"
  668. msgid "&Fastest (Assume large files)"
  669. msgstr "Naj&szybszy (przyjmuje duże pliki)"
  670. msgid "&Minimal (Find a smaller set of change)"
  671. msgstr "&Minimalny (wyszukuje mniejszy zestaw zmian"
  672. msgid "Diff algorithm"
  673. msgstr "Algorytm różnicy"
  674. msgid "Diff extra options"
  675. msgstr "Dodatkowe opcje różnicy"
  676. msgid "&Ignore case"
  677. msgstr "&Ignorowanie wielkości znaków"
  678. msgid "Ignore tab &expansion"
  679. msgstr "Ignorowanie rozsz&erzeń tabulacji"
  680. msgid "Ignore &space change"
  681. msgstr "Ignorowanie zmian &spacji"
  682. msgid "Ignore all &whitespace"
  683. msgstr "Ignorowanie &wszystkich spacji"
  684. msgid "Strip &trailing carriage return"
  685. msgstr "Skracanie &kończących znaków CR"
  686. msgid "Diff Options"
  687. msgstr "Opcje różnicy"
  688. msgid "Edit"
  689. msgstr "Edycja"
  690. msgid "Edit is disabled"
  691. msgstr "Modyfikacja jest wyłączona"
  692. msgid "Goto line (left)"
  693. msgstr "Przejdź do wiersza (po lewej)"
  694. msgid "Goto line (right)"
  695. msgstr "Przejdź do wiersza (po prawej)"
  696. msgid "Enter line:"
  697. msgstr "Wiersz:"
  698. msgid "ButtonBar|Help"
  699. msgstr "Pomoc"
  700. msgid "ButtonBar|Save"
  701. msgstr "Zapisz"
  702. msgid "ButtonBar|Edit"
  703. msgstr "Edycja"
  704. msgid "ButtonBar|Merge"
  705. msgstr "Połącz"
  706. msgid "ButtonBar|Search"
  707. msgstr "Szukaj"
  708. msgid "ButtonBar|Options"
  709. msgstr "Opcje"
  710. msgid "ButtonBar|Quit"
  711. msgstr "Kończ"
  712. msgid "Quit"
  713. msgstr "Zakończ"
  714. msgid "File(s) was modified. Save with exit?"
  715. msgstr "Plik został zmodyfikowany. Zapisać przez zakończeniem?"
  716. msgid ""
  717. "Midnight Commander is being shut down.\n"
  718. "Save modified file(s)?"
  719. msgstr ""
  720. "Program Midnight Commander jest wyłączany.\n"
  721. "Zapisać zmodyfikowane pliki?"
  722. msgid "Diff:"
  723. msgstr "Różnica:"
  724. #, c-format
  725. msgid "\"%s\" is a directory"
  726. msgstr "„%s” jest katalogiem"
  727. #, c-format
  728. msgid ""
  729. "Cannot stat \"%s\"\n"
  730. "%s"
  731. msgstr ""
  732. "Nie można wykonać polecenia stat na „%s”\n"
  733. "%s"
  734. msgid "Diff viewer: invalid mode"
  735. msgstr "Przeglądarka różnic: nieprawidłowy tryb"
  736. msgid "Two files are needed to compare"
  737. msgstr "Wymagane są dwa pliki do porównania"
  738. #, c-format
  739. msgid "Loading: %3d%%"
  740. msgstr "Wczytywanie: %3d%%"
  741. msgid "Loading..."
  742. msgstr "Wczytywanie…"
  743. #, c-format
  744. msgid "Cannot open %s for reading"
  745. msgstr "Nie można otworzyć %s do odczytania"
  746. msgid "Load file"
  747. msgstr "Wczytaj plik"
  748. #, c-format
  749. msgid "Error reading %s"
  750. msgstr "Błąd podczas odczytywania %s"
  751. #, c-format
  752. msgid "Cannot get size/permissions for %s"
  753. msgstr "Nie można uzyskać rozmiaru/uprawnień dla %s"
  754. #, c-format
  755. msgid "\"%s\" is not a regular file"
  756. msgstr "„%s” nie jest zwykłym plikiem"
  757. #, c-format
  758. msgid ""
  759. "File \"%s\" is too large.\n"
  760. "Open it anyway?"
  761. msgstr ""
  762. "Plik „%s” jest za duży.\n"
  763. "Otworzyć go mimo to?"
  764. msgid "Warning"
  765. msgstr "Ostrzeżenie"
  766. #, c-format
  767. msgid "Error reading from pipe: %s"
  768. msgstr "Błąd podczas odczytywania potoku: %s"
  769. #, c-format
  770. msgid "Cannot open pipe for reading: %s"
  771. msgstr "Nie można otworzyć potoku do odczytania: %s"
  772. msgid "File has hard-links. Detach before saving?"
  773. msgstr "Plik ma twarde dowiązania. Odłączyć przez zapisaniem?"
  774. msgid "The file has been modified in the meantime. Save anyway?"
  775. msgstr "Plik został zmodyfikowany przez inny program. Zapisać mimo to?"
  776. #, c-format
  777. msgid "Error writing to pipe: %s"
  778. msgstr "Błąd podczas zapisywania do potoku: %s"
  779. #, c-format
  780. msgid "Cannot open pipe for writing: %s"
  781. msgstr "Nie można otworzyć potoku do zapisywania: %s"
  782. #, c-format
  783. msgid "Cannot open file for writing: %s"
  784. msgstr "Nie można otworzyć pliku do zapisywania: %s"
  785. msgid "The file you are saving does not end with a newline."
  786. msgstr "Zapisywany plik nie kończy się nowym wierszem."
  787. msgid "C&ontinue"
  788. msgstr "K&ontynuuj"
  789. msgid "&Do not change"
  790. msgstr "Bez &zmiany"
  791. msgid "&Unix format (LF)"
  792. msgstr "Format &UNIX (LF)"
  793. msgid "&Windows/DOS format (CR LF)"
  794. msgstr "Format &Windows/DOS (CR LF)"
  795. msgid "&Macintosh format (CR)"
  796. msgstr "Format &Macintosh (CR)"
  797. msgid "Enter file name:"
  798. msgstr "Nazwa pliku:"
  799. msgid "Change line breaks to:"
  800. msgstr "Zmiana łamania wierszy na:"
  801. msgid "Save As"
  802. msgstr "Zapisz jako"
  803. msgid "&Quick save"
  804. msgstr "Szybki &zapis"
  805. msgid "&Safe save"
  806. msgstr "Bezpieczny zapi&s"
  807. msgid "&Do backups with following extension:"
  808. msgstr "&Wykonaj kopie zapasowe za pomocą tego rozszerzenia:"
  809. msgid "Check &POSIX new line"
  810. msgstr "Sprawdź nowe wiersze &POSIX"
  811. msgid "Edit Save Mode"
  812. msgstr "Modyfikuj tryb zapisu"
  813. msgid "Save as"
  814. msgstr "Zapisz jako"
  815. msgid "Cannot save: destination is not a regular file"
  816. msgstr "Nie można zapisać: cel nie jest zwykłym plikiem"
  817. msgid "A file already exists with this name"
  818. msgstr "Plik o tej nazwie już istnieje."
  819. msgid "&Overwrite"
  820. msgstr "&Zastąp"
  821. msgid "Cannot save file"
  822. msgstr "Nie można zapisać pliku"
  823. #, c-format
  824. msgid "Confirm save file: \"%s\""
  825. msgstr "Proszę potwierdzić zapis pliku: „%s”"
  826. msgid "Save file"
  827. msgstr "Zapisz plik"
  828. msgid "&Save"
  829. msgstr "Zapi&sz"
  830. msgid "Load"
  831. msgstr "Wczytaj"
  832. msgid "Syntax file edit"
  833. msgstr "Modyfikacja pliku składni"
  834. msgid "Which syntax file you want to edit?"
  835. msgstr "Który plik składni zmodyfikować?"
  836. msgid "&User"
  837. msgstr "&Użytkownik"
  838. msgid "&System wide"
  839. msgstr "&Systemowe"
  840. msgid "Menu edit"
  841. msgstr "Modyfikacja menu"
  842. msgid "Which menu file do you want to edit?"
  843. msgstr "Który plik menu zmodyfikować? "
  844. msgid "&Local"
  845. msgstr "&Lokalne"
  846. msgid "[NoName]"
  847. msgstr "[BezNazwy]"
  848. #, c-format
  849. msgid ""
  850. "File %s was modified.\n"
  851. "Save before close?"
  852. msgstr ""
  853. "Plik %s został zmodyfikowany.\n"
  854. "Zapisać przed zamknięciem?"
  855. msgid "Close file"
  856. msgstr "Zamknięcie pliku"
  857. #, c-format
  858. msgid ""
  859. "Midnight Commander is being shut down.\n"
  860. "Save modified file %s?"
  861. msgstr ""
  862. "Program Midnight Commander jest zamykany.\n"
  863. "Zapisać zmodyfikowany plik %s?"
  864. msgid "This function is not implemented"
  865. msgstr "Ta funkcja nie jest zaimplementowana."
  866. msgid "Copy to clipboard"
  867. msgstr "Skopiuj do schowka"
  868. msgid "Unable to save to file"
  869. msgstr "Nie można zapisać do pliku"
  870. msgid "Cut to clipboard"
  871. msgstr "Wytnij do schowka"
  872. msgid "Goto line"
  873. msgstr "Przejście do wiersza"
  874. msgid "Save block"
  875. msgstr "Zapisz blok"
  876. msgid "Insert file"
  877. msgstr "Wstaw plik"
  878. msgid "Cannot insert file"
  879. msgstr "Nie można wstawić pliku"
  880. msgid "Sort block"
  881. msgstr "Posortuj blok"
  882. msgid "You must first highlight a block of text"
  883. msgstr "Należy najpierw wyróżnić blok tekstu"
  884. msgid "Run sort"
  885. msgstr "Wykonaj polecenie sort"
  886. msgid "Enter sort options (see sort(1) manpage) separated by whitespace:"
  887. msgstr ""
  888. "Proszę podać opcje polecenia sort (strona podręcznika sort(1) zawiera więcej "
  889. "informacji), rozdzielone spacjami:"
  890. msgid "Sort"
  891. msgstr "Posortuj"
  892. msgid "Cannot execute sort command"
  893. msgstr "Nie można wykonać polecenia sort"
  894. #, c-format
  895. msgid "Sort returned non-zero: %s"
  896. msgstr "Polecenie sort zwróciło kod błędu: %s"
  897. msgid "Paste output of external command"
  898. msgstr "Wklej wyjście zewnętrznego polecenia"
  899. msgid "Enter shell command(s):"
  900. msgstr "Polecenia powłoki:"
  901. msgid "External command"
  902. msgstr "Zewnętrzne polecenie"
  903. msgid "Cannot execute command"
  904. msgstr "Nie można wykonać polecenia"
  905. msgid "mail -s <subject> -c <cc> <to>"
  906. msgstr "mail -s <temat> -c <cc> <do>"
  907. msgid "To"
  908. msgstr "Do"
  909. msgid "Subject"
  910. msgstr "Tytuł"
  911. msgid "Copies to"
  912. msgstr "Kopie do"
  913. msgid "Mail"
  914. msgstr "Poczta"
  915. msgid "Insert literal"
  916. msgstr "Wstaw symbol"
  917. msgid "Press any key:"
  918. msgstr "Proszę nacisnąć dowolny klawisz:"
  919. msgid ""
  920. "Current text was modified without a file save.\n"
  921. "Continue discards these changes."
  922. msgstr ""
  923. "Bieżący tekst zmodyfikowano bez zapisania pliku.\n"
  924. "Kontynuacja spowoduje ich odrzucenie."
  925. msgid "Cancel"
  926. msgstr "Anuluj"
  927. msgid "Collect completions"
  928. msgstr "Zbierz uzupełnianie"
  929. msgid "NoName"
  930. msgstr "BezNazwy"
  931. msgid "Save macro"
  932. msgstr "Zapisz makro"
  933. msgid "Press the macro's new hotkey:"
  934. msgstr "Proszę nacisnąć nowy skrót makra:"
  935. msgid "Delete macro"
  936. msgstr "Usuń makro"
  937. msgid "Press macro hotkey:"
  938. msgstr "Proszę nacisnąć skrót makra:"
  939. msgid "Macro not deleted"
  940. msgstr "Nie usunięto makra"
  941. msgid "Repeat last commands"
  942. msgstr "Powtarza ostatnie polecenia"
  943. msgid "Repeat times:"
  944. msgstr "Czas powtórzeń:"
  945. msgid "&Open file..."
  946. msgstr "&Otwórz plik…"
  947. msgid "&New"
  948. msgstr "&Nowy"
  949. msgid "&Close"
  950. msgstr "&Zamknij"
  951. msgid "&History..."
  952. msgstr "&Historia…"
  953. msgid "Save &as..."
  954. msgstr "Z&apisz jako…"
  955. msgid "&Insert file..."
  956. msgstr "Wstaw pl&ik…"
  957. msgid "Cop&y to file..."
  958. msgstr "Skopiu&j do pliku…"
  959. msgid "&User menu..."
  960. msgstr "Menu &użytkownika…"
  961. msgid "A&bout..."
  962. msgstr "O &programie…"
  963. msgid "&Quit"
  964. msgstr "&Zakończ"
  965. msgid "&Undo"
  966. msgstr "Co&fnij"
  967. msgid "&Redo"
  968. msgstr "&Ponów"
  969. msgid "&Toggle ins/overw"
  970. msgstr "P&rzełącz wst/nad"
  971. msgid "To&ggle mark"
  972. msgstr "&Przełącz zaznaczenie"
  973. msgid "&Mark columns"
  974. msgstr "Zaznacz kolu&mny"
  975. msgid "Mark &all"
  976. msgstr "Zazn&acz wszystko"
  977. msgid "Unmar&k"
  978. msgstr "O&dznacz"
  979. msgid "Cop&y"
  980. msgstr "&Skopiuj"
  981. msgid "Mo&ve"
  982. msgstr "Prze&nieś"
  983. msgid "&Delete"
  984. msgstr "&Usuń"
  985. msgid "Co&py to clipfile"
  986. msgstr "Sk&opiuj do pliku schowka"
  987. msgid "&Cut to clipfile"
  988. msgstr "Wytnij do pliku s&chowka"
  989. msgid "Pa&ste from clipfile"
  990. msgstr "&Wklej z pliku schowka"
  991. msgid "&Beginning"
  992. msgstr "Począ&tek"
  993. msgid "&End"
  994. msgstr "Koni&ec"
  995. msgid "&Search..."
  996. msgstr "Wy&szukaj…"
  997. msgid "Search &again"
  998. msgstr "Wyszuka&j ponownie"
  999. msgid "&Replace..."
  1000. msgstr "&Zastąp…"
  1001. msgid "&Toggle bookmark"
  1002. msgstr "Przełącz za&kładkę"
  1003. msgid "&Next bookmark"
  1004. msgstr "Następna &zakładka"
  1005. msgid "&Prev bookmark"
  1006. msgstr "Poprzedn&ia zakładka"
  1007. msgid "&Flush bookmarks"
  1008. msgstr "&Wyczyść zakładki"
  1009. msgid "&Go to line..."
  1010. msgstr "&Przejdź do wiersza…"
  1011. msgid "&Toggle line state"
  1012. msgstr "Przełącz sta&n wiersza"
  1013. msgid "Go to matching &bracket"
  1014. msgstr "Prze&jdź do pasującego nawiasu"
  1015. msgid "Toggle s&yntax highlighting"
  1016. msgstr "Przełącz w&yróżnianie składni"
  1017. msgid "&Find declaration"
  1018. msgstr "&Znajdź deklarację"
  1019. msgid "Back from &declaration"
  1020. msgstr "Poprzednia &deklaracja"
  1021. msgid "For&ward to declaration"
  1022. msgstr "Następna de&klaracja"
  1023. msgid "Encod&ing..."
  1024. msgstr "Kodowan&ie…"
  1025. msgid "&Refresh screen"
  1026. msgstr "Odśwież ek&ran"
  1027. msgid "&Start/Stop record macro"
  1028. msgstr "Roz&pocznij/zatrzymaj nagrywanie makra"
  1029. msgid "Delete macr&o..."
  1030. msgstr "&Usuń makro…"
  1031. msgid "Record/Repeat &actions"
  1032. msgstr "N&agraj/powtórz działania"
  1033. msgid "S&pell check"
  1034. msgstr "Spr&awdzanie pisowni"
  1035. msgid "C&heck word"
  1036. msgstr "&Sprawdź słowo"
  1037. msgid "Change spelling &language..."
  1038. msgstr "Zmień &język pisowni…"
  1039. msgid "&Mail..."
  1040. msgstr "Po&czta…"
  1041. msgid "Insert &literal..."
  1042. msgstr "Wstaw symbo&l…"
  1043. msgid "Insert &date/time"
  1044. msgstr "Wstaw &datę/godzinę"
  1045. msgid "&Format paragraph"
  1046. msgstr "S&formatuj akapit"
  1047. msgid "&Sort..."
  1048. msgstr "Po&sortuj…"
  1049. msgid "&Paste output of..."
  1050. msgstr "Wklej wynik &polecenia…"
  1051. msgid "&External formatter"
  1052. msgstr "Z&ewnętrzny formater"
  1053. msgid "&Move"
  1054. msgstr "Prze&nieś"
  1055. msgid "&Resize"
  1056. msgstr "Zmień &rozmiar"
  1057. msgid "&Toggle fullscreen"
  1058. msgstr "&Przełącz pełny ekran"
  1059. msgid "&Next"
  1060. msgstr "&Następne"
  1061. msgid "&Previous"
  1062. msgstr "&Poprzednie"
  1063. msgid "&List..."
  1064. msgstr "&Lista…"
  1065. msgid "&General..."
  1066. msgstr "&Ogólne…"
  1067. msgid "Save &mode..."
  1068. msgstr "&Tryb zapisu…"
  1069. msgid "Learn &keys..."
  1070. msgstr "Określ &klawisze…"
  1071. msgid "Syntax &highlighting..."
  1072. msgstr "Wyróżnianie &elementów składni…"
  1073. msgid "S&yntax file"
  1074. msgstr "Plik &składni"
  1075. msgid "&Menu file"
  1076. msgstr "Plik &menu"
  1077. msgid "&Save setup"
  1078. msgstr "Zapisz u&stawienia"
  1079. msgid "&File"
  1080. msgstr "&Plik"
  1081. msgid "&Edit"
  1082. msgstr "&Edycja"
  1083. msgid "&Search"
  1084. msgstr "Wy&szukaj"
  1085. msgid "&Command"
  1086. msgstr "Pole&cenie"
  1087. msgid "For&mat"
  1088. msgstr "For&mat"
  1089. msgid "&Window"
  1090. msgstr "&Okno"
  1091. msgid "&Options"
  1092. msgstr "&Opcje"
  1093. msgid "&None"
  1094. msgstr "&Brak"
  1095. msgid "&Dynamic paragraphing"
  1096. msgstr "&Dynamiczne akapity"
  1097. msgid "Type &writer wrap"
  1098. msgstr "&Maszyna do pisania"
  1099. msgid "Wrap mode"
  1100. msgstr "Tryb zawijania"
  1101. msgid "Tabulation"
  1102. msgstr "Tabulacja"
  1103. msgid "&Fake half tabs"
  1104. msgstr "&Połówki tabulacji"
  1105. msgid "&Backspace through tabs"
  1106. msgstr "&Backspace przez tabulacje"
  1107. msgid "Fill tabs with &spaces"
  1108. msgstr "Wypełnianie tabulacji &spacjami"
  1109. msgid "Tab spacing:"
  1110. msgstr "Rozmiar tabulacji:"
  1111. msgid "Other options"
  1112. msgstr "Inne opcje"
  1113. msgid "&Return does autoindent"
  1114. msgstr "A&utomatyczne wcięcia"
  1115. msgid "Confir&m before saving"
  1116. msgstr "Potwierdzenie przed zapisanie&m"
  1117. msgid "Save file &position"
  1118. msgstr "Zapisanie po&zycji pliku"
  1119. msgid "&Visible trailing spaces"
  1120. msgstr "&Widoczne spacje kończące"
  1121. msgid "Visible &tabs"
  1122. msgstr "Widoczne &tabulacje"
  1123. msgid "Synta&x highlighting"
  1124. msgstr "&Wyróżnianie elementów składni"
  1125. msgid "C&ursor after inserted block"
  1126. msgstr "K&ursor po wstawionym bloku"
  1127. msgid "Pers&istent selection"
  1128. msgstr "Trwałe zaznaczen&ie"
  1129. msgid "Cursor be&yond end of line"
  1130. msgstr "Kursor &poza końcem wiersza"
  1131. msgid "&Group undo"
  1132. msgstr "&Grupowe cofnięcie"
  1133. msgid "Word wrap line length:"
  1134. msgstr "Punkt łamania wiersza:"
  1135. msgid "Editor options"
  1136. msgstr "Opcje edytora"
  1137. msgid "In se&lection"
  1138. msgstr "W wy&branych"
  1139. msgid "&Find all"
  1140. msgstr "&Znajdź wszystkie"
  1141. msgid "Enter replacement string:"
  1142. msgstr "Zastępujący napis:"
  1143. msgid "Replace"
  1144. msgstr "Zastąp"
  1145. msgid "Replace with:"
  1146. msgstr "Zastąpienie napisem:"
  1147. msgid "&Replace"
  1148. msgstr "&Zastąp"
  1149. msgid "A&ll"
  1150. msgstr "&Wszystkie"
  1151. msgid "&Skip"
  1152. msgstr "&Pomiń"
  1153. msgid "Confirm replace"
  1154. msgstr "Potwierdź zastąpienie"
  1155. #, c-format
  1156. msgid "Searching %s: %3d%%"
  1157. msgstr "Wyszukiwanie %s: %3d%%"
  1158. #, c-format
  1159. msgid "Searching %s"
  1160. msgstr "Wyszukiwanie %s"
  1161. #, c-format
  1162. msgid "%ld replacements made"
  1163. msgstr "Wykonano %ld zastąpień"
  1164. msgid ""
  1165. "A user friendly text editor\n"
  1166. "written for the Midnight Commander."
  1167. msgstr ""
  1168. "Łatwy w obsłudze edytor tekstu,\n"
  1169. "napisany dla programu Midnight Commander."
  1170. msgid "Copyright (C) 1996-2024 the Free Software Foundation"
  1171. msgstr "Copyright © 1996-2024 Free Software Foundation"
  1172. msgid "About"
  1173. msgstr "O programie"
  1174. msgid "Open files"
  1175. msgstr "Otwarcie plików"
  1176. msgid "Edit: "
  1177. msgstr "Edycja: "
  1178. msgid "ButtonBar|Mark"
  1179. msgstr "Zazncz"
  1180. msgid "ButtonBar|Replac"
  1181. msgstr "Zastąp"
  1182. msgid "ButtonBar|Copy"
  1183. msgstr "Kopiuj"
  1184. msgid "ButtonBar|Move"
  1185. msgstr "Przen"
  1186. msgid "ButtonBar|Delete"
  1187. msgstr "Usuń"
  1188. msgid "ButtonBar|PullDn"
  1189. msgstr "WDół"
  1190. msgid "Breton"
  1191. msgstr "bretoński"
  1192. msgid "Czech"
  1193. msgstr "czeski"
  1194. msgid "Welsh"
  1195. msgstr "walijski"
  1196. msgid "Danish"
  1197. msgstr "duński"
  1198. msgid "German"
  1199. msgstr "niemiecki"
  1200. msgid "Greek"
  1201. msgstr "grecki"
  1202. msgid "English"
  1203. msgstr "angielski"
  1204. msgid "British English"
  1205. msgstr "angielski (Wielka Brytania)"
  1206. msgid "Canadian English"
  1207. msgstr "angielski (Kanada)"
  1208. msgid "American English"
  1209. msgstr "angielski (Stany Zjednoczone)"
  1210. msgid "Esperanto"
  1211. msgstr "esperanto"
  1212. msgid "Spanish"
  1213. msgstr "hiszpański"
  1214. msgid "Faroese"
  1215. msgstr "farerski"
  1216. msgid "French"
  1217. msgstr "francuski"
  1218. msgid "Italian"
  1219. msgstr "włoski"
  1220. msgid "Dutch"
  1221. msgstr "holenderski"
  1222. msgid "Norwegian"
  1223. msgstr "norweski"
  1224. msgid "Polish"
  1225. msgstr "polski"
  1226. msgid "Portuguese"
  1227. msgstr "portugalski"
  1228. msgid "Romanian"
  1229. msgstr "rumuński"
  1230. msgid "Russian"
  1231. msgstr "rosyjski"
  1232. msgid "Slovak"
  1233. msgstr "słowacki"
  1234. msgid "Swedish"
  1235. msgstr "szwedzki"
  1236. msgid "Ukrainian"
  1237. msgstr "ukraiński"
  1238. msgid "&Add word"
  1239. msgstr "&Dodaj słowo"
  1240. msgid "Language"
  1241. msgstr "Język"
  1242. msgid "Misspelled"
  1243. msgstr "Błędna pisownia"
  1244. msgid "Check word"
  1245. msgstr "Sprawdź słowo"
  1246. msgid "Suggest"
  1247. msgstr "Sugestia"
  1248. msgid "Select language"
  1249. msgstr "Wybierz język"
  1250. msgid "Choose syntax highlighting"
  1251. msgstr "Wybór wyróżniania składni"
  1252. msgid "< Auto >"
  1253. msgstr "< Automatycznie >"
  1254. msgid "< Reload Current Syntax >"
  1255. msgstr "< Ponownie wczytaj składnię >"
  1256. msgid "Load syntax file"
  1257. msgstr "Wczytaj plik składni"
  1258. #, c-format
  1259. msgid ""
  1260. "Cannot open file %s\n"
  1261. "%s"
  1262. msgstr ""
  1263. "Nie można otworzyć pliku %s\n"
  1264. "%s"
  1265. #, c-format
  1266. msgid "Error in file %s on line %d"
  1267. msgstr "Błąd w pliku %s w wierszu %d"
  1268. msgid ""
  1269. "The Commander can't change to the directory that\n"
  1270. "the subshell claims you are in. Perhaps you have\n"
  1271. "deleted your working directory, or given yourself\n"
  1272. "extra access permissions with the \"su\" command?"
  1273. msgstr ""
  1274. "Nie można zmienić katalogu na wskazywany przez\n"
  1275. "podpowłokę. Prawdopodobnie katalog roboczy został\n"
  1276. "usunięty lub użyte zostało polecenie „su”."
  1277. #, c-format
  1278. msgid "Cannot fetch a local copy of %s"
  1279. msgstr "Nie można pobrać lokalnej kopii %s"
  1280. msgid "The shell is already running a command"
  1281. msgstr "Powłoka wykonuje już polecenie"
  1282. msgid ""
  1283. "Not an xterm or Linux console;\n"
  1284. "the subshell cannot be toggled."
  1285. msgstr ""
  1286. "Podpowłoka może być przełączana tylko\n"
  1287. "na konsoli xterm lub Linux."
  1288. msgid "Type 'exit' to return to the Midnight Commander"
  1289. msgstr "Wpisanie „exit” powróci do programu Midnight Commander"
  1290. msgid "Set &all"
  1291. msgstr "Ust&aw wszystkie"
  1292. msgid "S&kip"
  1293. msgstr "&Pomiń"
  1294. msgid "&Set"
  1295. msgstr "U&staw"
  1296. msgid "owner"
  1297. msgstr "właśc."
  1298. msgid "group"
  1299. msgstr "grupa"
  1300. msgid "other"
  1301. msgstr "inni"
  1302. msgid "Flag"
  1303. msgstr "Flaga"
  1304. #, c-format
  1305. msgid "Permissions (octal): %o"
  1306. msgstr "Uprawnienia (ósemkowe): %o"
  1307. msgid "Chown advanced command"
  1308. msgstr "Zaawansowane polecenie chown"
  1309. #, c-format
  1310. msgid ""
  1311. "Cannot chmod \"%s\"\n"
  1312. "%s"
  1313. msgstr ""
  1314. "Nie można wykonać chmod na „%s”\n"
  1315. "%s"
  1316. msgid "&Ignore"
  1317. msgstr "Z&ignoruj"
  1318. msgid "Ignore &all"
  1319. msgstr "Zignoruj &wszystko"
  1320. msgid "&Retry"
  1321. msgstr "P&onów"
  1322. #, c-format
  1323. msgid ""
  1324. "Cannot chown \"%s\"\n"
  1325. "%s"
  1326. msgstr ""
  1327. "Nie można wykonać chown na „%s”\n"
  1328. "%s"
  1329. msgid "< Default >"
  1330. msgstr "< Domyślna >"
  1331. msgid "Skins"
  1332. msgstr "Skórki"
  1333. msgid "Other 8 bit"
  1334. msgstr "Inne 8-bitowe"
  1335. msgid "Running"
  1336. msgstr "Wykonywanie"
  1337. msgid "Stopped"
  1338. msgstr "Zatrzymano"
  1339. msgid "&Never"
  1340. msgstr "&Nigdy"
  1341. msgid "On dum&b terminals"
  1342. msgstr "Na prostych &terminalach"
  1343. msgid "Alwa&ys"
  1344. msgstr "&Zawsze"
  1345. msgid "File operations"
  1346. msgstr "Działania na plikach"
  1347. msgid "&Verbose operation"
  1348. msgstr "&Więcej informacji"
  1349. msgid "Compute tota&ls"
  1350. msgstr "Obliczanie &objętości"
  1351. msgid "Classic pro&gressbar"
  1352. msgstr "&Klasyczny pasek postępu"
  1353. msgid "Mkdi&r autoname"
  1354. msgstr "Autom. nazwa przy „mkdi&r”"
  1355. msgid "&Preallocate space"
  1356. msgstr "Przydz. &miejsca z wyprzedzeniem"
  1357. msgid "Esc key mode"
  1358. msgstr "Tryb klawisza Escape"
  1359. msgid "S&ingle press"
  1360. msgstr "Po&jedyncze naciśnięcie"
  1361. msgid "Timeout:"
  1362. msgstr "Czas oczekiwania:"
  1363. msgid "Pause after run"
  1364. msgstr "Wstrzymanie po uruchomieniu"
  1365. msgid "Use internal edi&t"
  1366. msgstr "Wewnętrzn&y edytor"
  1367. msgid "Use internal vie&w"
  1368. msgstr "Wewnętrzna prze&glądarka"
  1369. msgid "A&sk new file name"
  1370. msgstr "Pytan&ie o nową nazwę pliku"
  1371. msgid "Auto m&enus"
  1372. msgstr "Autom. m&enu"
  1373. msgid "&Drop down menus"
  1374. msgstr "Rozwi&janie menu"
  1375. msgid "S&hell patterns"
  1376. msgstr "Wzorce &powłoki"
  1377. msgid "Co&mplete: show all"
  1378. msgstr "Uzupełnianie: wyśw. wszystkic&h"
  1379. msgid "Rotating d&ash"
  1380. msgstr "O&bracająca się kreska"
  1381. msgid "Cd follows lin&ks"
  1382. msgstr "„cd” podąża za &dowiązaniami"
  1383. msgid "Sa&fe delete"
  1384. msgstr "Bezpieczne &usuwanie"
  1385. msgid "Safe overwrite"
  1386. msgstr "Bezpieczne zastępowanie"
  1387. msgid "A&uto save setup"
  1388. msgstr "Auto&m. zapis ustawień"
  1389. msgid "Configure options"
  1390. msgstr "Konfiguracja"
  1391. msgid "Skin:"
  1392. msgstr "Skórka:"
  1393. msgid "&Shadows"
  1394. msgstr "&Cienie"
  1395. msgid "Appearance"
  1396. msgstr "Wygląd"
  1397. msgid "Case &insensitive"
  1398. msgstr "Bez rozróżniania w&ielkości"
  1399. msgid "Use panel sort mo&de"
  1400. msgstr "Tryb sortowania &panelu"
  1401. msgid "Show mi&ni-status"
  1402. msgstr "Mi&nistan"
  1403. msgid "Use SI si&ze units"
  1404. msgstr "Je&dnostki rozmiaru SI"
  1405. msgid "Mi&x all files"
  1406. msgstr "&Mieszanie wszystkich plików"
  1407. msgid "Show &backup files"
  1408. msgstr "P&liki zapasowe"
  1409. msgid "Show &hidden files"
  1410. msgstr "U&kryte pliki"
  1411. msgid "&Fast dir reload"
  1412. msgstr "Szy&bkie odświeżanie katalogów"
  1413. msgid "Ma&rk moves down"
  1414. msgstr "Zaznaczenie p&rzesuwa w dół"
  1415. msgid "Re&verse files only"
  1416. msgstr "&Tylko odwrotne pliki"
  1417. msgid "Simple s&wap"
  1418. msgstr "Proste &przełączenie"
  1419. msgid "A&uto save panels setup"
  1420. msgstr "Auto&m. zapis ustawień paneli"
  1421. msgid "Navigation"
  1422. msgstr "Nawigacja"
  1423. msgid "L&ynx-like motion"
  1424. msgstr "W stylu programu L&ynx"
  1425. msgid "Pa&ge scrolling"
  1426. msgstr "Przewijanie &stron"
  1427. msgid "Center &scrolling"
  1428. msgstr "Pr&zewijanie wyśrodkowane"
  1429. msgid "&Mouse page scrolling"
  1430. msgstr "Przewijanie stron &myszą"
  1431. msgid "File highlight"
  1432. msgstr "Wyróżnianie plików"
  1433. msgid "File &types"
  1434. msgstr "Typy p&lików"
  1435. msgid "&Permissions"
  1436. msgstr "&Uprawnienia"
  1437. msgid "Quick search"
  1438. msgstr "Szybkie wyszukiwanie"
  1439. msgid "Panel options"
  1440. msgstr "Opcje panelu"
  1441. msgid "Information"
  1442. msgstr "Informacje"
  1443. msgid ""
  1444. "Using the fast reload option may not reflect the exact\n"
  1445. "directory contents. In this case you'll need to do a\n"
  1446. "manual reload of the directory. See the man page for\n"
  1447. "the details."
  1448. msgstr ""
  1449. "Za pomocą opcji szybkiego odświeżenia katalogów\n"
  1450. "ich zawartość może nie być wiernie przedstawiana.\n"
  1451. "W tym przypadku należy ręcznie odświeżyć katalog.\n"
  1452. "Strona man zawiera więcej informacji."
  1453. msgid "&Full file list"
  1454. msgstr "&Pełna lista plików"
  1455. msgid "&Brief file list:"
  1456. msgstr "&Skrócona lista plików:"
  1457. msgid "&Long file list"
  1458. msgstr "&Długa lista plików"
  1459. msgid "&User defined:"
  1460. msgstr "Określony przez &użytkownika:"
  1461. msgid "columns"
  1462. msgstr "kolumny"
  1463. msgid "User &mini status"
  1464. msgstr "&Krótki stan użytkownika"
  1465. msgid "Listing format"
  1466. msgstr "Format wyświetlania"
  1467. msgid "Executable &first"
  1468. msgstr "Najpierw &pliki wykonywalne"
  1469. msgid "&Reverse"
  1470. msgstr "Od&wrócony"
  1471. msgid "Sort order"
  1472. msgstr "Porządek sortowania"
  1473. #. TRANSLATORS: no need to translate 'Confirmation', it's just a context prefix
  1474. msgid "Confirmation|&Delete"
  1475. msgstr "&Usunięcie"
  1476. msgid "Confirmation|O&verwrite"
  1477. msgstr "Za&stąpienie"
  1478. msgid "Confirmation|&Execute"
  1479. msgstr "Wykonani&e"
  1480. msgid "Confirmation|E&xit"
  1481. msgstr "&Zakończenie"
  1482. msgid "Confirmation|Di&rectory hotlist delete"
  1483. msgstr "Usunięcie listy po&dręcznych katalogów"
  1484. msgid "Confirmation|&History cleanup"
  1485. msgstr "Wyczyszczenie &historii"
  1486. msgid "Confirmation"
  1487. msgstr "Potwierdzenia"
  1488. msgid "&UTF-8 output"
  1489. msgstr "Wyjście &UTF-8"
  1490. msgid "&Full 8 bits output"
  1491. msgstr "&Pełne wyjście 8-bitowe"
  1492. msgid "&ISO 8859-1"
  1493. msgstr "&ISO 8859-1"
  1494. msgid "7 &bits"
  1495. msgstr "7-&bitowe"
  1496. msgid "F&ull 8 bits input"
  1497. msgstr "P&ełne wejście 8-bitowe"
  1498. msgid "Display bits"
  1499. msgstr "Wyświetlane bity"
  1500. msgid "Input / display codepage:"
  1501. msgstr "Strona kodowa wejściowa/wyjściowa:"
  1502. msgid "Directory tree"
  1503. msgstr "Drzewo katalogów"
  1504. msgid "Timeout for freeing VFSs (sec):"
  1505. msgstr "Czas zwalniania VFS (w sekundach):"
  1506. msgid "FTP anonymous password:"
  1507. msgstr "Hasło anonimowego FTP:"
  1508. msgid "FTP directory cache timeout (sec):"
  1509. msgstr "Czas katalogu FTP w pamięci podręcznej (w sekundach):"
  1510. msgid "&Always use ftp proxy:"
  1511. msgstr "Używ&anie pośrednika FTP:"
  1512. msgid "&Use ~/.netrc"
  1513. msgstr "&Użycie pliku ~/.netrc"
  1514. msgid "Use &passive mode"
  1515. msgstr "Tryb &pasywny"
  1516. msgid "Use passive mode over pro&xy"
  1517. msgstr "Tryb pasywny przez poś&rednika"
  1518. msgid "Virtual File System Setting"
  1519. msgstr "Ustawienia wirtualnego systemu plików"
  1520. msgid "cd"
  1521. msgstr "cd"
  1522. msgid "Quick cd"
  1523. msgstr "Szybka zmiana katalogu"
  1524. msgid "Existing filename (filename symlink will point to):"
  1525. msgstr "Istniejąca nazwa pliku (plik docelowy dowiązania):"
  1526. msgid "Symbolic link filename:"
  1527. msgstr "Nazwa dowiązania symbolicznego:"
  1528. msgid "Symbolic link"
  1529. msgstr "Dowiązanie symboliczne"
  1530. msgid "&Stop"
  1531. msgstr "&Zatrzymaj"
  1532. msgid "&Resume"
  1533. msgstr "&Wznów"
  1534. msgid "&Kill"
  1535. msgstr "Za&bij"
  1536. msgid "Background jobs"
  1537. msgstr "Zadania w tle"
  1538. #, c-format
  1539. msgid ""
  1540. "Cannot change directory to\n"
  1541. "%s\n"
  1542. "%s"
  1543. msgstr ""
  1544. "Nie można zmienić katalogu na\n"
  1545. "%s\n"
  1546. "%s"
  1547. msgid "Secure deletion"
  1548. msgstr "Bezpieczne usunięcie"
  1549. msgid "Undelete"
  1550. msgstr "Cofnięcie usunięcia"
  1551. msgid "Synchronous updates"
  1552. msgstr "Aktualizacje synchroniczne"
  1553. msgid "Synchronous directory updates"
  1554. msgstr "Synchroniczne aktualizacje katalogów"
  1555. msgid "Immutable"
  1556. msgstr "Niezmienne"
  1557. msgid "Append only"
  1558. msgstr "Tylko dołączanie"
  1559. msgid "No dump"
  1560. msgstr "Bez zrzucania"
  1561. msgid "No update atime"
  1562. msgstr "Bez atime aktualizacji"
  1563. msgid "Compress"
  1564. msgstr "Kompresja"
  1565. msgid "Compressed clusters"
  1566. msgstr "Skompresowane klastry"
  1567. msgid "Compressed dirty file"
  1568. msgstr "Skompresowany „brudny” plik"
  1569. msgid "Compression raw access"
  1570. msgstr "Surowy dostęp do kompresji"
  1571. msgid "Encrypted inode"
  1572. msgstr "Zaszyfrowany i-węzeł"
  1573. msgid "Journaled data"
  1574. msgstr "Księgowane dane"
  1575. msgid "Indexed directory"
  1576. msgstr "Zindeksowany katalog"
  1577. msgid "No tail merging"
  1578. msgstr "Bez łączenia końcówek"
  1579. msgid "Top of directory hierarchies"
  1580. msgstr "Hierarchie góry katalogów"
  1581. msgid "Inode uses extents"
  1582. msgstr "I-węzeł używa „extent”"
  1583. msgid "Huge_file"
  1584. msgstr "Wielki_plik"
  1585. msgid "No COW"
  1586. msgstr "Bez COW"
  1587. msgid "Direct access for files"
  1588. msgstr "Bezpośredni dostęp do plików"
  1589. msgid "Casefolded file"
  1590. msgstr "Plik bez rozróżniania wielkości znaków"
  1591. msgid "Inode has inline data"
  1592. msgstr "I-węzeł ma wstawione dane"
  1593. msgid "Project hierarchy"
  1594. msgstr "Hierarchia projektu"
  1595. msgid "Verity protected inode"
  1596. msgstr "I-węzeł o chronionej prawdzie"
  1597. msgid "&Marked all"
  1598. msgstr "Wszystkie zaz&naczone"
  1599. msgid "S&et marked"
  1600. msgstr "Ustaw zaznaczon&e"
  1601. msgid "C&lear marked"
  1602. msgstr "&Wyczyść zaznaczone"
  1603. msgid "Chattr command"
  1604. msgstr "Polecenie chattr"
  1605. #, c-format
  1606. msgid ""
  1607. "Cannot chattr \"%s\"\n"
  1608. "%s"
  1609. msgstr ""
  1610. "Nie można wykonać polecenia chattr na „%s”\n"
  1611. "%s"
  1612. #, c-format
  1613. msgid ""
  1614. "Cannot get flags of \"%s\"\n"
  1615. "%s"
  1616. msgstr ""
  1617. "Nie można uzyskać flag „%s”\n"
  1618. "%s"
  1619. msgid "set &user ID on execution"
  1620. msgstr "ustaw &UID przy wykonaniu"
  1621. msgid "set &group ID on execution"
  1622. msgstr "ustaw &GID przy wykonaniu"
  1623. msgid "stick&y bit"
  1624. msgstr "bit „&lepkości”"
  1625. msgid "&read by owner"
  1626. msgstr "&odczytywanie przez właśc."
  1627. msgid "&write by owner"
  1628. msgstr "&zapisywanie przez właśc."
  1629. msgid "e&xecute/search by owner"
  1630. msgstr "w&ykonywanie/przeszukiwanie przez właśc."
  1631. msgid "rea&d by group"
  1632. msgstr "o&dczytywanie przez grupę"
  1633. msgid "write by grou&p"
  1634. msgstr "za&pisywanie przez grupę"
  1635. msgid "execu&te/search by group"
  1636. msgstr "wy&konywanie/przeszukiwanie przez grupę"
  1637. msgid "read &by others"
  1638. msgstr "od&czytywanie przez innych"
  1639. msgid "wr&ite by others"
  1640. msgstr "zap&isywanie przez innych"
  1641. msgid "execute/searc&h by others"
  1642. msgstr "wyko&nywanie/przeszukiwanie przez innych"
  1643. msgid "Name:"
  1644. msgstr "Nazwa:"
  1645. msgid "Permissions (octal):"
  1646. msgstr "Uprawnienia (ósemkowe):"
  1647. msgid "Owner name:"
  1648. msgstr "Nazwa właściciela:"
  1649. msgid "Group name:"
  1650. msgstr "Nazwa grupy:"
  1651. msgid "Chmod command"
  1652. msgstr "Polecenie chmod"
  1653. msgid "Permission"
  1654. msgstr "Uprawnienia"
  1655. msgid "File"
  1656. msgstr "Plik"
  1657. msgid "Set &groups"
  1658. msgstr "Ustaw &grupy"
  1659. msgid "Set &users"
  1660. msgstr "Ustaw &użytkowników"
  1661. msgid "Name"
  1662. msgstr "Nazwa"
  1663. msgid "Owner name"
  1664. msgstr "Nazwa właściciela"
  1665. msgid "Group name"
  1666. msgstr "Nazwa grupy"
  1667. msgid "Size"
  1668. msgstr "Rozmiar"
  1669. msgid "Chown command"
  1670. msgstr "Polecenie chown"
  1671. msgid "User name"
  1672. msgstr "Nazwa użytkownika"
  1673. msgid "<Unknown user>"
  1674. msgstr "<Nieznany użytkownik>"
  1675. msgid "<Unknown group>"
  1676. msgstr "<Nieznana grupa>"
  1677. msgid "Enter machine name (F1 for details):"
  1678. msgstr "Nazwa komputera (F1 wyświetli więcej informacji):"
  1679. msgid "Files tagged, want to cd?"
  1680. msgstr "Zaznaczono pliki, zmienić katalog?"
  1681. #, c-format
  1682. msgid "Link %s to:"
  1683. msgstr "Dowiązanie %s do:"
  1684. msgid "Link"
  1685. msgstr "Dowiąż"
  1686. #, c-format
  1687. msgid "link: %s"
  1688. msgstr "dowiązanie: %s"
  1689. #, c-format
  1690. msgid "symlink: %s"
  1691. msgstr "dowiązanie symboliczne: %s"
  1692. msgid "View file"
  1693. msgstr "Podgląd pliku"
  1694. msgid "Filename:"
  1695. msgstr "Nazwa pliku:"
  1696. msgid "Filtered view"
  1697. msgstr "Widok filtrowany"
  1698. msgid "Filter command and arguments:"
  1699. msgstr "Polecenie i parametry filtra:"
  1700. msgid "Edit file"
  1701. msgstr "Modyfikacja pliku"
  1702. msgid "Create a new Directory"
  1703. msgstr "Tworzenie nowego katalogu"
  1704. msgid "Enter directory name:"
  1705. msgstr "Nazwa katalogu:"
  1706. msgid "Extension file edit"
  1707. msgstr "Modyfikacja pliku rozszerzeń"
  1708. msgid "Which extension file you want to edit?"
  1709. msgstr "Który plik rozszerzeń zmodyfikować? "
  1710. msgid "&System Wide"
  1711. msgstr "&Systemowe"
  1712. msgid "Highlighting groups file edit"
  1713. msgstr "Modyfikacja pliku wyróżniania grup"
  1714. msgid "Which highlighting file you want to edit?"
  1715. msgstr "Który plik wyróżniania zmodyfikować? "
  1716. msgid "Compare directories"
  1717. msgstr "Porównanie katalogów"
  1718. msgid "Select compare method:"
  1719. msgstr "Metoda porównywania:"
  1720. msgid "&Quick"
  1721. msgstr "&Szybka"
  1722. msgid "&Size only"
  1723. msgstr "Tylko &rozmiar"
  1724. msgid "&Thorough"
  1725. msgstr "&Dokładna"
  1726. msgid ""
  1727. "Both panels should be in the listing mode\n"
  1728. "to use this command"
  1729. msgstr ""
  1730. "Aby wykorzystać to polecenie, należy ustawić\n"
  1731. "oba okna na wyświetlanie listy plików"
  1732. #, c-format
  1733. msgid "'%s' is not a symbolic link"
  1734. msgstr "„%s” nie jest dowiązaniem symbolicznym"
  1735. #, c-format
  1736. msgid "Symlink '%s' points to:"
  1737. msgstr "Dowiązanie symboliczne „%s” wskazuje na:"
  1738. msgid "Edit symlink"
  1739. msgstr "Modyfikuj dowiązanie symboliczne"
  1740. #, c-format
  1741. msgid "edit symlink, unable to remove %s: %s"
  1742. msgstr "modyfikacja dowiązania symbolicznego, nie można usunąć %s: %s"
  1743. #, c-format
  1744. msgid "edit symlink: %s"
  1745. msgstr "modyfikacja dowiązania symbolicznego: %s"
  1746. msgid "FTP to machine"
  1747. msgstr "Połączenie FTP z komputerem"
  1748. msgid "SFTP to machine"
  1749. msgstr "Połączenie SFTP z komputerem"
  1750. msgid "Shell link to machine"
  1751. msgstr "Połączenie po powłoce z komputerem"
  1752. msgid "Undelete files on an ext2 file system"
  1753. msgstr "Odtwórz pliki na systemie plików ext2"
  1754. msgid ""
  1755. "Enter device (without /dev/) to undelete\n"
  1756. "files on: (F1 for details)"
  1757. msgstr ""
  1758. "Proszę podać urządzenie (bez /dev/), na którym\n"
  1759. "są pliki do odzyskania (F1 wyświetli więcej informacji):"
  1760. msgid "Directory scanning"
  1761. msgstr "Skanowanie katalogu"
  1762. msgid "Setup"
  1763. msgstr "Ustawienia"
  1764. #, c-format
  1765. msgid "Setup saved to %s"
  1766. msgstr "Ustawienia zapisano do %s"
  1767. #, c-format
  1768. msgid "Unable to save setup to %s"
  1769. msgstr "Nie można zapisać ustawień do %s"
  1770. msgid "Cannot execute commands on non-local filesystems"
  1771. msgstr "Polecenia można wykonywać tylko na lokalnym systemie plików"
  1772. msgid "Parameter"
  1773. msgstr "Parametr"
  1774. #, c-format
  1775. msgid ""
  1776. "Cannot create temporary command file\n"
  1777. "%s"
  1778. msgstr ""
  1779. "Nie można utworzyć tymczasowego pliku polecenia\n"
  1780. "%s"
  1781. msgid "Pipe failed"
  1782. msgstr "Potok się nie powiódł"
  1783. #, c-format
  1784. msgid ""
  1785. "You have an outdated %s file.\n"
  1786. "Midnight Commander now uses %s file.\n"
  1787. "Please copy your modifications of the old file to the new one."
  1788. msgstr ""
  1789. "Plik %s jest przestarzały.\n"
  1790. "Midnight Commander używa teraz pliku %s.\n"
  1791. "Proszę skopiować wprowadzone zmiany z poprzedniego pliku do nowego."
  1792. #, c-format
  1793. msgid ""
  1794. "The format of the\n"
  1795. "%s%s\n"
  1796. "file has changed with version 4.0.\n"
  1797. "It seems that the installation has failed.\n"
  1798. "Please fetch a fresh copy from the Midnight Commander package."
  1799. msgstr ""
  1800. "Format pliku\n"
  1801. "%s%s\n"
  1802. "uległ zmianie wraz z wersją 4.0.\n"
  1803. "Wygląda na to, że instalacja się nie powiodła.\n"
  1804. "Proszę pobrać nową wersję tego pliku z pakietu programu Midnight Commander."
  1805. #, c-format
  1806. msgid ""
  1807. "The format of the\n"
  1808. "%s\n"
  1809. "file has changed with version 4.0.\n"
  1810. "You may either want to copy it from\n"
  1811. "%s%s\n"
  1812. "or use that file as an example of how to write it."
  1813. msgstr ""
  1814. "Format pliku\n"
  1815. "%s\n"
  1816. "został zmieniony w wersji 4.0.\n"
  1817. "Można skopiować go z\n"
  1818. "%s%s\n"
  1819. "lub użyć tego pliku jako przykład."
  1820. msgid "DialogTitle|Copy"
  1821. msgstr "Kopiowanie"
  1822. msgid "DialogTitle|Move"
  1823. msgstr "Przenoszenie"
  1824. msgid "DialogTitle|Delete"
  1825. msgstr "Usuwanie"
  1826. msgid "FileOperation|Copy"
  1827. msgstr "Skopiować"
  1828. msgid "FileOperation|Move"
  1829. msgstr "Przenieść"
  1830. msgid "FileOperation|Delete"
  1831. msgstr "Usunąć"
  1832. #, no-c-format
  1833. msgid "%o %f%n\"%s\"%m"
  1834. msgstr "%o %f%n„%s”%m"
  1835. #, no-c-format
  1836. msgid "%o %d %f%m"
  1837. msgstr "%o %d %f%m"
  1838. msgid "files"
  1839. msgstr "pliki"
  1840. msgid "directory"
  1841. msgstr "katalogu"
  1842. msgid "directories"
  1843. msgstr "katalogów"
  1844. msgid "files/directories"
  1845. msgstr "pliki/katalogi"
  1846. #. TRANSLATORS: keep leading space here to split words in Copy/Move dialog
  1847. msgid " with source mask:"
  1848. msgstr " z maską źródłową:"
  1849. #, c-format
  1850. msgid ""
  1851. "Cannot stat hardlink source file \"%s\"\n"
  1852. "%s"
  1853. msgstr ""
  1854. "Nie można wykonać polecenia stat na twardym dowiązaniu pliku źródłowego "
  1855. "„%s”\n"
  1856. "%s"
  1857. #, c-format
  1858. msgid ""
  1859. "Cannot create target hardlink \"%s\"\n"
  1860. "%s"
  1861. msgstr ""
  1862. "Nie można utworzyć docelowego twardego dowiązania „%s”\n"
  1863. "%s"
  1864. #, c-format
  1865. msgid "Cannot create target hardlink \"%s\""
  1866. msgstr "Nie można utworzyć docelowego twardego dowiązania „%s”"
  1867. #, c-format
  1868. msgid ""
  1869. "Cannot read source link \"%s\"\n"
  1870. "%s"
  1871. msgstr ""
  1872. "Nie można odczytać dowiązania źródłowego „%s”\n"
  1873. "%s "
  1874. msgid ""
  1875. "Cannot make stable symlinks across non-local filesystems:\n"
  1876. "\n"
  1877. "Option Stable Symlinks will be disabled"
  1878. msgstr ""
  1879. "Dowiązania symboliczne można utworzyć tylko na lokalnym systemie plików:\n"
  1880. "\n"
  1881. "Opcja „Zachowanie dowiązań symbolicznych” zostanie wyłączona"
  1882. #, c-format
  1883. msgid ""
  1884. "Cannot create target symlink \"%s\"\n"
  1885. "%s"
  1886. msgstr ""
  1887. "Nie można utworzyć docelowego dowiązania symbolicznego „%s”\n"
  1888. "%s"
  1889. #, c-format
  1890. msgid ""
  1891. "\"%s\"\n"
  1892. "and\n"
  1893. "\"%s\"\n"
  1894. "are the same directory"
  1895. msgstr ""
  1896. "„%s”\n"
  1897. "i\n"
  1898. "„%s”\n"
  1899. "to ten sam katalog"
  1900. #, c-format
  1901. msgid ""
  1902. "\"%s\"\n"
  1903. "and\n"
  1904. "\"%s\"\n"
  1905. "are the same file"
  1906. msgstr ""
  1907. "„%s”\n"
  1908. "i\n"
  1909. "„%s”\n"
  1910. "to ten sam plik"
  1911. msgid "Ski&p all"
  1912. msgstr "&Pomiń wszystko"
  1913. #, c-format
  1914. msgid ""
  1915. "Directory \"%s\" not empty.\n"
  1916. "Delete it recursively?"
  1917. msgstr ""
  1918. "Katalog „%s” nie jest pusty.\n"
  1919. "Usunąć go rekurencyjnie?"
  1920. #, c-format
  1921. msgid ""
  1922. "Background process:\n"
  1923. "Directory \"%s\" not empty.\n"
  1924. "Delete it recursively?"
  1925. msgstr ""
  1926. "Proces w tle:\n"
  1927. "Katalog „%s” nie jest pusty.\n"
  1928. "Usunąć go rekurencyjnie?"
  1929. msgid "Non&e"
  1930. msgstr "Br&ak"
  1931. #, c-format
  1932. msgid ""
  1933. "Cannot remove file \"%s\"\n"
  1934. "%s"
  1935. msgstr ""
  1936. "Nie można usunąć pliku „%s”\n"
  1937. "%s"
  1938. #, c-format
  1939. msgid ""
  1940. "Cannot stat file \"%s\"\n"
  1941. "%s"
  1942. msgstr ""
  1943. "Nie można wykonać polecenia stat na pliku „%s”\n"
  1944. "%s"
  1945. #, c-format
  1946. msgid "Cannot overwrite directory \"%s\""
  1947. msgstr "Nie można zastąpić katalogu „%s”"
  1948. #, c-format
  1949. msgid ""
  1950. "Cannot move file \"%s\" to \"%s\"\n"
  1951. "%s"
  1952. msgstr ""
  1953. "Nie można przenieść pliku „%s” do „%s”\n"
  1954. "%s"
  1955. #, c-format
  1956. msgid ""
  1957. "Cannot remove directory \"%s\"\n"
  1958. "%s"
  1959. msgstr ""
  1960. "Nie można usunąć katalogu „%s”\n"
  1961. "%s"
  1962. #, c-format
  1963. msgid ""
  1964. "Cannot overwrite directory \"%s\"\n"
  1965. "%s"
  1966. msgstr ""
  1967. "Nie można zastąpić katalogu „%s”\n"
  1968. "%s"
  1969. #, c-format
  1970. msgid ""
  1971. "Cannot overwrite file \"%s\"\n"
  1972. "%s"
  1973. msgstr ""
  1974. "Nie można zastąpić pliku „%s”\n"
  1975. "%s"
  1976. #, c-format
  1977. msgid ""
  1978. "Cannot move directory \"%s\" to \"%s\"\n"
  1979. "%s"
  1980. msgstr ""
  1981. "Nie można przenieść katalogu „%s” do „%s”\n"
  1982. "%s"
  1983. msgid "Cannot operate on \"..\"!"
  1984. msgstr "Nie można wykonać działania na „..”."
  1985. #, c-format
  1986. msgid ""
  1987. "Cannot stat source file \"%s\"\n"
  1988. "%s"
  1989. msgstr ""
  1990. "Nie można wykonać polecenia stat na pliku źródłowym „%s”\n"
  1991. "%s"
  1992. #, fuzzy, c-format
  1993. msgid ""
  1994. "Cannot get attributes of source file \"%s\"\n"
  1995. "%s"
  1996. msgstr ""
  1997. "Nie można wykonać polecenia stat na pliku źródłowym „%s”\n"
  1998. "%s"
  1999. #, fuzzy, c-format
  2000. msgid ""
  2001. "Cannot set attributes of target file \"%s\"\n"
  2002. "%s"
  2003. msgstr ""
  2004. "Nie można wykonać polecenia stat na pliku docelowym „%s”\n"
  2005. "%s"
  2006. #, c-format
  2007. msgid ""
  2008. "Cannot create special file \"%s\"\n"
  2009. "%s"
  2010. msgstr ""
  2011. "Nie można utworzyć specjalnego pliku „%s”\n"
  2012. "%s"
  2013. #, c-format
  2014. msgid ""
  2015. "Cannot chown target file \"%s\"\n"
  2016. "%s"
  2017. msgstr ""
  2018. "Nie można zmienić właściciela pliku docelowego „%s”\n"
  2019. "%s"
  2020. #, c-format
  2021. msgid ""
  2022. "Cannot chmod target file \"%s\"\n"
  2023. "%s"
  2024. msgstr ""
  2025. "Nie można zmienić uprawnień pliku docelowego „%s”\n"
  2026. "%s"
  2027. #, c-format
  2028. msgid ""
  2029. "Cannot open source file \"%s\"\n"
  2030. "%s"
  2031. msgstr ""
  2032. "Nie można otworzyć pliku źródłowego „%s”\n"
  2033. "%s"
  2034. msgid "Reget failed, about to overwrite file"
  2035. msgstr "Polecenie reget się nie powiodło, plik zostanie zastąpiony"
  2036. #, c-format
  2037. msgid ""
  2038. "Cannot fstat source file \"%s\"\n"
  2039. "%s"
  2040. msgstr ""
  2041. "Nie można wykonać polecenia fstat na pliku źródłowym „%s”\n"
  2042. "%s"
  2043. #, c-format
  2044. msgid ""
  2045. "Cannot create target file \"%s\"\n"
  2046. "%s"
  2047. msgstr ""
  2048. "Nie można utworzyć pliku docelowego „%s”\n"
  2049. "%s"
  2050. #, c-format
  2051. msgid ""
  2052. "Cannot fstat target file \"%s\"\n"
  2053. "%s"
  2054. msgstr ""
  2055. "Nie można wykonać polecenia stat na pliku docelowym „%s”\n"
  2056. "%s"
  2057. #, c-format
  2058. msgid ""
  2059. "Cannot preallocate space for target file \"%s\"\n"
  2060. "%s"
  2061. msgstr ""
  2062. "Nie można wcześniej przydzielić miejsca dla pliku docelowego „%s”\n"
  2063. "%s"
  2064. #, c-format
  2065. msgid ""
  2066. "Cannot read source file \"%s\"\n"
  2067. "%s"
  2068. msgstr ""
  2069. "Nie można odczytać pliku źródłowego „%s”\n"
  2070. "%s"
  2071. #, c-format
  2072. msgid ""
  2073. "Cannot write target file \"%s\"\n"
  2074. "%s"
  2075. msgstr ""
  2076. "Nie można zapisać do pliku docelowego „%s”\n"
  2077. "%s"
  2078. msgid "(stalled)"
  2079. msgstr "(wstrzymany)"
  2080. msgid "Incomplete file was retrieved"
  2081. msgstr "Pobrano niepełny plik"
  2082. msgid "&Keep"
  2083. msgstr "&Zachowaj"
  2084. msgid "&Continue copy"
  2085. msgstr "&Kontynuuj kopiowanie"
  2086. #, c-format
  2087. msgid ""
  2088. "Cannot close source file \"%s\"\n"
  2089. "%s"
  2090. msgstr ""
  2091. "Nie można zamknąć pliku źródłowego „%s”\n"
  2092. "%s"
  2093. #, c-format
  2094. msgid ""
  2095. "Cannot close target file \"%s\"\n"
  2096. "%s"
  2097. msgstr ""
  2098. "Nie można zamknąć pliku docelowego „%s”\n"
  2099. "%s"
  2100. #, fuzzy, c-format
  2101. msgid ""
  2102. "Cannot set attributes for target file \"%s\"\n"
  2103. "%s"
  2104. msgstr ""
  2105. "Nie można wykonać polecenia stat na pliku docelowym „%s”\n"
  2106. "%s"
  2107. #, c-format
  2108. msgid ""
  2109. "Cannot stat source directory \"%s\"\n"
  2110. "%s"
  2111. msgstr ""
  2112. "Nie można wykonać polecenia stat na katalogu źródłowym „%s”\n"
  2113. "%s"
  2114. #, fuzzy, c-format
  2115. msgid ""
  2116. "Cannot get attributes of source directory \"%s\"\n"
  2117. "%s"
  2118. msgstr ""
  2119. "Nie można wykonać polecenia stat na katalogu źródłowym „%s”\n"
  2120. "%s"
  2121. #, c-format
  2122. msgid ""
  2123. "Source \"%s\" is not a directory\n"
  2124. "%s"
  2125. msgstr ""
  2126. "Katalog źródłowy „%s” nie jest katalogiem\n"
  2127. "%s"
  2128. #, c-format
  2129. msgid ""
  2130. "Cannot copy cyclic symbolic link\n"
  2131. "\"%s\""
  2132. msgstr ""
  2133. "Nie można skopiować zapętlonego dowiązania symbolicznego\n"
  2134. "„%s”"
  2135. #, c-format
  2136. msgid ""
  2137. "Destination \"%s\" must be a directory\n"
  2138. "%s"
  2139. msgstr ""
  2140. "Plik docelowy „%s” musi być katalogiem\n"
  2141. "%s"
  2142. #, c-format
  2143. msgid ""
  2144. "Cannot create target directory \"%s\"\n"
  2145. "%s"
  2146. msgstr ""
  2147. "Nie można utworzyć katalogu docelowego „%s”\n"
  2148. "%s"
  2149. #, c-format
  2150. msgid ""
  2151. "Cannot chown target directory \"%s\"\n"
  2152. "%s"
  2153. msgstr ""
  2154. "Nie można zmienić właściciela katalogu docelowego „%s”\n"
  2155. "%s"
  2156. #, c-format
  2157. msgid "Directories: %zu, total size: %s"
  2158. msgstr "Katalogi: %zu, całkowity rozmiar: %s"
  2159. msgid "Sorry, I could not put the job in background"
  2160. msgstr "Nie można umieścić zadania w tle"
  2161. msgid "S&uspend"
  2162. msgstr "&Uśpij"
  2163. msgid "Con&tinue"
  2164. msgstr "Kon&tynuuj"
  2165. #, c-format
  2166. msgid "%d:%02d:%02d"
  2167. msgstr "%d:%02d:%02d"
  2168. #, c-format
  2169. msgid "ETA %s"
  2170. msgstr "ETA %s"
  2171. #, c-format
  2172. msgid "%.2f MB/s"
  2173. msgstr "%.2f MB/s"
  2174. #, c-format
  2175. msgid "%.2f KB/s"
  2176. msgstr "%.2f KB/s"
  2177. #, c-format
  2178. msgid "%ld B/s"
  2179. msgstr "%ld B/s"
  2180. msgid "New :"
  2181. msgstr "Nowy :"
  2182. msgid "Existing:"
  2183. msgstr "Istniejący:"
  2184. msgid "Overwrite this file?"
  2185. msgstr "Zastąpić ten plik?"
  2186. msgid "A&ppend"
  2187. msgstr "&Dołącz"
  2188. msgid "&Reget"
  2189. msgstr "&Wznów"
  2190. msgid "Overwrite all files?"
  2191. msgstr "Zastąpić wszystkie pliki?"
  2192. msgid "Don't overwrite with &zero length file"
  2193. msgstr "&Bez zastępowania plikiem o zerowej długości"
  2194. msgid "&Older"
  2195. msgstr "&Starszy"
  2196. msgid "S&maller"
  2197. msgstr "&Mniejszy"
  2198. msgid "&Size differs"
  2199. msgstr "&Rozmiary się różnią"
  2200. msgid "File exists"
  2201. msgstr "Plik istnieje"
  2202. msgid "Background process: File exists"
  2203. msgstr "Proces w tle: plik istnieje"
  2204. #, c-format
  2205. msgid "Files processed: %zu / %zu"
  2206. msgstr "Przetworzono pliki: %zu/%zu"
  2207. #, c-format
  2208. msgid "Files processed: %zu"
  2209. msgstr "Przetworzono pliki: %zu"
  2210. #, c-format
  2211. msgid "Time: %s %s"
  2212. msgstr "Czas: %s %s"
  2213. #, c-format
  2214. msgid "Time: %s %s (%s)"
  2215. msgstr "Czas: %s %s (%s)"
  2216. #, c-format
  2217. msgid "Time: %s"
  2218. msgstr "Czas: %s"
  2219. #, c-format
  2220. msgid "Time: %s (%s)"
  2221. msgstr "Czas: %s (%s)"
  2222. #, c-format
  2223. msgid " Total: %s "
  2224. msgstr " Razem: %s "
  2225. #, c-format
  2226. msgid " Total: %s / %s "
  2227. msgstr " Razem: %s/%s "
  2228. msgid "Source"
  2229. msgstr "Źródło"
  2230. msgid "Target"
  2231. msgstr "Cel"
  2232. msgid "Deleting"
  2233. msgstr "Usuwanie"
  2234. msgid "&Using shell patterns"
  2235. msgstr "&Wzorce dopasowywania"
  2236. msgid "to:"
  2237. msgstr "do:"
  2238. msgid "Follow &links"
  2239. msgstr "Podążanie za &dowiązaniami"
  2240. msgid "Preserve &attributes"
  2241. msgstr "&Zachowanie atrybutów"
  2242. msgid "Di&ve into subdir if exists"
  2243. msgstr "&Schodzenie do podkat."
  2244. msgid "&Stable symlinks"
  2245. msgstr "Zachowanie dowiązań s&ymb."
  2246. msgid "&Background"
  2247. msgstr "&W tle"
  2248. #, c-format
  2249. msgid "Invalid source pattern '%s'"
  2250. msgstr "Nieprawidłowy wzór źródłowy „%s”"
  2251. msgid "File listin&g"
  2252. msgstr "&Lista plików"
  2253. msgid "&Quick view"
  2254. msgstr "&Szybki widok"
  2255. msgid "&Info"
  2256. msgstr "&Informacje"
  2257. msgid "&Tree"
  2258. msgstr "&Drzewo"
  2259. msgid "&Listing format..."
  2260. msgstr "&Format wyświetlania…"
  2261. msgid "&Sort order..."
  2262. msgstr "Porządek s&ortowania…"
  2263. msgid "&Filter..."
  2264. msgstr "&Filtr…"
  2265. msgid "&Encoding..."
  2266. msgstr "&Kodowanie…"
  2267. msgid "FT&P link..."
  2268. msgstr "Połączenie FT&P…"
  2269. msgid "S&hell link..."
  2270. msgstr "Połączenie po po&włoce…"
  2271. msgid "SFTP li&nk..."
  2272. msgstr "Połączenie SF&TP…"
  2273. msgid "Paneli&ze"
  2274. msgstr "Filtru&j"
  2275. msgid "&Rescan"
  2276. msgstr "Odświ&eż"
  2277. msgid "&View"
  2278. msgstr "&Podgląd"
  2279. msgid "Vie&w file..."
  2280. msgstr "Pod&gląd pliku…"
  2281. msgid "&Filtered view"
  2282. msgstr "Widok &filtrowany"
  2283. msgid "&Copy"
  2284. msgstr "&Skopiuj"
  2285. msgid "C&hmod"
  2286. msgstr "Z&mień uprawnienia"
  2287. msgid "&Link"
  2288. msgstr "&Dowiąż"
  2289. msgid "&Symlink"
  2290. msgstr "Dowiąż symbo&licznie"
  2291. msgid "Relative symlin&k"
  2292. msgstr "&Względne dowiązanie symboliczne"
  2293. msgid "Edit s&ymlink"
  2294. msgstr "Modyfikuj dowiązanie s&ymboliczne"
  2295. msgid "Ch&own"
  2296. msgstr "Zm&ień właściciela"
  2297. msgid "&Advanced chown"
  2298. msgstr "Z&aawansowana zmiana właściciela"
  2299. msgid "Cha&ttr"
  2300. msgstr "Zmień a&trybuty"
  2301. msgid "&Rename/Move"
  2302. msgstr "Zmień nazwę/p&rzenieś"
  2303. msgid "&Mkdir"
  2304. msgstr "Utwórz &katalog"
  2305. msgid "&Quick cd"
  2306. msgstr "Szybka zmiana kata&logu"
  2307. msgid "Select &group"
  2308. msgstr "&Zaznacz grupę"
  2309. msgid "U&nselect group"
  2310. msgstr "Odz&nacz grupę"
  2311. msgid "&Invert selection"
  2312. msgstr "&Odwróć zaznaczenie"
  2313. msgid "E&xit"
  2314. msgstr "Zakoń&cz"
  2315. msgid "&User menu"
  2316. msgstr "Menu &użytkownika"
  2317. msgid "&Directory tree"
  2318. msgstr "&Drzewo katalogów"
  2319. msgid "&Find file"
  2320. msgstr "&Znajdź plik"
  2321. msgid "S&wap panels"
  2322. msgstr "&Przełącz panele"
  2323. msgid "Switch &panels on/off"
  2324. msgstr "Prz&ełącz wyświetlanie paneli"
  2325. msgid "&Compare directories"
  2326. msgstr "P&orównaj katalogi"
  2327. msgid "C&ompare files"
  2328. msgstr "P&orównaj pliki"
  2329. msgid "E&xternal panelize"
  2330. msgstr "Filtr ze&wnętrzny"
  2331. msgid "Show directory s&izes"
  2332. msgstr "Wyśw&ietl rozmiary katalogów"
  2333. msgid "Command &history"
  2334. msgstr "&Historia poleceń"
  2335. msgid "Viewed/edited files hi&story"
  2336. msgstr "Hi&storia wyświetlonych/zmodyfikowanych plików"
  2337. msgid "Di&rectory hotlist"
  2338. msgstr "Lista pod&ręcznych katalogów"
  2339. msgid "&Active VFS list"
  2340. msgstr "Lista &aktywnych VFS"
  2341. msgid "&Background jobs"
  2342. msgstr "Zadania w &tle"
  2343. msgid "Screen lis&t"
  2344. msgstr "&Lista ekranów"
  2345. msgid "&Undelete files (ext2fs only)"
  2346. msgstr "&Odtwórz pliki (tylko system plików ext2)"
  2347. msgid "&Listing format edit"
  2348. msgstr "Modyfikacja &formatu wyświetlania"
  2349. msgid "Edit &extension file"
  2350. msgstr "Modyfikuj plik rozsz&erzeń"
  2351. msgid "Edit &menu file"
  2352. msgstr "Modyfikuj plik &menu"
  2353. msgid "Edit hi&ghlighting group file"
  2354. msgstr "Modyfikuj plik wyróżniania &grup"
  2355. msgid "&Configuration..."
  2356. msgstr "&Konfiguracja…"
  2357. msgid "&Layout..."
  2358. msgstr "&Układ…"
  2359. msgid "&Panel options..."
  2360. msgstr "Opcje &panelu…"
  2361. msgid "C&onfirmation..."
  2362. msgstr "P&otwierdzenia…"
  2363. msgid "&Appearance..."
  2364. msgstr "W&ygląd…"
  2365. msgid "&Display bits..."
  2366. msgstr "&Wyświetlane bity…"
  2367. msgid "&Virtual FS..."
  2368. msgstr "Wirtualny &system plików…"
  2369. msgid "Panels:"
  2370. msgstr "Panele:"
  2371. #, c-format
  2372. msgid "You have %zu opened screen. Quit anyway?"
  2373. msgid_plural "You have %zu opened screens. Quit anyway?"
  2374. msgstr[0] "Pozostał %zu otwarty ekran. Zakończyć mimo to?"
  2375. msgstr[1] "Pozostały %zu otwarte ekrany. Zakończyć mimo to?"
  2376. msgstr[2] "Pozostało %zu otwartych ekranów. Zakończyć mimo to?"
  2377. msgstr[3] "Pozostało %zu otwartych ekranów. Zakończyć mimo to?"
  2378. msgid "The Midnight Commander"
  2379. msgstr "Midnight Commander"
  2380. msgid "Do you really want to quit the Midnight Commander?"
  2381. msgstr "Na pewno zakończyć program Midnight Commander?"
  2382. msgid "&Above"
  2383. msgstr "P&owyżej"
  2384. msgid "&Left"
  2385. msgstr "&Lewy"
  2386. msgid "&Below"
  2387. msgstr "&Poniżej"
  2388. msgid "&Right"
  2389. msgstr "P&rawy"
  2390. msgid "ButtonBar|Menu"
  2391. msgstr "Menu"
  2392. msgid "ButtonBar|View"
  2393. msgstr "Podgld"
  2394. msgid "ButtonBar|RenMov"
  2395. msgstr "Przen"
  2396. msgid "ButtonBar|Mkdir"
  2397. msgstr "UtwKat"
  2398. msgid "&Chdir"
  2399. msgstr "&Zmień katalog"
  2400. msgid "&Again"
  2401. msgstr "&Ponownie"
  2402. msgid "Pane&lize"
  2403. msgstr "Fi&ltruj"
  2404. msgid "&View - F3"
  2405. msgstr "&Podgląd — F3"
  2406. msgid "&Edit - F4"
  2407. msgstr "&Edycja — F4"
  2408. #, c-format
  2409. msgid "Found: %lu"
  2410. msgstr "Odnaleziono: %lu"
  2411. msgid "Malformed regular expression"
  2412. msgstr "Błędnie sformatowane wyrażenie regularne"
  2413. msgid "File name:"
  2414. msgstr "Nazwa pliku:"
  2415. msgid "&Find recursively"
  2416. msgstr "&Znajdź rekurencyjnie"
  2417. msgid "Follow s&ymlinks"
  2418. msgstr "Podążanie za dowiązaniami s&ymbolicznymi"
  2419. msgid "S&kip hidden"
  2420. msgstr "Pomiń u&kryte"
  2421. msgid "Content:"
  2422. msgstr "Zawartość:"
  2423. msgid "Sea&rch for content"
  2424. msgstr "Wyszukiwanie zawar&tości"
  2425. msgid "Case sens&itive"
  2426. msgstr "Rozróżn&ianie wielkości"
  2427. msgid "A&ll charsets"
  2428. msgstr "Wsz&ystkie zest. znaków"
  2429. msgid "Fir&st hit"
  2430. msgstr "&Pierwsze trafienie"
  2431. msgid "Find File"
  2432. msgstr "Wyszukiwanie pliku"
  2433. msgid "Start at:"
  2434. msgstr "Rozpoczęcie w:"
  2435. msgid "Ena&ble ignore directories:"
  2436. msgstr "Włączenie ig&norowania katalogów:"
  2437. #, c-format
  2438. msgid "Grepping in %s"
  2439. msgstr "Wyszukiwanie w %s"
  2440. msgid "Finished"
  2441. msgstr "Ukończono"
  2442. #, c-format
  2443. msgid "Finished (ignored %zu directory)"
  2444. msgid_plural "Finished (ignored %zu directories)"
  2445. msgstr[0] "Ukończono (zignorowano %zu katalog)"
  2446. msgstr[1] "Ukończono (zignorowano %zu katalogi)"
  2447. msgstr[2] "Ukończono (zignorowano %zu katalogów)"
  2448. msgstr[3] "Ukończono (zignorowano %zu katalogów)"
  2449. #, c-format
  2450. msgid "Find File: \"%s\". Content: \"%s\""
  2451. msgstr "Wyszukiwanie pliku: „%s”. Zawartość: „%s”"
  2452. #, c-format
  2453. msgid "Find File: \"%s\""
  2454. msgstr "Wyszukiwanie pliku: „%s”"
  2455. msgid "Searching"
  2456. msgstr "Wyszukiwanie"
  2457. msgid "Change &to"
  2458. msgstr "Zmień &na"
  2459. msgid "&Free VFSs now"
  2460. msgstr "Z&wolnij VFS"
  2461. msgid "&Refresh"
  2462. msgstr "&Odśwież"
  2463. msgid "&Add current"
  2464. msgstr "Doda&j bieżący"
  2465. msgid "&Up"
  2466. msgstr "&W górę"
  2467. msgid "New &group"
  2468. msgstr "Nowa &grupa"
  2469. msgid "New &entry"
  2470. msgstr "Nowy wpi&s"
  2471. msgid "&Insert"
  2472. msgstr "&Wstaw"
  2473. msgid "&Remove"
  2474. msgstr "&Usuń"
  2475. msgid "Subgroup - press ENTER to see list"
  2476. msgstr "Podgrupa — ENTER wyświetla listę"
  2477. msgid "Active VFS directories"
  2478. msgstr "Aktywne katalogi VFS"
  2479. msgid "Directory hotlist"
  2480. msgstr "Lista podręcznych katalogów"
  2481. msgid "Top level group"
  2482. msgstr "Grupa główna"
  2483. msgid "Directory path"
  2484. msgstr "Ścieżka katalogu"
  2485. #, c-format
  2486. msgid "Moving %s"
  2487. msgstr "Przenoszenie %s"
  2488. msgid "Directory label"
  2489. msgstr "Etykieta katalogu"
  2490. msgid "&Append"
  2491. msgstr "D&ołącz"
  2492. msgid "New hotlist entry"
  2493. msgstr "Nowy wpis podręczny"
  2494. msgid "Directory label:"
  2495. msgstr "Etykieta katalogu:"
  2496. msgid "Directory path:"
  2497. msgstr "Ścieżka katalogu:"
  2498. msgid "New hotlist group"
  2499. msgstr "Nowa grupa podręczna"
  2500. msgid "Name of new group:"
  2501. msgstr "Nazwa nowej grupy:"
  2502. #, c-format
  2503. msgid "Are you sure you want to remove entry \"%s\"?"
  2504. msgstr "Na pewno usunąć wpis „%s”?"
  2505. #, c-format
  2506. msgid ""
  2507. "Group \"%s\" is not empty.\n"
  2508. "Remove it?"
  2509. msgstr ""
  2510. "Grupa „%s” nie jest pusta.\n"
  2511. "Usunąć ją?"
  2512. msgid "Hotlist Load"
  2513. msgstr "Wczytaj listę podręcznych katalogów"
  2514. #, c-format
  2515. msgid ""
  2516. "MC was unable to write %s file,\n"
  2517. "your old hotlist entries were not deleted"
  2518. msgstr ""
  2519. "Program MC nie może zapisać pliku %s.\n"
  2520. "Poprzednie wpisy listy podręcznych katalogów\n"
  2521. "nie zostały usunięte"
  2522. #, c-format
  2523. msgid "Label for \"%s\":"
  2524. msgstr "Etykieta dla „%s”:"
  2525. msgid "Add to hotlist"
  2526. msgstr "Dodaj do podręcznych"
  2527. #, c-format
  2528. msgid "Midnight Commander %s"
  2529. msgstr "Midnight Commander %s"
  2530. #, c-format
  2531. msgid "File: %s"
  2532. msgstr "Plik: %s"
  2533. msgid "No node information"
  2534. msgstr "Brak informacji o węźle"
  2535. msgid "Free nodes:"
  2536. msgstr "Wolne węzły:"
  2537. msgid "No space information"
  2538. msgstr "Brak informacji o miejscu"
  2539. #, c-format
  2540. msgid "Free space: %s / %s (%d%%)"
  2541. msgstr "Wolne miejsce: %s/%s (%d%%)"
  2542. #, c-format
  2543. msgid "Type: %s"
  2544. msgstr "Typ: %s"
  2545. msgid "non-local vfs"
  2546. msgstr "zdalny VFS"
  2547. #, c-format
  2548. msgid "Device: %s"
  2549. msgstr "Urządzenie: %s"
  2550. #, c-format
  2551. msgid "Filesystem: %s"
  2552. msgstr "System plików: %s"
  2553. #, c-format
  2554. msgid "Accessed: %s"
  2555. msgstr "Dostęp: %s"
  2556. #, c-format
  2557. msgid "Modified: %s"
  2558. msgstr "Zmodyfikowano: %s"
  2559. #. TRANSLATORS: Time of last status change as in stat(2) man.
  2560. #, c-format
  2561. msgid "Changed: %s"
  2562. msgstr "Zmieniono: %s"
  2563. #, c-format
  2564. msgid "Dev. type: major %lu, minor %lu"
  2565. msgstr "Urządzenie: numer %lu, podnumer %lu"
  2566. #, c-format
  2567. msgid "Size: %s"
  2568. msgstr "Rozmiar: %s"
  2569. #, c-format
  2570. msgid " (%lu block)"
  2571. msgid_plural " (%lu blocks)"
  2572. msgstr[0] " (%lu blok)"
  2573. msgstr[1] " (%lu bloki)"
  2574. msgstr[2] " (%lu bloków)"
  2575. msgstr[3] " (%lu bloków)"
  2576. #, c-format
  2577. msgid "Owner: %s/%s"
  2578. msgstr "Właściciel: %s/%s"
  2579. #, c-format
  2580. msgid "Links: %d"
  2581. msgstr "Dowiązania: %d"
  2582. #, c-format
  2583. msgid "Attributes: %s"
  2584. msgstr "Atrybuty: %s"
  2585. msgid "Attributes: unavailable"
  2586. msgstr "Atrybuty: niedostępne"
  2587. #, c-format
  2588. msgid "Mode: %s (%04o)"
  2589. msgstr "Tryb: %s (%04o)"
  2590. #, c-format
  2591. msgid "Location: %Xh:%Xh"
  2592. msgstr "Położenie: %Xh:%Xh"
  2593. msgid "&Equal split"
  2594. msgstr "Równy &podział"
  2595. msgid "&Menubar visible"
  2596. msgstr "Pasek &menu"
  2597. msgid "Command &prompt"
  2598. msgstr "&Znak zachęty"
  2599. msgid "&Keybar visible"
  2600. msgstr "Pasek &klawiszy"
  2601. msgid "H&intbar visible"
  2602. msgstr "Pasek &porad"
  2603. msgid "&XTerm window title"
  2604. msgstr "Tytuł okna &Xterm"
  2605. msgid "&Show free space"
  2606. msgstr "Wol&ne miejsce"
  2607. msgid "Panel split"
  2608. msgstr "Podział na panele"
  2609. msgid "Console output"
  2610. msgstr "Wyjście konsoli"
  2611. msgid "&Vertical"
  2612. msgstr "P&ionowy"
  2613. msgid "&Horizontal"
  2614. msgstr "Poziom&y"
  2615. msgid "Output lines:"
  2616. msgstr "Wiersze wyjścia:"
  2617. msgid "Layout"
  2618. msgstr "Układ"
  2619. msgid "Memory exhausted!"
  2620. msgstr "Wyczerpano pamięć"
  2621. #. TRANSLATORS: one single character to represent 'unsorted' sort mode
  2622. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2623. msgid "sort|u"
  2624. msgstr "u"
  2625. msgid "&Unsorted"
  2626. msgstr "Nie&uporządkowane"
  2627. #. TRANSLATORS: one single character to represent 'name' sort mode
  2628. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2629. msgid "sort|n"
  2630. msgstr "n"
  2631. msgid "&Name"
  2632. msgstr "&Nazwa"
  2633. #. TRANSLATORS: one single character to represent 'version' sort mode
  2634. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2635. msgid "sort|v"
  2636. msgstr "w"
  2637. msgid "&Version"
  2638. msgstr "&Wersja"
  2639. #. TRANSLATORS: one single character to represent 'extension' sort mode
  2640. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2641. msgid "sort|e"
  2642. msgstr "e"
  2643. msgid "E&xtension"
  2644. msgstr "Rozsz&erzenie"
  2645. #. TRANSLATORS: one single character to represent 'size' sort mode
  2646. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2647. msgid "sort|s"
  2648. msgstr "r"
  2649. msgid "&Size"
  2650. msgstr "&Rozmiar"
  2651. msgid "Block Size"
  2652. msgstr "Rozmiar bloku"
  2653. #. TRANSLATORS: one single character to represent 'Modify time' sort mode
  2654. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2655. msgid "sort|m"
  2656. msgstr "m"
  2657. msgid "&Modify time"
  2658. msgstr "&Modyfikacja"
  2659. #. TRANSLATORS: one single character to represent 'Access time' sort mode
  2660. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2661. msgid "sort|a"
  2662. msgstr "d"
  2663. msgid "&Access time"
  2664. msgstr "&Dostęp"
  2665. #. TRANSLATORS: one single character to represent 'Change time' sort mode
  2666. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2667. msgid "sort|h"
  2668. msgstr "z"
  2669. msgid "C&hange time"
  2670. msgstr "&Zmiana"
  2671. msgid "Perm"
  2672. msgstr "Prawa"
  2673. msgid "Nl"
  2674. msgstr "Ld"
  2675. #. TRANSLATORS: one single character to represent 'inode' sort mode
  2676. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2677. msgid "sort|i"
  2678. msgstr "i"
  2679. msgid "&Inode"
  2680. msgstr "&I-węzeł"
  2681. msgid "UID"
  2682. msgstr "UID"
  2683. msgid "GID"
  2684. msgstr "GID"
  2685. msgid "Owner"
  2686. msgstr "Właściciel"
  2687. msgid "Group"
  2688. msgstr "Grupa"
  2689. msgid "[dev]"
  2690. msgstr "[urz]"
  2691. msgid "UP--DIR"
  2692. msgstr "NADRZĘD"
  2693. msgid "SYMLINK"
  2694. msgstr "DOW-SYM"
  2695. msgid "SUB-DIR"
  2696. msgstr "PODKAT"
  2697. msgid "<readlink failed>"
  2698. msgstr "<readlink się nie powiodło>"
  2699. #, c-format
  2700. msgid "%s in %d file"
  2701. msgid_plural "%s in %d files"
  2702. msgstr[0] "%s w %d pliku"
  2703. msgstr[1] "%s w %d plikach"
  2704. msgstr[2] "%s w %d plikach"
  2705. msgstr[3] "%s w %d plikach"
  2706. msgid "Panelize"
  2707. msgstr "Filtruj"
  2708. msgid "Unknown tag on display format:"
  2709. msgstr "Nieznany znacznik w formacie wyświetlania:"
  2710. msgid "&Files only"
  2711. msgstr "&Tylko pliki"
  2712. msgid "&Case sensitive"
  2713. msgstr "&Rozróż. wielkości"
  2714. msgid "Select"
  2715. msgstr "Wybierz"
  2716. msgid "Unselect"
  2717. msgstr "Odznacz"
  2718. msgid "Filter"
  2719. msgstr "Filtr"
  2720. msgid "Do you really want to execute?"
  2721. msgstr "Na pewno wykonać?"
  2722. msgid "Cannot read directory contents"
  2723. msgstr "Nie można odczytać zawartości katalogu"
  2724. msgid "User supplied format looks invalid, reverting to default."
  2725. msgstr "Format użytkownika jest nieprawidłowy, przywrócono domyślny."
  2726. msgid "&Add new"
  2727. msgstr "Dod&aj nowy"
  2728. msgid "External panelize"
  2729. msgstr "Filtr zewnętrzny"
  2730. msgid "Other command"
  2731. msgstr "Inne polecenie"
  2732. msgid "Command"
  2733. msgstr "Polecenie"
  2734. msgid "Add to external panelize"
  2735. msgstr "Dodaj do filtrów zewnętrznych"
  2736. msgid "Enter command label:"
  2737. msgstr "Etykieta polecenia:"
  2738. #, c-format
  2739. msgid ""
  2740. "External panelize:\n"
  2741. "%s"
  2742. msgstr ""
  2743. "Filtr zewnętrzny:\n"
  2744. "%s"
  2745. #, c-format
  2746. msgid ""
  2747. "External panelize:\n"
  2748. "failed to read data from child stdout:\n"
  2749. "%s"
  2750. msgstr ""
  2751. "Filtr zewnętrzny:\n"
  2752. "odczytanie danych z potomnego standardowego wyjścia się nie powiodło:\n"
  2753. "%s"
  2754. msgid "Cannot run external panelize in a non-local directory"
  2755. msgstr "Filtr zewnętrzny można uruchamiać tylko w lokalnym katalogu"
  2756. msgid "Modified git files"
  2757. msgstr "Modyfikowane pliki git"
  2758. msgid "Find rejects after patching"
  2759. msgstr "Znajdź odrzuty po łataniu"
  2760. msgid "Find *.orig after patching"
  2761. msgstr "Znajdź pliki *.orig po łataniu"
  2762. msgid "Find SUID and SGID programs"
  2763. msgstr "Znajdź programy SUID i SGID"
  2764. #, c-format
  2765. msgid ""
  2766. "Cannot open the %s file for writing:\n"
  2767. "%s\n"
  2768. msgstr ""
  2769. "Nie można otworzyć pliku %s do zapisania:\n"
  2770. "%s\n"
  2771. #, c-format
  2772. msgid "Copy \"%s\" directory to:"
  2773. msgstr "Skopiuj katalog „%s” do:"
  2774. #, c-format
  2775. msgid "Move \"%s\" directory to:"
  2776. msgstr "Przenieś katalog „%s” do:"
  2777. #, c-format
  2778. msgid ""
  2779. "Cannot stat the destination\n"
  2780. "%s"
  2781. msgstr ""
  2782. "Nie można wykonać polecenia stat na pliku docelowym\n"
  2783. "%s"
  2784. #, c-format
  2785. msgid "Delete %s?"
  2786. msgstr "Usunąć %s?"
  2787. msgid "ButtonBar|Static"
  2788. msgstr "Statyc"
  2789. msgid "ButtonBar|Dynamc"
  2790. msgstr "Dynam"
  2791. msgid "ButtonBar|Rescan"
  2792. msgstr "Odśwż"
  2793. msgid "ButtonBar|Forget"
  2794. msgstr "Odrzuć"
  2795. msgid "ButtonBar|Rmdir"
  2796. msgstr "UsuńKt"
  2797. #, c-format
  2798. msgid ""
  2799. "Cannot write to the %s file:\n"
  2800. "%s\n"
  2801. msgstr ""
  2802. "Nie można zapisać do pliku %s:\n"
  2803. "%s\n"
  2804. msgid "Help file format error\n"
  2805. msgstr "Błąd formatu pliku pomocy\n"
  2806. msgid "Internal bug: Double start of link area"
  2807. msgstr "Błąd wewnętrzny: zagnieżdżony początek obszaru odsyłacza"
  2808. #, c-format
  2809. msgid "Cannot find node %s in help file"
  2810. msgstr "Nie można odnaleźć węzła %s w pliku pomocy"
  2811. msgid "Help"
  2812. msgstr "Pomoc"
  2813. msgid "ButtonBar|Index"
  2814. msgstr "Indeks"
  2815. msgid "ButtonBar|Prev"
  2816. msgstr "Poprz"
  2817. msgid "Learn keys"
  2818. msgstr "Określenie klawiszy"
  2819. msgid "Teach me a key"
  2820. msgstr "Nauka klawiszy"
  2821. #, c-format
  2822. msgid ""
  2823. "Please press the %s\n"
  2824. "and then wait until this message disappears.\n"
  2825. "\n"
  2826. "Then, press it again to see if OK appears\n"
  2827. "next to its button.\n"
  2828. "\n"
  2829. "If you want to escape, press a single Escape key\n"
  2830. "and wait as well."
  2831. msgstr ""
  2832. "Proszę nacisnąć klawisz %s\n"
  2833. "i poczekaj na zniknięcie tej wiadomości.\n"
  2834. "\n"
  2835. "Następnie proszę nacisnąć ponownie, aby przy\n"
  2836. "odpowiednim klawiszu pojawił się napis OK.\n"
  2837. "\n"
  2838. "Aby zrezygnować, należy nacisnąć klawisz Escape\n"
  2839. "i poczekać."
  2840. msgid "Cannot accept this key"
  2841. msgstr "Nie można zaakceptować tego klawisza"
  2842. #, c-format
  2843. msgid "You have entered \"%s\""
  2844. msgstr "Wprowadzono „%s”"
  2845. #. TRANSLATORS: This label appears near learned keys. Keep it short.
  2846. msgid "OK"
  2847. msgstr "OK"
  2848. msgid ""
  2849. "It seems that all your keys already\n"
  2850. "work fine. That's great."
  2851. msgstr ""
  2852. "Wygląda na to, że klawisze działają\n"
  2853. "już poprawnie."
  2854. msgid "&Discard"
  2855. msgstr "&Odrzuć"
  2856. msgid ""
  2857. "Great! You have a complete terminal database!\n"
  2858. "All your keys work well."
  2859. msgstr ""
  2860. "Uzyskano pełną bazę danych terminali.\n"
  2861. "Wszystkie klawisze działają właściwie."
  2862. msgid ""
  2863. "Press all the keys mentioned here. After you have done it, check\n"
  2864. "which keys are not marked with OK. Press space on the missing\n"
  2865. "key, or click with the mouse to define it. Move around with Tab."
  2866. msgstr ""
  2867. "Proszę nacisnąć wszystkie wymienione tutaj klawisze. Po zrobieniu\n"
  2868. "tego proszę sprawdzić, które klawisze nie są oznaczone jako OK.\n"
  2869. "Proszę nacisnąć spację na brakującym klawiszu lub nacisnąć przycisk\n"
  2870. "myszy, aby go określić. Można się przemieszczać za pomocą klawisza Tab."
  2871. #, c-format
  2872. msgid ""
  2873. "Failed to run:\n"
  2874. "%s\n"
  2875. msgstr ""
  2876. "Wykonanie się nie powiodło:\n"
  2877. "%s\n"
  2878. msgid "Home directory path is not absolute"
  2879. msgstr "Ścieżka do katalogu domowego nie jest bezwzględna"
  2880. msgid ""
  2881. "GNU Midnight Commander\n"
  2882. "is already running on this terminal.\n"
  2883. "Subshell support will be disabled."
  2884. msgstr ""
  2885. "Program GNU Midnight Commander\n"
  2886. "jest już uruchomiony w tym terminalu.\n"
  2887. "Obsługa podpowłoki będzie wyłączona."
  2888. #, c-format
  2889. msgid ""
  2890. "\n"
  2891. "Failed while close:\n"
  2892. "%s\n"
  2893. msgstr ""
  2894. "\n"
  2895. "Niepowodzenie podczas zamykania:\n"
  2896. "%s\n"
  2897. msgid "Choose codepage"
  2898. msgstr "Wybór strony kodowej"
  2899. msgid "- < No translation >"
  2900. msgstr "— < Bez tłumaczenia >"
  2901. msgid "%b %e %Y"
  2902. msgstr "%-d %b %Y"
  2903. msgid "%b %e %H:%M"
  2904. msgstr "%-d %b, %H:%M"
  2905. #, c-format
  2906. msgid ""
  2907. "Cannot save file %s:\n"
  2908. "%s"
  2909. msgstr ""
  2910. "Nie można zapisać pliku %s:\n"
  2911. "%s"
  2912. #, c-format
  2913. msgid "Cannot open named pipe %s\n"
  2914. msgstr "Nie można otworzyć nazwanego potoku %s\n"
  2915. msgid "The shell is still active. Quit anyway?"
  2916. msgstr "Powłoka jest wciąż aktywna. Zakończyć mimo to?"
  2917. #, c-format
  2918. msgid "Warning: Cannot change to %s.\n"
  2919. msgstr "Ostrzeżenie: nie można zmienić katalogu na %s.\n"
  2920. #, fuzzy
  2921. msgid "With builtin editor and aspell support"
  2922. msgstr "Z wbudowanym edytorem i obsługą Aspell"
  2923. #, fuzzy
  2924. msgid "With builtin editor"
  2925. msgstr "Z wbudowanym edytorem"
  2926. msgid "With optional subshell support"
  2927. msgstr "Z opcjonalną obsługą podpowłoki"
  2928. msgid "With subshell support as default"
  2929. msgstr "Z domyślną obsługą podpowłoki"
  2930. msgid "With support for background operations"
  2931. msgstr "Z obsługą wykonywania działań w tle"
  2932. msgid "With mouse support on xterm and Linux console"
  2933. msgstr "Z obsługą myszy w xterm i konsoli Linuksa"
  2934. msgid "With mouse support on xterm"
  2935. msgstr "Z obsługą myszy w xterm"
  2936. msgid "With support for X11 events"
  2937. msgstr "Z obsługą zdarzeń X11"
  2938. msgid "With internationalization support"
  2939. msgstr "Z obsługą wielu języków"
  2940. msgid "With multiple codepages support"
  2941. msgstr "Z obsługą wielu stron kodowych"
  2942. msgid "With ext2fs attributes support"
  2943. msgstr "Z obsługą atrybutów ext2fs"
  2944. #, c-format
  2945. msgid "Built with GLib %d.%d.%d\n"
  2946. msgstr "Zbudowano za pomocą biblioteki GLib %d.%d.%d\n"
  2947. #, c-format
  2948. msgid "Built with S-Lang %s with terminfo database\n"
  2949. msgstr "Zbudowano za pomocą biblioteki S-Lang %s z bazą danych terminfo\n"
  2950. #, c-format
  2951. msgid "Built with ncurses %s\n"
  2952. msgstr "Zbudowano za pomocą biblioteki ncurses %s\n"
  2953. msgid "Built with ncurses (unknown version)"
  2954. msgstr "Zbudowano za pomocą biblioteki ncurses (nieznana wersja)"
  2955. #, c-format
  2956. msgid "Built with ncursesw %s\n"
  2957. msgstr "Zbudowano za pomocą biblioteki ncursesw %s\n"
  2958. msgid "Built with ncursesw (unknown version)"
  2959. msgstr "Zbudowano za pomocą biblioteki ncursesw (nieznana wersja)"
  2960. #, c-format
  2961. msgid "Built with libssh2 %d.%d.%d\n"
  2962. msgstr "Zbudowano za pomocą biblioteki libssh2 %d.%d.%d\n"
  2963. msgid "Virtual File Systems:"
  2964. msgstr "Wirtualne systemy plików:"
  2965. msgid "Data types:"
  2966. msgstr "Typy danych:"
  2967. msgid "Home directory:"
  2968. msgstr "Katalog domowy:"
  2969. msgid "Profile root directory:"
  2970. msgstr "Główny katalog profilu:"
  2971. msgid "System data"
  2972. msgstr "Dane systemu"
  2973. msgid "Config directory:"
  2974. msgstr "Katalog konfiguracji:"
  2975. msgid "Data directory:"
  2976. msgstr "Katalog danych:"
  2977. msgid "File extension handlers:"
  2978. msgstr "Obsługa rozszerzeń plików:"
  2979. msgid "VFS plugins and scripts:"
  2980. msgstr "Wtyczki i skrypty VFS:"
  2981. msgid "User data"
  2982. msgstr "Dane użytkownika"
  2983. msgid "Cache directory:"
  2984. msgstr "Katalog pamięci podręcznej:"
  2985. msgid "Debug"
  2986. msgstr "Debugowanie"
  2987. msgid "ERROR:"
  2988. msgstr "BŁĄD:"
  2989. msgid "True:"
  2990. msgstr "Prawda:"
  2991. msgid "False:"
  2992. msgstr "Fałsz:"
  2993. msgid "Error calling program"
  2994. msgstr "Błąd podczas wywoływania programu"
  2995. msgid "Warning -- ignoring file"
  2996. msgstr "Ostrzeżenie - ignorowanie pliku"
  2997. #, c-format
  2998. msgid ""
  2999. "File %s is not owned by root or you or is world writable.\n"
  3000. "Using it may compromise your security"
  3001. msgstr ""
  3002. "Właścicielem pliku %s jest root i jest on zapisywalny przez\n"
  3003. "wszystkich. Użycie go może negatywnie wpłynąć na bezpieczeństwo"
  3004. msgid "Format error on file Extensions File"
  3005. msgstr "Błąd formatu pliku rozszerzeń"
  3006. #, c-format
  3007. msgid "The %%var macro has no default"
  3008. msgstr "Makro %%var nie ma wartości domyślnej"
  3009. #, c-format
  3010. msgid "The %%var macro has no variable"
  3011. msgstr "Makro %%var nie ma zmiennych"
  3012. #, c-format
  3013. msgid "No suitable entries found in %s"
  3014. msgstr "Nie odnaleziono odpowiednich wpisów w %s"
  3015. msgid "User menu"
  3016. msgstr "Menu użytkownika"
  3017. #, c-format
  3018. msgid ""
  3019. "Cannot open cpio archive\n"
  3020. "%s"
  3021. msgstr ""
  3022. "Nie można otworzyć archiwum cpio\n"
  3023. "%s"
  3024. #, c-format
  3025. msgid ""
  3026. "Premature end of cpio archive\n"
  3027. "%s"
  3028. msgstr ""
  3029. "Przedwczesny koniec archiwum cpio\n"
  3030. "%s"
  3031. #, c-format
  3032. msgid ""
  3033. "Inconsistent hardlinks of\n"
  3034. "%s\n"
  3035. "in cpio archive\n"
  3036. "%s"
  3037. msgstr ""
  3038. "Niespójne twarde dowiązania pliku\n"
  3039. "%s\n"
  3040. "w archiwum cpio\n"
  3041. "%s"
  3042. #, c-format
  3043. msgid "%s contains duplicate entries! Skipping!"
  3044. msgstr "%s zawiera podwójne wpisy. Pomijanie."
  3045. #, c-format
  3046. msgid ""
  3047. "Corrupted cpio header encountered in\n"
  3048. "%s"
  3049. msgstr ""
  3050. "Wystąpił uszkodzony nagłówek cpio w\n"
  3051. "%s"
  3052. #, c-format
  3053. msgid ""
  3054. "Unexpected end of file\n"
  3055. "%s"
  3056. msgstr ""
  3057. "Nieoczekiwany koniec pliku\n"
  3058. "%s"
  3059. msgid "Inconsistent archive"
  3060. msgstr "Niespójne archiwum"
  3061. #, c-format
  3062. msgid ""
  3063. "Cannot open %s archive\n"
  3064. "%s:\n"
  3065. "%s"
  3066. msgstr ""
  3067. "Nie można otworzyć archiwum %s\n"
  3068. "%s:\n"
  3069. "%s"
  3070. #, c-format
  3071. msgid ""
  3072. "EXTFS virtual file system:\n"
  3073. "%s"
  3074. msgstr ""
  3075. "Wirtualny system plików EXTFS:\n"
  3076. "%s"
  3077. msgid ""
  3078. "EXTFS virtual file system:\n"
  3079. "wrong file name"
  3080. msgstr ""
  3081. "Wirtualny system plików EXTFS:\n"
  3082. "błędna nazwa pliku"
  3083. msgid ""
  3084. "EXTFS virtual file system:\n"
  3085. "wrong archive name"
  3086. msgstr ""
  3087. "Wirtualny system plików EXTFS:\n"
  3088. "błędna nazwa archiwum"
  3089. msgid ""
  3090. "EXTFS virtual file system:\n"
  3091. "cannot build command"
  3092. msgstr ""
  3093. "Wirtualny system plików EXTFS:\n"
  3094. "nie można zbudować polecenia"
  3095. #, c-format
  3096. msgid "Warning: cannot open %s directory\n"
  3097. msgstr "Ostrzeżenie: nie można utworzyć katalogu %s\n"
  3098. #, c-format
  3099. msgid "ftpfs: Disconnecting from %s"
  3100. msgstr "ftpfs: rozłączanie z %s"
  3101. #, c-format
  3102. msgid "FTP: Password required for %s"
  3103. msgstr "FTP: wymagane jest hasło dla %s"
  3104. msgid "ftpfs: sending login name"
  3105. msgstr "ftpfs: wysyłanie nazwy użytkownika"
  3106. msgid "ftpfs: sending user password"
  3107. msgstr "ftpfs: wysyłanie hasła użytkownika"
  3108. #, c-format
  3109. msgid "FTP: Account required for user %s"
  3110. msgstr "FTP: wymagane jest konto dla użytkownika %s"
  3111. msgid "Account:"
  3112. msgstr "Konto:"
  3113. msgid "ftpfs: sending user account"
  3114. msgstr "ftpfs: wysyłanie konta użytkownika"
  3115. msgid "ftpfs: logged in"
  3116. msgstr "ftpfs: zalogowano"
  3117. #, c-format
  3118. msgid "ftpfs: Login incorrect for user %s "
  3119. msgstr "ftpfs: niepoprawny login dla użytkownika %s "
  3120. msgid "ftpfs: Invalid host name."
  3121. msgstr "ftpfs: nieprawidłowa nazwa komputera."
  3122. #, c-format
  3123. msgid "ftpfs: %s"
  3124. msgstr "ftpfs: %s"
  3125. #, c-format
  3126. msgid "ftpfs: making connection to %s"
  3127. msgstr "ftpfs: nawiązywanie połączenia z %s"
  3128. msgid "ftpfs: connection interrupted by user"
  3129. msgstr "ftpfs: połączenie przerwane przez użytkownika"
  3130. #, c-format
  3131. msgid "ftpfs: connection to server failed: %s"
  3132. msgstr "ftpfs: połączenie z serwerem się nie powiodło: %s"
  3133. #, c-format
  3134. msgid "Waiting to retry... %d (Control-G to cancel)"
  3135. msgstr "Oczekiwanie na ponowienie… %d (Ctrl-G anuluje)"
  3136. #, c-format
  3137. msgid "ftpfs: could not make address-to-name translation: %s"
  3138. msgstr "ftpfs: nie można wykonać tłumaczenia adresu na nazwę: %s"
  3139. #, c-format
  3140. msgid "ftpfs: try reconnect to server, attempt %u"
  3141. msgstr "ftpfs: próba ponownego połączenia z serwerem, %u. próba"
  3142. #, c-format
  3143. msgid "ftpfs: could not get socket name: %s"
  3144. msgstr "ftpfs: nie można uzyskać nazwy gniazda: %s"
  3145. msgid "ftpfs: could not reconnect to server"
  3146. msgstr "ftpfs: nie można ponownie połączyć się z serwerem"
  3147. msgid "ftpfs: invalid address family"
  3148. msgstr "ftpfs: nieprawidłowa rodzina adresów"
  3149. #, c-format
  3150. msgid "ftpfs: could not create socket: %s"
  3151. msgstr "ftpfs: nie można utworzyć gniazda: %s"
  3152. msgid "ftpfs: could not setup passive mode"
  3153. msgstr "ftpfs: nie można ustawić trybu pasywnego"
  3154. msgid "ftpfs: aborting transfer."
  3155. msgstr "ftpfs: przerywanie przesyłania."
  3156. #, c-format
  3157. msgid "ftpfs: abort error: %s"
  3158. msgstr "ftpfs: błąd przerywania: %s"
  3159. msgid "ftpfs: abort failed"
  3160. msgstr "ftpfs: przerwanie się nie powiodło"
  3161. msgid "ftpfs: CWD failed."
  3162. msgstr "ftpfs: CWD się nie powiodło."
  3163. msgid "ftpfs: couldn't resolve symlink"
  3164. msgstr "ftpts: nie można rozwiązać dowiązania symbolicznego"
  3165. msgid "Resolving symlink..."
  3166. msgstr "Rozwiązywanie dowiązania symbolicznego…"
  3167. #, c-format
  3168. msgid "ftpfs: Reading FTP directory %s... %s%s"
  3169. msgstr "ftpfs: odczytywanie katalogu FTP %s… %s%s"
  3170. msgid "(strict rfc959)"
  3171. msgstr "(ścisły RFC959)"
  3172. msgid "(chdir first)"
  3173. msgstr "(najpierw chdir)"
  3174. msgid "ftpfs: failed; nowhere to fallback to"
  3175. msgstr "ftpfs: niepowodzenie; brak możliwości wycofania"
  3176. #, c-format
  3177. msgid "%s: failure"
  3178. msgstr "%s: niepowodzenie"
  3179. #, c-format
  3180. msgid "%s: done."
  3181. msgstr "%s: ukończono."
  3182. msgid "ftpfs: storing file"
  3183. msgstr "ftpfs: wysyłanie pliku"
  3184. msgid ""
  3185. "~/.netrc file has incorrect mode\n"
  3186. "Remove password or correct mode"
  3187. msgstr ""
  3188. "Plik ~/.netrc ma niepoprawny tryb\n"
  3189. "Proszę usunąć hasło lub poprawić tryb"
  3190. #, c-format
  3191. msgid ""
  3192. "SFS virtual file system:\n"
  3193. "%s"
  3194. msgstr ""
  3195. "Wirtualny system plików SFS:\n"
  3196. "%s"
  3197. #, c-format
  3198. msgid "%s: Warning: file %s not found\n"
  3199. msgstr "%s: ostrzeżenie: nie odnaleziono pliku %s\n"
  3200. #, c-format
  3201. msgid ""
  3202. "Warning: Invalid line in %s:\n"
  3203. "%s\n"
  3204. msgstr ""
  3205. "Ostrzeżenie: nieprawidłowy wiersz w %s:\n"
  3206. "%s\n"
  3207. #, c-format
  3208. msgid ""
  3209. "Warning: Invalid flag %c in %s:\n"
  3210. "%s\n"
  3211. msgstr ""
  3212. "Ostrzeżenie: nieprawidłowa flaga %c w %s:\n"
  3213. "%s\n"
  3214. #, c-format
  3215. msgid "sftp: an error occurred while reading %s: %s"
  3216. msgstr "sftp: wystąpił błąd podczas odczytywania %s: %s"
  3217. msgid "sftp: Unable to get current user name."
  3218. msgstr "sftp: nie można uzyskać bieżącej nazwy użytkownika."
  3219. msgid "sftp: Invalid host name."
  3220. msgstr "sftp: nieprawidłowa nazwa komputera."
  3221. #, c-format
  3222. msgid "sftp: %s"
  3223. msgstr "sftp: %s"
  3224. msgid "sftp: failed to convert remote host IP address into text form"
  3225. msgstr ""
  3226. "sftp: konwersja adresu IP zdalnego komputera na formę tekstową się nie "
  3227. "powiodła"
  3228. #, c-format
  3229. msgid "sftp: making connection to %s"
  3230. msgstr "sftp: tworzenie połączenia z %s"
  3231. msgid "sftp: connection interrupted by user"
  3232. msgstr "sftp: połączenie zostało przerwane przez użytkownika"
  3233. #, c-format
  3234. msgid "sftp: connection to server failed: %s"
  3235. msgstr "sftp: połączenie z serwerem się nie powiodło: %s"
  3236. msgid "sftp: found host key of unsupported type: RSA1"
  3237. msgstr "sftp: odnaleziono klucz komputera o nieobsługiwanym typie: RSA1"
  3238. msgid "sftp: unknown host key type:"
  3239. msgstr "sftp: nieznany typ klucza komputera:"
  3240. #, c-format
  3241. msgid ""
  3242. "Permanently added\n"
  3243. "%s (%s)\n"
  3244. "to the list of known hosts."
  3245. msgstr ""
  3246. "Trwale dodano\n"
  3247. "%s (%s)\n"
  3248. "do listy znanych komputerów."
  3249. msgid "sftp: cannot get the remote host key"
  3250. msgstr "sftp: nie można uzyskać klucza zdalnego komputera"
  3251. msgid "sftp: unsupported key type, can't check remote host key"
  3252. msgstr ""
  3253. "sftp: nieobsługiwany typ klucza, nie można sprawdzić klucza zdalnego "
  3254. "komputera"
  3255. msgid "sftp: can't compute host key fingerprint hash"
  3256. msgstr "sftp: nie można obliczyć sumy odcisku klucza komputera"
  3257. #, c-format
  3258. msgid ""
  3259. "The authenticity of host\n"
  3260. "%s (%s)\n"
  3261. "can't be established!\n"
  3262. "%s key fingerprint hash is\n"
  3263. "SHA1:%s.\n"
  3264. "Do you want to add it to the list of known hosts and continue connecting?"
  3265. msgstr ""
  3266. "Autentyczność komputera\n"
  3267. "%s (%s)\n"
  3268. "nie może zostać ustalona.\n"
  3269. "Suma odcisku klucza %s to\n"
  3270. "SHA1:%s.\n"
  3271. "Dodać go do listy znanych komputerów i kontynuować łączenie?"
  3272. #, c-format
  3273. msgid ""
  3274. "%s (%s)\n"
  3275. "is found in the list of known hosts but\n"
  3276. "KEYS DO NOT MATCH! THIS COULD BE A MITM ATTACK!\n"
  3277. "Are you sure you want to add it to the list of known hosts and continue "
  3278. "connecting?"
  3279. msgstr ""
  3280. "%s (%s)\n"
  3281. "znajduje się na liście znanych komputerów, ale\n"
  3282. "KLUCZE SIĘ NIE ZGADZAJĄ! TO MOŻE BYĆ ATAK TYPU MITM!\n"
  3283. "Na pewno dodać go do listy znanych komputerów i kontynuować łączenie?"
  3284. msgid "sftp: host key verification failed"
  3285. msgstr "sftp: weryfikacja klucza komputera się nie powiodła"
  3286. #, c-format
  3287. msgid "sftp: Enter passphrase for %s "
  3288. msgstr "sftp: hasło dla %s "
  3289. msgid "sftp: Passphrase is empty."
  3290. msgstr "sftp: hasło jest puste."
  3291. #, c-format
  3292. msgid "sftp: Enter password for %s "
  3293. msgstr "sftp: hasło dla %s "
  3294. msgid "sftp: Password is empty."
  3295. msgstr "sftp: hasło jest puste."
  3296. msgid "sftp: failure establishing SSH session"
  3297. msgstr "sftp: niepowodzenie podczas nawiązywania sesji SSH"
  3298. msgid "sftp: No file handler data present for reading file"
  3299. msgstr "sftp: brak danych obsługi pliku do odczytania pliku"
  3300. #, c-format
  3301. msgid "sftp: socket error: %s"
  3302. msgstr "sftp: błąd gniazda: %s"
  3303. #, c-format
  3304. msgid "sftp: (Ctrl-G break) Listing... %s"
  3305. msgstr "sftp: (Ctrl-G przerywa) wyświetlanie listy… %s"
  3306. msgid "sftp: Listing done."
  3307. msgstr "sftp: ukończono wyświetlanie listy."
  3308. #, c-format
  3309. msgid "shell: Disconnecting from %s"
  3310. msgstr "powłoka: rozłączanie z %s"
  3311. msgid "shell: Waiting for initial line..."
  3312. msgstr "powłoka: oczekiwanie na wiersz początkowy…"
  3313. msgid "Sorry, we cannot do password authenticated connections for now."
  3314. msgstr "Połączenia uwierzytelniane hasłem nie są na razie obsługiwane."
  3315. #, c-format
  3316. msgid "shell: Password is required for %s"
  3317. msgstr "powłoka: wymagane jest hasło dla %s"
  3318. msgid "shell: Sending password..."
  3319. msgstr "powłoka: wysyłanie hasła…"
  3320. msgid "shell: Sending initial line..."
  3321. msgstr "powłoka: wysyłanie wiersza początkowego…"
  3322. msgid "shell: Getting host info..."
  3323. msgstr "powłoka: pobieranie informacji o komputerze…"
  3324. #, c-format
  3325. msgid "shell: Reading directory %s..."
  3326. msgstr "powłoka: odczytywanie katalogu %s…"
  3327. #, c-format
  3328. msgid "shell: store %s: sending command..."
  3329. msgstr "powłoka: zapis %s: wysyłanie polecenia…"
  3330. msgid "shell: Local read failed, sending zeros"
  3331. msgstr "powłoka: lokalny odczyt się nie powiódł, wysyłanie zer"
  3332. msgid "shell: storing file"
  3333. msgstr "powłoka: wysyłanie pliku"
  3334. msgid "Aborting transfer..."
  3335. msgstr "Przerywanie przesyłania…"
  3336. msgid "Error reported after abort."
  3337. msgstr "Zgłoszono błąd po przerwaniu."
  3338. msgid "Aborted transfer would be successful."
  3339. msgstr "Przerwane przesyłanie zostałoby pomyślnie zakończone."
  3340. msgid "Inconsistent tar archive"
  3341. msgstr "Niespójne archiwum tar"
  3342. msgid "Unexpected EOF on archive file"
  3343. msgstr "Nieoczekiwany koniec pliku archiwum"
  3344. #, c-format
  3345. msgid ""
  3346. "Cannot open tar archive\n"
  3347. "%s"
  3348. msgstr ""
  3349. "Nie można otworzyć archiwum tar\n"
  3350. "%s"
  3351. #, c-format
  3352. msgid ""
  3353. "%s\n"
  3354. "doesn't look like a tar archive"
  3355. msgstr ""
  3356. "%s\n"
  3357. "nie wygląda na archiwum tar"
  3358. msgid "tar: mc_lseek not stopped at a record boundary"
  3359. msgstr "tar: mc_lseek nie zatrzymało się na granicy wpisu"
  3360. msgid "undelfs: error"
  3361. msgstr "undelfs: błąd"
  3362. msgid "not enough memory"
  3363. msgstr "brak pamięci"
  3364. msgid "while allocating block buffer"
  3365. msgstr "podczas przydzielania bufora bloku"
  3366. #, c-format
  3367. msgid "open_inode_scan: %d"
  3368. msgstr "open_inode_scan: %d"
  3369. #, c-format
  3370. msgid "while starting inode scan %d"
  3371. msgstr "podczas rozpoczynaniu skanowania i-węzłów %d"
  3372. #, c-format
  3373. msgid "undelfs: loading deleted files information %d inodes"
  3374. msgstr "undelfs: wczytywanie informacji o usuniętych plikach %d i-węzłów"
  3375. #, c-format
  3376. msgid "while calling ext2_block_iterate %d"
  3377. msgstr "podczas wywoływania ext2_block_iterate %d"
  3378. msgid "no more memory while reallocating array"
  3379. msgstr "brak pamięci podczas ponownego przydzielania tablicy"
  3380. #, c-format
  3381. msgid "while doing inode scan %d"
  3382. msgstr "podczas skanowania i-węzłów %d"
  3383. #, c-format
  3384. msgid "Cannot open file %s"
  3385. msgstr "Nie można otworzyć pliku %s"
  3386. msgid "undelfs: reading inode bitmap..."
  3387. msgstr "undelfs: odczytywanie mapy bitowej i-węzłów…"
  3388. #, c-format
  3389. msgid ""
  3390. "Cannot load inode bitmap from:\n"
  3391. "%s"
  3392. msgstr ""
  3393. "Nie można odczytać mapy bitowej i-węzłów z:\n"
  3394. "%s"
  3395. msgid "undelfs: reading block bitmap..."
  3396. msgstr "undelfs: odczytywanie mapy bitowej bloków…"
  3397. #, c-format
  3398. msgid ""
  3399. "Cannot load block bitmap from:\n"
  3400. "%s"
  3401. msgstr ""
  3402. "Nie można wczytać mapy bitowej bloków z:\n"
  3403. "%s"
  3404. msgid "vfs_info is not fs!"
  3405. msgstr "vfs_info nie systemem plików."
  3406. msgid "You have to chdir to extract files first"
  3407. msgstr "Przed rozpakowaniem plików należy zmienić katalog"
  3408. msgid "while iterating over blocks"
  3409. msgstr "podczas iterowania po blokach"
  3410. #, c-format
  3411. msgid "Cannot open file \"%s\""
  3412. msgstr "Nie można otworzyć pliku „%s”"
  3413. msgid "Ext2lib error"
  3414. msgstr "Błąd ext2lib"
  3415. msgid "Invalid value"
  3416. msgstr "Nieprawidłowa wartość"
  3417. msgid "File was modified. Save with exit?"
  3418. msgstr "Plik został zmodyfikowany. Zapisać przed zakończeniem?"
  3419. msgid "&Cancel quit"
  3420. msgstr "N&ie zamykaj"
  3421. msgid ""
  3422. "Midnight Commander is being shut down.\n"
  3423. "Save modified file?"
  3424. msgstr ""
  3425. "Program Midnight Commander kończy działanie.\n"
  3426. "Zapisać zmodyfikowany plik?"
  3427. msgid "&Line number"
  3428. msgstr "&Numer wiersza"
  3429. msgid "Pe&rcents"
  3430. msgstr "P&rocenty"
  3431. msgid "&Decimal offset"
  3432. msgstr "Wyrównanie &dziesiętne"
  3433. msgid "He&xadecimal offset"
  3434. msgstr "&Wyrównanie ósemkowe"
  3435. msgid "Goto"
  3436. msgstr "Idź do"
  3437. msgid "ButtonBar|Ascii"
  3438. msgstr "ASCII"
  3439. msgid "ButtonBar|HxSrch"
  3440. msgstr "SzukSz"
  3441. msgid "ButtonBar|UnWrap"
  3442. msgstr "Odwiń"
  3443. msgid "ButtonBar|Wrap"
  3444. msgstr "Zawiń"
  3445. msgid "ButtonBar|Hex"
  3446. msgstr "Szesn"
  3447. msgid "ButtonBar|Goto"
  3448. msgstr "Idź do"
  3449. msgid "ButtonBar|Raw"
  3450. msgstr "Orygnł"
  3451. msgid "ButtonBar|Parse"
  3452. msgstr "Przetw"
  3453. msgid "ButtonBar|Unform"
  3454. msgstr "BezFrm"
  3455. msgid "ButtonBar|Format"
  3456. msgstr "Format"
  3457. #, c-format
  3458. msgid ""
  3459. "Failed to read data from child stdout:\n"
  3460. "%s"
  3461. msgstr ""
  3462. "Odczytanie danych z potomnego standardowego wyjścia się nie powiodło:\n"
  3463. "%s"
  3464. #, c-format
  3465. msgid ""
  3466. "Error while closing the file:\n"
  3467. "%s\n"
  3468. "Data may have been written or not"
  3469. msgstr ""
  3470. "Błąd podczas zamykania pliku \n"
  3471. "%s\n"
  3472. "Dane mogły nie zostać zapisane"
  3473. #, c-format
  3474. msgid ""
  3475. "Cannot save file:\n"
  3476. "%s"
  3477. msgstr ""
  3478. "Nie można zapisać pliku:\n"
  3479. "%s"
  3480. msgid "View: "
  3481. msgstr "Podgląd: "
  3482. #, c-format
  3483. msgid ""
  3484. "Cannot open \"%s\"\n"
  3485. "%s"
  3486. msgstr ""
  3487. "Nie można otworzyć „%s”\n"
  3488. "%s"
  3489. msgid "Cannot view: not a regular file"
  3490. msgstr "Nie można wyświetlić: nie jest zwykłym plikiem"
  3491. #, c-format
  3492. msgid ""
  3493. "Cannot open \"%s\" in parse mode\n"
  3494. "%s"
  3495. msgstr ""
  3496. "Nie można otworzyć „%s” w trybie przetwarzania\n"
  3497. "%s"
  3498. msgid "Search done"
  3499. msgstr "Ukończono wyszukiwanie"
  3500. msgid "Continue from beginning?"
  3501. msgstr "Kontynuować od początku?"
  3502. msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
  3503. msgstr ""
  3504. "Nie można pobrać lokalnej kopii /ftp://jakiś.komputer/modyfikuj_mnie.txt"
  3505. #, c-format
  3506. #~ msgid "%s is not a directory\n"
  3507. #~ msgstr "%s nie jest katalogiem\n"
  3508. #, c-format
  3509. #~ msgid "Directory %s is not owned by you\n"
  3510. #~ msgstr "Katalog %s nie należy do ciebie\n"
  3511. #, c-format
  3512. #~ msgid "Cannot set correct permissions for directory %s\n"
  3513. #~ msgstr "Nie można ustawić odpowiednich uprawnień dla katalogu %s\n"
  3514. #, c-format
  3515. #~ msgid "Temporary files will be created in %s\n"
  3516. #~ msgstr "Pliki tymczasowe zostaną utworzone w %s\n"
  3517. #, c-format
  3518. #~ msgid "Temporary files will not be created\n"
  3519. #~ msgstr "Pliki tymczasowe nie zostaną utworzone\n"