pl.po 81 KB

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