pl.po 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR Free Software Foundation, Inc.
  3. # This file is distributed under the same license as the PACKAGE package.
  4. #
  5. # Translators:
  6. # Piotr Drąg <piotrdrag@gmail.com>, 2011, 2012.
  7. # Slava Zanko <slavazanko@gmail.com>, 2011.
  8. msgid ""
  9. msgstr ""
  10. "Project-Id-Version: Midnight Commander\n"
  11. "Report-Msgid-Bugs-To: http://www.midnight-commander.org/report\n"
  12. "POT-Creation-Date: 2012-03-19 19:08+0300\n"
  13. "PO-Revision-Date: 2012-03-19 18:10+0000\n"
  14. "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
  15. "Language-Team: Polish (http://www.transifex.net/projects/p/mc/language/pl/)\n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=UTF-8\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. "Language: pl\n"
  20. "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
  21. msgid "Warning: cannot load codepages list"
  22. msgstr "Ostrzeżenie: nie można wczytać listy stron kodowych"
  23. msgid "7-bit ASCII"
  24. msgstr "7 bitowe ASCII"
  25. #, c-format
  26. msgid "Cannot translate from %s to %s"
  27. msgstr "Nie można przetłumaczyć z %s na %s"
  28. msgid "Event system already initialized"
  29. msgstr "System zdarzeń został już zainicjowany"
  30. msgid "Failed to initialize event system"
  31. msgstr "Zainicjowanie systemu zdarzeń nie powiodło się"
  32. msgid "Event system not initialized"
  33. msgstr "System zdarzeń nie został zainicjowany"
  34. msgid "Check input data! Some of parameters are NULL!"
  35. msgstr "Proszę sprawdzić dane wejściowe. Niektóre parametry są PUSTE."
  36. #, c-format
  37. msgid "Unable to create group '%s' for events!"
  38. msgstr "Nie można utworzyć grupy \"%s\" dla zdarzeń."
  39. #, c-format
  40. msgid "Unable to create event '%s'!"
  41. msgstr "Nie można utworzyć zdarzenia \"%s\"."
  42. #, c-format
  43. msgid ""
  44. "File \"%s\" is already being edited.\n"
  45. "User: %s\n"
  46. "Process ID: %d"
  47. msgstr "Plik \"%s\" jest teraz modyfikowany.\nUżytkownik: %s\nIdentyfikator procesu: %d"
  48. msgid "File locked"
  49. msgstr "Zablokowany plik"
  50. msgid "&Grab lock"
  51. msgstr "&Ustaw blokadę"
  52. msgid "&Ignore lock"
  53. msgstr "Z&ignoruj blokadę"
  54. #, c-format
  55. msgid "Cannot create %s directory"
  56. msgstr "Nie można utworzyć katalogu %s"
  57. msgid "FATAL: not a directory:"
  58. msgstr "KRYTYCZNE: nie jest katalogiem:"
  59. #, c-format
  60. msgid "An error occured while migrating user settings: %s"
  61. msgstr "Wystąpił błąd podczas migrowania ustawień użytkownika: %s"
  62. #, c-format
  63. msgid ""
  64. "Your old settings were migrated from %s\n"
  65. "to Freedesktop recommended dirs.\n"
  66. "To get more info, please visit\n"
  67. "http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html"
  68. msgstr "Poprzednie ustawienia użytkownika zostały przeniesione z %s\ndo katalogów zalecanych przez freedesktop.org.\nWięcej informacji znajduje się na stronie\nhttp://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html"
  69. #, c-format
  70. msgid ""
  71. "Your old settings were migrated from %s\n"
  72. "to %s\n"
  73. msgstr "Poprzednie ustawienia zostały przeniesione z %s\ndo %s\n"
  74. msgid "Search string not found"
  75. msgstr "Nie odnaleziono wyszukiwanego napisu"
  76. msgid "Not implemented yet"
  77. msgstr "Jeszcze nie zaimplementowane"
  78. msgid "Num of replace tokens not equal to num of found tokens"
  79. msgstr "Liczba tokenów zastąpienia nie jest równa liczbie odnalezionych tokenów"
  80. #, c-format
  81. msgid "Invalid token number %d"
  82. msgstr "Nieprawidłowy token o numerze %d"
  83. msgid "Regular expression error"
  84. msgstr "Błąd wyrażenia regularnego"
  85. msgid "&Normal"
  86. msgstr "&Zwykły"
  87. msgid "Re&gular expression"
  88. msgstr "Wyrażenie re&gularne"
  89. msgid "He&xadecimal"
  90. msgstr "&Szesnastkowo"
  91. msgid "Wil&dcard search"
  92. msgstr "&Wyszuk. wieloznaczników"
  93. #, c-format
  94. msgid ""
  95. "Unable to load '%s' skin.\n"
  96. "Default skin has been loaded"
  97. msgstr "Nie można wczytać skórki \"%s\".\nWczytano domyślną"
  98. #, c-format
  99. msgid ""
  100. "Unable to parse '%s' skin.\n"
  101. "Default skin has been loaded"
  102. msgstr "Nie można przetworzyć skórki \"%s\".\nWczytano domyślną"
  103. #, c-format
  104. msgid ""
  105. "Unable to use '%s' skin with 256 colors support\n"
  106. "on non-256 colors terminal.\n"
  107. "Default skin has been loaded"
  108. msgstr "Nie można użyć skórki \"%s\" za pomocą obsługi 256\nkolorów na terminalu nie dysponującym 256 kolorami.\nDomyślna skórka nie została wczytana"
  109. msgid "Function key 1"
  110. msgstr "1 klaw. funkcyjny "
  111. msgid "Function key 2"
  112. msgstr "2 klaw. funkcyjny "
  113. msgid "Function key 3"
  114. msgstr "3 klaw. funkcyjny "
  115. msgid "Function key 4"
  116. msgstr "4 klaw. funkcyjny "
  117. msgid "Function key 5"
  118. msgstr "5 klaw. funkcyjny "
  119. msgid "Function key 6"
  120. msgstr "6 klaw. funkcyjny "
  121. msgid "Function key 7"
  122. msgstr "7 klaw. funkcyjny "
  123. msgid "Function key 8"
  124. msgstr "8 klaw. funkcyjny "
  125. msgid "Function key 9"
  126. msgstr "9 klaw. funkcyjny "
  127. msgid "Function key 10"
  128. msgstr "10 klaw. funkcyjny"
  129. msgid "Function key 11"
  130. msgstr "11 klaw. funkcyjny"
  131. msgid "Function key 12"
  132. msgstr "12 klaw. funkcyjny"
  133. msgid "Function key 13"
  134. msgstr "13 klaw. funkcyjny"
  135. msgid "Function key 14"
  136. msgstr "14 klaw. funkcyjny"
  137. msgid "Function key 15"
  138. msgstr "15 klaw. funkcyjny"
  139. msgid "Function key 16"
  140. msgstr "16 klaw. funkcyjny"
  141. msgid "Function key 17"
  142. msgstr "17 klaw. funkcyjny"
  143. msgid "Function key 18"
  144. msgstr "18 klaw. funkcyjny"
  145. msgid "Function key 19"
  146. msgstr "19 klaw. funkcyjny"
  147. msgid "Function key 20"
  148. msgstr "20 klaw. funkcyjny"
  149. msgid "Backspace key"
  150. msgstr "Klawisz Backspace "
  151. msgid "End key"
  152. msgstr "Klawisz End "
  153. msgid "Up arrow key"
  154. msgstr "Strzałka w górę "
  155. msgid "Down arrow key"
  156. msgstr "Strzałka w dół "
  157. msgid "Left arrow key"
  158. msgstr "Strzałka w lewo "
  159. msgid "Right arrow key"
  160. msgstr "Strzałka w prawo "
  161. msgid "Home key"
  162. msgstr "Klawisz Home "
  163. msgid "Page Down key"
  164. msgstr "Klawisz Page Down "
  165. msgid "Page Up key"
  166. msgstr "Klawisz Page Up "
  167. msgid "Insert key"
  168. msgstr "Klawisz Insert "
  169. msgid "Delete key"
  170. msgstr "Klawisz Delete "
  171. msgid "Completion/M-tab"
  172. msgstr "Uzupełnianie/M-tab"
  173. msgid "Back Tabulation S-tab"
  174. msgstr "Wsteczna tabulacja/S-tab"
  175. msgid "+ on keypad"
  176. msgstr "+ na klaw. numer. "
  177. msgid "- on keypad"
  178. msgstr "- na klaw. numer. "
  179. msgid "Slash on keypad"
  180. msgstr "Ukośnik na klaw. numer."
  181. msgid "* on keypad"
  182. msgstr "* na klaw. numer. "
  183. msgid "Escape key"
  184. msgstr "Klawisz Escape "
  185. msgid "Left arrow keypad"
  186. msgstr "Strzałka w lewo na klaw. numer."
  187. msgid "Right arrow keypad"
  188. msgstr "Strzałka w prawo na klaw. numer."
  189. msgid "Up arrow keypad"
  190. msgstr "Strzałka w górę na klaw. numer."
  191. msgid "Down arrow keypad"
  192. msgstr "Strzałka w dół na klaw. numer."
  193. msgid "Home on keypad"
  194. msgstr "Home na klaw. numer."
  195. msgid "End on keypad"
  196. msgstr "End na klaw. numer."
  197. msgid "Page Down keypad"
  198. msgstr "Page Down na klaw. numer."
  199. msgid "Page Up keypad"
  200. msgstr "Page Up na klaw. numer."
  201. msgid "Insert on keypad"
  202. msgstr "Insert na klaw. numer."
  203. msgid "Delete on keypad"
  204. msgstr "Delete na klaw. numer."
  205. msgid "Enter on keypad"
  206. msgstr "Enter na klaw. numer."
  207. msgid "Function key 21"
  208. msgstr "21 klaw. funkcyjny"
  209. msgid "Function key 22"
  210. msgstr "22 klaw. funkcyjny"
  211. msgid "Function key 23"
  212. msgstr "23 klaw. funkcyjny"
  213. msgid "Function key 24"
  214. msgstr "24 klaw. funkcyjny"
  215. msgid "A1 key"
  216. msgstr "Klawisz A1"
  217. msgid "C1 key"
  218. msgstr "Klawisz C1"
  219. msgid "Plus"
  220. msgstr "Plus"
  221. msgid "Minus"
  222. msgstr "Minus"
  223. msgid "Asterisk"
  224. msgstr "Gwiazdka"
  225. msgid "Dot"
  226. msgstr "Kropka"
  227. msgid "Less than"
  228. msgstr "Mniej niż"
  229. msgid "Great than"
  230. msgstr "Więcej niż"
  231. msgid "Equal"
  232. msgstr "Znak równości"
  233. msgid "Comma"
  234. msgstr "Przecinek"
  235. msgid "Apostrophe"
  236. msgstr "Apostrof"
  237. msgid "Colon"
  238. msgstr "Dwukropek"
  239. msgid "Exclamation mark"
  240. msgstr "Wykrzyknik"
  241. msgid "Question mark"
  242. msgstr "Znak zapytania"
  243. msgid "Ampersand"
  244. msgstr "Et"
  245. msgid "Dollar sign"
  246. msgstr "Znak dolara"
  247. msgid "Quotation mark"
  248. msgstr "Cudzysłów"
  249. msgid "Percent sign"
  250. msgstr "Znak procenta"
  251. msgid "Caret"
  252. msgstr "Kareta"
  253. msgid "Tilda"
  254. msgstr "Tylda"
  255. msgid "Prime"
  256. msgstr "Prim"
  257. msgid "Underline"
  258. msgstr "Podkreślenie"
  259. msgid "Understrike"
  260. msgstr "Przekreślenie"
  261. msgid "Pipe"
  262. msgstr "Potok"
  263. msgid "Left parenthesis"
  264. msgstr "Lewy nawias okrągły"
  265. msgid "Right parenthesis"
  266. msgstr "Prawy nawias okrągły"
  267. msgid "Left bracket"
  268. msgstr "Lewy nawias"
  269. msgid "Right bracket"
  270. msgstr "Prawy nawias"
  271. msgid "Left brace"
  272. msgstr "Lewy nawias klamrowy"
  273. msgid "Right brace"
  274. msgstr "Prawy nawias klamrowy"
  275. msgid "Enter"
  276. msgstr "Enter"
  277. msgid "Tab key"
  278. msgstr "Klawisz Tab"
  279. msgid "Space key"
  280. msgstr "Klawisz spacji"
  281. msgid "Slash key"
  282. msgstr "Klawisz ukośnika"
  283. msgid "Backslash key"
  284. msgstr "Klawisz odwrotnego ukośnika"
  285. msgid "Number sign #"
  286. msgstr "Znak liczby #"
  287. #. TRANSLATORS: Please translate as in "at sign" (@).
  288. msgid "At sign"
  289. msgstr "Znak at"
  290. msgid "Ctrl"
  291. msgstr "Ctrl"
  292. msgid "Alt"
  293. msgstr "Alt"
  294. msgid "Shift"
  295. msgstr "Shift"
  296. msgid "The TERM environment variable is unset!\n"
  297. msgstr "Zmienna środowiskowa TERM nie jest ustawiona.\n"
  298. #, c-format
  299. msgid ""
  300. "Screen size %dx%d is not supported.\n"
  301. "Check the TERM environment variable.\n"
  302. msgstr "Rozmiar ekranu %dx%d nie jest obsługiwany.\nProszę sprawdzić zmienną środowiskową TERM.\n"
  303. msgid "Warning"
  304. msgstr "Ostrzeżenie"
  305. msgid "Pipe failed"
  306. msgstr "Potok się nie powiódł"
  307. msgid "Dup failed"
  308. msgstr "Dup się nie powiodło"
  309. msgid "Error dup'ing old error pipe"
  310. msgstr "Błąd podczas duplikowania poprzedniego potoku błędu"
  311. #, c-format
  312. msgid "Directory cache expired for %s"
  313. msgstr "Pamięć podręczna katalogu dla %s wygasła"
  314. msgid "bytes transferred"
  315. msgstr "bajtów przesłano"
  316. msgid "Starting linear transfer..."
  317. msgstr "Rozpoczynanie przesyłu liniowego..."
  318. msgid "Getting file"
  319. msgstr "Pobieranie pliku"
  320. msgid "Changes to file lost"
  321. msgstr "Utracono zmiany w pliku"
  322. #, c-format
  323. msgid "%s is not a directory\n"
  324. msgstr "%s nie jest katalogiem\n"
  325. #, c-format
  326. msgid "Directory %s is not owned by you\n"
  327. msgstr "Katalog %s nie należy do ciebie\n"
  328. #, c-format
  329. msgid "Cannot set correct permissions for directory %s\n"
  330. msgstr "Nie można ustawić odpowiednich uprawnień dla katalogu %s\n"
  331. #, c-format
  332. msgid "Cannot create temporary directory %s: %s\n"
  333. msgstr "Nie można utworzyć katalogu tymczasowego %s: %s\n"
  334. #, c-format
  335. msgid "Temporary files will be created in %s\n"
  336. msgstr "Pliki tymczasowe zostaną utworzone w %s\n"
  337. #, c-format
  338. msgid "Temporary files will not be created\n"
  339. msgstr "Pliki tymczasowe nie zostaną utworzone\n"
  340. #, c-format
  341. msgid "Press any key to continue..."
  342. msgstr "Naciśnięcie dowolnego klawisza kontynuuje..."
  343. msgid "Cannot parse:"
  344. msgstr "Nie można przetworzyć:"
  345. msgid "More parsing errors will be ignored."
  346. msgstr "Kolejne błędy przetwarzania zostaną zignorowane."
  347. msgid "Internal error:"
  348. msgstr "Błąd wewnętrzny:"
  349. msgid "Password:"
  350. msgstr "Hasło:"
  351. msgid "Screens"
  352. msgstr "Ekrany"
  353. msgid "History"
  354. msgstr "Historia"
  355. #. TRANSLATORS: no need to translate 'DialogTitle', it's just a context prefix
  356. msgid "DialogTitle|History cleanup"
  357. msgstr "Czyszczenie historii"
  358. msgid "Do you want clean this history?"
  359. msgstr "Wyczyścić tę historię?"
  360. msgid "&Yes"
  361. msgstr "&Tak"
  362. msgid "&No"
  363. msgstr "&Nie"
  364. msgid "Background process:"
  365. msgstr "Proces w tle:"
  366. msgid "&Cancel"
  367. msgstr "&Anuluj"
  368. msgid "&OK"
  369. msgstr "&OK"
  370. msgid "Error"
  371. msgstr "Błąd"
  372. msgid "Displays the current version"
  373. msgstr "Wyświetla bieżącą wersję"
  374. msgid "Print data directory"
  375. msgstr "Wyświetla katalog danych"
  376. msgid "Print extended info about used data directories"
  377. msgstr "Wyświetla rozszerzone informacje o używanych katalogach danych"
  378. msgid "Print configure options"
  379. msgstr "Wyświetla opcje konfiguracji"
  380. msgid "Print last working directory to specified file"
  381. msgstr "Wyświetla ostatni katalog roboczy do podanego pliku"
  382. msgid "Enables subshell support (default)"
  383. msgstr "Włącza obsługę podpowłoki (domyślne)"
  384. msgid "Disables subshell support"
  385. msgstr "Wyłącza obsługę podpowłoki"
  386. msgid "Log ftp dialog to specified file"
  387. msgstr "Zapisuje dziennik FTP do podanego pliku"
  388. msgid "Set debug level"
  389. msgstr "Ustawia poziom debugowania"
  390. msgid "Launches the file viewer on a file"
  391. msgstr "Uruchamia podgląd pliku"
  392. msgid "Edits one file"
  393. msgstr "Modyfikuje plik"
  394. msgid "Forces xterm features"
  395. msgstr "Wymusza funkcje programu xterm"
  396. msgid "Disable X11 support"
  397. msgstr "Wyłącza obsługę X11"
  398. msgid "Tries to use an old highlight mouse tracking"
  399. msgstr "Próbuje użyć poprzedniej metody śledzenia wyróżnienia myszy"
  400. msgid "Disable mouse support in text version"
  401. msgstr "Wyłącza obsługę myszy w trybie tekstowym"
  402. msgid "Tries to use termcap instead of terminfo"
  403. msgstr "Próbuje użyć termcap zamiast terminfo"
  404. msgid "To run on slow terminals"
  405. msgstr "Aby uruchomić na powolnych terminalach"
  406. msgid "Use stickchars to draw"
  407. msgstr "Używa prostych znaków do rysowania"
  408. msgid "Resets soft keys on HP terminals"
  409. msgstr "Przywraca klawisze programowe na terminalach HP"
  410. msgid "Load definitions of key bindings from specified file"
  411. msgstr "Wczytuje definicje skrótów klawiszowych z podanego pliku"
  412. msgid "Don't load definitions of key bindings from file, use defaults"
  413. msgstr "Bez wczytywania definicji skrótów klawiszowych z podanego pliku, użycie domyślnych"
  414. msgid "Requests to run in black and white"
  415. msgstr "Żąda uruchomienia w trybie czarno-białym"
  416. msgid "Request to run in color mode"
  417. msgstr "Żąda uruchomienia w trybie kolorowym"
  418. msgid "Specifies a color configuration"
  419. msgstr "Podaje konfigurację kolorów"
  420. msgid "Show mc with specified skin"
  421. msgstr "Wyświetla program mc za pomocą podanej skórki"
  422. #. TRANSLATORS: don't translate keywords
  423. msgid ""
  424. "--colors KEYWORD={FORE},{BACK},{ATTR}:KEYWORD2=...\n"
  425. "\n"
  426. "{FORE}, {BACK} and {ATTR} can be omitted, and the default will be used\n"
  427. "\n"
  428. " Keywords:\n"
  429. " Global: errors, disabled, reverse, gauge, header\n"
  430. " input, inputmark, inputunchanged, commandlinemark\n"
  431. " bbarhotkey, bbarbutton, statusbar\n"
  432. " File display: normal, selected, marked, markselect\n"
  433. " Dialog boxes: dnormal, dfocus, dhotnormal, dhotfocus, errdhotnormal,\n"
  434. " errdhotfocus\n"
  435. " Menus: menunormal, menuhot, menusel, menuhotsel, menuinactive\n"
  436. " Popup menus: pmenunormal, pmenusel, pmenutitle\n"
  437. " Editor: editnormal, editbold, editmarked, editwhitespace,\n"
  438. " editlinestate\n"
  439. " Viewer: viewbold, viewunderline, viewselected\n"
  440. " Help: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
  441. msgstr "--colors KEYWORD={TEKST},{TŁO},{ATR}:SŁOWO_KLUCZOWE2=...\n\n{TEKST}, {TŁO} i {ATR} można pominąć, zostaną użyte wartości domyślne\n\n Słowa kluczowe:\n Globalne: errors, disabled, reverse, gauge, header\n input, inputmark, inputunchanged, commandlinemark\n bbarhotkey, bbarbutton, statusbar\n Wyświetlanie plików: normal, selected, marked, markselect\n Okna dialogowe: dnormal, dfocus, dhotnormal, dhotfocus, errdhotnormal,\n errdhotfocus\n Menu: menunormal, menuhot, menusel, menuhotsel, menuinactive\n Menu wyskakujące: pmenunormal, pmenusel, pmenutitle\n Edytor: editnormal, editbold, editmarked, editwhitespace,\n editlinestate\n Przeglądarka: viewbold, viewunderline, viewselected\n Pomoc: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
  442. #. TRANSLATORS: don't translate color names and attributes
  443. msgid ""
  444. "Standard Colors:\n"
  445. " black, gray, red, brightred, green, brightgreen, brown,\n"
  446. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  447. " brightcyan, lightgray and white\n"
  448. "\n"
  449. "Extended colors, when 256 colors are available:\n"
  450. " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
  451. "\n"
  452. "Attributes:\n"
  453. " bold, underline, reverse, blink; append more with '+'\n"
  454. msgstr "Standardowe kolory:\n black, gray, red, brightred, green, brightgreen, brown,\n yellow, blue, brightblue, magenta, brightmagenta, cyan,\n brightcyan, lightgray i white\n\nRozszerzone kolory, kiedy dostępnych jest 256 kolorów:\n color16 do color255 lub rgb000 do rgb555 oraz gray0 do gray23\n\nAtrybuty:\n bold, underline, reverse, blink; można dołączyć więcej za pomocą \"+\"\n"
  455. msgid "Color options"
  456. msgstr "Opcje kolorów"
  457. msgid "+number"
  458. msgstr "+numer"
  459. msgid "[this_dir] [other_panel_dir]"
  460. msgstr "[ten_katalog] [katalog_w_drugim_panelu]"
  461. msgid "Set initial line number for the internal editor"
  462. msgstr "Ustawia początkowy numer wiersza dla wewnętrznego edytora"
  463. msgid ""
  464. "\n"
  465. "Please send any bug reports (including the output of `mc -V')\n"
  466. "as tickets at www.midnight-commander.org\n"
  467. msgstr "\nProszę wysyłać raporty błędów (w języku angielskim, wraz z\nwyjściem polecenia \"mc -V\") jako zgłoszenia na stronie\nwww.midnight-commander.org\n"
  468. #, c-format
  469. msgid "GNU Midnight Commander %s\n"
  470. msgstr "GNU Midnight Commander %s\n"
  471. msgid "Main options"
  472. msgstr "Główne opcje"
  473. msgid "Terminal options"
  474. msgstr "Opcje terminala"
  475. msgid "Arguments parse error!"
  476. msgstr "Błąd podczas przetwarzania parametrów."
  477. msgid "No arguments given to the viewer."
  478. msgstr "Nie podano parametrów dla przeglądarki."
  479. msgid "Two files are required to evoke the diffviewer."
  480. msgstr "Wymagane są dwa pliki, aby wywołać program diffviewer."
  481. msgid "Background process error"
  482. msgstr "Błąd procesu w tle"
  483. msgid "Unknown error in child"
  484. msgstr "Nieznany błąd procesu potomnego"
  485. msgid "Child died unexpectedly"
  486. msgstr "Proces potomny został niespodziewanie zakończony"
  487. msgid "Background protocol error"
  488. msgstr "Błąd protokołu komunikacji w tle"
  489. msgid "Reading failed"
  490. msgstr "Odczytanie się nie powiodło"
  491. msgid ""
  492. "Background process sent us a request for more arguments\n"
  493. "than we can handle."
  494. msgstr "Proces w tle próbuje przesłać więcej parametrów, niż\nmożna obsłużyć."
  495. msgid "&Dismiss"
  496. msgstr "&Porzuć"
  497. msgid "&All charsets"
  498. msgstr "W&szystkie zestawy znaków"
  499. msgid "&Whole words"
  500. msgstr "&Całe słowa"
  501. msgid "&Backwards"
  502. msgstr "&Wstecz"
  503. msgid "Cas&e sensitive"
  504. msgstr "Rozróżniani&e wielkości"
  505. msgid "Enter search string:"
  506. msgstr "Proszę podać wyszukiwany napis:"
  507. msgid "Search"
  508. msgstr "Wyszukiwanie"
  509. msgid "Search is disabled"
  510. msgstr "Wyszukiwanie jest wyłączone"
  511. #, c-format
  512. msgid ""
  513. "Cannot create temporary diff file\n"
  514. "%s"
  515. msgstr "Nie można utworzyć tymczasowego pliku różnicy\n%s"
  516. #, c-format
  517. msgid ""
  518. "Cannot create backup file\n"
  519. "%s%s\n"
  520. "%s"
  521. msgstr "Nie można utworzyć pliku zapasowego\n%s%s\n%s"
  522. #, c-format
  523. msgid ""
  524. "Cannot create temporary merge file\n"
  525. "%s"
  526. msgstr "Nie można utworzyć tymczasowego pliku łączenia\n%s"
  527. msgid "&Fastest (Assume large files)"
  528. msgstr "Naj&szybszy (przyjmuje duże pliki)"
  529. msgid "&Minimal (Find a smaller set of change)"
  530. msgstr "&Minimalny (wyszukuje mniejszy zestaw zmian"
  531. msgid "Strip &trailing carriage return"
  532. msgstr "Skracanie &kończących znaków CR"
  533. msgid "Ignore all &whitespace"
  534. msgstr "Ignorowanie &wszystkich spacji"
  535. msgid "Ignore &space change"
  536. msgstr "Ignorowanie zmian &spacji"
  537. msgid "Ignore tab &expansion"
  538. msgstr "Ignorowanie rozsz&erzeń tabulacji"
  539. msgid "&Ignore case"
  540. msgstr "&Ignorowanie wielkości znaków"
  541. msgid "Diff extra options"
  542. msgstr "Dodatkowe opcje różnicy"
  543. msgid "Diff algorithm"
  544. msgstr "Algorytm różnicy"
  545. msgid "Diff Options"
  546. msgstr "Opcje różnicy"
  547. msgid "Edit"
  548. msgstr "Edycja"
  549. msgid "Edit is disabled"
  550. msgstr "Modyfikacja jest wyłączona"
  551. msgid "Goto line (left)"
  552. msgstr "Przejdź do wiersza (po lewej)"
  553. msgid "Goto line (right)"
  554. msgstr "Przejdź do wiersza (po prawej)"
  555. msgid "Enter line:"
  556. msgstr "Proszę podać wiersz:"
  557. msgid "ButtonBar|Help"
  558. msgstr "Pomoc"
  559. msgid "ButtonBar|Save"
  560. msgstr "Zapisz"
  561. msgid "ButtonBar|Edit"
  562. msgstr "Edycja"
  563. msgid "ButtonBar|Merge"
  564. msgstr "Połącz"
  565. msgid "ButtonBar|Search"
  566. msgstr "Szukaj"
  567. msgid "ButtonBar|Options"
  568. msgstr "Opcje"
  569. msgid "ButtonBar|Quit"
  570. msgstr "Kończ"
  571. msgid "Quit"
  572. msgstr "Zakończ"
  573. msgid "File was modified. Save with exit?"
  574. msgstr "Plik został zmodyfikowany. Zapisać przed zakończeniem?"
  575. msgid ""
  576. "Midnight Commander is being shut down.\n"
  577. "Save modified file?"
  578. msgstr "Program Midnight Commander kończy działanie.\nZapisać zmodyfikowany plik?"
  579. msgid "Diff:"
  580. msgstr "Różnica:"
  581. msgid "Two files are needed to compare"
  582. msgstr "Wymagane są dwa pliki do porównania"
  583. msgid "Choose syntax highlighting"
  584. msgstr "Proszę wybrać wyróżnianie składni"
  585. msgid "< Auto >"
  586. msgstr "< Automatycznie >"
  587. msgid "< Reload Current Syntax >"
  588. msgstr "< Ponownie wczytaj składnię >"
  589. msgid "About"
  590. msgstr "O programie"
  591. msgid ""
  592. "Copyright (C) 1996-2010 the Free Software Foundation\n"
  593. "\n"
  594. " A user friendly text editor\n"
  595. " written for the Midnight Commander"
  596. msgstr " Copyright (C) 1996-2010 Free Software Foundation\n\n Przyjazny dla użytkownika edytor tekstu, napisany\n dla programu Midnight Commander"
  597. #, c-format
  598. msgid "Cannot open %s for reading"
  599. msgstr "Nie można otworzyć %s do odczytania"
  600. #, c-format
  601. msgid "Error reading %s"
  602. msgstr "Błąd podczas odczytywania %s"
  603. #, c-format
  604. msgid "Cannot get size/permissions for %s"
  605. msgstr "Nie można uzyskać rozmiaru/uprawnień dla %s"
  606. #, c-format
  607. msgid "\"%s\" is not a regular file"
  608. msgstr "\"%s\" nie jest zwykłym plikiem"
  609. #, c-format
  610. msgid "File \"%s\" is too large"
  611. msgstr "Plik \"%s\" jest za duży"
  612. #, c-format
  613. msgid "Error reading from pipe: %s"
  614. msgstr "Błąd podczas odczytywania potoku: %s"
  615. #, c-format
  616. msgid "Cannot open pipe for reading: %s"
  617. msgstr "Nie można otworzyć potoku do odczytania: %s"
  618. msgid "File has hard-links. Detach before saving?"
  619. msgstr "Plik posiada twarde dowiązania. Odłączył przez zapisaniem?"
  620. msgid "The file has been modified in the meantime. Save anyway?"
  621. msgstr "Plik został zmodyfikowany przez inny program. Zapisać mimo to?"
  622. #, c-format
  623. msgid "Error writing to pipe: %s"
  624. msgstr "Błąd podczas zapisywania do potoku: %s"
  625. #, c-format
  626. msgid "Cannot open pipe for writing: %s"
  627. msgstr "Nie można otworzyć potoku do zapisywania: %s"
  628. #, c-format
  629. msgid "Cannot open file for writing: %s"
  630. msgstr "Nie można otworzyć pliku do zapisywania: %s"
  631. msgid "The file you are saving is not finished with a newline"
  632. msgstr "Zapisywany plik nie kończy się nowym wierszem"
  633. msgid "C&ontinue"
  634. msgstr "K&ontynuuj"
  635. msgid "&Do not change"
  636. msgstr "Nie &zmieniaj"
  637. msgid "&Unix format (LF)"
  638. msgstr "Format &UNIX (LF)"
  639. msgid "&Windows/DOS format (CR LF)"
  640. msgstr "Format &Windows/DOS (CR LF)"
  641. msgid "&Macintosh format (CR)"
  642. msgstr "Format &Macintosh (CR)"
  643. msgid "Change line breaks to:"
  644. msgstr "Zmień łamanie wierszy na:"
  645. msgid "Enter file name:"
  646. msgstr "Proszę podać nazwę pliku:"
  647. msgid "Save As"
  648. msgstr "Zapisz jako"
  649. msgid "Syntax file edit"
  650. msgstr "Modyfikacja pliku składni"
  651. msgid "Which syntax file you want to edit?"
  652. msgstr "Który plik składni zmodyfikować?"
  653. msgid "&User"
  654. msgstr "&Użytkownik"
  655. msgid "&System Wide"
  656. msgstr "&Systemowe"
  657. msgid "Menu edit"
  658. msgstr "Modyfikacja menu"
  659. msgid "Which menu file do you want to edit?"
  660. msgstr "Który plik menu zmodyfikować? "
  661. msgid "&Local"
  662. msgstr "&Lokalne"
  663. msgid "Block is large, you may not be able to undo this action"
  664. msgstr "Z powodu wielkości bloku cofnięcie działania może być niemożliwe"
  665. msgid "&Quick save"
  666. msgstr "Szybki &zapis"
  667. msgid "&Safe save"
  668. msgstr "Bezpieczny zapi&s"
  669. msgid "&Do backups with following extension:"
  670. msgstr "&Wykonaj kopie zapasowe za pomocą tego rozszerzenia:"
  671. msgid "Check &POSIX new line"
  672. msgstr "Sprawdź nowe wiersze &POSIX"
  673. msgid "Edit Save Mode"
  674. msgstr "Zmodyfikuj tryb zapisu"
  675. msgid "A file already exists with this name"
  676. msgstr "Plik o tej nazwie już istnieje."
  677. msgid "&Overwrite"
  678. msgstr "&Zastąp"
  679. msgid "Save as"
  680. msgstr "Zapisz jako"
  681. msgid "Cannot save file"
  682. msgstr "Nie można zapisać pliku"
  683. msgid "Delete macro"
  684. msgstr "Usuń makro"
  685. msgid "Press macro hotkey:"
  686. msgstr "Proszę nacisnąć skrót makra:"
  687. msgid "Macro not deleted"
  688. msgstr "Nie usunięto makra"
  689. msgid "Save macro"
  690. msgstr "Zapisz makro"
  691. msgid "Press the macro's new hotkey:"
  692. msgstr "Proszę nacisnąć nowy skrót makra:"
  693. msgid "Repeat last commands"
  694. msgstr "Powtarza ostatnie polecenia"
  695. msgid "Repeat times:"
  696. msgstr "Czas powtórzeń:"
  697. #, c-format
  698. msgid "Confirm save file: \"%s\""
  699. msgstr "Proszę potwierdzić zapis pliku: \"%s\""
  700. msgid "Save file"
  701. msgstr "Zapisz plik"
  702. msgid "&Save"
  703. msgstr "Zapi&sz"
  704. msgid ""
  705. "Current text was modified without a file save.\n"
  706. "Continue discards these changes"
  707. msgstr "Bieżący tekst zmodyfikowano bez zapisania pliku.\nKontynuacja spowoduje ich porzucenie."
  708. msgid "Load"
  709. msgstr "Wczytaj"
  710. msgid "Replace"
  711. msgstr "Zastąp"
  712. #, c-format
  713. msgid "%ld replacements made"
  714. msgstr "Wykonano %ld zastąpień"
  715. msgid "&Cancel quit"
  716. msgstr "N&ie zamykaj"
  717. msgid "This function is not implemented"
  718. msgstr "Ta funkcja nie jest zaimplementowana."
  719. msgid "Copy to clipboard"
  720. msgstr "Skopiuj do schowka"
  721. msgid "Unable to save to file"
  722. msgstr "Nie można zapisać do pliku"
  723. msgid "Cut to clipboard"
  724. msgstr "Wytnij do schowka"
  725. msgid "Goto line"
  726. msgstr "Przejście do wiersza"
  727. msgid "Save block"
  728. msgstr "Zapisz blok"
  729. msgid "Insert file"
  730. msgstr "Wstaw plik"
  731. msgid "Cannot insert file"
  732. msgstr "Nie można wstawić pliku"
  733. msgid "Sort block"
  734. msgstr "Posortuj blok"
  735. msgid "You must first highlight a block of text"
  736. msgstr "Należy najpierw wyróżnić blok tekstu"
  737. msgid "Run sort"
  738. msgstr "Wykonaj polecenie sort"
  739. msgid "Enter sort options (see manpage) separated by whitespace:"
  740. msgstr "Proszę podać opcje polecenia sort (proszę zobaczyć stronę man), rozdzielone spacjami: "
  741. msgid "Sort"
  742. msgstr "Posortuj"
  743. msgid "Cannot execute sort command"
  744. msgstr "Nie można wykonać polecenia sort"
  745. #, c-format
  746. msgid "Sort returned non-zero: %s"
  747. msgstr "Polecenie sort zwróciło kod błędu: %s"
  748. msgid "Paste output of external command"
  749. msgstr "Wklej wyjście zewnętrznego polecenia"
  750. msgid "Enter shell command(s):"
  751. msgstr "Proszę podać polecenia powłoki:"
  752. msgid "External command"
  753. msgstr "Zewnętrzne polecenie"
  754. msgid "Cannot execute command"
  755. msgstr "Nie można wykonać polecenia"
  756. msgid "Copies to"
  757. msgstr "Kopie do"
  758. msgid "Subject"
  759. msgstr "Tytuł"
  760. msgid "To"
  761. msgstr "Do"
  762. msgid "mail -s <subject> -c <cc> <to>"
  763. msgstr "mail -s <temat> -c <cc> <do>"
  764. msgid "Mail"
  765. msgstr "Poczta"
  766. msgid "Insert literal"
  767. msgstr "Wstaw symbol"
  768. msgid "Press any key:"
  769. msgstr "Proszę nacisnąć dowolny klawisz:"
  770. msgid ""
  771. "Current text was modified without a file save\n"
  772. "Continue discards these changes"
  773. msgstr "Bieżący tekst zmodyfikowano bez zapisania pliku.\nKontynuacja spowoduje ich porzucenie"
  774. msgid "In se&lection"
  775. msgstr "W wy&branych"
  776. msgid "Enter replacement string:"
  777. msgstr "Proszę podać zastępujący napis:"
  778. msgid "&Find all"
  779. msgstr "&Znajdź wszystkie"
  780. msgid "Cancel"
  781. msgstr "Anuluj"
  782. msgid ""
  783. "Current text was modified without a file save.\n"
  784. "Continue discards these changes."
  785. msgstr "Bieżący tekst zmodyfikowano bez zapisania pliku.\nKontynuacja spowoduje ich porzucenie."
  786. msgid "&Skip"
  787. msgstr "&Pomiń"
  788. msgid "A&ll"
  789. msgstr "&Wszystkie"
  790. msgid "&Replace"
  791. msgstr "&Zastąp"
  792. msgid "Replace with:"
  793. msgstr "Zastąpienie napisem:"
  794. msgid "Confirm replace"
  795. msgstr "Potwierdź zastąpienie"
  796. msgid "&Open file..."
  797. msgstr "&Otwórz plik..."
  798. msgid "&New"
  799. msgstr "&Nowy"
  800. msgid "Save &as..."
  801. msgstr "Z&apisz jako..."
  802. msgid "&Insert file..."
  803. msgstr "Wstaw pl&ik..."
  804. msgid "Cop&y to file..."
  805. msgstr "Skopiu&j do pliku..."
  806. msgid "&User menu..."
  807. msgstr "Menu &użytkownika..."
  808. msgid "A&bout..."
  809. msgstr "O &programie..."
  810. msgid "&Quit"
  811. msgstr "&Zakończ"
  812. msgid "&Undo"
  813. msgstr "Co&fnij"
  814. msgid "&Redo"
  815. msgstr "&Ponów"
  816. msgid "&Toggle ins/overw"
  817. msgstr "P&rzełącz wst/nad"
  818. msgid "To&ggle mark"
  819. msgstr "&Przełącz zaznaczenie"
  820. msgid "&Mark columns"
  821. msgstr "Zaznacz kolu&mny"
  822. msgid "Mark &all"
  823. msgstr "Zazn&acz wszystko"
  824. msgid "Unmar&k"
  825. msgstr "O&dznacz"
  826. msgid "Cop&y"
  827. msgstr "&Skopiuj"
  828. msgid "Mo&ve"
  829. msgstr "Prze&nieś"
  830. msgid "&Delete"
  831. msgstr "&Usuń"
  832. msgid "Co&py to clipfile"
  833. msgstr "Sk&opiuj do pliku schowka"
  834. msgid "&Cut to clipfile"
  835. msgstr "Wytnij do pliku s&chowka"
  836. msgid "Pa&ste from clipfile"
  837. msgstr "&Wklej z pliku schowka"
  838. msgid "&Beginning"
  839. msgstr "Począ&tek"
  840. msgid "&End"
  841. msgstr "Koni&ec"
  842. msgid "&Search..."
  843. msgstr "Wy&szukaj..."
  844. msgid "Search &again"
  845. msgstr "Wyszuka&j ponownie"
  846. msgid "&Replace..."
  847. msgstr "&Zastąp..."
  848. msgid "&Toggle bookmark"
  849. msgstr "Przełącz za&kładkę"
  850. msgid "&Next bookmark"
  851. msgstr "Następna &zakładka"
  852. msgid "&Prev bookmark"
  853. msgstr "Poprzedn&ia zakładka"
  854. msgid "&Flush bookmarks"
  855. msgstr "&Wyczyść zakładki"
  856. msgid "&Go to line..."
  857. msgstr "&Przejdź do wiersza..."
  858. msgid "&Toggle line state"
  859. msgstr "Przełącz sta&n wiersza"
  860. msgid "Go to matching &bracket"
  861. msgstr "Prze&jdź do pasującego nawiasu"
  862. msgid "Toggle s&yntax highlighting"
  863. msgstr "Przełącz w&yróżnianie składni"
  864. msgid "&Find declaration"
  865. msgstr "&Znajdź deklarację"
  866. msgid "Back from &declaration"
  867. msgstr "Poprzednia &deklaracja"
  868. msgid "For&ward to declaration"
  869. msgstr "Następna de&klaracja"
  870. msgid "Encod&ing..."
  871. msgstr "Kodowan&ie..."
  872. msgid "&Refresh screen"
  873. msgstr "Odśwież ek&ran"
  874. msgid "&Start/Stop record macro"
  875. msgstr "Roz&pocznij/zatrzymaj nagrywanie makra"
  876. msgid "Delete macr&o..."
  877. msgstr "&Usuń makro..."
  878. msgid "Record/Repeat &actions"
  879. msgstr "N&agraj/powtórz działania"
  880. msgid "'ispell' s&pell check"
  881. msgstr "Spr&awdzanie pisowni \"ispell\""
  882. msgid "&Mail..."
  883. msgstr "Po&czta..."
  884. msgid "Insert &literal..."
  885. msgstr "Wstaw symbo&l..."
  886. msgid "Insert &date/time"
  887. msgstr "Wstaw &datę/godzinę"
  888. msgid "&Format paragraph"
  889. msgstr "S&formatuj akapit"
  890. msgid "&Sort..."
  891. msgstr "Po&sortuj..."
  892. msgid "&Paste output of..."
  893. msgstr "Wklej wynik &polecenia..."
  894. msgid "&External formatter"
  895. msgstr "Z&ewnętrzny formater"
  896. msgid "&General..."
  897. msgstr "&Ogólne..."
  898. msgid "Save &mode..."
  899. msgstr "&Tryb zapisu..."
  900. msgid "Learn &keys..."
  901. msgstr "Określ &klawisze..."
  902. msgid "Syntax &highlighting..."
  903. msgstr "Wyróżnianie &elementów składni..."
  904. msgid "S&yntax file"
  905. msgstr "Plik &składni"
  906. msgid "&Menu file"
  907. msgstr "Plik &menu"
  908. msgid "&Save setup"
  909. msgstr "Zapisz u&stawienia"
  910. msgid "&File"
  911. msgstr "&Plik"
  912. msgid "&Edit"
  913. msgstr "&Edycja"
  914. msgid "&Search"
  915. msgstr "Wy&szukaj"
  916. msgid "&Command"
  917. msgstr "Pole&cenie"
  918. msgid "For&mat"
  919. msgstr "For&mat"
  920. msgid "&Options"
  921. msgstr "&Opcje"
  922. msgid "None"
  923. msgstr "Brak"
  924. msgid "Dynamic paragraphing"
  925. msgstr "Dynamiczne akapity"
  926. msgid "Type writer wrap"
  927. msgstr "Maszyna do pisania"
  928. msgid "Word wrap line length:"
  929. msgstr "Punkt łamania wiersza:"
  930. msgid "&Group undo"
  931. msgstr "&Grupowe cofnięcie"
  932. msgid "Cursor beyond end of line"
  933. msgstr "Kursor poza końcem wiersza"
  934. msgid "Pers&istent selection"
  935. msgstr "Trwałe zaznaczen&ie"
  936. msgid "Synta&x highlighting"
  937. msgstr "&Wyróżnianie elementów składni"
  938. msgid "Visible tabs"
  939. msgstr "Widoczne tabulacje"
  940. msgid "Visible trailing spaces"
  941. msgstr "Widoczne spacje kończące"
  942. msgid "Save file &position"
  943. msgstr "Zapisanie po&zycji pliku"
  944. msgid "Confir&m before saving"
  945. msgstr "Potwierdzenie przed zapisanie&m"
  946. msgid "&Return does autoindent"
  947. msgstr "A&utomatyczne wcięcia"
  948. msgid "Tab spacing:"
  949. msgstr "Rozmiar tabulacji:"
  950. msgid "Fill tabs with &spaces"
  951. msgstr "Wypełnianie tabulacji &spacjami"
  952. msgid "&Backspace through tabs"
  953. msgstr "&Backspace przez tabulacje"
  954. msgid "&Fake half tabs"
  955. msgstr "&Połówki tabulacji"
  956. msgid "Wrap mode"
  957. msgstr "Tryb zawijania"
  958. msgid "Editor options"
  959. msgstr "Opcje edytora"
  960. msgid "Edit: "
  961. msgstr "Edycja: "
  962. msgid "ButtonBar|Mark"
  963. msgstr "Zazncz"
  964. msgid "ButtonBar|Replac"
  965. msgstr "Zastąp"
  966. msgid "ButtonBar|Copy"
  967. msgstr "Kopiuj"
  968. msgid "ButtonBar|Move"
  969. msgstr "Przen"
  970. msgid "ButtonBar|Delete"
  971. msgstr "Usuń"
  972. msgid "ButtonBar|PullDn"
  973. msgstr "WDół"
  974. msgid "Load syntax file"
  975. msgstr "Wczytaj plik składni"
  976. #, c-format
  977. msgid ""
  978. "Cannot open file %s\n"
  979. "%s"
  980. msgstr "Nie można otworzyć pliku %s\n%s"
  981. #, c-format
  982. msgid "Error in file %s on line %d"
  983. msgstr "Błąd w pliku %s w wierszu %d"
  984. msgid ""
  985. "The Commander can't change to the directory that\n"
  986. "the subshell claims you are in. Perhaps you have\n"
  987. "deleted your working directory, or given yourself\n"
  988. "extra access permissions with the \"su\" command?"
  989. msgstr "Nie można zmienić katalogu na wskazywany przez\npodpowłokę. Prawdopodobnie katalog roboczy został\nusunięty lub użyte zostało polecenie \"su\"."
  990. msgid "The shell is already running a command"
  991. msgstr "Powłoka wykonuje już polecenie"
  992. #, c-format
  993. msgid "Type `exit' to return to the Midnight Commander"
  994. msgstr "Wpisanie \"exit\" powróci do programu Midnight Commander"
  995. #, c-format
  996. msgid "Cannot fetch a local copy of %s"
  997. msgstr "Nie można pobrać lokalnej kopii %s"
  998. msgid "&Set"
  999. msgstr "U&staw"
  1000. msgid "S&kip"
  1001. msgstr "&Pomiń"
  1002. msgid "Set &all"
  1003. msgstr "Ust&aw wszystkie"
  1004. msgid "owner"
  1005. msgstr "właśc."
  1006. msgid "group"
  1007. msgstr "grupa"
  1008. msgid "other"
  1009. msgstr "inni"
  1010. msgid "On"
  1011. msgstr "Na"
  1012. msgid "Flag"
  1013. msgstr "Flaga"
  1014. msgid "Mode"
  1015. msgstr "Tryb"
  1016. #, c-format
  1017. msgid "%6d of %d"
  1018. msgstr "%6d z %d"
  1019. msgid "Chown advanced command"
  1020. msgstr "Zaawansowane polecenie chown"
  1021. #, c-format
  1022. msgid ""
  1023. "Cannot chmod \"%s\"\n"
  1024. "%s"
  1025. msgstr "Nie można wykonać chmod na \"%s\"\n%s"
  1026. #, c-format
  1027. msgid ""
  1028. "Cannot chown \"%s\"\n"
  1029. "%s"
  1030. msgstr "Nie można wykonać chown na \"%s\"\n%s"
  1031. msgid "&Stop"
  1032. msgstr "&Zatrzymaj"
  1033. msgid "&Resume"
  1034. msgstr "&Wznów"
  1035. msgid "&Kill"
  1036. msgstr "Za&bij"
  1037. msgid "&Full file list"
  1038. msgstr "&Pełna lista plików"
  1039. msgid "&Brief file list"
  1040. msgstr "&Skrócona lista plików"
  1041. msgid "&Long file list"
  1042. msgstr "&Długa lista plików"
  1043. msgid "&User defined:"
  1044. msgstr "Określony przez &użytkownika:"
  1045. msgid "Listing mode"
  1046. msgstr "Tryb wyświetlania"
  1047. msgid "User &mini status"
  1048. msgstr "&Krótki stan użytkownika"
  1049. msgid "Other 8 bit"
  1050. msgstr "Inne 8 bitowe"
  1051. msgid "Display bits"
  1052. msgstr "Wyświetlane bity"
  1053. msgid "Input / display codepage:"
  1054. msgstr "Strona kodowa wejściowa/wyjściowa:"
  1055. msgid "F&ull 8 bits input"
  1056. msgstr "P&ełne wejście 8 bitowe"
  1057. msgid "&Select"
  1058. msgstr "&Wybierz"
  1059. msgid "Running"
  1060. msgstr "Wykonywanie"
  1061. msgid "Stopped"
  1062. msgstr "Zatrzymano"
  1063. msgid "&Reverse"
  1064. msgstr "Od&wrócony"
  1065. msgid "Case sensi&tive"
  1066. msgstr "Rozróżnianie wielkości"
  1067. msgid "Executable &first"
  1068. msgstr "Najpierw &pliki wykonywalne"
  1069. msgid "Sort order"
  1070. msgstr "Porządek sortowania"
  1071. msgid "Confirmation"
  1072. msgstr "Potwierdzenia"
  1073. #. TRANSLATORS: no need to translate 'Confirmation', it's just a context
  1074. #. prefix
  1075. #. 2
  1076. msgid "Confirmation|&History cleanup"
  1077. msgstr "Wyczyszczenie &historii"
  1078. msgid "Confirmation|Di&rectory hotlist delete"
  1079. msgstr "Usunięcie listy po&dręcznych katalogów"
  1080. msgid "Confirmation|E&xit"
  1081. msgstr "&Zakończenie"
  1082. msgid "Confirmation|&Execute"
  1083. msgstr "Wykonani&e"
  1084. msgid "Confirmation|O&verwrite"
  1085. msgstr "Za&stąpienie"
  1086. msgid "Confirmation|&Delete"
  1087. msgstr "&Usunięcie"
  1088. msgid "UTF-8 output"
  1089. msgstr "Wyjście UTF-8"
  1090. msgid "Full 8 bits output"
  1091. msgstr "Pełne wyjście 8 bitowe"
  1092. msgid "ISO 8859-1"
  1093. msgstr "ISO 8859-1"
  1094. msgid "7 bits"
  1095. msgstr "7 bitowe"
  1096. msgid "Directory tree"
  1097. msgstr "Drzewo katalogów"
  1098. msgid "Use passive mode over pro&xy"
  1099. msgstr "Użycie trybu pasywnego przez poś&rednika"
  1100. msgid "Use &passive mode"
  1101. msgstr "Użycie trybu &pasywnego"
  1102. msgid "&Use ~/.netrc"
  1103. msgstr "&Użycie pliku ~/.netrc"
  1104. msgid "&Always use ftp proxy"
  1105. msgstr "Za&wsze używaj pośrednika FTP"
  1106. msgid "sec"
  1107. msgstr "sek."
  1108. msgid "ftpfs directory cache timeout:"
  1109. msgstr "Czas katalogów w pamięci podręcznej:"
  1110. msgid "ftp anonymous password:"
  1111. msgstr "Hasło anonimowego FTP:"
  1112. msgid "Timeout for freeing VFSs:"
  1113. msgstr "Opóźnienie zwalniania VFS:"
  1114. msgid "Virtual File System Setting"
  1115. msgstr "Ustawienia wirtualnego systemu plików"
  1116. msgid "cd"
  1117. msgstr "cd"
  1118. msgid "Quick cd"
  1119. msgstr "Szybka zmiana katalogu"
  1120. msgid "Symbolic link filename:"
  1121. msgstr "Nazwa dowiązania symbolicznego:"
  1122. msgid "Existing filename (filename symlink will point to):"
  1123. msgstr "Istniejąca nazwa pliku (plik docelowy dowiązania):"
  1124. msgid "Symbolic link"
  1125. msgstr "Dowiązanie symboliczne"
  1126. msgid "Background Jobs"
  1127. msgstr "Zadania w tle"
  1128. msgid "Domain:"
  1129. msgstr "Domena:"
  1130. msgid "Username:"
  1131. msgstr "Nazwa użytkownika:"
  1132. #, c-format
  1133. msgid "Password for \\\\%s\\%s"
  1134. msgstr "Hasło dla \\\\%s\\%s"
  1135. msgid "execute/search by others"
  1136. msgstr "wykonywanie przez innych"
  1137. msgid "write by others"
  1138. msgstr "zapisywanie przez innych"
  1139. msgid "read by others"
  1140. msgstr "odczytywanie przez innych"
  1141. msgid "execute/search by group"
  1142. msgstr "wykonywanie przez grupę"
  1143. msgid "write by group"
  1144. msgstr "zapisywanie przez grupę"
  1145. msgid "read by group"
  1146. msgstr "odczytywanie przez grupę"
  1147. msgid "execute/search by owner"
  1148. msgstr "wykonywanie przez właśc."
  1149. msgid "write by owner"
  1150. msgstr "zapisywanie przez właśc."
  1151. msgid "read by owner"
  1152. msgstr "odczytywanie przez właśc."
  1153. msgid "sticky bit"
  1154. msgstr "bit \"lepkości\""
  1155. msgid "set group ID on execution"
  1156. msgstr "ustaw GID przy wykonaniu"
  1157. msgid "set user ID on execution"
  1158. msgstr "ustaw UID przy wykonaniu"
  1159. msgid "Name:"
  1160. msgstr "Nazwa:"
  1161. msgid "Permissions (octal):"
  1162. msgstr "Uprawnienia (ósemkowe):"
  1163. msgid "Owner name:"
  1164. msgstr "Nazwa właściciela:"
  1165. msgid "Group name:"
  1166. msgstr "Nazwa grupy:"
  1167. msgid "C&lear marked"
  1168. msgstr "&Wyczyść zaznaczone"
  1169. msgid "S&et marked"
  1170. msgstr "Ustaw zaznaczon&e"
  1171. msgid "&Marked all"
  1172. msgstr "Wszystkie zaz&naczone"
  1173. msgid "Chmod command"
  1174. msgstr "Polecenie chmod"
  1175. msgid "File"
  1176. msgstr "Plik"
  1177. msgid "Permission"
  1178. msgstr "Uprawnienia"
  1179. msgid "Set &users"
  1180. msgstr "Ustaw &użytkowników"
  1181. msgid "Set &groups"
  1182. msgstr "Ustaw &grupy"
  1183. msgid "Name"
  1184. msgstr "Nazwa"
  1185. msgid "Owner name"
  1186. msgstr "Nazwa właściciela"
  1187. msgid "Group name"
  1188. msgstr "Nazwa grupy"
  1189. msgid "Size"
  1190. msgstr "Rozmiar"
  1191. msgid "Chown command"
  1192. msgstr "Polecenie chown"
  1193. msgid "<Unknown user>"
  1194. msgstr "<Nieznany użytkownik>"
  1195. msgid "<Unknown group>"
  1196. msgstr "<Nieznana grupa>"
  1197. msgid "User name"
  1198. msgstr "Nazwa użytkownika"
  1199. msgid "Enter machine name (F1 for details):"
  1200. msgstr "Proszę podać nazwę komputera (F1, aby uzyskać szczegóły):"
  1201. msgid "Files tagged, want to cd?"
  1202. msgstr "Zaznaczono pliki, zmienić katalog?"
  1203. msgid "Cannot change directory"
  1204. msgstr "Nie można zmienić katalogu"
  1205. msgid "Filter"
  1206. msgstr "Filtr"
  1207. msgid "Set expression for filtering filenames"
  1208. msgstr "Proszę ustawić wyrażenie filtrujące nazwy plików"
  1209. msgid "&Using shell patterns"
  1210. msgstr "&Użycie wzorców dopasowywania"
  1211. msgid "&Case sensitive"
  1212. msgstr "&Rozróż. wielkości"
  1213. msgid "&Files only"
  1214. msgstr "&Tylko pliki"
  1215. #, c-format
  1216. msgid "Link %s to:"
  1217. msgstr "Dowiązanie %s do:"
  1218. msgid "Link"
  1219. msgstr "Dowiąż"
  1220. #, c-format
  1221. msgid "link: %s"
  1222. msgstr "dowiązanie: %s"
  1223. #, c-format
  1224. msgid "symlink: %s"
  1225. msgstr "dowiązanie symboliczne: %s"
  1226. #, c-format
  1227. msgid "Cannot chdir to \"%s\""
  1228. msgstr "Nie można zmienić katalogu na \"%s\""
  1229. msgid "View file"
  1230. msgstr "Podgląd pliku"
  1231. msgid "Filename:"
  1232. msgstr "Nazwa pliku:"
  1233. msgid "Filtered view"
  1234. msgstr "Widok filtrowany"
  1235. msgid "Filter command and arguments:"
  1236. msgstr "Polecenie i parametry filtra:"
  1237. msgid "Create a new Directory"
  1238. msgstr "Tworzenie nowego katalogu"
  1239. msgid "Enter directory name:"
  1240. msgstr "Proszę podać nazwę katalogu:"
  1241. msgid "Select"
  1242. msgstr "Wybierz"
  1243. msgid "Unselect"
  1244. msgstr "Odznacz"
  1245. msgid "Extension file edit"
  1246. msgstr "Modyfikacja pliku rozszerzeń"
  1247. msgid "Which extension file you want to edit?"
  1248. msgstr "Który plik rozszerzeń zmodyfikować? "
  1249. msgid "Highlighting groups file edit"
  1250. msgstr "Modyfikacja pliku wyróżniania grup"
  1251. msgid "Which highlighting file you want to edit?"
  1252. msgstr "Który plik wyróżniania zmodyfikować? "
  1253. msgid "Compare directories"
  1254. msgstr "Porównanie katalogów"
  1255. msgid "Select compare method:"
  1256. msgstr "Proszę wybrać metodę porównywania:"
  1257. msgid "&Quick"
  1258. msgstr "&Szybka"
  1259. msgid "&Size only"
  1260. msgstr "Tylko &rozmiar"
  1261. msgid "&Thorough"
  1262. msgstr "&Dokładna"
  1263. msgid ""
  1264. "Both panels should be in the listing mode\n"
  1265. "to use this command"
  1266. msgstr "Aby wykorzystać to polecenie, należy ustawić\noba okna na wyświetlanie listy plików"
  1267. msgid ""
  1268. "Not an xterm or Linux console;\n"
  1269. "the panels cannot be toggled."
  1270. msgstr "Panele mogą być przełączane tylko\nna konsoli xterm lub Linux."
  1271. #, c-format
  1272. msgid "Symlink `%s' points to:"
  1273. msgstr "Dowiązanie symboliczne \"%s\" wskazuje na:"
  1274. msgid "Edit symlink"
  1275. msgstr "Zmodyfikuj dowiązanie symboliczne"
  1276. #, c-format
  1277. msgid "edit symlink, unable to remove %s: %s"
  1278. msgstr "modyfikacja dowiązania symbolicznego, nie można usunąć %s: %s"
  1279. #, c-format
  1280. msgid "edit symlink: %s"
  1281. msgstr "modyfikacja dowiązania symbolicznego: %s"
  1282. #, c-format
  1283. msgid "`%s' is not a symbolic link"
  1284. msgstr "\"%s\" nie jest dowiązaniem symbolicznym"
  1285. msgid "FTP to machine"
  1286. msgstr "Połączenie FTP z komputerem"
  1287. msgid "Shell link to machine"
  1288. msgstr "Połączenie po powłoce z komputerem"
  1289. msgid "SMB link to machine"
  1290. msgstr "Połączenie SMB z komputerem"
  1291. msgid "Undelete files on an ext2 file system"
  1292. msgstr "Odtwórz pliki na systemie plików ext2"
  1293. msgid ""
  1294. "Enter device (without /dev/) to undelete\n"
  1295. "files on: (F1 for details)"
  1296. msgstr "Proszę podać urządzenie (bez /dev/), na którym\nsą pliki do odzyskania (F1, aby uzyskać szczegóły):"
  1297. msgid "Setup"
  1298. msgstr "Ustawienia"
  1299. #, c-format
  1300. msgid "Setup saved to %s"
  1301. msgstr "Ustawienia zapisano do %s"
  1302. #, c-format
  1303. msgid "Unable to save setup to %s"
  1304. msgstr "Nie można zapisać ustawień do %s"
  1305. msgid "Cannot execute commands on non-local filesystems"
  1306. msgstr "Polecenia można wykonywać tylko na lokalnym systemie plików"
  1307. #, c-format
  1308. msgid ""
  1309. "Cannot chdir to \"%s\"\n"
  1310. "%s"
  1311. msgstr "Nie można zmienić katalogu na \"%s\"\n%s"
  1312. msgid "Cannot read directory contents"
  1313. msgstr "Nie można odczytać zawartości katalogu"
  1314. #, c-format
  1315. msgid ""
  1316. "Cannot create temporary command file\n"
  1317. "%s"
  1318. msgstr "Nie można utworzyć tymczasowego pliku polecenia\n%s"
  1319. msgid "Parameter"
  1320. msgstr "Parametr"
  1321. #, c-format
  1322. msgid " %s%s file error"
  1323. msgstr " Błąd pliku %s%s"
  1324. #, c-format
  1325. msgid ""
  1326. "The format of the %smc.ext file has changed with version 3.0. It seems that "
  1327. "the installation failed. Please fetch a fresh copy from the Midnight "
  1328. "Commander package."
  1329. msgstr "Format pliku %smc.ext uległ zmianie wraz z wersją 3.0. Wygląda na to, że instalacja się nie powiodła. Proszę pobrać nową wersję tego pliku z pakietu programu Midnight Commander."
  1330. #, c-format
  1331. msgid "%s file error"
  1332. msgstr "Błąd pliku %s"
  1333. #, c-format
  1334. msgid ""
  1335. "The format of the %s file has changed with version 3.0. You may either want "
  1336. "to copy it from %smc.ext or use that file as an example of how to write it."
  1337. msgstr "Format pliku %s został zmieniony w wersji 3.0. Można skopiować go z %smc.ext lub użyć tego pliku jako przykład."
  1338. msgid "DialogTitle|Copy"
  1339. msgstr "Kopiowanie"
  1340. msgid "DialogTitle|Move"
  1341. msgstr "Przenoszenie"
  1342. msgid "DialogTitle|Delete"
  1343. msgstr "Usuwanie"
  1344. msgid "FileOperation|Copy"
  1345. msgstr "Kopiowanie"
  1346. msgid "FileOperation|Move"
  1347. msgstr "Przenoszenie"
  1348. msgid "FileOperation|Delete"
  1349. msgstr "Usuwanie"
  1350. #, no-c-format
  1351. msgid "%o %f \"%s\"%m"
  1352. msgstr "%o %f \"%s\"%m"
  1353. #, no-c-format
  1354. msgid "%o %d %f%m"
  1355. msgstr "%o %d %f%m"
  1356. msgid "file"
  1357. msgstr "pliku"
  1358. msgid "files"
  1359. msgstr "plików"
  1360. msgid "directory"
  1361. msgstr "katalogu"
  1362. msgid "directories"
  1363. msgstr "katalogów"
  1364. msgid "files/directories"
  1365. msgstr "plików/katalogów"
  1366. #. TRANSLATORS: keep leading space here to split words in Copy/Move dialog
  1367. msgid " with source mask:"
  1368. msgstr " z maską źródłową:"
  1369. msgid "to:"
  1370. msgstr "do:"
  1371. #, c-format
  1372. msgid "%s?"
  1373. msgstr "%s?"
  1374. msgid "Cannot make the hardlink"
  1375. msgstr "Nie można utworzyć dowiązania"
  1376. #, c-format
  1377. msgid ""
  1378. "Cannot read source link \"%s\"\n"
  1379. "%s"
  1380. msgstr "Nie można odczytać dowiązania źródłowego \"%s\"\n%s "
  1381. msgid ""
  1382. "Cannot make stable symlinks acrossnon-local filesystems:\n"
  1383. "\n"
  1384. "Option Stable Symlinks will be disabled"
  1385. msgstr "Dowiązania symboliczne można utworzyć tylko na lokalnym systemie plików:\n\nOpcja \"Zachowanie dowiązań symbolicznych\" zostanie wyłączona"
  1386. #, c-format
  1387. msgid ""
  1388. "Cannot create target symlink \"%s\"\n"
  1389. "%s"
  1390. msgstr "Nie można utworzyć docelowego dowiązania symbolicznego \"%s\"\n%s"
  1391. msgid "&Abort"
  1392. msgstr "&Przerwij"
  1393. msgid "Ski&p all"
  1394. msgstr "&Pomiń wszystko"
  1395. msgid "&Retry"
  1396. msgstr "P&onów"
  1397. msgid ""
  1398. "\n"
  1399. "Directory not empty.\n"
  1400. "Delete it recursively?"
  1401. msgstr "\nKatalog nie jest pusty.\nUsunąć go rekurencyjnie?"
  1402. msgid ""
  1403. "\n"
  1404. "Background process: Directory not empty.\n"
  1405. "Delete it recursively?"
  1406. msgstr "\nProces w tle: katalog nie jest pusty.\nUsunąć go rekurencyjnie? "
  1407. msgid "Delete:"
  1408. msgstr "Usunięcie:"
  1409. msgid "Non&e"
  1410. msgstr "Br&ak"
  1411. #, c-format
  1412. msgid ""
  1413. "Cannot stat file \"%s\"\n"
  1414. "%s"
  1415. msgstr "Nie można wykonać polecenia stat na pliku \"%s\"\n%s"
  1416. #, c-format
  1417. msgid ""
  1418. "\"%s\"\n"
  1419. "and\n"
  1420. "\"%s\"\n"
  1421. "are the same file"
  1422. msgstr "\"%s\"\ni\n\"%s\"\nto ten sam plik"
  1423. #, c-format
  1424. msgid "Cannot overwrite directory \"%s\""
  1425. msgstr "Nie można zastąpić katalogu \"%s\""
  1426. #, c-format
  1427. msgid ""
  1428. "Cannot move file \"%s\" to \"%s\"\n"
  1429. "%s"
  1430. msgstr "Nie można przenieść pliku \"%s\" do \"%s\"\n%s"
  1431. #, c-format
  1432. msgid ""
  1433. "Cannot remove file \"%s\"\n"
  1434. "%s"
  1435. msgstr "Nie można usunąć pliku \"%s\"\n%s"
  1436. #, c-format
  1437. msgid ""
  1438. "Cannot delete file \"%s\"\n"
  1439. "%s"
  1440. msgstr "Nie można usunąć pliku \"%s\"\n%s"
  1441. #, c-format
  1442. msgid ""
  1443. "Cannot remove directory \"%s\"\n"
  1444. "%s"
  1445. msgstr "Nie można usunąć katalogu \"%s\"\n%s"
  1446. #, c-format
  1447. msgid ""
  1448. "Cannot overwrite directory \"%s\"\n"
  1449. "%s"
  1450. msgstr "Nie można zastąpić katalogu \"%s\"\n%s"
  1451. #, c-format
  1452. msgid ""
  1453. "Cannot stat source file \"%s\"\n"
  1454. "%s"
  1455. msgstr "Nie można wykonać polecenia stat na pliku źródłowym \"%s\"\n%s"
  1456. #, c-format
  1457. msgid ""
  1458. "Cannot create special file \"%s\"\n"
  1459. "%s"
  1460. msgstr "Nie można utworzyć specjalnego pliku \"%s\"\n%s"
  1461. #, c-format
  1462. msgid ""
  1463. "Cannot chown target file \"%s\"\n"
  1464. "%s"
  1465. msgstr "Nie można zmienić właściciela pliku docelowego \"%s\"\n%s"
  1466. #, c-format
  1467. msgid ""
  1468. "Cannot chmod target file \"%s\"\n"
  1469. "%s"
  1470. msgstr "Nie można zmienić uprawnień pliku docelowego \"%s\"\n%s"
  1471. #, c-format
  1472. msgid ""
  1473. "Cannot open source file \"%s\"\n"
  1474. "%s"
  1475. msgstr "Nie można otworzyć pliku źródłowego \"%s\"\n%s"
  1476. msgid "Reget failed, about to overwrite file"
  1477. msgstr "Polecenie reget się nie powiodło, plik zostanie zastąpiony"
  1478. #, c-format
  1479. msgid ""
  1480. "Cannot fstat source file \"%s\"\n"
  1481. "%s"
  1482. msgstr "Nie można wykonać polecenia fstat na pliku źródłowym \"%s\"\n%s"
  1483. #, c-format
  1484. msgid ""
  1485. "Cannot create target file \"%s\"\n"
  1486. "%s"
  1487. msgstr "Nie można utworzyć pliku docelowego \"%s\"\n%s"
  1488. #, c-format
  1489. msgid ""
  1490. "Cannot fstat target file \"%s\"\n"
  1491. "%s"
  1492. msgstr "Nie można wykonać polecenia stat na pliku docelowym \"%s\"\n%s"
  1493. #, c-format
  1494. msgid ""
  1495. "Cannot preallocate space for target file \"%s\"\n"
  1496. "%s"
  1497. msgstr "Nie można wcześniej przydzielić miejsca dla pliku docelowego \"%s\"\n%s"
  1498. #, c-format
  1499. msgid ""
  1500. "Cannot read source file\"%s\"\n"
  1501. "%s"
  1502. msgstr "Nie można odczytać pliku źródłowego \"%s\"\n%s"
  1503. #, c-format
  1504. msgid ""
  1505. "Cannot write target file \"%s\"\n"
  1506. "%s"
  1507. msgstr "Nie można zapisać do pliku docelowego \"%s\"\n%s"
  1508. msgid "(stalled)"
  1509. msgstr "(wstrzymany)"
  1510. #, c-format
  1511. msgid ""
  1512. "Cannot close source file \"%s\"\n"
  1513. "%s"
  1514. msgstr "Nie można zamknąć pliku źródłowego \"%s\"\n%s"
  1515. #, c-format
  1516. msgid ""
  1517. "Cannot close target file \"%s\"\n"
  1518. "%s"
  1519. msgstr "Nie można zamknąć pliku docelowego \"%s\"\n%s"
  1520. msgid "Incomplete file was retrieved. Keep it?"
  1521. msgstr "Pobrano niepełny plik. Zachować go?"
  1522. msgid "&Keep"
  1523. msgstr "&Zachowaj"
  1524. #, c-format
  1525. msgid ""
  1526. "Cannot stat source directory \"%s\"\n"
  1527. "%s"
  1528. msgstr "Nie można wykonać polecenia stat na katalogu źródłowym \"%s\"\n%s"
  1529. #, c-format
  1530. msgid ""
  1531. "Source \"%s\" is not a directory\n"
  1532. "%s"
  1533. msgstr "Katalog źródłowy \"%s\" nie jest katalogiem\n%s"
  1534. #, c-format
  1535. msgid ""
  1536. "Cannot copy cyclic symbolic link\n"
  1537. "\"%s\""
  1538. msgstr "Nie można skopiować zapętlonego dowiązania symbolicznego\n\"%s\""
  1539. #, c-format
  1540. msgid ""
  1541. "Destination \"%s\" must be a directory\n"
  1542. "%s"
  1543. msgstr "Plik docelowy \"%s\" musi być katalogiem\n%s"
  1544. #, c-format
  1545. msgid ""
  1546. "Cannot create target directory \"%s\"\n"
  1547. "%s"
  1548. msgstr "Nie można utworzyć katalogu docelowego \"%s\"\n%s"
  1549. #, c-format
  1550. msgid ""
  1551. "Cannot chown target directory \"%s\"\n"
  1552. "%s"
  1553. msgstr "Nie można zmienić właściciela katalogu docelowego \"%s\"\n%s"
  1554. #, c-format
  1555. msgid ""
  1556. "\"%s\"\n"
  1557. "and\n"
  1558. "\"%s\"\n"
  1559. "are the same directory"
  1560. msgstr "\"%s\"\ni\n\"%s\"\nto ten sam katalog"
  1561. #, c-format
  1562. msgid ""
  1563. "Cannot overwrite file \"%s\"\n"
  1564. "%s"
  1565. msgstr "Nie można zastąpić pliku \"%s\"\n%s"
  1566. #, c-format
  1567. msgid ""
  1568. "Cannot move directory \"%s\" to \"%s\"\n"
  1569. "%s"
  1570. msgstr "Nie można przenieść katalogu \"%s\" do \"%s\"\n%s"
  1571. msgid "Directory scanning"
  1572. msgstr "Skanowanie katalogu"
  1573. msgid "Cannot operate on \"..\"!"
  1574. msgstr "Nie można wykonać działania na \"..\"."
  1575. #, c-format
  1576. msgid ""
  1577. "Cannot stat \"%s\"\n"
  1578. "%s"
  1579. msgstr "Nie można wykonać polecenia stat na \"%s\"\n%s"
  1580. msgid "Sorry, I could not put the job in background"
  1581. msgstr "Nie można umieścić zadania w tle"
  1582. #, c-format
  1583. msgid "%d:%02d.%02d"
  1584. msgstr "%d:%02d.%02d"
  1585. #, c-format
  1586. msgid "ETA %s"
  1587. msgstr "ETA %s"
  1588. #, c-format
  1589. msgid "%.2f MB/s"
  1590. msgstr "%.2f MB/s"
  1591. #, c-format
  1592. msgid "%.2f KB/s"
  1593. msgstr "%.2f KB/s"
  1594. #, c-format
  1595. msgid "%ld B/s"
  1596. msgstr "%ld B/s"
  1597. msgid "Target file already exists!"
  1598. msgstr "Plik docelowy już istnieje."
  1599. #, c-format
  1600. msgid "Source date: %s, size %llu"
  1601. msgstr "Data źródłowa: %s, rozmiar %llu"
  1602. #, c-format
  1603. msgid "Target date: %s, size %llu"
  1604. msgstr "Data docelowa: %s, rozmiar %llu"
  1605. msgid "If &size differs"
  1606. msgstr "Jeśli różni się &rozmiar"
  1607. msgid "&Update"
  1608. msgstr "Zakt&ualizuj"
  1609. msgid "Overwrite all targets?"
  1610. msgstr "Zastąpić wszystkie pliki docelowe?"
  1611. msgid "&Reget"
  1612. msgstr "&Wznów"
  1613. msgid "A&ppend"
  1614. msgstr "&Dołącz"
  1615. msgid "Overwrite this target?"
  1616. msgstr "Zastąpić ten plik docelowy?"
  1617. msgid "File exists"
  1618. msgstr "Plik istnieje"
  1619. msgid "Background process: File exists"
  1620. msgstr "Proces w tle: plik istnieje"
  1621. #, c-format
  1622. msgid "Files processed: %zu/%zu"
  1623. msgstr "Przetworzono plików: %zu/%zu"
  1624. #, c-format
  1625. msgid "Files processed: %zu"
  1626. msgstr "Przetworzono plików: %zu"
  1627. #, c-format
  1628. msgid "Time: %s %s"
  1629. msgstr "Czas: %s %s"
  1630. #, c-format
  1631. msgid "Time: %s %s (%s)"
  1632. msgstr "Czas: %s %s (%s)"
  1633. #, c-format
  1634. msgid "Time: %s"
  1635. msgstr "Czas: %s"
  1636. #, c-format
  1637. msgid "Time: %s (%s)"
  1638. msgstr "Czas: %s (%s)"
  1639. #, c-format
  1640. msgid " Total: %s "
  1641. msgstr " Razem: %s "
  1642. #, c-format
  1643. msgid " Total: %s/%s "
  1644. msgstr " Razem: %s/%s "
  1645. msgid "Source"
  1646. msgstr "Źródło"
  1647. msgid "Target"
  1648. msgstr "Cel"
  1649. msgid "Deleting"
  1650. msgstr "Usuwanie"
  1651. msgid "&Background"
  1652. msgstr "&W tle"
  1653. msgid "&Stable Symlinks"
  1654. msgstr "Zachowanie dowiązań s&ymbolicznych"
  1655. msgid "Di&ve into subdir if exists"
  1656. msgstr "&Schodzenie do podkat., jeśli istnieją"
  1657. msgid "Preserve &attributes"
  1658. msgstr "&Zachowanie atrybutów"
  1659. msgid "Follow &links"
  1660. msgstr "Podążanie za &dowiązaniami"
  1661. #, c-format
  1662. msgid "Invalid source pattern `%s'"
  1663. msgstr "Nieprawidłowy wzór źródłowy \"%s\""
  1664. msgid "&Suspend"
  1665. msgstr "W&strzymaj"
  1666. msgid "Con&tinue"
  1667. msgstr "Kon&tynuuj"
  1668. msgid "&Chdir"
  1669. msgstr "&Zmień katalog"
  1670. msgid "&Again"
  1671. msgstr "&Ponownie"
  1672. msgid "Pane&lize"
  1673. msgstr "Fi&ltruj"
  1674. msgid "&View - F3"
  1675. msgstr "&Podgląd - F3"
  1676. msgid "&Edit - F4"
  1677. msgstr "&Edycja - F4"
  1678. #, c-format
  1679. msgid "Found: %ld"
  1680. msgstr "Odnaleziono: %ld"
  1681. msgid "Malformed regular expression"
  1682. msgstr "Błędnie sformatowane wyrażenie regularne"
  1683. msgid "&Find recursively"
  1684. msgstr "&Znajdź rekurencyjnie"
  1685. msgid "S&kip hidden"
  1686. msgstr "Pomiń u&kryte"
  1687. msgid "Sea&rch for content"
  1688. msgstr "Wyszukiwanie &treści"
  1689. msgid "Case sens&itive"
  1690. msgstr "Rozróżn&ianie wielkości"
  1691. msgid "Fir&st hit"
  1692. msgstr "Pier&wsze trafienie"
  1693. msgid "A&ll charsets"
  1694. msgstr "Wszystkie &zest. znaków"
  1695. msgid "&Tree"
  1696. msgstr "&Drzewo"
  1697. msgid "Find File"
  1698. msgstr "Znajdź plik"
  1699. msgid "Content:"
  1700. msgstr "Zawartość:"
  1701. msgid "File name:"
  1702. msgstr "Nazwa pliku:"
  1703. msgid "Ena&ble ignore directories:"
  1704. msgstr "Włączenie i&gnorowania katalogów:"
  1705. msgid "Start at:"
  1706. msgstr "Rozpoczęcie w:"
  1707. #, c-format
  1708. msgid "Grepping in %s"
  1709. msgstr "Wyszukiwanie w %s"
  1710. msgid "Finished"
  1711. msgstr "Ukończono"
  1712. #, c-format
  1713. msgid "Finished (ignored %zd directory)"
  1714. msgid_plural "Finished (ignored %zd directories)"
  1715. msgstr[0] "Ukończono (zignorowano %zd katalog)"
  1716. msgstr[1] "Ukończono (zignorowano %zd katalogi)"
  1717. msgstr[2] "Ukończono (zignorowano %zd katalogów)"
  1718. #, c-format
  1719. msgid "Searching %s"
  1720. msgstr "Wyszukiwanie %s"
  1721. msgid "Searching"
  1722. msgstr "Wyszukiwanie"
  1723. msgid "&Move"
  1724. msgstr "Prze&nieś"
  1725. msgid "&Remove"
  1726. msgstr "&Usuń"
  1727. msgid "&Append"
  1728. msgstr "D&ołącz"
  1729. msgid "&Insert"
  1730. msgstr "&Wstaw"
  1731. msgid "New &entry"
  1732. msgstr "Nowy wpi&s"
  1733. msgid "New &group"
  1734. msgstr "Nowa &grupa"
  1735. msgid "&Up"
  1736. msgstr "&W górę"
  1737. msgid "&Add current"
  1738. msgstr "Doda&j bieżący"
  1739. msgid "&Refresh"
  1740. msgstr "&Odśwież"
  1741. msgid "Fr&ee VFSs now"
  1742. msgstr "Zwolnij &VFS"
  1743. msgid "Change &to"
  1744. msgstr "Zmień &na"
  1745. msgid "Subgroup - press ENTER to see list"
  1746. msgstr "Podgrupa - ENTER wyświetla listę"
  1747. msgid "Active VFS directories"
  1748. msgstr "Aktywne katalogi VFS"
  1749. msgid "Directory hotlist"
  1750. msgstr "Lista podręcznych katalogów"
  1751. msgid "Directory path"
  1752. msgstr "Ścieżka katalogu"
  1753. msgid "Directory label"
  1754. msgstr "Etykieta katalogu"
  1755. #, c-format
  1756. msgid "Moving %s"
  1757. msgstr "Przenoszenie %s"
  1758. msgid "New hotlist entry"
  1759. msgstr "Nowy wpis podręczny"
  1760. msgid "Directory label:"
  1761. msgstr "Etykieta katalogu:"
  1762. msgid "Directory path:"
  1763. msgstr "Ścieżka katalogu:"
  1764. msgid "New hotlist group"
  1765. msgstr "Nowa grupa podręczna"
  1766. msgid "Name of new group:"
  1767. msgstr "Nazwa nowej grupy:"
  1768. #, c-format
  1769. msgid "Are you sure you want to remove entry \"%s\"?"
  1770. msgstr "Na pewno usunąć wpis \"%s\"?"
  1771. #, c-format
  1772. msgid ""
  1773. "Group \"%s\" is not empty.\n"
  1774. "Remove it?"
  1775. msgstr "Grupa \"%s\" nie jest pusta.\nUsunąć ją?"
  1776. msgid "Top level group"
  1777. msgstr "Grupa główna"
  1778. msgid "Hotlist Load"
  1779. msgstr "Wczytaj listę podręcznych katalogów"
  1780. #, c-format
  1781. msgid ""
  1782. "MC was unable to write %s file,\n"
  1783. "your old hotlist entries were not deleted"
  1784. msgstr "Program MC nie może zapisać pliku %s.\nPoprzednie wpisy listy podręcznych katalogów\nnie zostały usunięte"
  1785. #, c-format
  1786. msgid "Label for \"%s\":"
  1787. msgstr "Etykieta dla \"%s\":"
  1788. msgid "Add to hotlist"
  1789. msgstr "Dodaj do podręcznych"
  1790. msgid "Information"
  1791. msgstr "Informacje"
  1792. #, c-format
  1793. msgid "Midnight Commander %s"
  1794. msgstr "Midnight Commander %s"
  1795. #, c-format
  1796. msgid "File: %s"
  1797. msgstr "Plik: %s"
  1798. msgid "No node information"
  1799. msgstr "Brak informacji o węźle"
  1800. msgid "Free nodes:"
  1801. msgstr "Wolne węzły:"
  1802. msgid "No space information"
  1803. msgstr "Brak informacji o miejscu"
  1804. #, c-format
  1805. msgid "Free space: %s/%s (%d%%)"
  1806. msgstr "Wolne miejsce: %s/%s (%d%%)"
  1807. #, c-format
  1808. msgid "Type: %s"
  1809. msgstr "Typ: %s"
  1810. msgid "non-local vfs"
  1811. msgstr "zdalny VFS"
  1812. #, c-format
  1813. msgid "Device: %s"
  1814. msgstr "Urządzenie: %s"
  1815. #, c-format
  1816. msgid "Filesystem: %s"
  1817. msgstr "System plików: %s"
  1818. #, c-format
  1819. msgid "Accessed: %s"
  1820. msgstr "Ostatni dostęp: %s"
  1821. #, c-format
  1822. msgid "Modified: %s"
  1823. msgstr "Zmodyfikowany: %s"
  1824. #. TRANSLATORS: Time of last status change as in stat(2) man.
  1825. #, c-format
  1826. msgid "Changed: %s"
  1827. msgstr "Zmieniony: %s"
  1828. #, c-format
  1829. msgid "Dev. type: major %lu, minor %lu"
  1830. msgstr "Urządzenie: numer %lu, podnumer %lu"
  1831. #, c-format
  1832. msgid "Size: %s"
  1833. msgstr "Rozmiar: %s"
  1834. #, c-format
  1835. msgid " (%ld block)"
  1836. msgid_plural " (%ld blocks)"
  1837. msgstr[0] " (%ld blok)"
  1838. msgstr[1] " (%ld bloki)"
  1839. msgstr[2] " (%ld bloków)"
  1840. #, c-format
  1841. msgid "Owner: %s/%s"
  1842. msgstr "Właściciel: %s/%s"
  1843. #, c-format
  1844. msgid "Links: %d"
  1845. msgstr "Dowiązania: %d"
  1846. #, c-format
  1847. msgid "Mode: %s (%04o)"
  1848. msgstr "Tryb: %s (%04o)"
  1849. #, c-format
  1850. msgid "Location: %Xh:%Xh"
  1851. msgstr "Położenie: %Xh:%Xh"
  1852. msgid "Show free sp&ace"
  1853. msgstr "Wyświetla&nie wolnego miejsca"
  1854. msgid "&XTerm window title"
  1855. msgstr "Tytuł okna &Xterm"
  1856. msgid "H&intbar visible"
  1857. msgstr "Pasek &porad"
  1858. msgid "&Keybar visible"
  1859. msgstr "Pasek &klawiszy"
  1860. msgid "Command &prompt"
  1861. msgstr "&Znak zachęty"
  1862. msgid "Menu&bar visible"
  1863. msgstr "Pasek &menu"
  1864. msgid "&Equal split"
  1865. msgstr "Równy &podział"
  1866. msgid "Panel split"
  1867. msgstr "Podział na panele"
  1868. msgid "Console output"
  1869. msgstr "Wyjście konsoli"
  1870. msgid "Other options"
  1871. msgstr "Inne opcje"
  1872. msgid "&Vertical"
  1873. msgstr "P&ionowy"
  1874. msgid "&Horizontal"
  1875. msgstr "Poziom&y"
  1876. msgid "Output lines:"
  1877. msgstr "Wiersze wyjścia:"
  1878. msgid "Layout"
  1879. msgstr "Układ"
  1880. msgid "File listin&g"
  1881. msgstr "&Lista plików"
  1882. msgid "&Quick view"
  1883. msgstr "&Szybki widok"
  1884. msgid "&Info"
  1885. msgstr "&Informacje"
  1886. msgid "&Listing mode..."
  1887. msgstr "&Tryb wyświetlania..."
  1888. msgid "&Sort order..."
  1889. msgstr "Porządek s&ortowania..."
  1890. msgid "&Filter..."
  1891. msgstr "&Filtr..."
  1892. msgid "&Encoding..."
  1893. msgstr "&Kodowanie..."
  1894. msgid "FT&P link..."
  1895. msgstr "Połączenie FT&P..."
  1896. msgid "S&hell link..."
  1897. msgstr "Połączenie po po&włoce..."
  1898. msgid "SM&B link..."
  1899. msgstr "Połączenie SM&B..."
  1900. msgid "Paneli&ze"
  1901. msgstr "Filtru&j"
  1902. msgid "&Rescan"
  1903. msgstr "Odświ&eż"
  1904. msgid "&View"
  1905. msgstr "&Podgląd"
  1906. msgid "Vie&w file..."
  1907. msgstr "Pod&gląd pliku..."
  1908. msgid "&Filtered view"
  1909. msgstr "Widok &filtrowany"
  1910. msgid "&Copy"
  1911. msgstr "&Skopiuj"
  1912. msgid "C&hmod"
  1913. msgstr "Z&mień uprawnienia"
  1914. msgid "&Link"
  1915. msgstr "&Dowiąż"
  1916. msgid "&Symlink"
  1917. msgstr "Dowiąż symbo&licznie"
  1918. msgid "Relative symlin&k"
  1919. msgstr "&Względne dowiązanie symboliczne"
  1920. msgid "Edit s&ymlink"
  1921. msgstr "Zmodyfikuj dowiązanie s&ymboliczne"
  1922. msgid "Ch&own"
  1923. msgstr "Zm&ień właściciela"
  1924. msgid "&Advanced chown"
  1925. msgstr "Z&aawansowana zmiana właściciela"
  1926. msgid "&Rename/Move"
  1927. msgstr "Zmień nazwę/p&rzenieś"
  1928. msgid "&Mkdir"
  1929. msgstr "Utwórz &katalog"
  1930. msgid "&Quick cd"
  1931. msgstr "Szybka zmiana kata&logu"
  1932. msgid "Select &group"
  1933. msgstr "&Zaznacz grupę"
  1934. msgid "U&nselect group"
  1935. msgstr "Odz&nacz grupę"
  1936. msgid "&Invert selection"
  1937. msgstr "&Odwróć zaznaczenie"
  1938. msgid "E&xit"
  1939. msgstr "Zakoń&cz"
  1940. msgid "&User menu"
  1941. msgstr "Menu &użytkownika"
  1942. msgid "&Directory tree"
  1943. msgstr "&Drzewo katalogów"
  1944. msgid "&Find file"
  1945. msgstr "&Znajdź plik"
  1946. msgid "S&wap panels"
  1947. msgstr "&Przełącz panele"
  1948. msgid "Switch &panels on/off"
  1949. msgstr "Prz&ełącz wyświetlanie paneli"
  1950. msgid "&Compare directories"
  1951. msgstr "P&orównanie katalogów"
  1952. msgid "C&ompare files"
  1953. msgstr "P&orównaj pliki"
  1954. msgid "E&xternal panelize"
  1955. msgstr "Panele ze&wnętrzne"
  1956. msgid "Show directory s&izes"
  1957. msgstr "Wyśw&ietl rozmiary katalogów"
  1958. msgid "Command &history"
  1959. msgstr "&Historia poleceń"
  1960. msgid "Di&rectory hotlist"
  1961. msgstr "Lista pod&ręcznych katalogów"
  1962. msgid "&Active VFS list"
  1963. msgstr "Lista &aktywnych VFS"
  1964. msgid "&Background jobs"
  1965. msgstr "Zadania w &tle"
  1966. msgid "Screen lis&t"
  1967. msgstr "Li&sta ekranów"
  1968. msgid "&Undelete files (ext2fs only)"
  1969. msgstr "&Odtwórz pliki (tylko system plików ext2)"
  1970. msgid "&Listing format edit"
  1971. msgstr "Modyfikacja &formatu wyświetlania"
  1972. msgid "Edit &extension file"
  1973. msgstr "Zmodyfikuj plik rozsz&erzeń"
  1974. msgid "Edit &menu file"
  1975. msgstr "Zmodyfikuj plik &menu"
  1976. msgid "Edit hi&ghlighting group file"
  1977. msgstr "Zmodyfikuj plik wyróżniania &grup"
  1978. msgid "&Configuration..."
  1979. msgstr "&Konfiguracja..."
  1980. msgid "&Layout..."
  1981. msgstr "&Układ..."
  1982. msgid "&Panel options..."
  1983. msgstr "Opcje &panelu..."
  1984. msgid "C&onfirmation..."
  1985. msgstr "P&otwierdzenie..."
  1986. msgid "&Display bits..."
  1987. msgstr "&Wyświetlane bity..."
  1988. msgid "&Virtual FS..."
  1989. msgstr "Wirtualny &system plików..."
  1990. msgid "Panels:"
  1991. msgstr "Panele:"
  1992. #, c-format
  1993. msgid "You have %zd opened screen. Quit anyway?"
  1994. msgid_plural "You have %zd opened screens. Quit anyway?"
  1995. msgstr[0] "Pozostał %zd otwarty ekran. Zakończyć mimo to?"
  1996. msgstr[1] "Pozostały %zd otwarte ekrany. Zakończyć mimo to?"
  1997. msgstr[2] "Pozostało %zd otwartych ekranów. Zakończyć mimo to?"
  1998. msgid "The Midnight Commander"
  1999. msgstr "Midnight Commander"
  2000. msgid "Do you really want to quit the Midnight Commander?"
  2001. msgstr "Na pewno zakończyć program Midnight Commander?"
  2002. msgid "&Above"
  2003. msgstr "P&owyżej"
  2004. msgid "&Left"
  2005. msgstr "&Lewy"
  2006. msgid "&Below"
  2007. msgstr "&Poniżej"
  2008. msgid "&Right"
  2009. msgstr "P&rawy"
  2010. msgid "ButtonBar|Menu"
  2011. msgstr "Menu"
  2012. msgid "ButtonBar|View"
  2013. msgstr "Podgld"
  2014. msgid "ButtonBar|RenMov"
  2015. msgstr "Przen"
  2016. msgid "ButtonBar|Mkdir"
  2017. msgstr "UtwKat"
  2018. msgid "Memory exhausted!"
  2019. msgstr "Wyczerpano pamięć"
  2020. msgid "&Never"
  2021. msgstr "&Nigdy"
  2022. msgid "On dum&b terminals"
  2023. msgstr "Na prostych &terminalach"
  2024. msgid "Alwa&ys"
  2025. msgstr "&Zawsze"
  2026. msgid "A&uto save setup"
  2027. msgstr "Auto&matyczny zapis ustawień"
  2028. msgid "Sa&fe delete"
  2029. msgstr "Bezpieczne &usuwanie"
  2030. msgid "Cd follows lin&ks"
  2031. msgstr "\"cd\" podąża za &dowiązaniami"
  2032. msgid "Rotating d&ash"
  2033. msgstr "O&bracająca się kreska"
  2034. msgid "Co&mplete: show all"
  2035. msgstr "Uzupełnianie: wyśw. wszystkic&h"
  2036. msgid "Shell &patterns"
  2037. msgstr "Wzorce &powłoki"
  2038. msgid "&Drop down menus"
  2039. msgstr "Rozwi&janie menu"
  2040. msgid "Auto m&enus"
  2041. msgstr "Automatyczne m&enu"
  2042. msgid "Use internal vie&w"
  2043. msgstr "Uży&cie wewnętrznej przeglądarki"
  2044. msgid "Use internal edi&t"
  2045. msgstr "Użyc&ie wewnętrznego edytora"
  2046. msgid "Pause after run"
  2047. msgstr "Wstrzymanie po uruchomieniu"
  2048. msgid "Timeout:"
  2049. msgstr "Czas oczekiwania:"
  2050. msgid "S&ingle press"
  2051. msgstr "Po&jedyncze naciśnięcie"
  2052. msgid "Esc key mode"
  2053. msgstr "Tryb klawisza Escape"
  2054. msgid "Preallocate &space"
  2055. msgstr "Przydzielanie &miejsca z wyprzedzeniem"
  2056. msgid "Mkdi&r autoname"
  2057. msgstr "Automatyczna nazwa przy \"mkdi&r\""
  2058. msgid "Classic pro&gressbar"
  2059. msgstr "&Klasyczny pasek postępu"
  2060. msgid "Compute tota&ls"
  2061. msgstr "Obliczanie &objętości"
  2062. msgid "&Verbose operation"
  2063. msgstr "&Więcej informacje o działaniu"
  2064. msgid "File operation options"
  2065. msgstr "Opcje działań na plikach"
  2066. msgid "Configure options"
  2067. msgstr "Konfiguracja opcji"
  2068. msgid "Case &insensitive"
  2069. msgstr "Bez rozróżniania w&ielkości"
  2070. msgid "Case s&ensitive"
  2071. msgstr "Rozróżnianie wi&elkości"
  2072. msgid "Use panel sort mo&de"
  2073. msgstr "Użycie trybu sortowania &panelu"
  2074. msgid "Quick search"
  2075. msgstr "Szybkie wyszukiwanie"
  2076. msgid "&Permissions"
  2077. msgstr "&Uprawnienia"
  2078. msgid "File &types"
  2079. msgstr "Typy p&lików"
  2080. msgid "File highlight"
  2081. msgstr "Wyróżnianie plików"
  2082. msgid "&Mouse page scrolling"
  2083. msgstr "Przewijanie stron &myszą"
  2084. msgid "Pa&ge scrolling"
  2085. msgstr "Przewijanie &stron"
  2086. msgid "L&ynx-like motion"
  2087. msgstr "Obsługa w stylu programu L&ynx"
  2088. msgid "Navigation"
  2089. msgstr "Nawigacja"
  2090. msgid "A&uto save panels setup"
  2091. msgstr "Auto&matyczny zapis ustawień paneli"
  2092. msgid "Simple s&wap"
  2093. msgstr "Proste &przełączenie"
  2094. msgid "Re&verse files only"
  2095. msgstr "&Tylko odwrotne pliki"
  2096. msgid "Ma&rk moves down"
  2097. msgstr "Zaznaczenie p&rzesuwa w dół"
  2098. msgid "&Fast dir reload"
  2099. msgstr "Szy&bkie odświeżanie katalogów"
  2100. msgid "Show &hidden files"
  2101. msgstr "Wyświetlanie u&krytych plików"
  2102. msgid "Show &backup files"
  2103. msgstr "Wyświetlanie p&lików zapasowych"
  2104. msgid "Mi&x all files"
  2105. msgstr "&Mieszanie wszystkich plików"
  2106. msgid "Use SI si&ze units"
  2107. msgstr "Użycie je&dnostek rozmiaru SI"
  2108. msgid "Show mi&ni-status"
  2109. msgstr "Wyświetla&nie ministanu"
  2110. msgid "Panel options"
  2111. msgstr "Opcje panelu"
  2112. msgid ""
  2113. "Using the fast reload option may not reflect the exact\n"
  2114. "directory contents. In this case you'll need to do a\n"
  2115. "manual reload of the directory. See the man page for\n"
  2116. "the details."
  2117. msgstr "Używając opcji szybkiego odświeżenia katalogów ich\nich zawartość może nie być wiernie przedstawiana.\nW tym przypadku należy ręcznie odświeżyć katalog.\nProszę zobaczyć stronę man, aby poznać szczegóły."
  2118. #. TRANSLATORS: one single character to represent 'unsorted' sort mode
  2119. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2120. msgid "sort|u"
  2121. msgstr "u"
  2122. msgid "&Unsorted"
  2123. msgstr "Nie&uporządkowane"
  2124. #. TRANSLATORS: one single character to represent 'name' sort mode
  2125. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2126. msgid "sort|n"
  2127. msgstr "n"
  2128. msgid "&Name"
  2129. msgstr "&Nazwa"
  2130. #. TRANSLATORS: one single character to represent 'version' sort mode
  2131. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2132. msgid "sort|v"
  2133. msgstr "w"
  2134. msgid "&Version"
  2135. msgstr "&Wersja"
  2136. #. TRANSLATORS: one single character to represent 'extension' sort mode
  2137. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2138. msgid "sort|e"
  2139. msgstr "e"
  2140. msgid "&Extension"
  2141. msgstr "Rozsz&erzenie"
  2142. #. TRANSLATORS: one single character to represent 'size' sort mode
  2143. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2144. msgid "sort|s"
  2145. msgstr "r"
  2146. msgid "&Size"
  2147. msgstr "&Rozmiar"
  2148. msgid "Block Size"
  2149. msgstr "Rozmiar bloku"
  2150. #. TRANSLATORS: one single character to represent 'Modify time' sort mode
  2151. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2152. msgid "sort|m"
  2153. msgstr "m"
  2154. msgid "&Modify time"
  2155. msgstr "Czas &modyfikacji"
  2156. #. TRANSLATORS: one single character to represent 'Access time' sort mode
  2157. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2158. msgid "sort|a"
  2159. msgstr "d"
  2160. msgid "&Access time"
  2161. msgstr "Czas &dostępu"
  2162. #. TRANSLATORS: one single character to represent 'Change time' sort mode
  2163. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2164. msgid "sort|h"
  2165. msgstr "z"
  2166. msgid "C&hange time"
  2167. msgstr "Czas &zmiany"
  2168. msgid "Perm"
  2169. msgstr "Prawa"
  2170. msgid "Nl"
  2171. msgstr "Ld"
  2172. #. TRANSLATORS: one single character to represent 'inode' sort mode
  2173. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2174. msgid "sort|i"
  2175. msgstr "i"
  2176. msgid "&Inode"
  2177. msgstr "&I-węzeł"
  2178. msgid "UID"
  2179. msgstr "UID"
  2180. msgid "GID"
  2181. msgstr "GID"
  2182. msgid "Owner"
  2183. msgstr "Właściciel"
  2184. msgid "Group"
  2185. msgstr "Grupa"
  2186. msgid "[dev]"
  2187. msgstr "[urz]"
  2188. msgid "UP--DIR"
  2189. msgstr "NADRZĘD"
  2190. msgid "SYMLINK"
  2191. msgstr "DOW-SYM"
  2192. msgid "SUB-DIR"
  2193. msgstr "PODKAT"
  2194. msgid "<readlink failed>"
  2195. msgstr "<readlink się nie powiodło>"
  2196. #, c-format
  2197. msgid "%s byte"
  2198. msgid_plural "%s bytes"
  2199. msgstr[0] "%s bajt"
  2200. msgstr[1] "%s bajty"
  2201. msgstr[2] "%s bajtów"
  2202. #, c-format
  2203. msgid "%s in %d file"
  2204. msgid_plural "%s in %d files"
  2205. msgstr[0] "%s w %d pliku"
  2206. msgstr[1] "%s w %d plikach"
  2207. msgstr[2] "%s w %d plikach"
  2208. msgid "Panelize"
  2209. msgstr "Filtruj"
  2210. msgid "Unknown tag on display format:"
  2211. msgstr "Nieznany znacznik w formacie wyświetlania:"
  2212. msgid "Do you really want to execute?"
  2213. msgstr "Na pewno wykonać?"
  2214. msgid "User supplied format looks invalid, reverting to default."
  2215. msgstr "Format użytkownika jest nieprawidłowy, przywrócono domyślny."
  2216. msgid "&Add new"
  2217. msgstr "Dod&aj nowy"
  2218. msgid "External panelize"
  2219. msgstr "Filtr zewnętrzny"
  2220. msgid "Command"
  2221. msgstr "Polecenie"
  2222. msgid "Other command"
  2223. msgstr "Inne polecenie"
  2224. msgid "Add to external panelize"
  2225. msgstr "Dodaj do filtrów zewnętrznych"
  2226. msgid "Enter command label:"
  2227. msgstr "Proszę podać etykietę polecenia:"
  2228. msgid "Cannot invoke command."
  2229. msgstr "Nie można wywołać polecenia."
  2230. msgid "Pipe close failed"
  2231. msgstr "Zamknięcie potoku się nie powiodło"
  2232. msgid "Cannot run external panelize in a non-local directory"
  2233. msgstr "Filtr zewnętrzny można uruchamiać tylko w lokalnym katalogu"
  2234. msgid "Modified git files"
  2235. msgstr "Zmodyfikowane pliki git"
  2236. msgid "Find rejects after patching"
  2237. msgstr "Znajdź odrzuty po łataniu"
  2238. msgid "Find *.orig after patching"
  2239. msgstr "Znajdź pliki *.orig po łataniu"
  2240. msgid "Find SUID and SGID programs"
  2241. msgstr "Znajdź programy SUID i SGID"
  2242. #, c-format
  2243. msgid ""
  2244. "Cannot open the %s file for writing:\n"
  2245. "%s\n"
  2246. msgstr "Nie można otworzyć pliku %s do zapisania:\n%s\n"
  2247. #, c-format
  2248. msgid "Copy \"%s\" directory to:"
  2249. msgstr "Skopiuj katalog \"%s\" do:"
  2250. #, c-format
  2251. msgid "Move \"%s\" directory to:"
  2252. msgstr "Przenieś katalog \"%s\" do:"
  2253. #, c-format
  2254. msgid ""
  2255. "Cannot stat the destination\n"
  2256. "%s"
  2257. msgstr "Nie można wykonać polecenia stat na pliku docelowym\n%s"
  2258. #, c-format
  2259. msgid "Delete %s?"
  2260. msgstr "Usunąć %s?"
  2261. msgid "ButtonBar|Static"
  2262. msgstr "Statyc"
  2263. msgid "ButtonBar|Dynamc"
  2264. msgstr "Dynam"
  2265. msgid "ButtonBar|Rescan"
  2266. msgstr "Odśwż"
  2267. msgid "ButtonBar|Forget"
  2268. msgstr "Porzuć"
  2269. msgid "ButtonBar|Rmdir"
  2270. msgstr "UsuńKt"
  2271. #, c-format
  2272. msgid ""
  2273. "Cannot write to the %s file:\n"
  2274. "%s\n"
  2275. msgstr "Nie można zapisać do pliku %s:\n%s\n"
  2276. msgid "Debug"
  2277. msgstr "Debugowanie"
  2278. msgid "ERROR:"
  2279. msgstr "BŁĄD:"
  2280. msgid "True:"
  2281. msgstr "Prawda:"
  2282. msgid "False:"
  2283. msgstr "Fałsz:"
  2284. msgid "Error calling program"
  2285. msgstr "Błąd podczas wywoływania programu"
  2286. msgid "Warning -- ignoring file"
  2287. msgstr "Ostrzeżenie - ignorowanie pliku"
  2288. #, c-format
  2289. msgid ""
  2290. "File %s is not owned by root or you or is world writable.\n"
  2291. "Using it may compromise your security"
  2292. msgstr "Właścicielem pliku %s jest root i jest on zapisywalny przez\nwszystkich. Użycie go może negatywnie wpłynąć na bezpieczeństwo"
  2293. msgid "Format error on file Extensions File"
  2294. msgstr "Błąd formatu pliku rozszerzeń"
  2295. #, c-format
  2296. msgid "The %%var macro has no default"
  2297. msgstr "Makro %%var nie posiada wartości domyślnej"
  2298. #, c-format
  2299. msgid "The %%var macro has no variable"
  2300. msgstr "Makro %%var nie posiada zmiennych"
  2301. #, c-format
  2302. msgid ""
  2303. "Cannot open file%s\n"
  2304. "%s"
  2305. msgstr "Nie można otworzyć pliku %s\n%s"
  2306. #, c-format
  2307. msgid "No suitable entries found in %s"
  2308. msgstr "Nie odnaleziono odpowiednich wpisów w %s"
  2309. msgid "User menu"
  2310. msgstr "Menu użytkownika"
  2311. msgid "Help file format error\n"
  2312. msgstr "Błąd formatu pliku pomocy\n"
  2313. msgid "Internal bug: Double start of link area"
  2314. msgstr "Błąd wewnętrzny: zagnieżdżony początek obszaru odsyłacza"
  2315. #, c-format
  2316. msgid "Cannot find node %s in help file"
  2317. msgstr "Nie można odnaleźć węzła %s w pliku pomocy"
  2318. msgid "Help"
  2319. msgstr "Pomoc"
  2320. msgid "ButtonBar|Index"
  2321. msgstr "Indeks"
  2322. msgid "ButtonBar|Prev"
  2323. msgstr "Poprz"
  2324. msgid "Learn keys"
  2325. msgstr "Określ klawisze"
  2326. msgid "Teach me a key"
  2327. msgstr "Nauka klawiszy"
  2328. #, c-format
  2329. msgid ""
  2330. "Please press the %s\n"
  2331. "and then wait until this message disappears.\n"
  2332. "\n"
  2333. "Then, press it again to see if OK appears\n"
  2334. "next to its button.\n"
  2335. "\n"
  2336. "If you want to escape, press a single Escape key\n"
  2337. "and wait as well."
  2338. msgstr "Proszę nacisnąć klawisz %s\ni poczekaj na zniknięcie tej wiadomości.\n\nNastępnie proszę nacisnąć ponownie, aby przy\nodpowiednim klawiszu pojawił się napis OK.\n\nAby zrezygnować, należy nacisnąć klawisz Escape\ni poczekać."
  2339. msgid "Cannot accept this key"
  2340. msgstr "Nie można zaakceptować tego klawisza"
  2341. #, c-format
  2342. msgid "You have entered \"%s\""
  2343. msgstr "Wprowadzono \"%s\""
  2344. #. TRANSLATORS: This label appears near learned keys. Keep it short.
  2345. msgid "OK"
  2346. msgstr "OK"
  2347. msgid ""
  2348. "It seems that all your keys already\n"
  2349. "work fine. That's great."
  2350. msgstr "Wygląda na to, że klawisze działają\njuż poprawnie."
  2351. msgid "&Discard"
  2352. msgstr "&Porzuć"
  2353. msgid ""
  2354. "Great! You have a complete terminal database!\n"
  2355. "All your keys work well."
  2356. msgstr "Uzyskano pełną bazę danych terminali.\nWszystkie klawisze działają właściwie."
  2357. msgid "Press all the keys mentioned here. After you have done it, check"
  2358. msgstr "Należy nacisnąć każdy z wypisanych tu klawiszy, a następnie sprawdzić,"
  2359. msgid "which keys are not marked with OK. Press space on the missing"
  2360. msgstr "które nie są oznaczone jako \"OK\". Naciśnięcie spacji na brakującym"
  2361. msgid "key, or click with the mouse to define it. Move around with Tab."
  2362. msgstr "klawiszu lub kliknięcie określi go. Poruszanie za pomocą klawisza Tab."
  2363. #, c-format
  2364. msgid ""
  2365. "Failed to run:\n"
  2366. "%s\n"
  2367. msgstr "Wykonanie nie powiodło się:\n%s\n"
  2368. msgid "Home directory path is not absolute"
  2369. msgstr "Ścieżka do katalogu domowego nie jest bezwzględna"
  2370. #, c-format
  2371. msgid ""
  2372. "\n"
  2373. "Failed while close:\n"
  2374. "%s\n"
  2375. msgstr "\nNiepowodzenie podczas zamykania:\n%s\n"
  2376. msgid "Choose codepage"
  2377. msgstr "Wybór strony kodowej"
  2378. msgid "- < No translation >"
  2379. msgstr "- < Bez tłumaczenia >"
  2380. msgid "%b %e %Y"
  2381. msgstr "%e.%m.%Y "
  2382. msgid "%b %e %H:%M"
  2383. msgstr "%e.%m %H:%M"
  2384. #, c-format
  2385. msgid ""
  2386. "Cannot save file %s:\n"
  2387. "%s"
  2388. msgstr "Nie można zapisać pliku %s:\n%s"
  2389. msgid ""
  2390. "GNU Midnight Commander is already\n"
  2391. "running on this terminal.\n"
  2392. "Subshell support will be disabled."
  2393. msgstr "Program GNU Midnight Commander jest\njuż uruchomiony w tym terminalu.\nObsługa podpowłoki będzie wyłączona."
  2394. #, c-format
  2395. msgid "Cannot open named pipe %s\n"
  2396. msgstr "Nie można otworzyć nazwanego potoku %s\n"
  2397. msgid "The shell is still active. Quit anyway?"
  2398. msgstr "Powłoka jest wciąż aktywna. Zakończyć mimo to?"
  2399. #, c-format
  2400. msgid "Warning: Cannot change to %s.\n"
  2401. msgstr "Ostrzeżenie: nie można zmienić katalogu na %s.\n"
  2402. msgid "Using the S-Lang library with terminfo database\n"
  2403. msgstr "Używanie biblioteki S-Lang z bazą danych terminfo\n"
  2404. msgid "Using the ncurses library\n"
  2405. msgstr "Używanie biblioteki ncurses\n"
  2406. msgid "Using the ncursesw library\n"
  2407. msgstr "Używanie biblioteki ncursesw\n"
  2408. msgid "With builtin Editor\n"
  2409. msgstr "Z wbudowanym edytorem\n"
  2410. msgid "With optional subshell support\n"
  2411. msgstr "Z opcjonalną obsługą podpowłoki\n"
  2412. msgid "With subshell support as default\n"
  2413. msgstr "Z domyślną obsługą podpowłoki\n"
  2414. msgid "With support for background operations\n"
  2415. msgstr "Z obsługą wykonywania działań w tle\n"
  2416. msgid "With mouse support on xterm and Linux console\n"
  2417. msgstr "Z obsługą myszy w xterm i konsoli Linux\n"
  2418. msgid "With mouse support on xterm\n"
  2419. msgstr "Z obsługą myszy w xterm\n"
  2420. msgid "With support for X11 events\n"
  2421. msgstr "Z obsługą zdarzeń X11\n"
  2422. msgid "With internationalization support\n"
  2423. msgstr "Z obsługą wielu języków\n"
  2424. msgid "With multiple codepages support\n"
  2425. msgstr "Z obsługą wielu stron kodowych\n"
  2426. #, c-format
  2427. msgid "Built with GLib %d.%d.%d\n"
  2428. msgstr "Zbudowano za pomocą biblioteki GLib %d.%d.%d\n"
  2429. #, c-format
  2430. msgid "Virtual File Systems:"
  2431. msgstr "Wirtualne systemy plików:"
  2432. #, c-format
  2433. msgid "Data types:"
  2434. msgstr "Typy danych:"
  2435. msgid "Home directory:"
  2436. msgstr "Katalog domowy:"
  2437. msgid "System data"
  2438. msgstr "Dane systemu"
  2439. msgid "Config directory:"
  2440. msgstr "Katalog konfiguracji:"
  2441. msgid "Data directory:"
  2442. msgstr "Katalog danych:"
  2443. msgid "VFS plugins and scripts:"
  2444. msgstr "Wtyczki i skrypty VFS:"
  2445. msgid "User data"
  2446. msgstr "Dane użytkownika"
  2447. msgid "Cache directory:"
  2448. msgstr "Katalog pamięci podręcznej:"
  2449. #, c-format
  2450. msgid ""
  2451. "Cannot open cpio archive\n"
  2452. "%s"
  2453. msgstr "Nie można otworzyć archiwum cpio\n%s"
  2454. #, c-format
  2455. msgid ""
  2456. "Premature end of cpio archive\n"
  2457. "%s"
  2458. msgstr "Przedwczesny koniec archiwum cpio\n%s"
  2459. #, c-format
  2460. msgid ""
  2461. "Inconsistent hardlinks of\n"
  2462. "%s\n"
  2463. "in cpio archive\n"
  2464. "%s"
  2465. msgstr "Niespójne dowiązania pliku\n%s\nw archiwum cpio\n%s"
  2466. #, c-format
  2467. msgid "%s contains duplicate entries! Skipping!"
  2468. msgstr "%s zawiera podwójne wpisy. Pomijanie."
  2469. #, c-format
  2470. msgid ""
  2471. "Corrupted cpio header encountered in\n"
  2472. "%s"
  2473. msgstr "Wystąpił uszkodzony nagłówek cpio w\n%s"
  2474. #, c-format
  2475. msgid ""
  2476. "Unexpected end of file\n"
  2477. "%s"
  2478. msgstr "Nieoczekiwany koniec pliku\n%s"
  2479. #, c-format
  2480. msgid ""
  2481. "Cannot open %s archive\n"
  2482. "%s"
  2483. msgstr "Nie można otworzyć archiwum %s\n%s"
  2484. msgid "Inconsistent extfs archive"
  2485. msgstr "Niespójne archiwum extfs"
  2486. #, c-format
  2487. msgid "Warning: cannot open %s directory\n"
  2488. msgstr "Ostrzeżenie: nie można utworzyć katalogu %s\n"
  2489. #, c-format
  2490. msgid "fish: Disconnecting from %s"
  2491. msgstr "fish: rozłączanie z %s"
  2492. msgid "fish: Waiting for initial line..."
  2493. msgstr "fish: oczekiwanie na wiersz początkowy..."
  2494. msgid "Sorry, we cannot do password authenticated connections for now."
  2495. msgstr "Połączenia uwierzytelniane hasłem nie są na razie obsługiwane."
  2496. #, c-format
  2497. msgid "fish: Password is required for %s"
  2498. msgstr "fish: wymagane jest hasło dla %s"
  2499. msgid "fish: Sending password..."
  2500. msgstr "fish: wysyłanie hasła..."
  2501. msgid "fish: Sending initial line..."
  2502. msgstr "fish: wysyłanie wiersza początkowego..."
  2503. msgid "fish: Handshaking version..."
  2504. msgstr "fish: ustalanie wersji..."
  2505. msgid "fish: Getting host info..."
  2506. msgstr "fish: pobieranie informacji o komputerze..."
  2507. msgid "fish: Setting up current directory..."
  2508. msgstr "fish: ustawianie bieżącego katalogu..."
  2509. #, c-format
  2510. msgid "fish: Connected, home %s."
  2511. msgstr "fish: połączono, katalog %s."
  2512. #, c-format
  2513. msgid "fish: Reading directory %s..."
  2514. msgstr "fish: odczytywanie katalogu %s..."
  2515. #, c-format
  2516. msgid "%s: done."
  2517. msgstr "%s: ukończono."
  2518. #, c-format
  2519. msgid "%s: failure"
  2520. msgstr "%s: niepowodzenie"
  2521. #, c-format
  2522. msgid "fish: store %s: sending command..."
  2523. msgstr "fish: zapis %s: wysyłanie polecenia..."
  2524. msgid "fish: Local read failed, sending zeros"
  2525. msgstr "fish: lokalny odczyt się nie powiódł, wysyłanie zer"
  2526. msgid "fish: storing zeros"
  2527. msgstr "fish: wysyłanie zer"
  2528. msgid "fish: storing file"
  2529. msgstr "fish: wysyłanie pliku"
  2530. msgid "Aborting transfer..."
  2531. msgstr "Przerywanie przesyłania..."
  2532. msgid "Error reported after abort."
  2533. msgstr "Zgłoszono błąd po przerwaniu."
  2534. msgid "Aborted transfer would be successful."
  2535. msgstr "Przerwane przesyłanie zostałoby pomyślnie zakończone."
  2536. #, c-format
  2537. msgid "ftpfs: Disconnecting from %s"
  2538. msgstr "ftpfs: rozłączanie z %s"
  2539. #, c-format
  2540. msgid "FTP: Password required for %s"
  2541. msgstr "FTP: wymagane jest hasło dla %s"
  2542. msgid "ftpfs: sending login name"
  2543. msgstr "ftpfs: wysyłanie nazwy użytkownika"
  2544. msgid "ftpfs: sending user password"
  2545. msgstr "ftpfs: wysyłanie hasła użytkownika"
  2546. #, c-format
  2547. msgid "FTP: Account required for user %s"
  2548. msgstr "FTP: wymagane jest konto dla użytkownika %s"
  2549. msgid "Account:"
  2550. msgstr "Konto:"
  2551. msgid "ftpfs: sending user account"
  2552. msgstr "ftpfs: wysyłanie konta użytkownika"
  2553. msgid "ftpfs: logged in"
  2554. msgstr "ftpfs: zalogowano"
  2555. #, c-format
  2556. msgid "ftpfs: Login incorrect for user %s "
  2557. msgstr "ftpfs: niepoprawny login dla użytkownika %s "
  2558. msgid "ftpfs: Invalid host name."
  2559. msgstr "ftpfs: nieprawidłowa nazwa komputera."
  2560. #, c-format
  2561. msgid "ftpfs: %s"
  2562. msgstr "ftpfs: %s"
  2563. #, c-format
  2564. msgid "ftpfs: making connection to %s"
  2565. msgstr "ftpfs: nawiązywanie połączenia z %s"
  2566. msgid "ftpfs: connection interrupted by user"
  2567. msgstr "ftpfs: połączenie przerwane przez użytkownika"
  2568. #, c-format
  2569. msgid "ftpfs: connection to server failed: %s"
  2570. msgstr "ftpfs: połączenie z serwerem się nie powiodło: %s"
  2571. #, c-format
  2572. msgid "Waiting to retry... %d (Control-G to cancel)"
  2573. msgstr "Oczekiwanie na ponowienie... %d (Ctrl-G anuluje)"
  2574. msgid "ftpfs: invalid address family"
  2575. msgstr "ftpfs: nieprawidłowa rodzina adresów"
  2576. #, c-format
  2577. msgid "ftpfs: could not create socket: %s"
  2578. msgstr "ftpfs: nie można utworzyć gniazda: %s"
  2579. msgid "ftpfs: could not setup passive mode"
  2580. msgstr "ftpfs: nie można ustawić trybu pasywnego"
  2581. msgid "ftpfs: aborting transfer."
  2582. msgstr "ftpfs: przerywanie przesyłania."
  2583. #, c-format
  2584. msgid "ftpfs: abort error: %s"
  2585. msgstr "ftpfs: błąd przerywania: %s"
  2586. msgid "ftpfs: abort failed"
  2587. msgstr "ftpfs: przerwanie się nie powiodło"
  2588. msgid "ftpfs: CWD failed."
  2589. msgstr "ftpfs: CWD się nie powiodło."
  2590. msgid "ftpfs: couldn't resolve symlink"
  2591. msgstr "ftpts: nie można rozwiązać dowiązania symbolicznego"
  2592. msgid "Resolving symlink..."
  2593. msgstr "Rozwiązywanie dowiązania symbolicznego..."
  2594. #, c-format
  2595. msgid "ftpfs: Reading FTP directory %s... %s%s"
  2596. msgstr "ftpfs: odczytywanie katalogu FTP %s... %s%s"
  2597. msgid "(strict rfc959)"
  2598. msgstr "(ścisły RFC959)"
  2599. msgid "(chdir first)"
  2600. msgstr "(najpierw chdir)"
  2601. msgid "ftpfs: failed; nowhere to fallback to"
  2602. msgstr "ftpfs: niepowodzenie; brak możliwości wycofania"
  2603. msgid "ftpfs: storing file"
  2604. msgstr "ftpfs: wysyłanie pliku"
  2605. msgid ""
  2606. "~/.netrc file has incorrect mode\n"
  2607. "Remove password or correct mode"
  2608. msgstr "Plik ~/.netrc posiada niepoprawny tryb\nProszę usunąć hasło lub poprawić tryb"
  2609. #, c-format
  2610. msgid "%s: Warning: file %s not found\n"
  2611. msgstr "%s: ostrzeżenie: nie odnaleziono pliku %s\n"
  2612. #, c-format
  2613. msgid ""
  2614. "Warning: Invalid line in %s:\n"
  2615. "%s\n"
  2616. msgstr "Ostrzeżenie: nieprawidłowy wiersz w %s:\n%s\n"
  2617. #, c-format
  2618. msgid ""
  2619. "Warning: Invalid flag %c in %s:\n"
  2620. "%s\n"
  2621. msgstr "Ostrzeżenie: nieprawidłowa flaga %c w %s:\n%s\n"
  2622. #, c-format
  2623. msgid "reconnect to %s failed"
  2624. msgstr "ponowne połączenie z %s się nie powiodło"
  2625. msgid "Authentication failed"
  2626. msgstr "Uwierzytelnienie się nie powiodło"
  2627. #, c-format
  2628. msgid "Error %s creating directory %s"
  2629. msgstr "Błąd %s podczas tworzenia katalogu %s"
  2630. #, c-format
  2631. msgid "Error %s removing directory %s"
  2632. msgstr "Błąd %s podczas usuwania katalogu %s"
  2633. #, c-format
  2634. msgid "%s opening remote file %s"
  2635. msgstr "%s podczas otwierania zdalnego pliku %s"
  2636. #, c-format
  2637. msgid "%s removing remote file %s"
  2638. msgstr "%s podczas usuwania zdalnego pliku %s"
  2639. #, c-format
  2640. msgid "%s renaming files\n"
  2641. msgstr "%s podczas zmieniania nazw plików\n"
  2642. #, c-format
  2643. msgid ""
  2644. "Cannot open tar archive\n"
  2645. "%s"
  2646. msgstr "Nie można otworzyć archiwum tar\n%s"
  2647. msgid "Inconsistent tar archive"
  2648. msgstr "Niespójne archiwum tar"
  2649. msgid "Unexpected EOF on archive file"
  2650. msgstr "Nieoczekiwany koniec pliku archiwum"
  2651. #, c-format
  2652. msgid ""
  2653. "%s\n"
  2654. "doesn't look like a tar archive."
  2655. msgstr "%s\nnie wygląda na archiwum tar."
  2656. msgid "undelfs: error"
  2657. msgstr "undelfs: błąd"
  2658. msgid "not enough memory"
  2659. msgstr "brak pamięci"
  2660. msgid "while allocating block buffer"
  2661. msgstr "podczas przydzielania bufora bloku"
  2662. #, c-format
  2663. msgid "open_inode_scan: %d"
  2664. msgstr "open_inode_scan: %d"
  2665. #, c-format
  2666. msgid "while starting inode scan %d"
  2667. msgstr "podczas rozpoczynaniu skanowania i-węzłów %d"
  2668. #, c-format
  2669. msgid "undelfs: loading deleted files information %d inodes"
  2670. msgstr "undelfs: wczytywanie informacji o usuniętych plikach %d i-węzłów"
  2671. #, c-format
  2672. msgid "while calling ext2_block_iterate %d"
  2673. msgstr "podczas wywoływania ext2_block_iterate %d"
  2674. msgid "no more memory while reallocating array"
  2675. msgstr "brak pamięci podczas ponownego przydzielania tablicy"
  2676. #, c-format
  2677. msgid "while doing inode scan %d"
  2678. msgstr "podczas skanowania i-węzłów %d"
  2679. #, c-format
  2680. msgid "Cannot open file %s"
  2681. msgstr "Nie można otworzyć pliku %s"
  2682. msgid "undelfs: reading inode bitmap..."
  2683. msgstr "undelfs: odczytywanie mapy bitowej i-węzłów..."
  2684. #, c-format
  2685. msgid ""
  2686. "Cannot load inode bitmap from:\n"
  2687. "%s"
  2688. msgstr "Nie można odczytać mapy bitowej i-węzłów z:\n%s"
  2689. msgid "undelfs: reading block bitmap..."
  2690. msgstr "undelfs: odczytywanie mapy bitowej bloków..."
  2691. #, c-format
  2692. msgid ""
  2693. "Cannot load block bitmap from:\n"
  2694. "%s"
  2695. msgstr "Nie można wczytać mapy bitowej bloków z:\n%s"
  2696. msgid "vfs_info is not fs!"
  2697. msgstr "vfs_info nie systemem plików."
  2698. msgid "You have to chdir to extract files first"
  2699. msgstr "Przed rozpakowaniem plików należy zmienić katalog"
  2700. msgid "while iterating over blocks"
  2701. msgstr "podczas iterowania po blokach"
  2702. #, c-format
  2703. msgid "Cannot open file \"%s\""
  2704. msgstr "Nie można otworzyć pliku \"%s\""
  2705. msgid "Ext2lib error"
  2706. msgstr "Błąd ext2lib"
  2707. msgid "Invalid value"
  2708. msgstr "Nieprawidłowa wartość"
  2709. msgid "Cannot spawn child process"
  2710. msgstr "Nie można utworzyć procesu potomnego"
  2711. msgid "Empty output from child filter"
  2712. msgstr "Puste wyjście filtru potomnego"
  2713. msgid "&Line number (decimal)"
  2714. msgstr "&Numer wiersza (dziesiętny)"
  2715. msgid "Pe&rcents"
  2716. msgstr "P&rocenty"
  2717. msgid "&Decimal offset"
  2718. msgstr "Wyrównanie &dziesiętne"
  2719. msgid "He&xadecimal offset"
  2720. msgstr "&Wyrównanie ósemkowe"
  2721. msgid "Goto"
  2722. msgstr "Idź do"
  2723. msgid "ButtonBar|Ascii"
  2724. msgstr "ASCII"
  2725. msgid "ButtonBar|HxSrch"
  2726. msgstr "SzukSz"
  2727. msgid "ButtonBar|UnWrap"
  2728. msgstr "Odwiń"
  2729. msgid "ButtonBar|Wrap"
  2730. msgstr "Zawiń"
  2731. msgid "ButtonBar|Hex"
  2732. msgstr "Szesn"
  2733. msgid "ButtonBar|Goto"
  2734. msgstr "Idź do"
  2735. msgid "ButtonBar|Raw"
  2736. msgstr "Orygnł"
  2737. msgid "ButtonBar|Parse"
  2738. msgstr "Przetw"
  2739. msgid "ButtonBar|Unform"
  2740. msgstr "BezFrm"
  2741. msgid "ButtonBar|Format"
  2742. msgstr "Format"
  2743. #, c-format
  2744. msgid ""
  2745. "Error while closing the file:\n"
  2746. "%s\n"
  2747. "Data may have been written or not"
  2748. msgstr "Błąd podczas zamykania pliku \n%s\nDane mogły nie zostać zapisane"
  2749. #, c-format
  2750. msgid ""
  2751. "Cannot save file:\n"
  2752. "%s"
  2753. msgstr "Nie można zapisać pliku:\n%s"
  2754. msgid "View: "
  2755. msgstr "Podgląd: "
  2756. #, c-format
  2757. msgid ""
  2758. "Cannot open \"%s\"\n"
  2759. "%s"
  2760. msgstr "Nie można otworzyć \"%s\"\n%s"
  2761. msgid "Cannot view: not a regular file"
  2762. msgstr "Nie można wyświetlić: nie jest zwykłym plikiem"
  2763. msgid "Seeking to search result"
  2764. msgstr "Przechodzenie do wyników wyszukiwania"
  2765. msgid "Search done"
  2766. msgstr "Ukończono wyszukiwanie"
  2767. msgid "Continue from beginning?"
  2768. msgstr "Kontynuować od początku?"