123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386 |
- # Czech message catalog for mc & gmc.
- # Copyright (C) 2002 Free Software Foundation, Inc.
- # Pavel Machek <pavel@ucw.cz>, 1998, 1999.
- # David Sauer <davids@penguin.cz> (David Šauer), 1999.
- # Michal Svec <rebel@penguin.cz> (Michal Švec), 2000.
- # Stanislav Brabec <utx@penguin.cz>, 2001, 2002.
- # Miloslav Trmac <mitr@volny.cz>, 2003.
- # Jindrich Novy <jnovy@redhat.com>, 2005.
- # Anna Talianova <anickat1@gmail.com>, 2008
- # Martin Zoubek <zoubek@seznam.cz>, 2009
- #
- msgid ""
- msgstr ""
- "Project-Id-Version: mc 4.7.0.2\n"
- "Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
- "POT-Creation-Date: 2010-07-05 21:43+0400\n"
- "PO-Revision-Date: 2010-03-14 14:00+0100\n"
- "Last-Translator: Martin Zoubek <zoubek@seznam.cz>\n"
- "Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
- "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
- #, fuzzy, c-format
- msgid ""
- "File \"%s\" is already being edited.\n"
- "User: %s\n"
- "Process ID: %d"
- msgstr ""
- "Soubor „%s“ je již editován\n"
- "Uživatel: %s\n"
- "Číslo procesu: %d"
- msgid "File locked"
- msgstr "Soubor zamčen"
- msgid "&Grab lock"
- msgstr "&Převzít zámek"
- msgid "&Ignore lock"
- msgstr "&Ignorovat zámek"
- #, fuzzy
- msgid "Search string not found"
- msgstr " Hledaný text nenalezen "
- #, fuzzy
- msgid "Not implemented yet"
- msgstr " Zatím neimplementované "
- #, fuzzy
- msgid "Num of replace tokens not equal to num of found tokens"
- msgstr " Počet tokenů k nahrazení neodpovídá počtu nalezených tokenů "
- #, fuzzy, c-format
- msgid "Invalid token number %d"
- msgstr " Chybné číslo tokenu %d "
- msgid "Normal"
- msgstr "Normální"
- msgid "&Regular expression"
- msgstr "&Regulární výraz"
- msgid "Hexadecimal"
- msgstr "Hexadecimálně"
- msgid "Wildcard search"
- msgstr "Hledání přes žolíky"
- #, c-format
- msgid ""
- "Unable to load '%s' skin.\n"
- "Default skin has been loaded"
- msgstr ""
- "Nepodařilo se nahrát schéma vzhledu „%s“.\n"
- "Bylo nahráno výchozí téma vzhledu"
- #, c-format
- msgid ""
- "Unable to parse '%s' skin.\n"
- "Default skin has been loaded"
- msgstr ""
- "Nepodařilo se zpracovat schéma vzhledu „%s“.\n"
- "Bylo nahráno výchozí téma vzhledu"
- msgid "Function key 1"
- msgstr "Funkční klávesa 1"
- msgid "Function key 2"
- msgstr "Funkční klávesa 2"
- msgid "Function key 3"
- msgstr "Funkční klávesa 3"
- msgid "Function key 4"
- msgstr "Funkční klávesa 4"
- msgid "Function key 5"
- msgstr "Funkční klávesa 5"
- msgid "Function key 6"
- msgstr "Funkční klávesa 6"
- msgid "Function key 7"
- msgstr "Funkční klávesa 7"
- msgid "Function key 8"
- msgstr "Funkční klávesa 8"
- msgid "Function key 9"
- msgstr "Funkční klávesa 9"
- msgid "Function key 10"
- msgstr "Funkční klávesa 10"
- msgid "Function key 11"
- msgstr "Funkční klávesa 11"
- msgid "Function key 12"
- msgstr "Funkční klávesa 12"
- msgid "Function key 13"
- msgstr "Funkční klávesa 13"
- msgid "Function key 14"
- msgstr "Funkční klávesa 14"
- msgid "Function key 15"
- msgstr "Funkční klávesa 15"
- msgid "Function key 16"
- msgstr "Funkční klávesa 16"
- msgid "Function key 17"
- msgstr "Funkční klávesa 17"
- msgid "Function key 18"
- msgstr "Funkční klávesa 18"
- msgid "Function key 19"
- msgstr "Funkční klávesa 19"
- msgid "Function key 20"
- msgstr "Funkční klávesa 20"
- msgid "Backspace key"
- msgstr "Klávesa Backspace"
- msgid "End key"
- msgstr "Klávesa End"
- msgid "Up arrow key"
- msgstr "Šipka nahoru"
- msgid "Down arrow key"
- msgstr "Šipka dolů"
- msgid "Left arrow key"
- msgstr "Šipka vlevo"
- msgid "Right arrow key"
- msgstr "Šipka vpravo"
- msgid "Home key"
- msgstr "Klávesa Home"
- msgid "Page Down key"
- msgstr "Klávesa Page Down"
- msgid "Page Up key"
- msgstr "Klávesa Page Up"
- msgid "Insert key"
- msgstr "Klávesa Insert"
- msgid "Delete key"
- msgstr "Klávesa Delete"
- msgid "Completion/M-tab"
- msgstr "Doplňování/M-tab"
- msgid "+ on keypad"
- msgstr "+ na num. klávesnici"
- msgid "- on keypad"
- msgstr "- na num. klávesnici"
- msgid "Slash on keypad"
- msgstr "/ na num. klávesnici"
- msgid "* on keypad"
- msgstr "* na num. klávesnici"
- msgid "Escape key"
- msgstr "Klávesa Escape"
- msgid "Left arrow keypad"
- msgstr "Šipka vlevo na numerické klávesnici"
- msgid "Right arrow keypad"
- msgstr "Šipka vpravo na numerické klávesnici"
- msgid "Up arrow keypad"
- msgstr "Šipka nahoru na numerické klávesnici"
- msgid "Down arrow keypad"
- msgstr "Šipka dolů na numerické klávesnici"
- msgid "Home on keypad"
- msgstr "Klávesa Home na numerické klávesnici"
- msgid "End on keypad"
- msgstr "End na numerické klávesnici"
- msgid "Page Down keypad"
- msgstr "Page Down na numerické klávesnici"
- msgid "Page Up keypad"
- msgstr "Page Up na numerické klávesnici"
- msgid "Insert on keypad"
- msgstr "Insert na numerické klávesnici"
- msgid "Delete on keypad"
- msgstr "Delete na numerické klávesnici"
- msgid "Enter on keypad"
- msgstr "Enter na numerické klávesnici"
- msgid "Function key 21"
- msgstr "Funkční klávesa 21"
- msgid "Function key 22"
- msgstr "Funkční klávesa 22"
- msgid "Function key 23"
- msgstr "Funkční klávesa 23"
- msgid "Function key 24"
- msgstr "Funkční klávesa 24"
- msgid "Plus"
- msgstr "Plus"
- msgid "Minus"
- msgstr "Mínus"
- msgid "Asterisk"
- msgstr "Hvězdička"
- msgid "Dot"
- msgstr "Tečka"
- msgid "Less than"
- msgstr "Menší než"
- msgid "Great than"
- msgstr "Větší než"
- msgid "Equal"
- msgstr "Rovný"
- msgid "Comma"
- msgstr "Čárka"
- msgid "Apostrophe"
- msgstr "Apostrof"
- msgid "Colon"
- msgstr "Dvojtečka"
- msgid "Exclamation mark"
- msgstr "Vykřičník"
- msgid "Question mark"
- msgstr "Otazník"
- msgid "Ampersand"
- msgstr "Ampersand"
- msgid "Dollar sign"
- msgstr "Znak dolaru"
- msgid "Quotation mark"
- msgstr "Uvozovky"
- msgid "Caret"
- msgstr "Stříška"
- msgid "Tilda"
- msgstr "Vlnovka"
- msgid "Prime"
- msgstr "Stupeň"
- msgid "Underline"
- msgstr "Podtržení"
- msgid "Understrike"
- msgstr "Podtržení"
- msgid "Pipe"
- msgstr "Roura"
- msgid "Left parenthesis"
- msgstr ""
- #, fuzzy
- msgid "Right parenthesis"
- msgstr "Šipka vpravo"
- #, fuzzy
- msgid "Left bracket"
- msgstr "Šipka vlevo"
- #, fuzzy
- msgid "Right bracket"
- msgstr "Šipka vpravo"
- msgid "Left brace"
- msgstr ""
- #, fuzzy
- msgid "Right brace"
- msgstr "Šipka vpravo"
- msgid "Enter"
- msgstr "Enter"
- msgid "Tab key"
- msgstr "Tabulátor"
- msgid "Space key"
- msgstr "Mezerník"
- msgid "Slash key"
- msgstr "Lomítko"
- msgid "Backslash key"
- msgstr "Zpětné lomítko"
- msgid "Number sign #"
- msgstr "Křížek"
- msgid "Ctrl"
- msgstr "Ctrl"
- msgid "Alt"
- msgstr "Alt"
- msgid "Shift"
- msgstr "Shift"
- #, c-format
- msgid ""
- "Screen size %dx%d is not supported.\n"
- "Check the TERM environment variable.\n"
- msgstr ""
- "Velikost obrazovky %d×%d není podporovaná.\n"
- "Prověřte nastavení proměnné prostředí TERM.\n"
- #, c-format
- msgid "%s is not a directory\n"
- msgstr "%s není adresář\n"
- #, c-format
- msgid "Directory %s is not owned by you\n"
- msgstr "Nejste vlastníkem adresáře %s\n"
- #, c-format
- msgid "Cannot set correct permissions for directory %s\n"
- msgstr "Nelze nastavit správná práva pro adresář %s\n"
- #, c-format
- msgid "Cannot create temporary directory %s: %s\n"
- msgstr "Nelze vytvořit dočasný adresář %s: %s\n"
- #, c-format
- msgid "Temporary files will be created in %s\n"
- msgstr "Dočasné soubory se budou vytvářet v %s\n"
- #, c-format
- msgid "Temporary files will not be created\n"
- msgstr "Dočasné soubory se nebudou vytvářet\n"
- #, c-format
- msgid "Press any key to continue..."
- msgstr "Stiskněte libovolnou klávesu pro pokračování..."
- msgid "Warning"
- msgstr "Varování"
- #, fuzzy
- msgid "Pipe failed"
- msgstr " pipe() selhalo "
- #, fuzzy
- msgid "Dup failed"
- msgstr " dup() selhalo "
- #, fuzzy
- msgid "Error dup'ing old error pipe"
- msgstr " Chyba při čtení z roury: %s "
- #, c-format
- msgid ""
- "Cannot open cpio archive\n"
- "%s"
- msgstr ""
- "Nelze otevřít cpio archiv\n"
- "%s"
- #, c-format
- msgid ""
- "Premature end of cpio archive\n"
- "%s"
- msgstr ""
- "Neočekávaný konec cpio archivu\n"
- "%s"
- #, c-format
- msgid ""
- "Inconsistent hardlinks of\n"
- "%s\n"
- "in cpio archive\n"
- "%s"
- msgstr ""
- "Nekonzistentní pevné odkazy\n"
- "z %s\n"
- "v cpio archivu\n"
- "%s"
- #, c-format
- msgid "%s contains duplicate entries! Skipping!"
- msgstr "%s obsahuje duplicitní položky! Přeskakují se!"
- #, c-format
- msgid ""
- "Corrupted cpio header encountered in\n"
- "%s"
- msgstr ""
- "Poškozená hlavička cpio v souboru\n"
- "%s"
- #, c-format
- msgid ""
- "Unexpected end of file\n"
- "%s"
- msgstr ""
- "Soubor neočekávaně končí\n"
- "%s"
- #, c-format
- msgid "Directory cache expired for %s"
- msgstr "Adresářová keš %s vypršela"
- msgid "Starting linear transfer..."
- msgstr "Začíná lineární přenos..."
- #, c-format
- msgid "%s: %s: %s %3d%% (%lu bytes transferred)"
- msgstr "%s: %s: %s %3d%% (%lu bajtů přeneseno)"
- #, c-format
- msgid "%s: %s: %s %lu bytes transferred"
- msgstr "%s: %s: %s %lu bajtů již přeneseno"
- msgid "Getting file"
- msgstr "Získává se soubor"
- #, c-format
- msgid ""
- "Cannot open %s archive\n"
- "%s"
- msgstr ""
- "Nelze otevřít %s archiv\n"
- "%s"
- msgid "Inconsistent extfs archive"
- msgstr "Poškozený extfs archiv"
- #, c-format
- msgid "Warning: cannot open %s directory\n"
- msgstr "Varování: není možné otevřít adresář %s\n"
- #, c-format
- msgid "fish: Disconnecting from %s"
- msgstr "fish: Odpojení od %s"
- msgid "fish: Waiting for initial line..."
- msgstr "fish: Čekání na počáteční linku..."
- msgid "Sorry, we cannot do password authenticated connections for now."
- msgstr "Bohužel, nyní nelze provést heslem autentizované spojení."
- #, fuzzy, c-format
- msgid "fish: Password is required for %s"
- msgstr "fish: Heslo je vyžadováno pro "
- msgid "fish: Sending password..."
- msgstr "fish: Posílá se heslo..."
- msgid "fish: Sending initial line..."
- msgstr "fish: Počáteční řádka odeslána..."
- msgid "fish: Handshaking version..."
- msgstr "fish: Domlouvání verze..."
- #, fuzzy
- msgid "fish: Getting host info..."
- msgstr "fish: Počáteční řádka odeslána..."
- msgid "fish: Setting up current directory..."
- msgstr "fish: Nastavování aktuálního adresáře..."
- #, c-format
- msgid "fish: Connected, home %s."
- msgstr "fish: Připojeno, domovský adresář %s."
- #, c-format
- msgid "fish: Reading directory %s..."
- msgstr "fish: Načítaní adresáře %s..."
- #, c-format
- msgid "%s: done."
- msgstr "%s: zpracován."
- #, c-format
- msgid "%s: failure"
- msgstr "%s: selhání"
- #, c-format
- msgid "fish: store %s: sending command..."
- msgstr "fish: ukládám %s: posílám příkaz..."
- msgid "fish: Local read failed, sending zeros"
- msgstr "fish: Selhalo čtení lokálního souboru, posílám nuly"
- #, c-format
- msgid "fish: storing %s %d (%lu)"
- msgstr "fish: ukládá se %s %d (%lu)"
- msgid "zeros"
- msgstr "nuly"
- msgid "file"
- msgstr "soubor"
- msgid "Aborting transfer..."
- msgstr "Přerušení přenosu..."
- msgid "Error reported after abort."
- msgstr "Po přerušení byla oznámena chyba."
- msgid "Aborted transfer would be successful."
- msgstr "Přerušení přenosu proběhlo v pořádku."
- #, c-format
- msgid "ftpfs: Disconnecting from %s"
- msgstr "ftpfs: Odpojení od %s"
- #, fuzzy, c-format
- msgid "FTP: Password required for %s"
- msgstr " FTP: Heslo je vyžadováno pro "
- msgid "ftpfs: sending login name"
- msgstr "ftpfs: jméno odesláno"
- msgid "ftpfs: sending user password"
- msgstr "ftpfs: heslo pro anonymní ftp odesláno"
- #, c-format
- msgid "FTP: Account required for user %s"
- msgstr "FTP: Účet je vyžadován pro uživatele %s"
- msgid "Account:"
- msgstr "Účet:"
- msgid "ftpfs: sending user account"
- msgstr "ftpfs: posílám uživatelský účet"
- msgid "ftpfs: logged in"
- msgstr "ftpfs: přihlášen"
- #, c-format
- msgid "ftpfs: Login incorrect for user %s "
- msgstr "ftpfs: Přihlášení uživatele %s selhalo "
- msgid "ftpfs: Invalid host name."
- msgstr "ftpfs: Chybné jméno počítače."
- #, c-format
- msgid "ftpfs: %s"
- msgstr "ftpfs: %s"
- #, c-format
- msgid "ftpfs: making connection to %s"
- msgstr "ftpfs: probíhá připojování k %s"
- msgid "ftpfs: connection interrupted by user"
- msgstr "ftpfs: připojování přerušeno uživatelem"
- #, c-format
- msgid "ftpfs: connection to server failed: %s"
- msgstr "ftpfs: připojování k serveru selhalo: %s"
- #, c-format
- msgid "Waiting to retry... %d (Control-C to cancel)"
- msgstr "Nový pokus za... %d (Control-C zruší)"
- msgid "ftpfs: invalid address family"
- msgstr "ftpfs: chybná rodina adres"
- #, c-format
- msgid "ftpfs: could not setup passive mode: %s"
- msgstr "ftpfs: nelze nastavit pasivní režim: %s"
- #, c-format
- msgid "ftpfs: could not create socket: %s"
- msgstr "ftpfs: nelze vytvořit soket: %s"
- msgid "ftpfs: could not setup passive mode"
- msgstr "ftpfs: nelze nastavit pasivní režim"
- msgid "ftpfs: aborting transfer."
- msgstr "ftpfs: přerušení přenosu."
- #, c-format
- msgid "ftpfs: abort error: %s"
- msgstr "ftpfs: chyba při přerušení: %s"
- msgid "ftpfs: abort failed"
- msgstr "ftpfs: přerušení selhalo"
- msgid "ftpfs: CWD failed."
- msgstr "ftpfs: příkaz CWD selhal."
- msgid "ftpfs: couldn't resolve symlink"
- msgstr "ftpfs: nelze najít cíle symlinků"
- msgid "Resolving symlink..."
- msgstr "Vyhledávání cílů symlinků..."
- #, c-format
- msgid "ftpfs: Reading FTP directory %s... %s%s"
- msgstr "ftpfs: Čte se FTP adresář %s... %s%s"
- msgid "(strict rfc959)"
- msgstr "(striktní rfc959)"
- msgid "(chdir first)"
- msgstr "(nejdříve chdir)"
- msgid "ftpfs: failed; nowhere to fallback to"
- msgstr "ftpfs: selhání; není jiná možnost"
- #, c-format
- msgid "ftpfs: storing file %lu (%lu)"
- msgstr "ftpfs: ukládá se soubor %lu (%lu)"
- #, fuzzy
- msgid ""
- "~/.netrc file has incorrect mode\n"
- "Remove password or correct mode"
- msgstr ""
- "Soubor ~/.netrc nemá správná přístupová práva.\n"
- "Odstraňte heslo nebo změňte práva."
- #, fuzzy
- msgid "MCFS"
- msgstr " MCFS "
- #, fuzzy
- msgid "The server does not support this version"
- msgstr " Server tuto verzi nepodporuje "
- #, fuzzy
- msgid ""
- "The remote server is not running on a system port\n"
- "you need a password to log in, but the information may\n"
- "not be safe on the remote side. Continue?\n"
- msgstr ""
- " Vzdálený server neběží na domluveném portu, \n"
- " k přihlášení budete potřebovat heslo, ale informace může být \n"
- " na vzdálené straně kompromitována. Pokračovat? \n"
- msgid "&Yes"
- msgstr "&Ano"
- msgid "&No"
- msgstr "&Ne"
- #, fuzzy
- msgid "MCFS Password required"
- msgstr " Pro MCFS vyžadováno heslo "
- #, fuzzy
- msgid "Invalid password"
- msgstr " Chybné heslo "
- #, fuzzy, c-format
- msgid "Cannot locate hostname: %s"
- msgstr " Nelze určit jméno počítače: %s "
- #, fuzzy, c-format
- msgid "Cannot create socket: %s"
- msgstr " Nelze vytvořit soket: %s "
- #, fuzzy, c-format
- msgid "Cannot connect to server: %s"
- msgstr " Nelze se připojit k serveru: %s "
- #, fuzzy
- msgid "Too many open connections"
- msgstr " Příliš mnoho otevřených spojení "
- #, c-format
- msgid "Warning: file %s not found\n"
- msgstr "Varování: soubor %s nebyl nalezen\n"
- #, c-format
- msgid ""
- "Warning: Invalid line in %s:\n"
- "%s\n"
- msgstr ""
- "Varování: Neplatný řádek v %s:\n"
- "%s\n"
- #, c-format
- msgid ""
- "Warning: Invalid flag %c in %s:\n"
- "%s\n"
- msgstr ""
- "Varování: Neplatný příznak %c v %s:\n"
- "%s\n"
- #, fuzzy, c-format
- msgid "reconnect to %s failed"
- msgstr ""
- " obnova připojení k %s selhala\n"
- " "
- #, fuzzy
- msgid "Authentication failed"
- msgstr " Autentizace selhala "
- # Error lze přeložit také jako "chyba", ale překládám zde raději jako "odchylka" (vykonává nějakou činnost).
- #, fuzzy, c-format
- msgid "Error %s creating directory %s"
- msgstr " Odchylka %s vytváří adresář %s "
- #, fuzzy, c-format
- msgid "Error %s removing directory %s"
- msgstr " Odchylka %s ruší adresář %s "
- #, fuzzy, c-format
- msgid "%s opening remote file %s"
- msgstr " %s otevírá vzdálený soubor %s "
- #, fuzzy, c-format
- msgid "%s removing remote file %s"
- msgstr " %s odstraňuje vzdálený soubor %s "
- #, fuzzy, c-format
- msgid "%s renaming files\n"
- msgstr " %s přejmenovává soubory\n"
- #, c-format
- msgid ""
- "Cannot open tar archive\n"
- "%s"
- msgstr ""
- "Nelze otevřít archiv .tar\n"
- "%s"
- msgid "Inconsistent tar archive"
- msgstr "Nekonzistentní archiv .tar"
- msgid "Unexpected EOF on archive file"
- msgstr "Archivní soubor neočekávaně končí"
- #, fuzzy, c-format
- msgid ""
- "%s\n"
- "doesn't look like a tar archive."
- msgstr ""
- "Hm,...\n"
- "%s\n"
- "nevypadá jako archiv .tar."
- #, fuzzy
- msgid "undelfs: error"
- msgstr " undelfs: chyba "
- #, fuzzy
- msgid "not enough memory"
- msgstr " není dostatek paměti "
- #, fuzzy
- msgid "while allocating block buffer"
- msgstr " během alokace bloku bufferu "
- #, fuzzy, c-format
- msgid "open_inode_scan: %d"
- msgstr " open_inode_scan: %d "
- #, fuzzy, c-format
- msgid "while starting inode scan %d"
- msgstr " během spouštění kontroly i-uzlů %d "
- #, c-format
- msgid "undelfs: loading deleted files information %d inodes"
- msgstr "undelfs: čte se informace o smazaných souborech %d i-uzlů"
- #, fuzzy, c-format
- msgid "while calling ext2_block_iterate %d"
- msgstr " během volání ext2_block_iterate %d "
- #, fuzzy
- msgid "no more memory while reallocating array"
- msgstr " není již další paměť na přealokování pole "
- #, fuzzy, c-format
- msgid "while doing inode scan %d"
- msgstr " během kontroly i-uzlů %d "
- #, fuzzy
- msgid "Ext2lib error"
- msgstr " Chyba ext2lib "
- #, fuzzy, c-format
- msgid "Cannot open file %s"
- msgstr " Nelze otevřít soubor %s "
- msgid "undelfs: reading inode bitmap..."
- msgstr "undelfs: čte se bitová mapa i-uzlů..."
- #, fuzzy, c-format
- msgid ""
- "Cannot load inode bitmap from:\n"
- "%s"
- msgstr ""
- " Nelze načíst bitovou mapu i-uzlů z: \n"
- " %s \n"
- msgid "undelfs: reading block bitmap..."
- msgstr "undelfs: čte se bitová mapa bloků..."
- #, fuzzy, c-format
- msgid ""
- "Cannot load block bitmap from:\n"
- "%s"
- msgstr ""
- " Nelze načíst bitovou mapu bloků z: \n"
- " %s \n"
- #, fuzzy
- msgid "vfs_info is not fs!"
- msgstr " vfs_info není soub. systém! "
- #, fuzzy
- msgid "You have to chdir to extract files first"
- msgstr " Před získáním souborů je nutné nejdříve změnit adresář "
- #, fuzzy
- msgid "while iterating over blocks"
- msgstr " během iterace přes bloky "
- #, fuzzy, c-format
- msgid "Cannot open file \"%s\""
- msgstr " Nelze otevřít soubor %s "
- msgid "Cannot parse:"
- msgstr "Nelze analyzovat:"
- msgid "More parsing errors will be ignored."
- msgstr "Další chyby analýzy budou ignorovány."
- msgid "Internal error:"
- msgstr "Interní chyba:"
- msgid "Password:"
- msgstr "Heslo:"
- msgid "Changes to file lost"
- msgstr "Změny souboru byly ztraceny"
- msgid "&Cancel"
- msgstr "&Zrušit"
- msgid "&Set"
- msgstr "&Nastavit"
- msgid "S&kip"
- msgstr "&Přeskočit"
- msgid "Set &all"
- msgstr "Nastavit &vše"
- msgid "owner"
- msgstr "vlastník"
- # mezera je úmyslně, kvůli vzhledu
- msgid "group"
- msgstr " skupina"
- # mezera je úmyslně, kvůli vzhledu
- msgid "other"
- msgstr " ostatní"
- msgid "On"
- msgstr "Na"
- msgid "Flag"
- msgstr "Práva"
- msgid "Mode"
- msgstr "Práva"
- #, c-format
- msgid "%6d of %d"
- msgstr "%6d z %d"
- #, fuzzy
- msgid "Chown advanced command"
- msgstr " Rozšířená změna vlastníka "
- #, fuzzy, c-format
- msgid ""
- "Cannot chmod \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze změnit práva souboru „%s“ \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot chown \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze změnit vlastníka souboru „%s“ \n"
- " %s "
- msgid "Displays the current version"
- msgstr "Zobrazí číslo aktuální verze"
- msgid "Print data directory"
- msgstr "Vytiskne adresář dat"
- msgid "Print last working directory to specified file"
- msgstr "Zapíše poslední pracovní adresář do zadaného souboru"
- msgid "Enables subshell support (default)"
- msgstr "Povolí podporu podshellu (standardní volba)"
- msgid "Disables subshell support"
- msgstr "Vypne podporu podshellu"
- msgid "Log ftp dialog to specified file"
- msgstr "Zapíše dialog ftp do zadaného souboru"
- msgid "Set debug level"
- msgstr "Nastavit úroveň ladění"
- msgid "Launches the file viewer on a file"
- msgstr "Odstartuje jako prohlížeč souboru"
- msgid "Edits one file"
- msgstr "Začne editovat jeden soubor"
- msgid "Forces xterm features"
- msgstr "Vnutí použití možností Xtermu"
- msgid "Disable mouse support in text version"
- msgstr "V textové verzi vypne podporu myši"
- msgid "Tries to use termcap instead of terminfo"
- msgstr "Zkusí použít databázi termcap, nikoli terminfo"
- msgid "To run on slow terminals"
- msgstr "Pro spuštění na pomalém terminálu"
- msgid "Use stickchars to draw"
- msgstr "Pro vykreslení použít ascii znaky"
- msgid "Resets soft keys on HP terminals"
- msgstr "Vynulovat programové klávesy na HP terminálech"
- msgid "Load definitions of key bindings from specified file"
- msgstr "Nahrát definice klávesových zkratek ze zadaného souboru"
- msgid "Requests to run in black and white"
- msgstr "Spustí se černobíle"
- msgid "Request to run in color mode"
- msgstr "Spustí se v barevném režimu"
- msgid "Specifies a color configuration"
- msgstr "Určí konfiguraci barev"
- msgid "Show mc with specified skin"
- msgstr "Zobrazit mc se zadaným tématem vzhledu"
- #. TRANSLATORS: don't translate keywords and names of colors
- #, fuzzy
- msgid ""
- "--colors KEYWORD={FORE},{BACK}\n"
- "\n"
- "{FORE} and {BACK} can be omitted, and the default will be used\n"
- "\n"
- "Keywords:\n"
- " Global: errors, reverse, gauge, viewunderline\n"
- " input, inputmark, inputunchanged, commandlinemark\n"
- " File display: normal, selected, marked, markselect\n"
- " Dialog boxes: dnormal, dfocus, dhotnormal, dhotfocus, errdhotnormal,\n"
- " errdhotfocus\n"
- " Menus: menunormal, menuhot, menusel, menuhotsel, menuinactive\n"
- " Editor: editnormal, editbold, editmarked, editwhitespace,\n"
- " editlinestate\n"
- msgstr ""
- "--barvy KLÍČ={POPŘEDÍ},{POZADÍ}\n"
- "\n"
- "{POPŘEDÍ} a {POZADÍ} lze vynechat a bude použita standardní hodnota\n"
- "\n"
- "Klíče (anglicky):\n"
- " Globální: errors, reverse, gauge, input, viewunderline\n"
- " Zobrazení souborů: normal, selected, marked, markselect\n"
- " Okna dialogů: dnormal, dfocus, dhotnormal, dhotfocus, "
- "errdhotnormal,\n"
- " errdhotfocus\n"
- " Menu: menu, menuhot, menusel, menuhotsel, menuinactive\n"
- " Editor: editnormal, editbold, editmarked,\n"
- " editwhitespace, editlinestate\n"
- msgid ""
- " Help: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
- "\n"
- "Colors:\n"
- " black, gray, red, brightred, green, brightgreen, brown,\n"
- " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
- " brightcyan, lightgray and white\n"
- "\n"
- msgstr ""
- " Pomoc: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
- "\n"
- "Barvy:\n"
- " black, gray, red, brightred, green, brightgreen, brown,\n"
- " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
- " brightcyan, lightgray and white\n"
- "\n"
- msgid "Color options"
- msgstr "Možnosti barev"
- msgid "+number"
- msgstr "+číslo"
- msgid "[this_dir] [other_panel_dir]"
- msgstr "[aktuální_adresář] [druhý_adresář_panelu]"
- msgid "Set initial line number for the internal editor"
- msgstr "Nastavit počáteční číslo řádku pro interní editor"
- #, fuzzy
- msgid ""
- "\n"
- "Please send any bug reports (including the output of `mc -V')\n"
- "as tickets at www.midnight-commander.org\n"
- msgstr ""
- "\n"
- "Závady programu oznamujte (včetně výstupu „mc -V“)\n"
- "prosím na mc-devel@gnome.org\n"
- #, c-format
- msgid "GNU Midnight Commander %s\n"
- msgstr "GNU Midnight Commander %s\n"
- msgid "No arguments given to the viewer."
- msgstr ""
- msgid "Two files are required to evoke the diffviewer."
- msgstr ""
- msgid "Main options"
- msgstr "Hlavní nastavení"
- msgid "Terminal options"
- msgstr "Nastavení terminálu"
- #, fuzzy
- msgid "Background process error"
- msgstr " Chyba procesu na pozadí "
- #, fuzzy
- msgid "Unknown error in child"
- msgstr " Neznámá chyba v potomku procesu "
- #, fuzzy
- msgid "Child died unexpectedly"
- msgstr " Potomek procesu neočekávaně umřel "
- #, fuzzy
- msgid "Background protocol error"
- msgstr " Chyba interního protokolu "
- #, fuzzy
- msgid "Reading failed"
- msgstr "<čtení odkazu selhalo>"
- #, fuzzy
- msgid ""
- "Background process sent us a request for more arguments\n"
- "than we can handle."
- msgstr ""
- " Proces na pozadí po nás chce více parametrů \n"
- " než dokážeme zvládnout. \n"
- msgid "&Full file list"
- msgstr "&Plný seznam souborů"
- msgid "&Brief file list"
- msgstr "Z&huštěný seznam souborů"
- msgid "&Long file list"
- msgstr "&Dlouhý seznam souborů"
- msgid "&User defined:"
- msgstr "&Vlastní formát:"
- msgid "Listing mode"
- msgstr "Typ seznamu"
- #, fuzzy
- msgid "User &mini status"
- msgstr "Vlastní &mini status"
- msgid "&OK"
- msgstr "&OK"
- msgid "&Reverse"
- msgstr "Po&zpátku"
- msgid "Case sensi&tive"
- msgstr "Všímat si velikos&ti písmen"
- msgid "Executable &first"
- msgstr "Sp&ustitelné první"
- msgid "Sort order"
- msgstr "Pořadí"
- msgid "Confirmation"
- msgstr "Potvrzování"
- #. TRANSLATORS: no need to translate 'Confirmation', it's just a context prefix
- #. 2
- msgid "Confirmation|&History cleanup"
- msgstr "Confirmation|Smazání &historie"
- msgid "Confirmation|&Directory hotlist delete"
- msgstr "Confirmation|Smazání hotlistu &adresářů"
- msgid "Confirmation|E&xit"
- msgstr "Confirmation|&Ukončení"
- msgid "Confirmation|&Execute"
- msgstr "Confirmation|&Spuštění"
- msgid "Confirmation|O&verwrite"
- msgstr "Confirmation|&Přepis"
- msgid "Confirmation|&Delete"
- msgstr "Confirmation|S&mazání"
- msgid "UTF-8 output"
- msgstr "UTF-8 výstup"
- msgid "Full 8 bits output"
- msgstr "Výstup plných 8 bitů"
- msgid "ISO 8859-1"
- msgstr "ISO 8859-1"
- msgid "7 bits"
- msgstr "7 bitů"
- msgid "F&ull 8 bits input"
- msgstr "Vstup &plných 8 bitů"
- #, fuzzy
- msgid "Display bits"
- msgstr " Zobrazení bitů "
- msgid "Other 8 bit"
- msgstr "Ostatní 8 bitů"
- # Výraz "codepage" nebyl přeložen záměrně, protože když je přeložen jako "kódová stránka", nevejde se do boxu "Zobrazení bitů" s volbami nastavení. Z téhož důvodu byly v překladu vynechány mezery u lomítka / .
- msgid "Input / display codepage:"
- msgstr "Vstupní/zobrazovací codepage:"
- msgid "&Select"
- msgstr "&Výběr"
- #, fuzzy
- msgid "Directory tree"
- msgstr "Strom a&dresářů"
- msgid "Use passive mode over pro&xy"
- msgstr "Používat pasivní režim přes pro&xy"
- msgid "Use &passive mode"
- msgstr "Používat pasivní &režim"
- msgid "&Use ~/.netrc"
- msgstr "&Používat ~/.netrc"
- msgid "&Always use ftp proxy"
- msgstr "&Vždy použít ftp proxy"
- msgid "sec"
- msgstr "s"
- msgid "ftpfs directory cache timeout:"
- msgstr "Vypršení obsahu ftpfs keše za:"
- msgid "ftp anonymous password:"
- msgstr "Heslo pro anonymní ftp:"
- msgid "Timeout for freeing VFSs:"
- msgstr "Čas pro uvolnění VFS:"
- #, fuzzy
- msgid "Virtual File System Setting"
- msgstr " Nastavení virtuálního systému souborů "
- msgid "cd"
- msgstr "cd"
- msgid "Quick cd"
- msgstr "Rychlá změna adresáře"
- msgid "Symbolic link filename:"
- msgstr "Jméno symbolického odkazu:"
- msgid "Existing filename (filename symlink will point to):"
- msgstr "Existující název souboru (na který bude symlink ukazovat):"
- msgid "Symbolic link"
- msgstr "Symbolický odkaz"
- #, fuzzy
- msgid "Running"
- msgstr "Běží "
- msgid "Stopped"
- msgstr "Zastaveno"
- msgid "&Stop"
- msgstr "Z&astavit"
- msgid "&Resume"
- msgstr "&Pokračovat"
- msgid "&Kill"
- msgstr "&Ukončit"
- msgid "Background Jobs"
- msgstr "Úlohy na pozadí"
- msgid "Domain:"
- msgstr "Doména:"
- msgid "Username:"
- msgstr "Jméno uživatele:"
- #, c-format
- msgid "Password for \\\\%s\\%s"
- msgstr "Heslo pro \\\\%s\\%s"
- msgid "7-bit ASCII"
- msgstr "7-bit ASCII"
- #, c-format
- msgid "Cannot translate from %s to %s"
- msgstr "Nelze převést z %s na %s"
- # Překlad je z grafických důvodů zkrácen (má být "spouštění/hledání"), protože se graficky nevejde do okénka voleb Midnight Commanderu.
- msgid "execute/search by others"
- msgstr "spouštění ostatními"
- msgid "write by others"
- msgstr "zápis ostatními"
- msgid "read by others"
- msgstr "čtení ostatními"
- # Překlad je z grafických důvodů zkrácen (má být "spouštění/hledání"), protože se graficky nevejde do okénka voleb Midnight Commanderu.
- msgid "execute/search by group"
- msgstr "spouštění skupinou"
- msgid "write by group"
- msgstr "zápis skupinou"
- msgid "read by group"
- msgstr "čtení skupinou"
- # Překlad je z grafických důvodů zkrácen (má být "spouštění/hledání"), protože se graficky nevejde do okénka voleb Midnight Commanderu.
- msgid "execute/search by owner"
- msgstr "spouštění vlastníkem"
- msgid "write by owner"
- msgstr "zápis vlastníkem"
- msgid "read by owner"
- msgstr "čtení vlastníkem"
- msgid "sticky bit"
- msgstr "bit „sticky“"
- msgid "set group ID on execution"
- msgstr "nastavit GID při spuštění"
- msgid "set user ID on execution"
- msgstr "nastavit UID při spuštění"
- msgid "C&lear marked"
- msgstr "&Smazat označené"
- msgid "S&et marked"
- msgstr "&Nastavit označené"
- msgid "&Marked all"
- msgstr "&Nastavit vše na označených souborech"
- msgid "Name"
- msgstr "Jméno"
- msgid "Permissions (Octal)"
- msgstr "Práva (Octal)"
- msgid "Owner name"
- msgstr "Jméno vlastníka"
- msgid "Group name"
- msgstr "Jméno skupiny"
- msgid "Use SPACE to change"
- msgstr "Použijte MEZERNÍK ke změně"
- # V překladu je z grafických důvodů doplněno "pro pohyb" (které v překladu patří až na další řádku), protože pokud se překlad ponechá graficky tak jak je anglicky, vypadá to v okně Midnight Commanderu dost ošklivě (zbytečné volné místo téměř půl řádku). Snad to není příliš na škodu.
- msgid "an option, ARROW KEYS"
- msgstr "nastavení, ŠIPKY pro pohyb"
- # V překladu je z grafických důvodů doplněno "a T" (které v překladu patří až na další řádku).
- msgid "to move between options"
- msgstr "mezi volbami nastavení a T"
- msgid "and T or INS to mark"
- msgstr "nebo INS pro označení"
- msgid "Chmod command"
- msgstr "Příkaz chmod"
- #, fuzzy
- msgid "File"
- msgstr "&Soubor"
- msgid "Permission"
- msgstr "Práva"
- msgid "Set &users"
- msgstr "Nastav &uživatele"
- msgid "Set &groups"
- msgstr "Nastav &skupiny"
- #, fuzzy
- msgid "Size"
- msgstr "&Délka"
- #, fuzzy
- msgid "Chown command"
- msgstr " Příkaz chown "
- msgid "<Unknown user>"
- msgstr "<Neznámý uživatel>"
- msgid "<Unknown group>"
- msgstr "<Neznámá skupina>"
- #, fuzzy
- msgid "User name"
- msgstr " Jméno uživatele "
- msgid "Files tagged, want to cd?"
- msgstr "Soubory označeny, chcete změnit adresář?"
- msgid "Cannot change directory"
- msgstr "Není možné změnit adresář"
- #, fuzzy
- msgid "View file"
- msgstr " Prohlížet soubor "
- #, fuzzy
- msgid "Filename:"
- msgstr " Jméno souboru:"
- #, fuzzy
- msgid "Filtered view"
- msgstr "&Filtrovaný pohled"
- #, fuzzy
- msgid "Filter command and arguments:"
- msgstr " Příkaz filtru a jeho argumenty:"
- msgid "Create a new Directory"
- msgstr "Vytvořit nový adresář"
- #, fuzzy
- msgid "Enter directory name:"
- msgstr " Zadejte jméno adresáře:"
- #, fuzzy
- msgid "Filter"
- msgstr " Filtr "
- #, fuzzy
- msgid "Set expression for filtering filenames"
- msgstr " Zadejte masku pro filtrování názvů souborů"
- msgid "&Using shell patterns"
- msgstr "&Význam vzorů jako v shellu"
- msgid "&Case sensitive"
- msgstr "Rozliš. velikos&t"
- msgid "&Files only"
- msgstr "&Pouze soubory"
- #, fuzzy
- msgid "Select"
- msgstr "&Výběr"
- #, fuzzy
- msgid "Unselect"
- msgstr " Zrušit výběr "
- msgid "Extension file edit"
- msgstr "Upravit akce k příponám"
- #, fuzzy
- msgid "Which extension file you want to edit?"
- msgstr " Který soubor s příponami chcete upravit? "
- msgid "&User"
- msgstr "&Uživatel"
- msgid "&System Wide"
- msgstr "&Systémový"
- #, fuzzy
- msgid "Menu edit"
- msgstr " Úpravy menu "
- #, fuzzy
- msgid "Which menu file do you want to edit?"
- msgstr " Který soubor menu chcete upravit? "
- msgid "&Local"
- msgstr "&Lokální"
- msgid "Highlighting groups file edit"
- msgstr "Úprava souboru zvýrazňovacích skupin"
- #, fuzzy
- msgid "Which highlighting file you want to edit?"
- msgstr " Který zvýrazňovací soubor chcete upravit? "
- #, fuzzy
- msgid "Compare directories"
- msgstr "Porovnat &adresáře"
- #, fuzzy
- msgid "Select compare method:"
- msgstr " Vyberte metodu porovnání: "
- msgid "&Quick"
- msgstr "&Rychlá"
- msgid "&Size only"
- msgstr "&Pouze velikost"
- msgid "&Thorough"
- msgstr "&Důkladná"
- #, fuzzy
- msgid ""
- "Both panels should be in the listing mode\n"
- "to use this command"
- msgstr ""
- " Pokud chcete použít tento příkaz, oba panely musí zobrazovat seznam souborů "
- #, fuzzy
- msgid ""
- "Not an xterm or Linux console;\n"
- "the panels cannot be toggled."
- msgstr ""
- " Toto není xterm nebo linuxová konzola; \n"
- " panely nelze přepnout. "
- #, c-format
- msgid "Link %s to:"
- msgstr "Odkaz %s do:"
- #, fuzzy
- msgid "Link"
- msgstr "O&dkaz"
- #, fuzzy, c-format
- msgid "link: %s"
- msgstr " odkaz: %s "
- #, fuzzy, c-format
- msgid "symlink: %s"
- msgstr " symbolický odkaz: %s "
- #, fuzzy, c-format
- msgid "Symlink `%s' points to:"
- msgstr " Symbolický odkaz „%s“ ukazuje na: "
- #, fuzzy
- msgid "Edit symlink"
- msgstr "Upravit s&ymbolický odkaz"
- #, fuzzy, c-format
- msgid "edit symlink, unable to remove %s: %s"
- msgstr " upravte symlink, nelze odstranit %s: %s "
- #, fuzzy, c-format
- msgid "edit symlink: %s"
- msgstr " upravte symbolický odkaz: %s "
- #, c-format
- msgid "`%s' is not a symbolic link"
- msgstr "„%s“ není symbolický odkaz"
- #, fuzzy, c-format
- msgid "Cannot chdir to %s"
- msgstr " Pracovní adresář nelze změnit na %s "
- #, fuzzy
- msgid "Enter machine name (F1 for details):"
- msgstr " Jméno počítače (nápověda F1): "
- #, fuzzy
- msgid "Link to a remote machine"
- msgstr " Odkaz na vzdálený počítač "
- #, fuzzy
- msgid "FTP to machine"
- msgstr " FTP spojení na počítač "
- #, fuzzy
- msgid "Shell link to machine"
- msgstr " Shellové spojení na počítač "
- #, fuzzy
- msgid "SMB link to machine"
- msgstr " SMB spojení na počítač "
- #, fuzzy
- msgid "Undelete files on an ext2 file system"
- msgstr " Obnovit soubory na diskových oblastech typu ext2 "
- #, fuzzy
- msgid ""
- "Enter device (without /dev/) to undelete\n"
- "files on: (F1 for details)"
- msgstr ""
- " Zadejte zařízení (bez /dev/), na kterém chcete\n"
- " obnovit soubory: (nápověda F1)"
- #, fuzzy
- msgid "Setup"
- msgstr " Nastavení "
- #, fuzzy, c-format
- msgid "Setup saved to ~/%s"
- msgstr " Nastavení uloženo do ~/%s"
- #, fuzzy, c-format
- msgid ""
- "Cannot chdir to \"%s\"\n"
- "%s"
- msgstr ""
- " Adresář nelze změnit na „%s“ \n"
- " %s "
- #, fuzzy
- msgid "Cannot execute commands on non-local filesystems"
- msgstr " Pokud nepracujete s lokálními soubory, nelze spouštět žádné příkazy"
- #, fuzzy
- msgid "The shell is already running a command"
- msgstr " Shell už provádí příkaz "
- msgid "Screens"
- msgstr ""
- msgid "&Dismiss"
- msgstr "&Odmítnout"
- msgid "All charsets"
- msgstr "Všechny znakové sady"
- msgid "&Whole words"
- msgstr "Pouze &celá slova"
- msgid "&Backwards"
- msgstr "Po&zpátku"
- #, fuzzy
- msgid "Case &sensitive"
- msgstr "Všímat si velikos&ti písmen"
- #, fuzzy
- msgid "Enter search string:"
- msgstr " Zadejte hledaný text:"
- msgid "Search"
- msgstr "Hledat"
- #, fuzzy
- msgid "Search is disabled"
- msgstr "Hledání dokončeno"
- #, fuzzy, c-format
- msgid ""
- "Cannot create temporary diff file\n"
- "%s"
- msgstr ""
- " Nelze vytvořit dočasný příkazový soubor \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot create backup file\n"
- "%s%s\n"
- "%s"
- msgstr ""
- " Nelze vytvořit cílový soubor „%s“ \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot create temporary merge file\n"
- "%s"
- msgstr ""
- " Nelze vytvořit dočasný příkazový soubor \n"
- " %s "
- #, fuzzy
- msgid "&Normal"
- msgstr "Normální"
- msgid "&Fastest (Assume large files)"
- msgstr ""
- msgid "&Minimal (Find a smaller set of change)"
- msgstr ""
- msgid "Strip &trailing carriage return"
- msgstr ""
- msgid "Ignore all &whitespace"
- msgstr ""
- msgid "Ignore &space change"
- msgstr ""
- msgid "Ignore tab &expansion"
- msgstr ""
- #, fuzzy
- msgid "&Ignore case"
- msgstr "&Ignorovat zámek"
- #, fuzzy
- msgid "Diff extra options"
- msgstr " Další nastavení "
- msgid "Diff algorithm"
- msgstr ""
- #, fuzzy
- msgid "Diff Options"
- msgstr "&Nastavení"
- #, fuzzy
- msgid "Edit"
- msgstr "&Upravit"
- #, fuzzy
- msgid "Edit is disabled"
- msgstr "Začne editovat jeden soubor"
- #, fuzzy
- msgid "Goto line (left)"
- msgstr " Jdi na řádek "
- #, fuzzy
- msgid "Goto line (right)"
- msgstr " Jdi na řádek "
- #, fuzzy
- msgid "Enter line:"
- msgstr " Zadejte číslo řádku: "
- msgid "ButtonBar|Help"
- msgstr "TlačítkováLišta|Pomoc"
- msgid "ButtonBar|Save"
- msgstr "TlačítkováLišta|Uložit"
- msgid "ButtonBar|Edit"
- msgstr "TlačítkováLišta|Uprav"
- #, fuzzy
- msgid "ButtonBar|Merge"
- msgstr "TlačítkováLišta|Zapomn"
- msgid "ButtonBar|Search"
- msgstr "TlačítkováLišta|Hledat"
- #, fuzzy
- msgid "ButtonBar|Options"
- msgstr "TlačítkováLišta|JdiNa"
- msgid "ButtonBar|Quit"
- msgstr "TlačítkováLišta|Konec"
- msgid "Quit"
- msgstr "Konec"
- #, fuzzy
- msgid "File was modified. Save with exit?"
- msgstr " Soubor byl změněn, uložit při odchodu? "
- msgid ""
- "Midnight Commander is being shut down.\n"
- "Save modified file?"
- msgstr ""
- msgid "Diff:"
- msgstr ""
- msgid "Two files are needed to compare"
- msgstr ""
- msgid "Cannot read directory contents"
- msgstr "Nelze číst obsah adresáře"
- #, fuzzy
- msgid "Choose syntax highlighting"
- msgstr " Vyber zvýraznění syntaxe "
- msgid "< Auto >"
- msgstr "< Auto >"
- msgid "< Reload Current Syntax >"
- msgstr "< Nahraj aktuální syntaxi >"
- #, fuzzy, c-format
- msgid "Cannot open %s for reading"
- msgstr " Nepodařilo se otevřít %s pro čtení "
- msgid "Error"
- msgstr "Chyba"
- #, fuzzy, c-format
- msgid "Error reading %s"
- msgstr "Chyba při čtení skriptu:"
- #, fuzzy, c-format
- msgid "Error reading from pipe: %s"
- msgstr " Chyba při čtení z roury: %s "
- #, fuzzy, c-format
- msgid "Cannot open pipe for reading: %s"
- msgstr " Nelze otevřít rouru pro čtení: %s "
- #, fuzzy, c-format
- msgid "Cannot get size/permissions for %s"
- msgstr " Nelze zjistit velikost/práva k souboru %s "
- #, fuzzy, c-format
- msgid "\"%s\" is not a regular file"
- msgstr " %s není normální soubor "
- #, fuzzy, c-format
- msgid "File \"%s\" is too large"
- msgstr " Soubor %s je příliš velký "
- #, fuzzy
- msgid "About"
- msgstr " O programu "
- msgid ""
- "\n"
- " Cooledit v3.11.5\n"
- "\n"
- " Copyright (C) 1996 the Free Software Foundation\n"
- "\n"
- " A user friendly text editor written\n"
- " for the Midnight Commander.\n"
- msgstr ""
- "\n"
- " Cooledit v3.11.5\n"
- "\n"
- " Copyright (C) 1996 the Free Software Foundation\n"
- "\n"
- " Uživatelsky příjemný textový editor\n"
- " pro program Midnight Commander.\n"
- "\n"
- msgid "Macro recursion is too deep"
- msgstr "Rekurze maker je příliš hluboká"
- #, fuzzy
- msgid "File has hard-links. Detach before saving?"
- msgstr " Soubor má pevné odkazy. Odpojit před uložením? "
- msgid "The file has been modified in the meantime. Save anyway?"
- msgstr "Soubor byl mezitím změněný. Opravdu uložit?"
- #, fuzzy, c-format
- msgid "Error writing to pipe: %s"
- msgstr " Chyba při zápisu do roury: "
- #, fuzzy, c-format
- msgid "Cannot open pipe for writing: %s"
- msgstr " Nelze otevřít rouru pro zápis: "
- #, fuzzy, c-format
- msgid "Cannot open file for writing: %s"
- msgstr " Nelze otevřít rouru pro zápis: %s "
- msgid "&Quick save"
- msgstr "&Rychlé ukládání "
- msgid "&Safe save"
- msgstr "&Bezpečné ukládání "
- msgid "&Do backups with following extension:"
- msgstr "&Vytvářet zálohy s příponou:"
- msgid "Check &POSIX new line"
- msgstr "Kontrolovat nový řádek &POSIX"
- #, fuzzy
- msgid "Edit Save Mode"
- msgstr " Upravit ukládací režim "
- msgid "The file you are saving is not finished with a newline"
- msgstr "Soubor, ktorý ukladáte není ukončený znakem nového řádku"
- msgid "C&ontinue"
- msgstr "P&okračovat"
- msgid "&Do not change"
- msgstr "&Neměnit"
- msgid "&Unix format (LF)"
- msgstr "Formát &Unix (LF)"
- msgid "&Windows/DOS format (CR LF)"
- msgstr "Formát &Windows/DOS (CR LF)"
- msgid "&Macintosh format (CR)"
- msgstr "Formát &Macintosh (CR)"
- msgid "Change line breaks to:"
- msgstr "Změnit konce řádků na:"
- #, fuzzy
- msgid "Enter file name:"
- msgstr " Zadejte jméno souboru: "
- #, fuzzy
- msgid "Save As"
- msgstr " Uložit jako "
- #, fuzzy
- msgid "A file already exists with this name"
- msgstr " Soubor tohoto jména již existuje. "
- msgid "&Overwrite"
- msgstr "&Přepsat"
- #, fuzzy
- msgid "Save as"
- msgstr "Uložit &jako..."
- #, fuzzy
- msgid "Cannot save file"
- msgstr " Chyba při zápisu do souboru. "
- #, fuzzy
- msgid "Delete macro"
- msgstr " Smazat makro "
- #, fuzzy
- msgid "Cannot open temp file"
- msgstr " Chyba při otvírání dočasného souboru "
- #, fuzzy
- msgid "Cannot open macro file"
- msgstr " Chyba při otvírání souboru maker "
- #, fuzzy
- msgid "Cannot overwrite macro file"
- msgstr " Chyba při pokusu o přepis souboru maker "
- #, fuzzy
- msgid "Save macro"
- msgstr " Uložit makro "
- #, fuzzy
- msgid "Press the macro's new hotkey:"
- msgstr " Stiskněte novou hotkey pro makro: "
- #, fuzzy
- msgid "Press macro hotkey:"
- msgstr " Stiskněte hotkey makra: "
- #, fuzzy
- msgid "Load macro"
- msgstr " Načíst makro "
- #, fuzzy, c-format
- msgid "Confirm save file: \"%s\""
- msgstr " Potvrďte uložení souboru? : "
- #, fuzzy
- msgid "Save file"
- msgstr " Uložit soubor "
- msgid "&Save"
- msgstr "&Uložit"
- #, fuzzy
- msgid ""
- "Current text was modified without a file save.\n"
- "Continue discards these changes"
- msgstr ""
- " Tento text byl změněn, ale změny nebyly uloženy. \n"
- " Pokračováním se změny ztratí. "
- msgid "Syntax file edit"
- msgstr "Úpravy souboru se syntaxí"
- #, fuzzy
- msgid "Which syntax file you want to edit?"
- msgstr " Který soubor se syntaxí chcete upravit? "
- #, fuzzy
- msgid "Load"
- msgstr " Načíst "
- #, fuzzy
- msgid "Block is large, you may not be able to undo this action"
- msgstr " Blok je příliš velký, návrat o krok zpět nebude fungovat. "
- msgid "Replace"
- msgstr "Nahradit"
- #, fuzzy, c-format
- msgid "%ld replacements made"
- msgstr " Provedeno %ld nahrazení. "
- msgid "&Cancel quit"
- msgstr "&Zrušit odchod"
- #, fuzzy
- msgid "This function is not implemented"
- msgstr " Tato funkce není implementována. "
- #, fuzzy
- msgid "Copy to clipboard"
- msgstr " Zkopírovat do schránky "
- #, fuzzy
- msgid "Unable to save to file"
- msgstr " Nelze uložit soubor. "
- #, fuzzy
- msgid "Cut to clipboard"
- msgstr " Vyjmout do schránky "
- #, fuzzy
- msgid "Goto line"
- msgstr " Jdi na řádek "
- #, fuzzy
- msgid "Save block"
- msgstr " Uložit blok "
- #, fuzzy
- msgid "Insert file"
- msgstr "&Vložit soubor..."
- #, fuzzy
- msgid "Cannot insert file"
- msgstr " Chyba při vkládání souboru. "
- #, fuzzy
- msgid "Sort block"
- msgstr " Setřídit blok "
- #, fuzzy
- msgid "You must first highlight a block of text"
- msgstr " Nejdříve je třeba označit blok textu. "
- #, fuzzy
- msgid "Run sort"
- msgstr " Spustit třídění "
- #, fuzzy
- msgid "Enter sort options (see manpage) separated by whitespace:"
- msgstr " Vložte parametry pro třídění (viz man sort) oddělené mezerami: "
- #, fuzzy
- msgid "Sort"
- msgstr " Setřídit "
- #, fuzzy
- msgid "Cannot execute sort command"
- msgstr " Chyba při spouštění příkazu sort "
- #, fuzzy, c-format
- msgid "Sort returned non-zero: %s"
- msgstr " Sort vrátil nenulovou hodnotu: "
- msgid "Paste output of external command"
- msgstr "Vložte výstup externího příkazu"
- msgid "Enter shell command(s):"
- msgstr "Zadejte shellový(é) příkaz(y):"
- msgid "External command"
- msgstr "Externí příkaz"
- msgid "Cannot execute command"
- msgstr "Nemohu spustit příkaz"
- msgid "Error creating script:"
- msgstr "Chyba při vytváření skriptu:"
- msgid "Error reading script:"
- msgstr "Chyba při čtení skriptu:"
- msgid "Error closing script:"
- msgstr "Chyba při zavírání skriptu:"
- msgid "Script created:"
- msgstr "Skript byl vytvořen:"
- msgid "Process block"
- msgstr "Zpracovat blok"
- #, fuzzy
- msgid "Error calling program"
- msgstr "Chyba při zavírání skriptu:"
- #, fuzzy
- msgid "Copies to"
- msgstr " Kopie do"
- #, fuzzy
- msgid "Subject"
- msgstr " Předmět"
- #, fuzzy
- msgid "To"
- msgstr " Komu"
- #, fuzzy
- msgid "mail -s <subject> -c <cc> <to>"
- msgstr " mail -s <předmět> -c <kopie> <komu>"
- #, fuzzy
- msgid "Mail"
- msgstr " E-mail "
- #, fuzzy
- msgid "Insert literal"
- msgstr "Vložit &znak..."
- #, fuzzy
- msgid "Press any key:"
- msgstr " Stiskněte libovolnou klávesu: "
- #, fuzzy
- msgid "Execute macro"
- msgstr "Provést &makro..."
- #, fuzzy
- msgid ""
- "Current text was modified without a file save\n"
- "Continue discards these changes"
- msgstr ""
- " Tento text byl změněn, ale změny nebyly uloženy. \n"
- " Pokračováním se změny ztratí. "
- msgid "In se&lection"
- msgstr "&Ve výběru"
- #, fuzzy
- msgid "Enter replacement string:"
- msgstr " Zadejte náhradní text:"
- msgid "&Find all"
- msgstr "&Najít všechny"
- msgid "Cancel"
- msgstr "Zrušit"
- #, fuzzy
- msgid ""
- "Current text was modified without a file save.\n"
- "Continue discards these changes."
- msgstr ""
- " Tento text byl změněn, ale změny nebyly uloženy. \n"
- " Pokračováním se změny ztratí. "
- msgid "&Skip"
- msgstr "&Přeskočit"
- msgid "A&ll"
- msgstr "&Všechny"
- msgid "&Replace"
- msgstr "&Nahradit"
- #, fuzzy
- msgid "Replace with:"
- msgstr " Nahradit textem: "
- #, fuzzy
- msgid "Confirm replace"
- msgstr " Potvrdit náhradu "
- msgid "&Open file..."
- msgstr "&Otevřít soubor..."
- msgid "&New"
- msgstr "&Nový"
- msgid "Save &as..."
- msgstr "Uložit &jako..."
- msgid "&Insert file..."
- msgstr "&Vložit soubor..."
- msgid "Cop&y to file..."
- msgstr "Zkopírovat do &souboru..."
- msgid "&User menu..."
- msgstr "Uživatelské &menu..."
- msgid "A&bout..."
- msgstr "&O aplikaci..."
- msgid "&Quit"
- msgstr "&Konec"
- msgid "&Undo"
- msgstr "&Zpět"
- msgid "&Toggle ins/overw"
- msgstr "Přepnout &vkládání/přepis"
- msgid "To&ggle mark"
- msgstr "&Přepnout označení"
- msgid "&Mark columns"
- msgstr "&Označit sloupce"
- msgid "Mark &all"
- msgstr "Ozn&ačit vše"
- msgid "Unmar&k"
- msgstr "Zr&ušit označení"
- msgid "Cop&y"
- msgstr "&Kopírovat"
- msgid "Mo&ve"
- msgstr "&Přesun"
- msgid "&Delete"
- msgstr "&Smazat"
- msgid "Co&py to clipfile"
- msgstr "&Zkopírovat do ústřižku"
- msgid "&Cut to clipfile"
- msgstr "&Vyjmout do ústřižku"
- msgid "Pa&ste from clipfile"
- msgstr "V&ložit z ústřižku"
- msgid "&Beginning"
- msgstr "&Začátek"
- msgid "&End"
- msgstr "&Konec"
- msgid "&Search..."
- msgstr "&Hledat..."
- msgid "Search &again"
- msgstr "Hledat &znovu"
- msgid "&Replace..."
- msgstr "&Nahradit..."
- msgid "&Toggle bookmark"
- msgstr "Přepnout zá&ložku"
- msgid "&Next bookmark"
- msgstr "&Další záložka"
- msgid "&Prev bookmark"
- msgstr "&Předchozí záložka"
- msgid "&Flush bookmark"
- msgstr "&Zrušit záložku"
- msgid "&Go to line..."
- msgstr "&Jdi na řádek..."
- msgid "&Toggle line state"
- msgstr "Přepnout &zobrazení řádků"
- msgid "Go to matching &bracket"
- msgstr "Přejít na pá&rovou závorku"
- msgid "&Find declaration"
- msgstr "Najít deklaraci"
- msgid "Back from &declaration"
- msgstr "Zpět z deklarace"
- msgid "For&ward to declaration"
- msgstr "Přejít k deklaraci"
- msgid "Encod&ing..."
- msgstr "&Kódování..."
- msgid "&Refresh screen"
- msgstr "&Obnovit obrazovku"
- msgid "&Start record macro"
- msgstr "Z&ačít zaznamenávat makro"
- msgid "Finis&h record macro..."
- msgstr "&Ukončit záznam makra..."
- msgid "&Execute macro..."
- msgstr "Provést &makro..."
- msgid "Delete macr&o..."
- msgstr "&Smazat makro..."
- msgid "'ispell' s&pell check"
- msgstr "„&ispell“ kontrola pravopisu"
- msgid "&Mail..."
- msgstr "&Pošta..."
- msgid "Insert &literal..."
- msgstr "Vložit &znak..."
- msgid "Insert &date/time"
- msgstr "Vložit &datum/čas"
- msgid "&Format paragraph"
- msgstr "Pře&formátovat odstavec"
- msgid "&Sort..."
- msgstr "&Pořadí..."
- msgid "&Paste output of..."
- msgstr "Vložit &výstup..."
- msgid "&External formatter"
- msgstr "E&xterní formátovač"
- #, fuzzy
- msgid "&General..."
- msgstr "&Obecné... "
- msgid "Save &mode..."
- msgstr "&Režim ukládání..."
- msgid "Learn &keys..."
- msgstr "Učení &kláves..."
- msgid "Syntax &highlighting..."
- msgstr "Zvýraznění synta&xe..."
- msgid "S&yntax file"
- msgstr "Soubor se s&yntaxí"
- msgid "&Menu file"
- msgstr "Soubor s &menu"
- msgid "&Save setup"
- msgstr "Uložit na&stavení"
- msgid "&File"
- msgstr "&Soubor"
- msgid "&Edit"
- msgstr "&Upravit"
- msgid "&Search"
- msgstr "&Hledat"
- msgid "&Command"
- msgstr "&Příkaz"
- msgid "For&mat"
- msgstr "For&mát"
- msgid "&Options"
- msgstr "&Nastavení"
- msgid "None"
- msgstr "Žádný"
- msgid "Dynamic paragraphing"
- msgstr "Dynamické odstavce"
- msgid "Type writer wrap"
- msgstr "Zalamování psacího stroje"
- #, fuzzy
- msgid "Word wrap line length:"
- msgstr "Šířka řádku pro zlom: "
- msgid "Cursor beyond end of line"
- msgstr "Kurzor za koncem řádku"
- msgid "Pers&istent selection"
- msgstr "&Trvalý výběr"
- msgid "Synta&x highlighting"
- msgstr "Zvýraznění synta&xe"
- msgid "Visible tabs"
- msgstr "Viditelné tabulátory"
- msgid "Visible trailing spaces"
- msgstr "Viditelné mezery na konci"
- msgid "Save file &position"
- msgstr "&Uložit pozici v souboru"
- msgid "Confir&m before saving"
- msgstr "&Potvrdit před uložením"
- msgid "&Return does autoindent"
- msgstr "&Return automaticky odsadí"
- #, fuzzy
- msgid "Tab spacing:"
- msgstr "Velikost tabulátoru: "
- msgid "Fill tabs with &spaces"
- msgstr "Měnit tabulátory na &mezery"
- msgid "&Backspace through tabs"
- msgstr "&Backspace přes tabulátory"
- msgid "&Fake half tabs"
- msgstr "&Falešné poloviční tabulátory"
- msgid "Wrap mode"
- msgstr "Režim zalamování"
- #, fuzzy
- msgid "Editor options"
- msgstr " Nastavení editoru "
- #, fuzzy
- msgid "Edit: "
- msgstr "&Upravit"
- msgid "ButtonBar|Mark"
- msgstr "TlačítkováLišta|Označ"
- msgid "ButtonBar|Replac"
- msgstr "TlačítkováLišta|Nahraď"
- msgid "ButtonBar|Copy"
- msgstr "TlačítkováLišta|Kopie"
- msgid "ButtonBar|Move"
- msgstr "TlačítkováLišta|Přesun"
- msgid "ButtonBar|Delete"
- msgstr "TlačítkováLišta|Smazat"
- msgid "ButtonBar|PullDn"
- msgstr "TlačítkováLišta|H.Menu"
- #, fuzzy
- msgid "Load syntax file"
- msgstr " Načíst soubor se syntaxí "
- #, fuzzy, c-format
- msgid ""
- "Cannot open file %s\n"
- "%s"
- msgstr ""
- " Nelze otevřít soubor %s \n"
- " %s "
- #, fuzzy, c-format
- msgid "Error in file %s on line %d"
- msgstr " Chyba v souboru %s na řádce %d "
- #, fuzzy
- msgid ""
- "The Commander can't change to the directory that\n"
- "the subshell claims you are in. Perhaps you have\n"
- "deleted your working directory, or given yourself\n"
- "extra access permissions with the \"su\" command?"
- msgstr ""
- " Midnight Commander nemůže změnit adresář na ten, \n"
- " který mu oznámil podshell. Je to pravděpodobně proto, \n"
- " že byl tento adresář smazán nebo také proto, že jste se \n"
- " do tohoto adresáře přepnuli pomocí příkazu „su“. "
- #, c-format
- msgid "Type `exit' to return to the Midnight Commander"
- msgstr "Napište „exit“ pro návrat do Midnight Commanderu"
- #, fuzzy, c-format
- msgid "Cannot fetch a local copy of %s"
- msgstr " Nelze vyrobit lokální kopii souboru %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot create temporary command file\n"
- "%s"
- msgstr ""
- " Nelze vytvořit dočasný příkazový soubor \n"
- " %s "
- #, fuzzy
- msgid "Parameter"
- msgstr " Parametr "
- #, c-format
- msgid " %s%s file error"
- msgstr " %s%s chyba souboru"
- # Zarovnání českého překladu se poněkud liší od anglického originálu.
- #, fuzzy, c-format
- msgid ""
- "The format of the %smc.ext file has changed with version 3.0. It seems that "
- "the installation failed. Please fetch a fresh copy from the Midnight "
- "Commander package."
- msgstr ""
- "Formát souboru %smc.ext byl modifikován verzí 3.0. Zdá se, že instalace "
- "selhala. Prosím, nahrajte si novou aktuální kopii balíčku Midnight "
- "Commander."
- #, fuzzy, c-format
- msgid "~/%s file error"
- msgstr " ~/%s chyba souboru "
- # Zarovnání českého překladu se poněkud liší od anglického originálu.
- #, fuzzy, c-format
- msgid ""
- "The format of the ~/%s file has changed with version 3.0. You may either "
- "want to copy it from %smc.ext or use that file as an example of how to write "
- "it."
- msgstr ""
- "Formát souboru ~/%s byl modifikován verzí 3.0. Můžete ho buď zkopírovat ze %"
- "smc.ext nebo použít tento soubor jako příklad jak jej napsat."
- msgid "DialogTitle|Copy"
- msgstr "DialogTitle|Kopírovat"
- msgid "DialogTitle|Move"
- msgstr "DialogTitle|Přesunout"
- msgid "DialogTitle|Delete"
- msgstr "DialogTitle|Smazat"
- #, fuzzy
- msgid "Cannot make the hardlink"
- msgstr " Nelze vytvořit přímý odkaz "
- #, fuzzy, c-format
- msgid ""
- "Cannot read source link \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze přečíst zdrojový odkaz „%s“ \n"
- " %s "
- #, fuzzy
- msgid ""
- "Cannot make stable symlinks acrossnon-local filesystems:\n"
- "\n"
- "Option Stable Symlinks will be disabled"
- msgstr ""
- " Přes vzdálené souborové systémy nelze vytvářet stabilní symlinky: \n"
- "\n"
- " Možnost „Stabilní symlinky“ bude vypnutá "
- #, fuzzy, c-format
- msgid ""
- "Cannot create target symlink \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze vytvořit cílový symlink „%s“ \n"
- " %s "
- msgid "&Abort"
- msgstr "&Zrušit"
- #, fuzzy, c-format
- msgid ""
- "Cannot overwrite directory\"%s\"\n"
- "%s"
- msgstr ""
- " Nelze přepsat adresář „%s“ \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot stat source file \"%s\"\n"
- "%s"
- msgstr ""
- " Na zdrojovém souboru „%s“ nelze provést stat \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "\"%s\"\n"
- "and\n"
- "\"%s\"\n"
- "are the same file"
- msgstr ""
- " „%s“ \n"
- " a \n"
- " „%s“ \n"
- " jsou stejný soubor "
- #, fuzzy, c-format
- msgid ""
- "Cannot create special file \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze vytvořit speciální soubor „%s“ \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot chown target file \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze provést změnu vlastníka cílového souboru „%s“ \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot chmod target file \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze změnit práva cílového souboru „%s“ \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot open source file \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze otevřít zdrojový soubor „%s“ \n"
- " %s "
- #, fuzzy
- msgid "Reget failed, about to overwrite file"
- msgstr " Reget selhal, soubor bude přepsán "
- #, fuzzy, c-format
- msgid ""
- "Cannot fstat source file \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze provést fstat zdrojového souboru „%s“ \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot create target file \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze vytvořit cílový soubor „%s“ \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot fstat target file \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze provést fstat cílového souboru „%s“ \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot read source file\"%s\"\n"
- "%s"
- msgstr ""
- " Nelze číst zdrojový soubor „%s“ \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot write target file \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze psát do cílového souboru „%s“ \n"
- " %s "
- msgid "(stalled)"
- msgstr "(zamrzlo)"
- #, fuzzy, c-format
- msgid ""
- "Cannot close source file \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze zavřít zdrojový soubor „%s“ \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot close target file \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze zavřít cílový soubor „%s“ \n"
- " %s "
- msgid "Incomplete file was retrieved. Keep it?"
- msgstr "Získaný soubor není kompletní. Přesto uložit?"
- msgid "&Keep"
- msgstr "&Ponechat"
- #, fuzzy, c-format
- msgid ""
- "Cannot stat source directory \"%s\"\n"
- "%s"
- msgstr ""
- " Na zdrojovém adresáři „%s“ nelze provést stat \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Source \"%s\" is not a directory\n"
- "%s"
- msgstr ""
- " Zdrojový adresář „%s“ není adresářem \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot copy cyclic symbolic link\n"
- "\"%s\""
- msgstr ""
- " Nelze kopírovat cyklický symbolický odkaz \n"
- " „%s“ "
- #, fuzzy, c-format
- msgid ""
- "Destination \"%s\" must be a directory\n"
- "%s"
- msgstr ""
- " Cíl „%s“ musí být adresářem \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot create target directory \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze vytvořit cílový adresář „%s“ \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot chown target directory \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze změnit práva cílového adresáře „%s“ \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot stat file \"%s\"\n"
- "%s"
- msgstr ""
- " Na souboru „%s“ nelze provést stat \n"
- " %s "
- #, fuzzy, c-format
- msgid "Cannot overwrite directory \"%s\""
- msgstr " Nelze přepsat adresář „%s“ %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot move file \"%s\" to \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze přesunout soubor „%s“ na „%s“ \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot remove file \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze smazat soubor „%s“ \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "\"%s\"\n"
- "and\n"
- "\"%s\"\n"
- "are the same directory"
- msgstr ""
- " „%s“ \n"
- " a \n"
- " „%s“ \n"
- " jsou stejné adresáře "
- #, fuzzy, c-format
- msgid ""
- "Cannot overwrite directory \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze přepsat adresář „%s“ \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot overwrite file \"%s\"\n"
- "%s"
- msgstr " Nelze přepsat soubor „%s“ %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot move directory \"%s\" to \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze přesunout adresář „%s“ na „%s“ \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot delete file \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze smazat soubor „%s“ \n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot remove directory \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze smazat adresář „%s“ \n"
- " %s "
- msgid "Directory scanning"
- msgstr "Prohledávání adresáře"
- msgid "FileOperation|Copy"
- msgstr "FileOperation|Kopírovat"
- msgid "FileOperation|Move"
- msgstr "FileOperation|Přesunout"
- msgid "FileOperation|Delete"
- msgstr "FileOperation|Smazat"
- #, no-c-format
- msgid "%o %f \"%s\"%m"
- msgstr "%o %f „%s“%m"
- #, no-c-format
- msgid "%o %d %f%m"
- msgstr "%o %d %f%m"
- msgid "files"
- msgstr "souborů"
- msgid "directory"
- msgstr "adresář"
- msgid "directories"
- msgstr "adresářů"
- msgid "files/directories"
- msgstr "souborů/adresářů"
- #. TRANSLATORS: keep leading space here to split words in Copy/Move dialog
- msgid " with source mask:"
- msgstr " vyhovující masce:"
- msgid "to:"
- msgstr "na:"
- #, c-format
- msgid "%s?"
- msgstr "%s?"
- #, fuzzy
- msgid "Cannot operate on \"..\"!"
- msgstr " Nelze pracovat s „..“! "
- #, fuzzy
- msgid "Sorry, I could not put the job in background"
- msgstr " Bohužel, úlohu nelze přesunout na pozadí "
- msgid "&Retry"
- msgstr "&Zkusit znovu"
- #, fuzzy
- msgid ""
- "\n"
- "Directory not empty.\n"
- "Delete it recursively?"
- msgstr ""
- "\n"
- " Adresář není prázdný. \n"
- " Smazat rekurzivně? "
- #, fuzzy
- msgid ""
- "\n"
- "Background process: Directory not empty.\n"
- "Delete it recursively?"
- msgstr ""
- "\n"
- " Proces na pozadí: Adresář není prázdný \n"
- " Smazat rekurzivně? "
- #, fuzzy
- msgid "Delete:"
- msgstr " Smazat: "
- msgid "Non&e"
- msgstr "Žá&dné"
- #, c-format
- msgid "%d:%02d.%02d"
- msgstr "%d:%02d.%02d"
- #, c-format
- msgid "ETA %s"
- msgstr "ČAS %s"
- #, c-format
- msgid "%.2f MB/s"
- msgstr "%.2f MB/s"
- #, c-format
- msgid "%.2f KB/s"
- msgstr "%.2f KB/s"
- #, c-format
- msgid "%ld B/s"
- msgstr "%ld B/s"
- #, c-format
- msgid "Files processed: %llu of %llu"
- msgstr "Zpracováno souborů: %llu z %llu"
- #, c-format
- msgid "Time: %s %s (%s)"
- msgstr "Čas: %s %s (%s)"
- #, fuzzy, c-format
- msgid "Total: %s of %s"
- msgstr " Celkem: %s z %s "
- msgid "Source"
- msgstr "Zdroj"
- msgid "Target"
- msgstr "Cíl"
- msgid "Deleting"
- msgstr "Maže se"
- msgid "Target file already exists!"
- msgstr "Cílový soubor už existuje!"
- #, c-format
- msgid "Source date: %s, size %llu"
- msgstr "Zdrojové datum: %s, velikost %llu"
- #, c-format
- msgid "Target date: %s, size %llu"
- msgstr "Cílové datum: %s, velikost %llu"
- #, c-format
- msgid "Source date: %s, size %u"
- msgstr "Zdrojové datum: %s, velikost %u"
- #, c-format
- msgid "Target date: %s, size %u"
- msgstr "Cílové datum: %s, velikost %u"
- msgid "If &size differs"
- msgstr "Jestliže se velikost &liší"
- msgid "&Update"
- msgstr "Akt&ualizace"
- msgid "Overwrite all targets?"
- msgstr "Přepsat všechny soubory?"
- msgid "&Reget"
- msgstr "Naváza&t"
- msgid "A&ppend"
- msgstr "&Připojit"
- msgid "Overwrite this target?"
- msgstr "Přepsat tento soubor?"
- #, fuzzy
- msgid "File exists"
- msgstr " Soubor existuje "
- #, fuzzy
- msgid "Background process: File exists"
- msgstr " Proces na pozadí: Soubor existuje "
- msgid "&Background"
- msgstr "&Na pozadí"
- msgid "&Stable Symlinks"
- msgstr "&Stabilní symlinky"
- #, fuzzy
- msgid "Di&ve into subdir if exists"
- msgstr "&Ponořit se do existujících adresářů"
- #, fuzzy
- msgid "Preserve &attributes"
- msgstr "Zachovat &atributy"
- #, fuzzy
- msgid "Follow &links"
- msgstr "Nás&ledovat odkazy"
- #, c-format
- msgid "Invalid source pattern `%s'"
- msgstr "Chybný vzor zdroje „%s“"
- msgid "&Suspend"
- msgstr "&Pozastavit"
- msgid "Con&tinue"
- msgstr "&Pokračovat"
- msgid "&Chdir"
- msgstr "&Chdir"
- msgid "&Again"
- msgstr "&Znovu"
- msgid "Pane&lize"
- msgstr "Pane&lizace"
- # Další možnosti překladu: Náhled, Prohlížet
- msgid "&View - F3"
- msgstr "&Vidět - F3"
- msgid "&Edit - F4"
- msgstr "&Uprav - F4"
- #, c-format
- msgid "Found: %ld"
- msgstr "Nalezeno: %ld"
- #, fuzzy
- msgid "Malformed regular expression"
- msgstr " Chybně zadaný regulární výraz "
- msgid "Cas&e sensitive"
- msgstr "Všímat si velikos&ti písmen"
- msgid "&Find recursively"
- msgstr "Najít re&kurzivně"
- msgid "S&kip hidden"
- msgstr "Přeskočit skr&yté"
- msgid "&All charsets"
- msgstr "Všechny z&nakové sady"
- msgid "Case sens&itive"
- msgstr "Všímat si velikos&ti písmen"
- msgid "Re&gular expression"
- msgstr "&Regulární výraz"
- msgid "Fir&st hit"
- msgstr "&První výskyt"
- msgid "All cha&rsets"
- msgstr "Všechny z&nakové sady"
- msgid "&Tree"
- msgstr "&Strom"
- msgid "Find File"
- msgstr "Najít soubor"
- msgid "Content:"
- msgstr "Obsah:"
- msgid "File name:"
- msgstr "Jméno souboru:"
- msgid "Start at:"
- msgstr "Začít v:"
- #, c-format
- msgid "Grepping in %s"
- msgstr "Hledám v %s"
- msgid "Finished"
- msgstr "Hotovo"
- #, c-format
- msgid "Searching %s"
- msgstr "Hledá se %s"
- msgid "Searching"
- msgstr "Hledání"
- #, fuzzy
- msgid "Help file format error\n"
- msgstr " Chybný formát souboru s nápovědou\n"
- #, fuzzy
- msgid "Internal bug: Double start of link area"
- msgstr "Interní závada: Dvojité spuštění pole odkazů "
- #, fuzzy, c-format
- msgid "Cannot find node %s in help file"
- msgstr " V souboru s nápovědou nelze najít sekci %s "
- msgid "Help"
- msgstr "Nápověda"
- msgid "ButtonBar|Index"
- msgstr "ButtonBar|Index"
- msgid "ButtonBar|Prev"
- msgstr "ButtonBar|Předch"
- msgid "&Move"
- msgstr "&Přesun"
- msgid "&Remove"
- msgstr "&Smazat"
- msgid "&Append"
- msgstr "&Přidat"
- msgid "&Insert"
- msgstr "&Vložit"
- #, fuzzy
- msgid "New &entry"
- msgstr "&Nová položka"
- #, fuzzy
- msgid "New &group"
- msgstr "Nová s&kupina"
- msgid "&Up"
- msgstr "Nahor&u"
- msgid "&Add current"
- msgstr "Přidat &tento"
- msgid "&Refresh"
- msgstr "&Obnovit"
- msgid "Fr&ee VFSs now"
- msgstr "U&volnit VFS"
- #, fuzzy
- msgid "Change &to"
- msgstr "Z&měnit na"
- msgid "Subgroup - press ENTER to see list"
- msgstr "Podskupina - pro seznam stiskněte ENTER"
- msgid "Active VFS directories"
- msgstr "Aktivní adresáře VFS"
- msgid "Directory hotlist"
- msgstr "Rychlý přístup k adresářům"
- msgid "Directory path"
- msgstr "Cesta k adresáři"
- msgid "Directory label"
- msgstr "Popis adresáře"
- #, c-format
- msgid "Moving %s"
- msgstr "Přesunuje se %s"
- msgid "New hotlist entry"
- msgstr "Nová položka pro rychlý přístup"
- #, fuzzy
- msgid "Directory label:"
- msgstr "Popis adresáře"
- #, fuzzy
- msgid "Directory path:"
- msgstr "Cesta k adresáři"
- #, fuzzy
- msgid "New hotlist group"
- msgstr " Nová skupina pro rychlý přístup "
- #, fuzzy
- msgid "Name of new group:"
- msgstr "Jméno nové skupiny"
- #, c-format
- msgid "Label for \"%s\":"
- msgstr "Popis pro „%s“:"
- #, fuzzy
- msgid "Add to hotlist"
- msgstr " Přidání pro rychlý přístup "
- #, fuzzy
- msgid "Remove:"
- msgstr " Smazat: "
- #, fuzzy
- msgid "Are you sure you want to remove this entry?"
- msgstr ""
- "\n"
- " Jste si jistí, že chcete odstranit tuto položku?"
- #, fuzzy
- msgid ""
- "Group not empty.\n"
- "Remove it?"
- msgstr ""
- "\n"
- " Skupina není prázdná.\n"
- " Smazat?"
- #, fuzzy
- msgid "Top level group"
- msgstr " Hlavní skupina "
- #, fuzzy
- msgid "Hotlist Load"
- msgstr " Čtení seznamu pro rychlý přístup "
- #, fuzzy, c-format
- msgid ""
- "MC was unable to write ~/%s file,\n"
- "your old hotlist entries were not deleted"
- msgstr ""
- "MC nemohl zapsat soubor ~/%s, vaše staré seznamy pro rychlý přístup nebyly "
- "smazány"
- #, fuzzy
- msgid "Information"
- msgstr " Informace "
- #, c-format
- msgid "Midnight Commander %s"
- msgstr "Midnight Commander %s"
- #, fuzzy, c-format
- msgid "File: %s"
- msgstr "Soubor: %s"
- #, fuzzy, c-format
- msgid "Free nodes: %ld (%ld%%) of %ld"
- msgstr "Volných i-uzlů: %d (%d%%) z %d"
- msgid "No node information"
- msgstr "O uzlu nejsou informace"
- #, c-format
- msgid "Free space: %s (%d%%) of %s"
- msgstr "Volný prostor: %s (%d%%) z %s"
- msgid "No space information"
- msgstr "Nelze získat informace o prostoru"
- #, fuzzy, c-format
- msgid "Type: %s"
- msgstr "Typ: %s "
- msgid "non-local vfs"
- msgstr "vzdálený vfs"
- #, c-format
- msgid "Device: %s"
- msgstr "Zařízení: %s"
- #, c-format
- msgid "Filesystem: %s"
- msgstr "Systém souborů: %s"
- #, c-format
- msgid "Accessed: %s"
- msgstr "Přístup: %s"
- #, c-format
- msgid "Modified: %s"
- msgstr "Změněn: %s"
- #. TRANSLATORS: Time of last status change as in stat(2) man.
- #, fuzzy, c-format
- msgid "Changed: %s"
- msgstr "Z&měnit na"
- #, c-format
- msgid "Dev. type: major %lu, minor %lu"
- msgstr "Typ zařízení: větší %lu, menší %lu"
- #, c-format
- msgid "Size: %s"
- msgstr "Velikost: %s"
- #, c-format
- msgid " (%ld block)"
- msgid_plural " (%ld blocks)"
- msgstr[0] " (%ld blok)"
- msgstr[1] " (%ld bloky)"
- msgstr[2] " (%ld bloků)"
- #, c-format
- msgid "Owner: %s/%s"
- msgstr "Vlastník: %s/%s"
- #, c-format
- msgid "Links: %d"
- msgstr "Odkazů: %d"
- #, c-format
- msgid "Mode: %s (%04o)"
- msgstr "Práva: %s (%04o)"
- #, c-format
- msgid "Location: %Xh:%Xh"
- msgstr "Poloha: %Xh:%Xh"
- msgid "&Vertical"
- msgstr "&Vertikální"
- msgid "&Horizontal"
- msgstr "&Horizontální"
- #, fuzzy
- msgid "Show free sp&ace"
- msgstr "Zo&braz volné místo"
- #, fuzzy
- msgid "&XTerm window title"
- msgstr "Nadpis okna &xtermu"
- #, fuzzy
- msgid "H&intbar visible"
- msgstr "Tip&y viditelné"
- msgid "&Keybar visible"
- msgstr "&Klávesy viditelné"
- #, fuzzy
- msgid "Command &prompt"
- msgstr "Příkazová řá&dka"
- #, fuzzy
- msgid "Show &mini status"
- msgstr "Ukazovat m&ini stav"
- #, fuzzy
- msgid "Menu&bar visible"
- msgstr "&Menu vždy viditelné"
- msgid "&Equal split"
- msgstr "Rozdělení na &poloviny"
- #, fuzzy
- msgid "Panel split"
- msgstr " Rozdělení panelů "
- msgid "Console output"
- msgstr ""
- #, fuzzy
- msgid "Other options"
- msgstr " Další nastavení "
- #, fuzzy
- msgid "Output lines:"
- msgstr "řádek výstupu"
- msgid "Layout"
- msgstr "Rozložení"
- msgid "Learn keys"
- msgstr "Učit klávesy"
- #, fuzzy
- msgid "Teach me a key"
- msgstr " Naučte mne klávesu "
- #, c-format
- msgid ""
- "Please press the %s\n"
- "and then wait until this message disappears.\n"
- "\n"
- "Then, press it again to see if OK appears\n"
- "next to its button.\n"
- "\n"
- "If you want to escape, press a single Escape key\n"
- "and wait as well."
- msgstr ""
- "Prosím, stiskněte %s\n"
- "a vyčkejte, dokud tato zpráva nezmizí.\n"
- "\n"
- "Potom stiskněte klávesu znovu až se objeví OK\n"
- "za tímto tlačítkem.\n"
- "\n"
- "Chcete-li operaci přerušit, stiskněte jednou klávesu Esc\n"
- "a opět vyčkejte."
- #, fuzzy
- msgid "Cannot accept this key"
- msgstr " Tuto klávesu nelze akceptovat "
- #, fuzzy, c-format
- msgid "You have entered \"%s\""
- msgstr " Zadali jste „%s“"
- #. TRANSLATORS: This label appears near learned keys. Keep it short.
- msgid "OK"
- msgstr "OK"
- msgid ""
- "It seems that all your keys already\n"
- "work fine. That's great."
- msgstr ""
- "Vypadá to, že všechny klávesy již fungují.\n"
- "To je skvělé."
- msgid "&Discard"
- msgstr "&Zrušit"
- msgid ""
- "Great! You have a complete terminal database!\n"
- "All your keys work well."
- msgstr ""
- "Skvělé! Máte kompletní databázi terminálu.\n"
- "Všechny vaše klávesy budou funkční."
- msgid "Press all the keys mentioned here. After you have done it, check"
- msgstr "Stiskněte všechny klávesy zmiňované výše. Až to budete mít hotovo,"
- msgid "which keys are not marked with OK. Press space on the missing"
- msgstr "zkontrolujte klávesy, které nejsou označeny OK. Tam stiskněte mezerník"
- msgid "key, or click with the mouse to define it. Move around with Tab."
- msgstr "nebo klikněte myší. Po položkách se pohybujte pomocí tabulátoru."
- #, c-format
- msgid "You have %zd opened screen. Quit anyway?"
- msgid_plural "You have %zd opened screens. Quit anyway?"
- msgstr[0] ""
- msgstr[1] ""
- msgstr[2] ""
- #, fuzzy
- msgid "The Midnight Commander"
- msgstr " Midnight Commander "
- #, fuzzy
- msgid "Do you really want to quit the Midnight Commander?"
- msgstr " Opravdu ukončit Midnight Commander? "
- #, fuzzy
- msgid "File listin&g"
- msgstr "&Plný seznam souborů"
- msgid "&Quick view"
- msgstr "&Rychlé zobrazení "
- msgid "&Info"
- msgstr "&Info"
- msgid "&Listing mode..."
- msgstr "Režim &výpisu..."
- msgid "&Sort order..."
- msgstr "&Pořadí..."
- msgid "&Filter..."
- msgstr "&Filtr..."
- msgid "&Encoding..."
- msgstr "&Kódování"
- msgid "&Network link..."
- msgstr "Síťové spoje&ní..."
- msgid "FT&P link..."
- msgstr "F&TP spojení..."
- msgid "S&hell link..."
- msgstr "S&hellové spojení..."
- msgid "SM&B link..."
- msgstr "SM&B spojení..."
- msgid "&Rescan"
- msgstr "&Obnovit"
- msgid "&View"
- msgstr "&Prohlížet"
- msgid "Vie&w file..."
- msgstr "Pro&hlížet soubor..."
- msgid "&Filtered view"
- msgstr "&Filtrovaný pohled"
- msgid "&Copy"
- msgstr "&Kopírovat"
- msgid "C&hmod"
- msgstr "&Změna práv"
- msgid "&Link"
- msgstr "O&dkaz"
- #, fuzzy
- msgid "&Symlink"
- msgstr "Symbolický &odkaz"
- #, fuzzy
- msgid "Relative symlin&k"
- msgstr "Vyhledávání cílů symlinků..."
- msgid "Edit s&ymlink"
- msgstr "Upravit s&ymbolický odkaz"
- msgid "Ch&own"
- msgstr "Změna &vlastníka"
- msgid "&Advanced chown"
- msgstr "&Rozšířená změna práv/vlastníka"
- msgid "&Rename/Move"
- msgstr "Přej&menovat/přesunout"
- msgid "&Mkdir"
- msgstr "&Nový adresář"
- msgid "&Quick cd"
- msgstr "Ry&chlá změna adresáře"
- msgid "Select &group"
- msgstr "Vy&brat skupinu"
- msgid "U&nselect group"
- msgstr "Zr&ušit výběr skupiny"
- msgid "Reverse selec&tion"
- msgstr "Prohodi&t označení"
- msgid "E&xit"
- msgstr "Ukonč&it"
- msgid "&User menu"
- msgstr "&Uživatelské menu"
- msgid "&Directory tree"
- msgstr "Strom a&dresářů"
- msgid "&Find file"
- msgstr "&Najít soubor"
- msgid "S&wap panels"
- msgstr "Proh&odit panely"
- msgid "Switch &panels on/off"
- msgstr "&Panely ano/ne"
- msgid "&Compare directories"
- msgstr "Porovnat &adresáře"
- #, fuzzy
- msgid "&View diff files"
- msgstr " Prohlížet soubor "
- msgid "E&xternal panelize"
- msgstr "E&xterní panelizace"
- msgid "Show directory s&izes"
- msgstr "Ukázat velikost&i adresářů"
- msgid "Command &history"
- msgstr "&Historie příkazů"
- msgid "Di&rectory hotlist"
- msgstr "&Rychlý přístup k adresářům"
- msgid "&Active VFS list"
- msgstr "Seznam a&ktivních VFS"
- msgid "&Background jobs"
- msgstr "Úlohy na po&zadí"
- msgid "Screen lis&t"
- msgstr ""
- msgid "&Undelete files (ext2fs only)"
- msgstr "&Obnovit smazané soubory (jen ext2fs)"
- msgid "&Listing format edit"
- msgstr "Upravit formát &výpisu"
- msgid "Edit &extension file"
- msgstr "Upravit akc&e k příponám"
- msgid "Edit &menu file"
- msgstr "Upravit uživatelské &menu"
- msgid "Edit hi&ghlighting group file"
- msgstr "Úprava souboru z&výrazňovacích skupin"
- msgid "&Configuration..."
- msgstr "Kon&figurace..."
- msgid "&Layout..."
- msgstr "&Rozložení..."
- #, fuzzy
- msgid "&Panel options..."
- msgstr " Nastavení panelu "
- msgid "C&onfirmation..."
- msgstr "P&otvrzování..."
- msgid "&Display bits..."
- msgstr "&Zobrazení bitů..."
- msgid "&Virtual FS..."
- msgstr "&Virtuální FS..."
- msgid "&Above"
- msgstr "&Nahoře"
- msgid "&Left"
- msgstr "&Levý"
- msgid "&Below"
- msgstr "&Níže"
- msgid "&Right"
- msgstr "P&ravý"
- #, fuzzy
- msgid "Panels:"
- msgstr " Rozdělení panelů "
- msgid "ButtonBar|Menu"
- msgstr "ButtonBar|Menu"
- msgid "ButtonBar|View"
- msgstr "TlačítkováLišta|Zobraz"
- msgid "ButtonBar|RenMov"
- msgstr "TlačítkováLišta|Přesun"
- msgid "ButtonBar|Mkdir"
- msgstr "TlačítkováLišta|NovAdr"
- msgid "The TERM environment variable is unset!\n"
- msgstr "Proměnná prostředí TERM není nastavena!\n"
- #, c-format
- msgid "Cannot create %s directory"
- msgstr "Není možné vytvořit adresář %s"
- msgid "&Never"
- msgstr "&Nikdy"
- #, fuzzy
- msgid "On dum&b terminals"
- msgstr "Na neinteligentních term&inálech"
- msgid "Alwa&ys"
- msgstr "Vžd&y"
- #, fuzzy
- msgid "A&uto save setup"
- msgstr "&Automatické ukládání parametrů"
- #, fuzzy
- msgid "Sa&fe delete"
- msgstr "&Bezpečné mazání"
- #, fuzzy
- msgid "Cd follows lin&ks"
- msgstr "&cd následuje odkazy"
- #, fuzzy
- msgid "Rotating d&ash"
- msgstr "Rotující &/"
- #, fuzzy
- msgid "Co&mplete: show all"
- msgstr "Doplňování: ukázat vše"
- #, fuzzy
- msgid "Shell &patterns"
- msgstr "Vzory s&hellu"
- msgid "&Drop down menus"
- msgstr "Rolovat menu dolů"
- #, fuzzy
- msgid "Auto m&enus"
- msgstr "Automatické &menu"
- #, fuzzy
- msgid "Use internal vie&w"
- msgstr "Použít interní prohlíž&eč"
- #, fuzzy
- msgid "Use internal edi&t"
- msgstr "Použít interní e&ditor"
- #, fuzzy
- msgid "Pause after run"
- msgstr " Čekat po ukončení... "
- msgid "Timeout:"
- msgstr ""
- #, fuzzy
- msgid "S&ingle press"
- msgstr "&Typy souborů"
- #, fuzzy
- msgid "Esc key mode"
- msgstr "Klávesa Escape"
- #, fuzzy
- msgid "Mkdi&r autoname"
- msgstr "Mkdir autonázev"
- msgid "Classic pro&gressbar"
- msgstr ""
- #, fuzzy
- msgid "Compute tota&ls"
- msgstr "Počíta&t součty"
- msgid "&Verbose operation"
- msgstr "„Upovídaně&jší“ operace"
- #, fuzzy
- msgid "File operation options"
- msgstr "FileOperation|Kopírovat"
- msgid "Configure options"
- msgstr "Změna nastavení"
- #, fuzzy
- msgid "Case &insensitive"
- msgstr "Všímat si velikos&ti písmen"
- #, fuzzy
- msgid "Case s&ensitive"
- msgstr "Všímat si velikos&ti písmen"
- #, fuzzy
- msgid "Use panel sort mo&de"
- msgstr "Používat pasivní &režim"
- #, fuzzy
- msgid "Quick search"
- msgstr "Rychlá změna adresáře"
- #, fuzzy
- msgid "&Permissions"
- msgstr "Práva"
- #, fuzzy
- msgid "File &types"
- msgstr "&Typy souborů"
- #, fuzzy
- msgid "File highlight"
- msgstr " Zvýraznění... "
- msgid "&Mouse page scrolling"
- msgstr ""
- msgid "Pa&ge scrolling"
- msgstr ""
- msgid "L&ynx-like motion"
- msgstr "Pohyb jako v lyn&xu"
- msgid "Navigation"
- msgstr ""
- #, fuzzy
- msgid "A&uto save panels setup"
- msgstr "&Automatické ukládání parametrů"
- #, fuzzy
- msgid "Re&verse files only"
- msgstr "&Pouze soubory"
- #, fuzzy
- msgid "Ma&rk moves down"
- msgstr "Označení &posune dolů"
- msgid "&Fast dir reload"
- msgstr "&Rychlé načítání adresářů"
- #, fuzzy
- msgid "Show &hidden files"
- msgstr "Ukázat s&kryté soubory"
- #, fuzzy
- msgid "Show &backup files"
- msgstr "Zobrazovat zá&ložní soubory"
- #, fuzzy
- msgid "Mi&x all files"
- msgstr "Míchat &všechny soubory"
- msgid "Use SI si&ze units"
- msgstr "Používat &SI jednotky velikosti"
- #, fuzzy
- msgid "Main panel options"
- msgstr "Hlavní nastavení"
- #, fuzzy
- msgid "Panel options"
- msgstr " Nastavení panelu "
- #, fuzzy
- msgid ""
- "Using the fast reload option may not reflect the exact\n"
- "directory contents. In this case you'll need to do a\n"
- "manual reload of the directory. See the man page for\n"
- "the details."
- msgstr ""
- " Použitím rychlého načítání adresářů nebude někdy obsah \n"
- " adresáře přesně odpovídat obsahu panelu. V tom případě \n"
- " použijte ruční načtení obsahu adresáře (manual reload). \n"
- " Podrobnosti se dozvíte v manuálové stránce. "
- msgid "&Add new"
- msgstr "&Přidat nový"
- msgid "External panelize"
- msgstr "Externí panelizace"
- msgid "Command"
- msgstr "Příkaz"
- msgid "Other command"
- msgstr "Jiný příkaz"
- #, fuzzy
- msgid "Add to external panelize"
- msgstr " Přidat do externí panelizace "
- #, fuzzy
- msgid "Enter command label:"
- msgstr " Zadejte označení příkazu: "
- #, fuzzy
- msgid "Cannot run external panelize in a non-local directory"
- msgstr ""
- " Pokud nepracujete s lokálním adresářem, není možné provést externí "
- "panelizaci "
- msgid "Find rejects after patching"
- msgstr "Najít odmítnuté části záplat (*.rej) po záplatování"
- msgid "Find *.orig after patching"
- msgstr "Najít všechny soubory *.orig po záplatování"
- msgid "Find SUID and SGID programs"
- msgstr "Najít programy SUID a SGID"
- msgid "Cannot invoke command."
- msgstr "Nelze spustit příkaz."
- msgid "Pipe close failed"
- msgstr "Nelze zavřít rouru"
- msgid "[dev]"
- msgstr "[zař.]"
- msgid "UP--DIR"
- msgstr "VYŠ-ADR"
- msgid "SYMLINK"
- msgstr "SYMLINK"
- msgid "SUB-DIR"
- msgstr "PODADR"
- #. TRANSLATORS: one single character to represent 'unsorted' sort mode
- #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
- msgid "sort|u"
- msgstr "sort|s"
- msgid "&Unsorted"
- msgstr "&Netříděno"
- #. TRANSLATORS: one single character to represent 'name' sort mode
- #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
- msgid "sort|n"
- msgstr "sort|n"
- msgid "&Name"
- msgstr "&Jméno"
- #. TRANSLATORS: one single character to represent 'version' sort mode
- #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
- msgid "sort|v"
- msgstr "sort|v"
- msgid "&Version"
- msgstr "&Verze"
- #. TRANSLATORS: one single character to represent 'extension' sort mode
- #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
- msgid "sort|e"
- msgstr "sort|e"
- msgid "&Extension"
- msgstr "&Přípona"
- #. TRANSLATORS: one single character to represent 'size' sort mode
- #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
- msgid "sort|s"
- msgstr "sort|d"
- msgid "&Size"
- msgstr "&Délka"
- msgid "Block Size"
- msgstr "Velikost bloků"
- #. TRANSLATORS: one single character to represent 'Modify time' sort mode
- #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
- msgid "sort|m"
- msgstr "sort|m"
- msgid "&Modify time"
- msgstr "&Modifikace"
- #. TRANSLATORS: one single character to represent 'Access time' sort mode
- #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
- msgid "sort|a"
- msgstr "sort|p"
- msgid "&Access time"
- msgstr "Čas pří&stupu"
- #. TRANSLATORS: one single character to represent 'Change time' sort mode
- #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
- msgid "sort|h"
- msgstr "sort|z"
- #, fuzzy
- msgid "C&hange time"
- msgstr "Čas změn&y"
- msgid "Perm"
- msgstr "Práva"
- msgid "Nl"
- msgstr "Od"
- #. TRANSLATORS: one single character to represent 'inode' sort mode
- #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
- msgid "sort|i"
- msgstr "sort|i"
- msgid "&Inode"
- msgstr "&I-uzel"
- msgid "UID"
- msgstr "UID"
- msgid "GID"
- msgstr "GID"
- msgid "Owner"
- msgstr "Vlastník"
- msgid "Group"
- msgstr "Skupina"
- msgid "<readlink failed>"
- msgstr "<čtení odkazu selhalo>"
- # Překlad by měl být "bajtů", chceme-li jednotku překládat.
- #, c-format
- msgid "%s byte"
- msgid_plural "%s bytes"
- msgstr[0] "%s byte"
- msgstr[1] "%s bajt"
- msgstr[2] "%s bajtů"
- #, c-format
- msgid "%s in %d file"
- msgid_plural "%s in %d files"
- msgstr[0] "%s v %d souboru"
- msgstr[1] "%s ve %d souborech"
- msgstr[2] "%s v %d souborech"
- #, fuzzy
- msgid "Unknown tag on display format:"
- msgstr "Neznámá popiska ve formátu zobrazení: "
- msgid "User supplied format looks invalid, reverting to default."
- msgstr "Chybný formát zadaný uživatelem, bude použit standardní."
- #, fuzzy
- msgid "Do you really want to execute?"
- msgstr " Opravdu spustit? "
- #, fuzzy, c-format
- msgid "Cannot chdir to \"%s\""
- msgstr " Pracovní adresář nelze změnit na %s "
- msgid "Choose codepage"
- msgstr "Zvolte znakovou sadu"
- msgid "- < No translation >"
- msgstr "- < Bez převodu >"
- msgid "%b %e %Y"
- msgstr "%e.%b %Y"
- msgid "%b %e %H:%M"
- msgstr "%e.%b %H:%M"
- #, c-format
- msgid ""
- "Cannot save file %s:\n"
- "%s"
- msgstr ""
- "Nemohu uložit soubor %s:\n"
- "%s"
- msgid ""
- "GNU Midnight Commander is already\n"
- "running on this terminal.\n"
- "Subshell support will be disabled."
- msgstr ""
- "GNU Midnight Commander je již\n"
- "spuštěn na tomto terminálu.\n"
- "Podpora podshellu bude zakázána."
- #, c-format
- msgid "Cannot open named pipe %s\n"
- msgstr "Nelze otevřít pojmenovanou rouru %s\n"
- #, fuzzy
- msgid "The shell is still active. Quit anyway?"
- msgstr " Shell je stále aktivní, přesto ukončit? "
- #, c-format
- msgid "Warning: Cannot change to %s.\n"
- msgstr "Varování: Adresář nelze změnit na %s.\n"
- msgid "With builtin Editor\n"
- msgstr "S vestavěným editorem\n"
- msgid "Using system-installed S-Lang library"
- msgstr "Používá se systémová knihovna S-Lang"
- msgid "with terminfo database"
- msgstr "s databází terminfo"
- msgid "Using the ncurses library"
- msgstr "Používá se knihovna ncurses"
- msgid "Using the ncursesw library"
- msgstr "Používá se knihovna ncursesw"
- msgid "With optional subshell support"
- msgstr "S volitelnou podporou podshellu"
- msgid "With subshell support as default"
- msgstr "Se standardní podporou podshellu"
- msgid "With support for background operations\n"
- msgstr "S podporou operací na pozadí\n"
- msgid "With mouse support on xterm and Linux console\n"
- msgstr "S podporou myši v konzolích Xterm a Linux\n"
- msgid "With mouse support on xterm\n"
- msgstr "S podporou myši v konzoli Xterm\n"
- msgid "With support for X11 events\n"
- msgstr "S podporou X11 událostí\n"
- msgid "With internationalization support\n"
- msgstr "S podporou internacionalizace\n"
- msgid "With multiple codepages support\n"
- msgstr "S podporou více kódových stránek\n"
- #, fuzzy, c-format
- msgid "Virtual File Systems:"
- msgstr "Virtuální souborový systém:"
- #, c-format
- msgid "Data types:"
- msgstr ""
- #, c-format
- msgid ""
- "Cannot open the %s file for writing:\n"
- "%s\n"
- msgstr ""
- "Nelze otevřít soubor %s pro zápis:\n"
- "%s\n"
- #, c-format
- msgid "Copy \"%s\" directory to:"
- msgstr "Zkopírovat adresář „%s“ do:"
- #, c-format
- msgid "Move \"%s\" directory to:"
- msgstr "Přesunout adresář „%s“ do:"
- #, fuzzy, c-format
- msgid ""
- "Cannot stat the destination\n"
- "%s"
- msgstr ""
- " Na cíli nelze provést stat \n"
- " %s "
- #, fuzzy, c-format
- msgid "Delete %s?"
- msgstr " Smazat %s? "
- msgid "ButtonBar|Static"
- msgstr "TlačítkováLišta|Static"
- msgid "ButtonBar|Dynamc"
- msgstr "TlačítkováLišta|Dynamc"
- msgid "ButtonBar|Rescan"
- msgstr "TlačítkováLišta|Obnov"
- msgid "ButtonBar|Forget"
- msgstr "TlačítkováLišta|Zapomn"
- msgid "ButtonBar|Rmdir"
- msgstr "TlačítkováLišta|OdsAdr"
- #, c-format
- msgid ""
- "Cannot write to the %s file:\n"
- "%s\n"
- msgstr ""
- "Nelze zapisovat do souboru %s:\n"
- "%s\n"
- #, fuzzy
- msgid "Format error on file Extensions File"
- msgstr " Chyba formátu v souboru přípon "
- #, fuzzy, c-format
- msgid "The %%var macro has no default"
- msgstr " Makro %%var nemá implicitní hodnotu "
- #, fuzzy, c-format
- msgid "The %%var macro has no variable"
- msgstr " Makro %%var nemá proměnnou "
- #, fuzzy
- msgid "Debug"
- msgstr " Ladit "
- #, fuzzy
- msgid "ERROR:"
- msgstr " CHYBA: "
- # Technický výraz "true" se nepřekládá.
- #, fuzzy
- msgid "True:"
- msgstr "True:"
- # Technický výraz "false" se nepřekládá.
- #, fuzzy
- msgid "False:"
- msgstr "False: "
- #, fuzzy
- msgid "Warning -- ignoring file"
- msgstr " Varování -- soubor ignorován "
- #, c-format
- msgid ""
- "File %s is not owned by root or you or is world writable.\n"
- "Using it may compromise your security"
- msgstr ""
- "Soubor %s není vlastněn uživatelem root nebo vámi, případně do něj mohou\n"
- "všichni zapisovat. Jeho použití by snižovalo Vaši bezpečnost"
- #, fuzzy, c-format
- msgid ""
- "Cannot open file%s\n"
- "%s"
- msgstr ""
- " Nelze otevřít soubor %s \n"
- " %s "
- #, fuzzy, c-format
- msgid "No suitable entries found in %s"
- msgstr " V %s nejsou odpovídající položky "
- #, fuzzy
- msgid "User menu"
- msgstr "&Uživatelské menu"
- msgid "Invalid value"
- msgstr "Neplatná hodnota"
- #, fuzzy
- msgid "Cannot spawn child process"
- msgstr " Nelze vytvořit proces potomka "
- msgid "Empty output from child filter"
- msgstr "Prázdný výstup z filtru potomka"
- msgid "&Line number (decimal)"
- msgstr "Číslo řádku (dekadicky)"
- msgid "Pe&rcents"
- msgstr "Procenta"
- msgid "&Decimal offset"
- msgstr "Pozice (dekadicky)"
- msgid "He&xadecimal offset"
- msgstr "Pozice (hexadecimálně)"
- msgid "Goto"
- msgstr "Přejít"
- msgid "ButtonBar|Ascii"
- msgstr "TlačítkováLišta|Ascii"
- msgid "ButtonBar|HxSrch"
- msgstr "TlačítkováLišta|HxHled"
- msgid "ButtonBar|UnWrap"
- msgstr "TlačítkováLišta|Nezal."
- msgid "ButtonBar|Wrap"
- msgstr "TlačítkováLišta|Zalam."
- msgid "ButtonBar|Hex"
- msgstr "TlačítkováLišta|Hex"
- msgid "ButtonBar|Goto"
- msgstr "TlačítkováLišta|JdiNa"
- msgid "ButtonBar|Raw"
- msgstr "TlačítkováLišta|Hrubě"
- msgid "ButtonBar|Parse"
- msgstr "TlačítkováLišta|Rozeb."
- msgid "ButtonBar|Unform"
- msgstr "TlačítkováLišta|Odform"
- msgid "ButtonBar|Format"
- msgstr "TlačítkováLišta|Formát"
- #, fuzzy, c-format
- msgid ""
- "Error while closing the file:\n"
- "%s\n"
- "Data may have been written or not"
- msgstr ""
- " Chyba v průběhu zavírání souboru: \n"
- " %s \n"
- " Data mohou být zapsána nebo ne. "
- #, fuzzy, c-format
- msgid ""
- "Cannot save file:\n"
- "%s"
- msgstr ""
- "Nemohu uložit soubor %s:\n"
- "%s"
- #, fuzzy
- msgid "View: "
- msgstr "&Prohlížet"
- #, fuzzy, c-format
- msgid ""
- "Cannot open \"%s\"\n"
- "%s"
- msgstr ""
- " Nelze otevřít „%s“\n"
- " %s "
- #, fuzzy, c-format
- msgid ""
- "Cannot stat \"%s\"\n"
- "%s"
- msgstr ""
- " Na „%s“ nelze provést stat\n"
- " %s "
- #, fuzzy
- msgid "Cannot view: not a regular file"
- msgstr " Nelze prohlížet: není to normální soubor "
- msgid "Seeking to search result"
- msgstr "Přesouvá se na pozici výsledku vyhledávání"
- msgid "Search done"
- msgstr "Hledání dokončeno"
- msgid "Continue from begining?"
- msgstr "Pokračovat od začátku?"
- #, fuzzy
- msgid "History"
- msgstr " Historie "
- #. TRANSLATORS: no need to translate 'DialogTitle', it's just a context prefix
- msgid "DialogTitle|History cleanup"
- msgstr "DialogTitle|Smazání historie"
- msgid "Do you want clean this history?"
- msgstr "Chcete smazat tuto historii?"
- msgid "Background process:"
- msgstr "Procesy na pozadí:"
- #, fuzzy
- #~ msgid "File was modified, save with exit?"
- #~ msgstr " Soubor byl změněn, uložit při odchodu? "
- #~ msgid " Permission "
- #~ msgstr " Práva "
- #~ msgid " File "
- #~ msgstr " Soubor "
- #~ msgid " Name "
- #~ msgstr " Jméno "
- #~ msgid " Owner name "
- #~ msgstr " Jméno vlastníka "
- #~ msgid " Group name "
- #~ msgstr " Jméno skupiny "
- #~ msgid " Size "
- #~ msgstr " Délka "
- #~ msgid " Confirmation "
- #~ msgstr " Potvrzování "
- #~ msgid " Filtered view "
- #~ msgstr " Filtrovaný pohled "
- #~ msgid " Select "
- #~ msgstr " Výběr "
- #~ msgid " Compare directories "
- #~ msgstr " Porovnat adresáře "
- #~ msgid " Link "
- #~ msgstr " Odkaz "
- #~ msgid " Edit symlink "
- #~ msgstr " Upravit symbolický odkaz "
- #~ msgid "case &Sensitive"
- #~ msgstr "Všímat si velikos&ti"
- #~ msgid " Replace "
- #~ msgstr " Nahradit "
- #~ msgid " Error "
- #~ msgstr " Chyba "
- #~ msgid " Insert File "
- #~ msgstr " Vložit soubor "
- #~ msgid " Insert Literal "
- #~ msgstr " Vložit znak "
- #~ msgid " Execute Macro "
- #~ msgstr " Spustit makro "
- #~ msgid " Cannot overwrite directory `%s' "
- #~ msgstr " Nelze přepsat adresář „%s“ "
- #~ msgid " to:"
- #~ msgstr " na:"
- #~ msgid " Directory path "
- #~ msgstr " Cesta k adresáři "
- #~ msgid " Directory label "
- #~ msgstr " Popisek adresáře "
- #~ msgid "pe&Rmissions"
- #~ msgstr "P&ráva"
- #~ msgid " User menu "
- #~ msgstr " Uživatelské menu "
- #~ msgid ""
- #~ " Cannot save file: \n"
- #~ " %s "
- #~ msgstr ""
- #~ " Nemohu uložit soubor: \n"
- #~ " %s "
- #~ msgid "Status: %s"
- #~ msgstr "Stav: %s"
|