pl.po 82 KB

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