| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574 |
- msgid ""
- msgstr ""
- "Content-Type: text/plain; charset=UTF-8\n"
- "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
- "X-Crowdin-Project: tabby\n"
- "X-Crowdin-Project-ID: 493349\n"
- "X-Crowdin-Language: cs\n"
- "X-Crowdin-File: /locale/app.pot\n"
- "X-Crowdin-File-ID: 75\n"
- "Project-Id-Version: tabby\n"
- "Language-Team: Czech\n"
- "Language: cs_CZ\n"
- "PO-Revision-Date: 2024-12-24 22:58\n"
- #: tabby-local/src/components/terminalTab.component.ts:113
- msgid "\"{command}\" is still running. Close?"
- msgstr "\"{command}\" stále běží. Zavřít?"
- #: tabby-settings/src/components/profilesSettingsTab.component.ts:78
- #: tabby-settings/src/components/profilesSettingsTab.component.ts:88
- msgid "{name} copy"
- msgstr "{name} kopie"
- #: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:77
- msgid "A second font family used to display characters missing in the main font"
- msgstr "Druhá rodina písma používaná k zobrazení chybějících znaků v hlavním písmu"
- #: tabby-core/src/components/transfersMenu.component.ts:49
- msgid "Abort all"
- msgstr "Zrušit vše"
- #: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:24
- msgid "Accept and remember key"
- msgstr "Přijmout a zapamatovat klíč"
- #: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:25
- msgid "Accept just this once"
- msgstr "Přijmout pouze tentokrát"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:84
- msgid "Accessibility"
- msgstr "Přístupnost"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:27
- msgid "Acrylic background"
- msgstr "Akrylové pozadí"
- #: locale/tmp-html/tabby-local/src/components/commandLineEditor.component.html:24
- #: locale/tmp-html/tabby-local/src/components/environmentEditor.component.html:11
- msgid "Add"
- msgstr "Přidat"
- #: locale/tmp-html/tabby-ssh/src/components/sshPortForwardingConfig.component.html:16
- msgid "Add a port forward"
- msgstr "Přidat nové přesměrování portů"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:115
- msgid "Add a private key"
- msgstr "Přidat soukromý klíč"
- #: locale/tmp-html/tabby-settings/src/components/multiHotkeyInput.component.html:8
- msgid "Add..."
- msgstr "Přidat..."
- #: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:84
- msgid "Additional space between lines"
- msgstr "Dodatečný prostor mezi řádky"
- #: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:22
- #: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:61
- #: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:64
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:124
- msgid "Advanced"
- msgstr "Rozšířené"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:90
- msgid "Agent"
- msgstr "Agent"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:134
- msgid "Agent forwarding"
- msgstr "Přeposílání agenta"
- #: locale/tmp-html/tabby-ssh/src/components/sshSettingsTab.component.html:35
- msgid "Agent pipe path"
- msgstr "Cesta kanálu agenta SSH"
- #: locale/tmp-html/tabby-ssh/src/components/sshSettingsTab.component.html:24
- msgid "Agent type"
- msgstr "Typ agenta"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:169
- msgid "Allows opening .bat files in tabs, but breaks some shells"
- msgstr "Umožňuje otevírat .bat soubory v záložkách, ale rozbíjí některé shelly"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:60
- msgid "Allows quickly opening a terminal in the selected folder"
- msgstr "Umožňuje rychlé otevření terminálu ve vybrané složce"
- #: locale/tmp-html/tabby-core/src/components/welcomeTab.component.html:25
- #: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:11
- msgid "Always dark"
- msgstr "Vždy tmavý"
- #: locale/tmp-html/tabby-core/src/components/welcomeTab.component.html:27
- #: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:13
- msgid "Always light"
- msgstr "Vždy světlý"
- #: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:2
- #: tabby-terminal/src/settings.ts:14
- msgid "Appearance"
- msgstr "Vzhled"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:4
- msgid "Application"
- msgstr "Aplikace"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:47
- msgid "Application settings"
- msgstr "Nastavení aplikace"
- #: tabby-web/src/services/hostWindow.service.ts:19
- msgid "Are you sure you want to close Tabby? You can disable this prompt in Settings -> Window."
- msgstr "Opravdu chcete zavřít Tabby? Tuto výzvu můžete vypnout v Nastavení -> Okno."
- #: tabby-core/src/services/config.service.ts:440
- msgid "Are you sure?"
- msgstr "Jste si jisti?"
- #: locale/tmp-html/tabby-local/src/components/commandLineEditor.component.html:18
- msgid "Arguments"
- msgstr "Parametry"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:26
- msgid "Ask a question"
- msgstr "Zeptejte se"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:20
- msgid "Ask before closing the browser tab"
- msgstr "Zeptat se před zavřením karty prohlížeče"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:141
- msgid "Audible"
- msgstr "Slyšitelný"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:74
- msgid "Authentication method"
- msgstr "Metoda ověřování"
- #: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:79
- msgid "Author"
- msgstr "Autor"
- #: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:50
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:78
- msgid "Auto"
- msgstr "Automaticky"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:153
- msgid "Auto-open a terminal on app start"
- msgstr "Automatické otevření terminálu při spuštění aplikace"
- #: locale/tmp-html/tabby-core/src/components/welcomeTab.component.html:13
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:53
- #: locale/tmp-html/tabby-ssh/src/components/sshSettingsTab.component.html:28
- msgid "Automatic"
- msgstr "Automatický"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:73
- msgid "Automatic Updates"
- msgstr "Automatické aktualizace"
- #: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:54
- msgid "Automatically upload changes and check for updates every minute"
- msgstr "Automaticky nahrávat změny a kontrolovat aktualizace každou minutu"
- #: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:10
- msgid "Available"
- msgstr "K dispozici"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:35
- msgid "Background type"
- msgstr "Typ pozadí"
- #: locale/tmp-html/tabby-terminal/src/components/inputProcessingSettings.component.html:4
- msgid "Backspace key mode"
- msgstr "Režim klávesy Backspace"
- #: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:14
- #: tabby-serial/src/components/serialTab.component.ts:93
- #: tabby-serial/src/profiles.ts:88
- msgid "Baud rate"
- msgstr "Modulační rychlost"
- #: tabby-terminal/src/hotkeys.ts:22
- msgid "Beginning of the line"
- msgstr "Začátek čáry"
- #: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:64
- msgid "Blink cursor"
- msgstr "Blikající kurzor"
- #: tabby-core/src/utils.ts:60
- msgid "Blue"
- msgstr "Modrá"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:39
- msgid "Blur"
- msgstr "Rozostření"
- #: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:28
- msgid "Bold font weight"
- msgstr "Síla tučného písma"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:132
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:80
- msgid "Bottom"
- msgstr "Dolní"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:109
- msgid "Bracketed paste (requires shell support)"
- msgstr "Vložení bez odřádkování (vyžaduje podporu shellu)"
- #: tabby-terminal/src/services/multifocus.service.ts:19
- msgid "Broadcast mode. Click anywhere to cancel."
- msgstr "Režim vysílání. Klikněte kdekoli pro zrušení."
- #: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:50
- #: tabby-core/src/services/profiles.service.ts:411
- msgid "Built-in"
- msgstr "Vestavěný"
- #: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:7
- #: locale/tmp-html/tabby-settings/src/components/editProfileGroupModal.component.html:28
- #: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:71
- #: locale/tmp-html/tabby-settings/src/components/hotkeyInputModal.component.html:14
- #: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:12
- #: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:10
- #: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:7
- #: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:31
- #: tabby-electron/src/services/updater.service.ts:134
- #: tabby-local/src/components/terminalTab.component.ts:118
- #: tabby-settings/src/components/configSyncSettingsTab.component.ts:117
- #: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
- #: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
- #: tabby-ssh/src/sftpContextMenu.ts:40
- #: tabby-terminal/src/api/baseTerminalTab.component.ts:522
- msgid "Cancel"
- msgstr "Zrušit"
- #: locale/tmp-html/tabby-serial/src/components/serialTab.component.html:4
- msgid "Change baud rate"
- msgstr "Změna rychlosti přenosu v baudech"
- #: tabby-core/src/tabContextMenu.ts:133
- msgid "Change tab color"
- msgstr "Změnit barvu karty"
- #: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:12
- msgid "Change the master passphrase"
- msgstr "Změnit hlavní heslo"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:13
- msgid "Check for updates"
- msgstr "Zkontrolovat aktualizace"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:172
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:176
- msgid "Ciphers"
- msgstr "Šifry"
- #: locale/tmp-html/tabby-terminal/src/components/colorSchemeSelector.component.html:5
- msgid "Clear"
- msgstr "Vyčistit"
- #: tabby-core/src/services/profiles.service.ts:248
- msgid "Clear recent profiles"
- msgstr "Vymazat nedávné profily"
- #: tabby-terminal/src/hotkeys.ts:50
- msgid "Clear terminal"
- msgstr "Vyčistit terminál"
- #: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:58
- msgid "Clear terminal after connection"
- msgstr "Vymazat terminál po připojení"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:94
- msgid "Clipboard"
- msgstr "Schránka"
- #: locale/tmp-html/tabby-core/src/components/safeModeModal.component.html:7
- #: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:53
- #: locale/tmp-html/tabby-settings/src/components/showSecretModal.component.html:10
- #: tabby-core/src/tabContextMenu.ts:33
- msgid "Close"
- msgstr "Zavřít"
- #: locale/tmp-html/tabby-core/src/components/welcomeTab.component.html:45
- msgid "Close and never show again"
- msgstr "Zavřít a už nikdy nezobrazovat"
- #: tabby-core/src/hotkeys.ts:240
- msgid "Close focused pane"
- msgstr "Zavřít aktivní okno"
- #: tabby-core/src/tabContextMenu.ts:48
- msgid "Close other tabs"
- msgstr "Zavřít ostatní panely"
- #: tabby-core/src/hotkeys.ts:28
- #: tabby-core/src/tabContextMenu.ts:34
- msgid "Close tab"
- msgstr "Zavřít panel"
- #: tabby-core/src/tabContextMenu.ts:64
- msgid "Close tabs to the left"
- msgstr "Zavřít karty vlevo"
- #: tabby-core/src/tabContextMenu.ts:56
- msgid "Close tabs to the right"
- msgstr "Zavřít karty vpravo"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:182
- msgid "Close the window after closing the last tab"
- msgstr "Zavřít okno po zavření poslední karty"
- #: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:33
- #: tabby-core/src/tabContextMenu.ts:132
- msgid "Color"
- msgstr "Barva"
- #: tabby-terminal/src/settings.ts:29
- msgid "Color scheme"
- msgstr "Barevné schéma"
- #: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:2
- msgid "Color schemes"
- msgstr "Barevná schémata"
- #: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:81
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:216
- msgid "Colors"
- msgstr "Barvy"
- #: tabby-core/src/hotkeys.ts:72
- msgid "Combine all tabs into the current tab"
- msgstr "Zkombinovat všechny panely do aktuálního panelu"
- #: locale/tmp-html/tabby-local/src/components/commandLineEditor.component.html:4
- msgid "Command line"
- msgstr "Příkazový řádek"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:13
- msgid "Command's stdin/stdout is used instead of a network connection"
- msgstr "Stdin/stdout příkazu se používá namísto síťového připojení"
- #: tabby-core/src/services/commands.service.ts:105
- msgid "Commands"
- msgstr "Příkazy"
- #: tabby-core/src/theme.ts:16
- msgid "Compact (legacy)"
- msgstr "Kompaktní (Legacy)"
- #: tabby-settings/src/components/configSyncSettingsTab.component.ts:126
- msgid "Config deleted"
- msgstr "Konfigurace odstraněna"
- #: tabby-settings/src/components/configSyncSettingsTab.component.ts:108
- msgid "Config downloaded"
- msgstr "Konfigurace stažena"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:115
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:120
- msgid "Config file"
- msgstr "Konfigurační soubor"
- #: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:2
- #: tabby-settings/src/settings.ts:73
- msgid "Config sync"
- msgstr "Synchronizace konfigurace"
- #: tabby-settings/src/components/configSyncSettingsTab.component.ts:90
- msgid "Config uploaded"
- msgstr "Konfigurace nahrána"
- #: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:31
- msgid "Configs"
- msgstr "Konfigurace"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:21
- msgid "Connect through a proxy server"
- msgstr "Připojit přes proxy server"
- #: tabby-core/src/index.ts:220
- #: tabby-core/src/services/profiles.service.ts:296
- msgid "Connect to \"%s\"..."
- msgstr "Připojit k \"%s\"..."
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:17
- msgid "Connect to a different host first and use it as a proxy"
- msgstr "Nejdříve se připojte k jinému hostiteli a použijte jej jako proxy"
- #: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:19
- #: tabby-serial/src/components/serialTab.component.ts:60
- #: tabby-ssh/src/components/sshTab.component.ts:130
- #: tabby-telnet/src/components/telnetTab.component.ts:54
- msgid "Connecting"
- msgstr "Připojuji"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:7
- msgid "Connection"
- msgstr "Připojení"
- #: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:26
- msgid "Connection failed: {error}"
- msgstr "Připojení selhalo: {error}"
- #: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:40
- msgid "Connection name will be used instead"
- msgstr "Místo toho bude použit název připojení"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:61
- msgid "Context menu"
- msgstr "Kontextové menu"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:14
- msgid "Controls the amount of space between elements"
- msgstr "Určuje množství prostoru mezi prvky"
- #: tabby-terminal/src/api/baseTerminalTab.component.ts:240
- #: tabby-terminal/src/api/baseTerminalTab.component.ts:248
- #: tabby-terminal/src/api/baseTerminalTab.component.ts:591
- #: tabby-terminal/src/api/baseTerminalTab.component.ts:811
- #: tabby-terminal/src/tabContextMenu.ts:34
- msgid "Copied"
- msgstr "Zkopírováno"
- #: tabby-terminal/src/tabContextMenu.ts:30
- msgid "Copy"
- msgstr "Kopírovat"
- #: tabby-terminal/src/hotkeys.ts:70
- #: tabby-terminal/src/tabContextMenu.ts:70
- msgid "Copy current path"
- msgstr "Kopírovat aktuální cestu"
- #: tabby-electron/src/sftpContextMenu.ts:29
- msgid "Copy full path"
- msgstr "Kopírovat celou cestu"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:97
- msgid "Copy on select"
- msgstr "Kopírovat při výběru"
- #: tabby-terminal/src/hotkeys.ts:10
- msgid "Copy to clipboard"
- msgstr "Kopírovat do schránky"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:103
- msgid "Copy with formatting"
- msgstr "Kopírovat s formátováním"
- #: tabby-core/src/services/config.service.ts:425
- msgid "Could not decrypt config"
- msgstr "Zprávu se nepodařilo dešifrovat"
- #: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:9
- msgid "Create"
- msgstr "Vytvořit"
- #: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:7
- #: tabby-ssh/src/sftpContextMenu.ts:29
- msgid "Create directory"
- msgstr "Vytvořit adresář"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:90
- msgid "Current"
- msgstr "Aktuální"
- #: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:3
- msgid "Current color scheme"
- msgstr "Aktuální barevné schéma"
- #: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:17
- msgid "Current host key fingerprint"
- msgstr "Aktuální otisk klíče hostitele"
- #: tabby-core/src/tabContextMenu.ts:184
- msgid "Current process: {name}"
- msgstr "Aktuální proces: {name}"
- #: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:51
- msgid "Cursor shape"
- msgstr "Tvar kurzoru"
- #: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:46
- msgid "Custom"
- msgstr "Vlastní"
- #: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:90
- msgid "Custom CSS"
- msgstr "Vlastní CSS"
- #: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:17
- msgid "Dark mode"
- msgstr "Tmavý režim"
- #: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:26
- msgid "Data bits"
- msgstr "Datové bity"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:80
- msgid "Debugging"
- msgstr "Ladění"
- #: tabby-core/src/hotkeys.ts:256
- msgid "Decrease horizontal split size"
- msgstr "Snížit vodorovné rozdělení"
- #: tabby-core/src/hotkeys.ts:248
- msgid "Decrease vertical split size"
- msgstr "Snížit vodorovné rozdělení"
- #: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:92
- msgid "Default \"Connect to\" type"
- msgstr "Výchozí typ připojení"
- #: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:93
- msgid "Default connection type used by quick connect feature (ex. SSH, Telnet)"
- msgstr "Výchozí typ připojení používaný funkcí rychlého připojení (např. SSH, Telnet)"
- #: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:8
- msgid "Default profile for new tabs"
- msgstr "Výchozí profil pro nové karty"
- #: locale/tmp-html/tabby-settings/src/components/editProfileGroupModal.component.html:16
- msgid "Default profile group settings"
- msgstr "Výchozí nastavení profilu"
- #: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:101
- msgid "Default profile settings"
- msgstr "Výchozí nastavení profilu"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:124
- msgid "Defaults"
- msgstr "Výchozí"
- #: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:6
- msgid "Defaults for {type}"
- msgstr "Výchozí hodnoty pro {type}"
- #: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:44
- #: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:51
- #: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:29
- #: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:8
- #: tabby-settings/src/components/configSyncSettingsTab.component.ts:116
- #: tabby-settings/src/components/editProfileGroupModal.component.ts:38
- #: tabby-settings/src/components/profilesSettingsTab.component.ts:130
- #: tabby-settings/src/components/profilesSettingsTab.component.ts:215
- #: tabby-settings/src/components/profilesSettingsTab.component.ts:229
- #: tabby-settings/src/components/profilesSettingsTab.component.ts:318
- #: tabby-settings/src/components/vaultSettingsTab.component.ts:52
- #: tabby-ssh/src/sftpContextMenu.ts:39
- #: tabby-ssh/src/sftpContextMenu.ts:47
- #: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:92
- #: tabby-terminal/src/components/loginScriptsSettings.component.ts:32
- msgid "Delete"
- msgstr "Smazat"
- #: tabby-settings/src/components/profilesSettingsTab.component.ts:128
- #: tabby-settings/src/components/profilesSettingsTab.component.ts:213
- #: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:90
- msgid "Delete \"{name}\"?"
- msgstr "Smazat {name}?"
- #: tabby-ssh/src/sftpContextMenu.ts:35
- msgid "Delete {fullPath}?"
- msgstr "Smazat {fullPath}?"
- #: tabby-terminal/src/hotkeys.ts:42
- msgid "Delete entire line"
- msgstr "Smazat celý řádek"
- #: tabby-terminal/src/hotkeys.ts:46
- msgid "Delete next word"
- msgstr "Smazat následující"
- #: tabby-terminal/src/hotkeys.ts:38
- msgid "Delete previous word"
- msgstr "Smazat předchozí"
- #: tabby-settings/src/components/configSyncSettingsTab.component.ts:114
- msgid "Delete the config on the remote side?"
- msgstr "Odstranění konfigurace na dálku?"
- #: tabby-settings/src/components/profilesSettingsTab.component.ts:226
- msgid "Delete the group's profiles?"
- msgstr "Smazat profily ve skupině?"
- #: tabby-terminal/src/components/loginScriptsSettings.component.ts:29
- msgid "Delete this script?"
- msgstr "Smazat tento skript?"
- #: tabby-settings/src/components/vaultSettingsTab.component.ts:50
- msgid "Delete vault contents?"
- msgstr "Smazat obsah trezoru?"
- #: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:3
- msgid "Deleting"
- msgstr "Mazání"
- #: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:8
- msgid "Device"
- msgstr "Zařízení"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:10
- msgid "Direct"
- msgstr "Přímé"
- #: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:57
- msgid "Disable"
- msgstr "Vypnout"
- #: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:39
- msgid "Disable dynamic tab title"
- msgstr "Zakázat dynamický název karty"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:218
- msgid "Disable fluent background while dragging"
- msgstr "Zakázat plynulé pozadí při přetažení"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:204
- msgid "Disable GPU acceleration"
- msgstr "Zakázat hardwarovou akceleraci"
- #: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:50
- msgid "Disabled"
- msgstr "Vypnuto"
- #: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:26
- #: tabby-ssh/src/components/sshTab.component.ts:200
- #: tabby-telnet/src/components/telnetTab.component.ts:83
- #: tabby-terminal/src/api/connectableTerminalTab.component.ts:36
- #: tabby-terminal/src/tabContextMenu.ts:106
- #: tabby-terminal/src/tabContextMenu.ts:110
- msgid "Disconnect"
- msgstr "Odpojit"
- #: tabby-terminal/src/hotkeys.ts:106
- msgid "Disconnect current tab (Serial/Telnet/SSH)"
- msgstr "Odpojit aktuální kartu (Serial/Telnet/SSH)"
- #: tabby-ssh/src/components/sshTab.component.ts:198
- #: tabby-telnet/src/components/telnetTab.component.ts:81
- msgid "Disconnect from {host}?"
- msgstr "Odpojit od {host}?"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:30
- msgid "Display images via Sixel escape sequences"
- msgstr "Zobrazit obrázky přes únikové sekvence Sixel"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:85
- msgid "Display on"
- msgstr "Zobrazit na"
- #: tabby-core/src/components/transfersMenu.component.ts:50
- msgid "Do not abort"
- msgstr "Nepřerušovat"
- #: tabby-ssh/src/components/sshTab.component.ts:201
- #: tabby-telnet/src/components/telnetTab.component.ts:84
- msgid "Do not close"
- msgstr "Nezavírat"
- #: locale/tmp-html/tabby-core/src/components/unlockVaultModal.component.html:6
- #: locale/tmp-html/tabby-core/src/components/unlockVaultModal.component.html:8
- msgid "Do not remember"
- msgstr "Nepamatovat si"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:97
- msgid "Dock always on top"
- msgstr "Vždy nahoře"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:67
- msgid "Dock the terminal"
- msgstr "Připevnit terminál"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:104
- msgid "Docked terminal size"
- msgstr "Velikost připevněného terminálu"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:111
- msgid "Docked terminal space"
- msgstr "Místo připevněného terminálu"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:64
- msgid "Docking"
- msgstr "Připevnění"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:75
- msgid "Double-click selection will stop at these characters"
- msgstr "Výběr dvojitým kliknutím se zastaví na tyto znaky"
- #: tabby-core/src/tabContextMenu.ts:79
- msgid "Down"
- msgstr "Dolů"
- #: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:43
- msgid "Download"
- msgstr "Stáhnout"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:23
- msgid "Draw bold text in bright colors"
- msgstr "Vykreslit tučný text jasnými barvami"
- #: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:48
- #: tabby-core/src/tabContextMenu.ts:127
- msgid "Duplicate"
- msgstr "Duplikovat"
- #: tabby-local/src/tabContextMenu.ts:72
- msgid "Duplicate as administrator"
- msgstr "Duplikovat jako administrátor"
- #: tabby-core/src/hotkeys.ts:60
- #: tabby-core/src/tabContextMenu.ts:128
- msgid "Duplicate tab"
- msgstr "Duplikovat kartu"
- #: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:6
- msgid "Edit"
- msgstr "Upravit"
- #: tabby-electron/src/sftpContextMenu.ts:35
- msgid "Edit locally"
- msgstr "Upravit lokálně"
- #: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:58
- msgid "Enable"
- msgstr "Povolit"
- #: locale/tmp-html/tabby-core/src/components/welcomeTab.component.html:32
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:66
- msgid "Enable analytics"
- msgstr "Povolit analytiky"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:87
- msgid "Enable animations"
- msgstr "Povolit animace"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:74
- msgid "Enable automatic installation of updates when they become available."
- msgstr "Povolit automatickou instalaci aktualizací, jakmile budou dostupné."
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:211
- msgid "Enable fluent background option"
- msgstr "Povolit fluent pozadí"
- #: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:16
- msgid "Enable font ligatures"
- msgstr "Povolit svázání znaků"
- #: locale/tmp-html/tabby-core/src/components/welcomeTab.component.html:39
- msgid "Enable global hotkey (Ctrl-Space)"
- msgstr "Povolit globální zkratku (Ctrl-Space)"
- #: locale/tmp-html/tabby-local/src/components/shellSettingsTab.component.html:6
- msgid "Enables the experimental Windows ConPTY API"
- msgstr "Povolit experimentální Windows ConPTY API"
- #: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:37
- msgid "Encrypt config file"
- msgstr "Šifrovat konfigurační soubor"
- #: tabby-terminal/src/hotkeys.ts:26
- msgid "End of the line"
- msgstr "Konec řádku"
- #: locale/tmp-html/tabby-local/src/components/localProfileSettings.component.html:17
- msgid "Environment"
- msgstr "Environment"
- #: tabby-core/src/services/config.service.ts:429
- #: tabby-core/src/services/config.service.ts:443
- msgid "Erase config"
- msgstr "Smazat konfiguraci"
- #: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:12
- msgid "Erase the Vault"
- msgstr "Vymazat trezor"
- #: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:6
- msgid "Error in {plugin}:"
- msgstr "Chyba v {plugin}:"
- #: locale/tmp-html/tabby-terminal/src/components/loginScriptsSettings.component.html:10
- msgid "Exact match"
- msgstr "Přesná shoda"
- #: locale/tmp-html/tabby-local/src/components/environmentEditor.component.html:15
- msgid "Example:"
- msgstr "Příklad:"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:212
- msgid "Experimental Windows 10 background style known to cause issues"
- msgstr "Experimentální styl pozadí Windowsu 10, je známo že způsobuje problémy"
- #: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:28
- msgid "Export"
- msgstr "Export"
- #: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:76
- msgid "Fallback font"
- msgstr "Náhradní písmo"
- #: locale/tmp-html/tabby-core/src/components/transfersMenu.component.html:3
- msgid "File transfers"
- msgstr "Přenos souborů"
- #: tabby-settings/src/components/vaultSettingsTab.component.ts:96
- msgid "File: {description}"
- msgstr "Soubor: {description}"
- #: tabby-settings/src/components/profilesSettingsTab.component.ts:9
- msgid "Filter"
- msgstr "Filtr"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:147
- msgid "Fixed"
- msgstr "Opraveno"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:219
- msgid "Fluent background sometimes causes drag lag"
- msgstr "Plynulé pozadí někdy způsobuje lagy při přetažení"
- #: tabby-terminal/src/tabContextMenu.ts:82
- msgid "Focus all panes"
- msgstr "Soustředit všechna okna"
- #: tabby-terminal/src/hotkeys.ts:78
- msgid "Focus all panes at once (broadcast)"
- msgstr "Soustředit všechna okna najednou (broadcast)"
- #: tabby-terminal/src/tabContextMenu.ts:75
- msgid "Focus all tabs"
- msgstr "Soustředit všechny karty"
- #: tabby-terminal/src/hotkeys.ts:82
- msgid "Focus all tabs at once (broadcast)"
- msgstr "Soustředit všechny karty najednou (broadcast)"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:196
- msgid "Focus follows mouse"
- msgstr "Zaměřit se na myš"
- #: tabby-core/src/hotkeys.ts:196
- msgid "Focus next pane"
- msgstr "Soustředit na další okno"
- #: tabby-core/src/hotkeys.ts:200
- #: tabby-core/src/hotkeys.ts:204
- #: tabby-core/src/hotkeys.ts:208
- #: tabby-core/src/hotkeys.ts:212
- #: tabby-core/src/hotkeys.ts:216
- #: tabby-core/src/hotkeys.ts:220
- #: tabby-core/src/hotkeys.ts:224
- #: tabby-core/src/hotkeys.ts:228
- #: tabby-core/src/hotkeys.ts:232
- msgid "Focus pane {number}"
- msgstr "Soustředit na okno {number}"
- #: tabby-core/src/hotkeys.ts:192
- msgid "Focus previous pane"
- msgstr "Soustředit na předchozí okno"
- #: tabby-core/src/hotkeys.ts:176
- msgid "Focus the pane above"
- msgstr "Soustředit na okno nahoře"
- #: tabby-core/src/hotkeys.ts:180
- msgid "Focus the pane below"
- msgstr "Soustředit na okno dole"
- #: tabby-core/src/hotkeys.ts:184
- msgid "Focus the pane on the left"
- msgstr "Soustředit na okno vlevo"
- #: tabby-core/src/hotkeys.ts:188
- msgid "Focus the pane on the right"
- msgstr "Soustředit na okno vpravo"
- #: tabby-core/src/theme.ts:34
- msgid "Follow the color scheme"
- msgstr "Duplikovat barevné schéma"
- #: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:5
- msgid "Font"
- msgstr "Písmo"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:190
- msgid "For keyboard shortcuts"
- msgstr "Klávesové zkratky"
- #: tabby-terminal/src/components/streamProcessingSettings.component.ts:53
- msgid "Force CR"
- msgstr "Vynutit CR"
- #: tabby-terminal/src/components/streamProcessingSettings.component.ts:55
- msgid "Force CRLF"
- msgstr "Vynutit CRLF"
- #: tabby-terminal/src/components/streamProcessingSettings.component.ts:54
- msgid "Force LF"
- msgstr "Vynutit LF"
- #: locale/tmp-html/tabby-ssh/src/components/sshSettingsTab.component.html:25
- msgid "Forces a specific SSH agent connection type."
- msgstr "Vynucuje konkrétní typ připojení SSH agenta."
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:105
- msgid "Forget"
- msgstr "Zapomenout"
- #: locale/tmp-html/tabby-ssh/src/components/sshPortForwardingConfig.component.html:45
- msgid "Forward port"
- msgstr "Přesměrovat port"
- #: locale/tmp-html/tabby-ssh/src/components/sshPortForwardingModal.component.html:3
- msgid "Forwarded ports"
- msgstr "Přesměrované porty"
- #: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:46
- msgid "From color scheme"
- msgstr "Z barevného schématu"
- #: locale/tmp-html/tabby-core/src/components/welcomeTab.component.html:23
- #: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
- msgid "From system"
- msgstr "Ze systému"
- #: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:44
- msgid "From theme"
- msgstr "Z motivu"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:6
- msgid "Frontend"
- msgstr "Frontend"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:61
- msgid "Full"
- msgstr "Plné"
- #: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:3
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:3
- #: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:3
- msgid "General"
- msgstr "Obecné"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:21
- msgid "Generate a pre-filled GitHub issue"
- msgstr "Generovat předvyplněný GitHub issue"
- #: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:25
- msgid "Get"
- msgstr "Získat"
- #: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:18
- msgid "Get it from the Tabby Web settings window"
- msgstr "Dostupný v nastavení webové aplikace Tabby"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:29
- msgid "Gives the window a blurred transparent background"
- msgstr "Dá oknu rozostřené průhledné pozadí"
- #: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:24
- msgid "Go up"
- msgstr "Přejít nahoru"
- #: tabby-core/src/utils.ts:61
- msgid "Green"
- msgstr "Zelená"
- #: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:16
- msgid "Group"
- msgstr "Skupina"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:201
- msgid "Hacks"
- msgstr "Hacky"
- #: locale/tmp-html/tabby-core/src/components/welcomeTab.component.html:33
- msgid "Help track the number of Tabby installs across the world!"
- msgstr "Pomozte sledovat počet instalací Tabby po celém světě!"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:50
- msgid "Help translate Tabby"
- msgstr "Pomozte s překladem Tabby"
- #: tabby-terminal/src/components/streamProcessingSettings.component.ts:32
- #: tabby-terminal/src/components/streamProcessingSettings.component.ts:45
- msgid "Hexadecimal"
- msgstr "Hexadecimální"
- #: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:49
- msgid "Hide"
- msgstr "Skrýt"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:176
- msgid "Hide tab close button"
- msgstr "Skrýt tlačítko zavřít kartu"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:158
- msgid "Hide tab index"
- msgstr "Skrýt číslo karty"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:170
- msgid "Hide tab options button"
- msgstr "Skrýt tlačítko možností karty"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:118
- msgid "Hide window on focus loss"
- msgstr "Skrýt neaktivní okno"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:119
- msgid "Hides the docked terminal when you click away."
- msgstr "Při kliknutí pryč skryje připnutý terminál."
- #: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:26
- msgid "Homepage"
- msgstr "Domovská stránka"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:34
- #: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:6
- msgid "Host"
- msgstr "Host"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:206
- msgid "Host key"
- msgstr "Klíč hostitele"
- #: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:3
- msgid "Host key verification"
- msgstr "Ověření hostitelského klíče"
- #: locale/tmp-html/tabby-settings/src/components/hotkeySettingsTab.component.html:2
- #: tabby-settings/src/settings.ts:15
- msgid "Hotkeys"
- msgstr "Klávesové zkratky"
- #: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:83
- msgid "How Tabby presents itself through environment vars"
- msgstr "Jak se Tabby prezentuje prostřednictvím indikátorů prostředí"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:24
- msgid "HTTP proxy"
- msgstr "HTTP proxy"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:61
- msgid "HTTP proxy host"
- msgstr "HTTP proxy server"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:65
- msgid "HTTP proxy port"
- msgstr "HTTP proxy port"
- #: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:20
- msgid "Icon"
- msgstr "Ikona"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:145
- msgid "id.tab-width.dynamic"
- msgstr "Dynamický"
- #: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:76
- msgid "If disabled, only custom profiles will show up in the profile selector"
- msgstr "Pokud je zakázáno, ve výběru profilu se zobrazí pouze vlastní profily"
- #: tabby-terminal/src/components/streamProcessingSettings.component.ts:23
- msgid "Immediately echoes your input locally"
- msgstr "Okamžitě lokálně vypíše data na vstupu"
- #: tabby-core/src/hotkeys.ts:252
- msgid "Increase horizontal split size"
- msgstr "Zvětšit vodorovné odsazení"
- #: tabby-core/src/hotkeys.ts:244
- msgid "Increase vertical split size"
- msgstr "Zvětšit svislé odsazení"
- #: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:91
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:226
- #: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:21
- msgid "Input"
- msgstr "Příkaz"
- #: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
- msgid "Input is sent as you type"
- msgstr "Vstup je odeslán při psaní"
- #: locale/tmp-html/tabby-terminal/src/components/streamProcessingSettings.component.html:4
- msgid "Input mode"
- msgstr "Režim vstupu"
- #: locale/tmp-html/tabby-terminal/src/components/streamProcessingSettings.component.html:15
- msgid "Input newlines"
- msgstr "Vložit nové řádky"
- #: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:39
- msgid "Installed"
- msgstr "Nainstalované"
- #: tabby-electron/src/services/updater.service.ts:131
- msgid "Installing the update will close all tabs and restart Tabby."
- msgstr "Instalace aktualizace zavře všechny panely a restartuje Tabby."
- #: tabby-terminal/src/hotkeys.ts:66
- msgid "Intelligent Ctrl-C (copy/abort)"
- msgstr "Inteligentní Ctrl-C (kopírování/přerušení)"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:94
- msgid "Interactive"
- msgstr "Interaktivní"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:130
- msgid "Invalid syntax"
- msgstr "Neplatná syntaxe"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:16
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:43
- msgid "Jump host"
- msgstr "Jump host"
- #: tabby-terminal/src/hotkeys.ts:34
- msgid "Jump to next word"
- msgstr "Přeskočit na následující"
- #: tabby-terminal/src/hotkeys.ts:30
- msgid "Jump to previous word"
- msgstr "Skoč na předchozí slovo"
- #: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:51
- #: tabby-settings/src/components/editProfileGroupModal.component.ts:39
- #: tabby-settings/src/components/profilesSettingsTab.component.ts:131
- #: tabby-settings/src/components/profilesSettingsTab.component.ts:216
- #: tabby-settings/src/components/profilesSettingsTab.component.ts:319
- #: tabby-settings/src/components/vaultSettingsTab.component.ts:53
- #: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:93
- #: tabby-terminal/src/components/loginScriptsSettings.component.ts:33
- #: tabby-terminal/src/components/streamProcessingSettings.component.ts:51
- msgid "Keep"
- msgstr "Ponechat"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:154
- msgid "Keep Alive Interval (Milliseconds)"
- msgstr "Keep Alive Interval (Milisekundy)"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:98
- msgid "Keep docked terminal always on top"
- msgstr "Ponechat připevněný terminál vždy nahoře"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:86
- msgid "Key"
- msgstr "Klíč"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:186
- msgid "Key exchange"
- msgstr "Výměna klíčů"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:36
- msgid "Keyboard"
- msgstr "Klávesnice"
- #: locale/tmp-html/tabby-ssh/src/components/keyboardInteractiveAuthPanel.component.html:2
- msgid "Keyboard-interactive auth"
- msgstr "Interaktivní ověření klávesnice"
- #: tabby-local/src/components/terminalTab.component.ts:117
- msgid "Kill"
- msgstr "Vynuceně ukončit"
- #: locale/tmp-html/tabby-core/src/components/welcomeTab.component.html:10
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:50
- msgid "Language"
- msgstr "Jazyk"
- #: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:11
- msgid "Last known host key fingerprint"
- msgstr "Poslední známý klíč hostitele"
- #: tabby-ssh/src/tabContextMenu.ts:32
- msgid "Launch WinSCP"
- msgstr "Spustit WinSCP"
- #: tabby-ssh/src/hotkeys.ts:14
- msgid "Launch WinSCP for current SSH session"
- msgstr "Spustit WinSCP pro aktuální SSH relaci"
- #: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:16
- #: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:7
- msgid "Learn how to allow Tabby to detect remote shell's working directory."
- msgstr "Zjistěte, jak povolit Tabby detekovat pracovní adresář vzdáleného shellu."
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:134
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:76
- #: tabby-core/src/tabContextMenu.ts:80
- msgid "Left"
- msgstr "Vlevo"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:40
- msgid "Lets the shell handle Meta key instead of OS"
- msgstr "Nechat shell zpracovat Meta klávesu namísto OS"
- #: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:22
- msgid "Light mode"
- msgstr "Světlý režim"
- #: tabby-terminal/src/components/streamProcessingSettings.component.ts:27
- msgid "Line by line"
- msgstr "Řádek po řádku"
- #: tabby-terminal/src/components/streamProcessingSettings.component.ts:28
- msgid "Line editor, input is sent after you press Enter"
- msgstr "Řádkový editor, vstup je odeslán po stisknutí Enter"
- #: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:83
- msgid "Line padding"
- msgstr "Odsazení řádek"
- #: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:21
- msgid "Loading"
- msgstr "Načítání"
- #: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:34
- msgid "Loading configs..."
- msgstr "Načítání konfigurací..."
- #: locale/tmp-html/tabby-ssh/src/components/sshPortForwardingConfig.component.html:39
- #: locale/tmp-html/tabby-ssh/src/components/sshPortForwardingConfig.component.html:5
- msgid "Local"
- msgstr "Místní"
- #: tabby-terminal/src/components/streamProcessingSettings.component.ts:22
- msgid "Local echo"
- msgstr "Lokální echo"
- #: tabby-local/src/profiles.ts:12
- msgid "Local terminal"
- msgstr "Místní terminál"
- #: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:86
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:221
- #: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:16
- msgid "Login scripts"
- msgstr "Přihlašovací skripty"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:57
- msgid "Long-click for context menu"
- msgstr "Podržte pro zobrazení kontextové nabídky"
- #: tabby-core/src/services/profiles.service.ts:279
- msgid "Manage profiles"
- msgstr "Správa profilů"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:160
- msgid "Max Keep Alive Count"
- msgstr "Maximální počet zachycení"
- #: tabby-core/src/hotkeys.ts:172
- msgid "Maximize the active pane"
- msgstr "Maximalizovat aktivní okno"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:93
- #: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:70
- msgid "Minimum contrast ratio"
- msgstr "Minimální poměr kontrastu"
- #: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:39
- msgid "Modified on {date}"
- msgstr "Upraveno dne {date}"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:53
- msgid "Mouse"
- msgstr "Myš"
- #: tabby-core/src/hotkeys.ts:48
- msgid "Move tab to the left"
- msgstr "Posunout kartu vlevo"
- #: tabby-core/src/hotkeys.ts:52
- msgid "Move tab to the right"
- msgstr "Posunout kartu vpravo"
- #: tabby-settings/src/components/profilesSettingsTab.component.ts:228
- msgid "Move to \"Ungrouped\""
- msgstr "Přesunout do \"Neseskupené\""
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:197
- msgid "Moving the mouse over an inactive pane will cause it to activate"
- msgstr "Přesun myši nad neaktivní okno ho soustředí"
- #: locale/tmp-html/tabby-settings/src/components/editProfileGroupModal.component.html:9
- #: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:12
- #: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:13
- msgid "Name"
- msgstr "Jméno"
- #: tabby-settings/src/components/configSyncSettingsTab.component.ts:60
- msgid "Name for the new config"
- msgstr "Název nové konfigurace"
- #: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:3
- msgid "Name for the new directory"
- msgstr "Název nového adresáře"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:57
- msgid "Native"
- msgstr "Nativní"
- #: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:21
- msgid "New"
- msgstr "Nový"
- #: tabby-local/src/tabContextMenu.ts:53
- msgid "New admin tab"
- msgstr "Nová admin karta"
- #: tabby-settings/src/components/configSyncSettingsTab.component.ts:58
- msgid "New config on {platform}"
- msgstr "Nové nastavení na {platform}"
- #: tabby-settings/src/components/profilesSettingsTab.component.ts:144
- msgid "New group name"
- msgstr "Nové jméno skupiny"
- #: locale/tmp-html/tabby-terminal/src/components/loginScriptsSettings.component.html:16
- msgid "New item"
- msgstr "Nová položka"
- #: tabby-settings/src/components/vaultSettingsTab.component.ts:133
- msgid "New name"
- msgstr "Nový název"
- #: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:23
- msgid "New profile"
- msgstr "Nový profil"
- #: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:24
- msgid "New profile Group"
- msgstr "Nová profilová skupina"
- #: tabby-terminal/src/tabContextMenu.ts:176
- msgid "New profile name"
- msgstr "Název nového profilu"
- #: tabby-local/src/hotkeys.ts:10
- msgid "New tab"
- msgstr "Nová karta"
- #: tabby-core/src/hotkeys.ts:271
- msgid "New tab: {profile}"
- msgstr "Nová karta: {profile}"
- #: tabby-local/src/buttonProvider.ts:20
- #: tabby-local/src/tabContextMenu.ts:27
- msgid "New terminal"
- msgstr "Nový terminál"
- #: tabby-electron/src/hotkeys.ts:10
- msgid "New window"
- msgstr "Nové okno"
- #: tabby-electron/src/services/dockMenu.service.ts:62
- msgid "New Window"
- msgstr "Nové okno"
- #: tabby-local/src/tabContextMenu.ts:37
- msgid "New with profile"
- msgstr "Nový s profilem"
- #: tabby-core/src/hotkeys.ts:40
- msgid "Next tab"
- msgstr "Nová karta"
- #: tabby-core/src/utils.ts:59
- msgid "No color"
- msgstr "Bez barvy"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:85
- msgid "No modifier"
- msgstr "Bez modifikátoru"
- #: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:41
- msgid "None"
- msgstr "Žádný"
- #: tabby-terminal/src/components/streamProcessingSettings.component.ts:17
- #: tabby-terminal/src/components/streamProcessingSettings.component.ts:40
- msgid "Normal"
- msgstr "Normální"
- #: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:22
- msgid "Normal font weight"
- msgstr "Síla normálního písma"
- #: tabby-terminal/src/components/searchPanel.component.ts:54
- #: tabby-terminal/src/components/searchPanel.component.ts:64
- msgid "Not found"
- msgstr "Nenalezeno"
- #: tabby-core/src/tabContextMenu.ts:209
- msgid "Notify on activity"
- msgstr "Upozornit na aktivitu"
- #: tabby-core/src/tabContextMenu.ts:187
- msgid "Notify when done"
- msgstr "Upozornit po dokončení"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:17
- msgid "Number of lines kept in the buffer"
- msgstr "Počet řádků uložených ve vyrovnávací paměti"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:72
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:137
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:60
- msgid "Off"
- msgstr "Vypnuto"
- #: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:81
- msgid "Official"
- msgstr "Oficiální"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:26
- msgid "On GitHub Discussions"
- msgstr "Na GitHub Discussions"
- #: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:47
- msgid "Only close the tab when session is explicitly terminated"
- msgstr "Karta zůstane otevřená až do konce relace"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:46
- msgid "Opacity"
- msgstr "Průhlednost"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:82
- msgid "Open DevTools"
- msgstr "Otevřít vývojářské nástroje"
- #: tabby-settings/src/hotkeys.ts:11
- msgid "Open Settings"
- msgstr "Otevřít nastavení"
- #: tabby-settings/src/hotkeys.ts:25
- msgid "Open settings tab: {tab}"
- msgstr "Otevřít záložku nastavení: {tab}"
- #: tabby-ssh/src/tabContextMenu.ts:25
- msgid "Open SFTP panel"
- msgstr "Otevřít panel SFTP"
- #: locale/tmp-html/tabby-terminal/src/components/loginScriptsSettings.component.html:10
- msgid "Optional"
- msgstr "Volitelný"
- #: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:11
- #: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:34
- msgid "Options"
- msgstr "Možnosti"
- #: tabby-core/src/utils.ts:62
- msgid "Orange"
- msgstr "Oranžový"
- #: tabby-electron/src/shells/macDefault.ts:25
- msgid "OS default"
- msgstr "Výchozí nastavení OS"
- #: tabby-electron/src/shells/winDefault.ts:43
- msgid "OS default ({name})"
- msgstr "Výchozí nastavení OS ({name})"
- #: tabby-terminal/src/components/streamProcessingSettings.component.ts:46
- msgid "Output is shown as a hexdump"
- msgstr "Výstup je zobrazen jako hexadecimální výpis"
- #: tabby-terminal/src/components/streamProcessingSettings.component.ts:41
- msgid "Output is shown as it is received"
- msgstr "Výstup je zobrazen v přijaté podobě"
- #: locale/tmp-html/tabby-terminal/src/components/streamProcessingSettings.component.html:23
- msgid "Output mode"
- msgstr "Režim výstupu"
- #: locale/tmp-html/tabby-terminal/src/components/streamProcessingSettings.component.html:34
- msgid "Output newlines"
- msgstr "Výstupní nové řádky"
- #: locale/tmp-html/tabby-ssh/src/components/sshSettingsTab.component.html:42
- msgid "Override X11 display"
- msgstr "Přepsat zobrazení X11"
- #: tabby-settings/src/components/configSyncSettingsTab.component.ts:98
- msgid "Overwrite local and sync"
- msgstr "Přepsat místní konfiguraci a synchronizovat"
- #: tabby-settings/src/components/configSyncSettingsTab.component.ts:78
- msgid "Overwrite remote and sync"
- msgstr "Přepsat vzdálenou konfiguraci a synchronizovat"
- #: tabby-settings/src/components/configSyncSettingsTab.component.ts:76
- msgid "Overwrite the config on the remote side and start syncing?"
- msgstr "Přepsat konfiguraci na vzdálené straně a začít synchronizovat?"
- #: tabby-settings/src/components/configSyncSettingsTab.component.ts:96
- msgid "Overwrite the local config and start syncing?"
- msgstr "Přepsat místní konfiguraci a začít synchronizovat?"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:189
- msgid "Pane resize step"
- msgstr "krok změny velikosti"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:186
- msgid "Panes"
- msgstr "Panely"
- #: tabby-core/src/theme.ts:26
- msgid "Paper (legacy)"
- msgstr "Papír (Legacy)"
- #: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:38
- msgid "Parity"
- msgstr "Parita"
- #: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:64
- msgid "Partial config sync is not possible when the config is encrypted via Vault."
- msgstr "Částečná konfigurace není možná, pokud je konfigurace šifrována přes trezor."
- #: tabby-terminal/src/components/inputProcessingSettings.component.ts:17
- msgid "Pass-through"
- msgstr "Kapacita"
- #: tabby-settings/src/components/vaultSettingsTab.component.ts:92
- msgid "Passphrase for a private key with hash {hash}..."
- msgstr "Heslo pro privátní klíč s hashem {hash}..."
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:100
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:82
- msgid "Password"
- msgstr "Heslo"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:62
- #: tabby-terminal/src/api/baseTerminalTab.component.ts:521
- #: tabby-terminal/src/tabContextMenu.ts:39
- msgid "Paste"
- msgstr "Vložit"
- #: tabby-terminal/src/hotkeys.ts:14
- msgid "Paste from clipboard"
- msgstr "Vložit ze schránky"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:63
- msgid "Paste if no selection, else copy"
- msgstr "Vložit, pokud není nic vybráno, jinak zkopírovat"
- #: tabby-terminal/src/api/baseTerminalTab.component.ts:528
- msgid "Paste multiple lines?"
- msgstr "Vložit více řádků?"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:68
- msgid "Paste on middle-click"
- msgstr "Vložit při kliknutí prostředním tlačítkem"
- #: locale/tmp-html/tabby-ssh/src/components/sshSettingsTab.component.html:43
- msgid "Path or address of the local X11 socket"
- msgstr "Cesta nebo adresa lokálního X11 soketu"
- #: locale/tmp-html/tabby-terminal/src/components/terminalToolbar.component.html:4
- msgid "Pin"
- msgstr "Připnout"
- #: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:3
- msgid "Plugins"
- msgstr "Pluginy"
- #: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:4
- msgid "Plugins folder"
- msgstr "Složka pluginů"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:38
- #: locale/tmp-html/tabby-telnet/src/components/telnetProfileSettings.component.html:10
- msgid "Port"
- msgstr "Port"
- #: tabby-serial/src/components/serialTab.component.ts:65
- msgid "Port opened"
- msgstr "Port otevřen"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:119
- #: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:12
- msgid "Ports"
- msgstr "Porty"
- #: tabby-terminal/src/api/connectableTerminalTab.component.ts:87
- msgid "Press any key to reconnect"
- msgstr "Stiskněte libovolnou klávesu pro opětovné připojení"
- #: locale/tmp-html/tabby-settings/src/components/hotkeyInputModal.component.html:3
- msgid "Press the key now"
- msgstr "Stiskněte libovolnou klávesu"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:21
- msgid "Prevents accidental closing"
- msgstr "Brání nechtěnému zavření"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:110
- msgid "Prevents accidental execution of pasted commands"
- msgstr "Brání nechtěnému spuštění vložených příkazů"
- #: tabby-core/src/hotkeys.ts:44
- msgid "Previous tab"
- msgstr "Předchozí karta"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:108
- msgid "Private keys"
- msgstr "Soukromé klíče"
- #: tabby-core/src/tabContextMenu.ts:195
- msgid "Process completed"
- msgstr "Proces dokončen"
- #: tabby-core/src/tabContextMenu.ts:151
- msgid "Profile name"
- msgstr "Název profilu"
- #: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:2
- #: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:4
- #: tabby-electron/src/services/dockMenu.service.ts:40
- msgid "Profiles"
- msgstr "Profily"
- #: tabby-core/src/commands.ts:32
- #: tabby-settings/src/settings.ts:58
- msgid "Profiles & connections"
- msgstr "Profily a připojení"
- #: locale/tmp-html/tabby-local/src/components/commandLineEditor.component.html:12
- msgid "Program"
- msgstr "Program"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:30
- msgid "Proxy command"
- msgstr "Příkaz proxy"
- #: tabby-core/src/utils.ts:63
- msgid "Purple"
- msgstr "Fialová"
- #: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:38
- msgid "Puts all of Tabby's configuration into the vault"
- msgstr "Vloží všechny konfigurace Tabby do trezoru"
- #: tabby-core/src/index.ts:219
- #: tabby-core/src/services/profiles.service.ts:295
- msgid "Quick connect"
- msgstr "Rychlé připojení"
- #: tabby-core/src/services/config.service.ts:430
- #: tabby-core/src/services/config.service.ts:444
- msgid "Quit"
- msgstr "Odejít"
- #: tabby-telnet/src/profiles.ts:50
- msgid "Raw socket connection"
- msgstr "Připojení přes socket"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:166
- msgid "Ready Timeout (Milliseconds)"
- msgstr "Časový limit pohotovostního režimu (milisekundy)"
- #: tabby-core/src/services/profiles.service.ts:235
- #: tabby-core/src/services/profiles.service.ts:249
- #: tabby-electron/src/services/dockMenu.service.ts:28
- msgid "Recent"
- msgstr "Poslední"
- #: locale/tmp-html/tabby-serial/src/components/serialTab.component.html:5
- #: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:52
- #: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:10
- #: locale/tmp-html/tabby-telnet/src/components/telnetTab.component.html:3
- #: tabby-terminal/src/api/connectableTerminalTab.component.ts:32
- #: tabby-terminal/src/tabContextMenu.ts:115
- #: tabby-terminal/src/tabContextMenu.ts:119
- msgid "Reconnect"
- msgstr "Obnovit připojení"
- #: tabby-terminal/src/hotkeys.ts:102
- msgid "Reconnect current tab (Serial/Telnet/SSH)"
- msgstr "Obnovení připojení aktivní karty (Serial/Telnet/SSH)"
- #: tabby-core/src/utils.ts:64
- msgid "Red"
- msgstr "Červená"
- #: locale/tmp-html/tabby-terminal/src/components/loginScriptsSettings.component.html:10
- msgid "Regex"
- msgstr "Regex"
- #: tabby-settings/src/components/releaseNotesTab.component.ts:27
- msgid "Release notes"
- msgstr "Poznámky k verzi"
- #: locale/tmp-html/tabby-core/src/components/unlockVaultModal.component.html:6
- msgid "Remember for {time}"
- msgstr "Pamatovat po {time}"
- #: locale/tmp-html/tabby-ssh/src/components/sshPortForwardingConfig.component.html:41
- #: locale/tmp-html/tabby-ssh/src/components/sshPortForwardingConfig.component.html:5
- msgid "Remote"
- msgstr "Vzdálený"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:124
- msgid "Remove whitespace and newlines around the copied text"
- msgstr "Odstranit mezery a nové řádky kolem zkopírovaného textu"
- #: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:26
- #: tabby-core/src/tabContextMenu.ts:120
- msgid "Rename"
- msgstr "Přejmenovat"
- #: tabby-core/src/hotkeys.ts:24
- #: tabby-core/src/tabContextMenu.ts:121
- msgid "Rename tab"
- msgstr "Přejmenovat kartu"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:3
- msgid "Rendering"
- msgstr "Vykreslování"
- #: tabby-core/src/hotkeys.ts:32
- msgid "Reopen last tab"
- msgstr "Otevřít poslední kartu"
- #: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:42
- #: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:27
- msgid "Replace"
- msgstr "Nahradit"
- #: locale/tmp-html/tabby-core/src/components/startPage.component.html:11
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:21
- msgid "Report a problem"
- msgstr "Nahlásit problém"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:81
- msgid "Require a key to click links"
- msgstr "Vyžadovat stisk klávesy pro kliknutí na odkaz"
- #: tabby-terminal/src/hotkeys.ts:62
- msgid "Reset zoom"
- msgstr "Resetovat přiblížení"
- #: tabby-serial/src/hotkeys.ts:14
- msgid "Restart current serial session"
- msgstr "Restartovat aktuální sériovou relaci"
- #: tabby-ssh/src/hotkeys.ts:10
- msgid "Restart current SSH session"
- msgstr "Restartovat aktuální SSH relaci"
- #: tabby-telnet/src/hotkeys.ts:10
- msgid "Restart current Telnet session"
- msgstr "Restartovat aktuální relaci Telnet"
- #: tabby-core/src/hotkeys.ts:64
- msgid "Restart tab"
- msgstr "Restartovat kartu"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:140
- msgid "Restart the app to apply changes"
- msgstr "Restartujte aplikaci pro zavedení změn"
- #: tabby-settings/src/components/profilesSettingsTab.component.ts:316
- msgid "Restore settings to defaults ?"
- msgstr "Obnovit nastavení na výchozí hodnoty?"
- #: tabby-settings/src/components/editProfileGroupModal.component.ts:36
- msgid "Restore settings to inherited defaults ?"
- msgstr "Obnovit nastavení na výchozí hodnoty?"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:159
- msgid "Restore terminal tabs on app start"
- msgstr "Obnovit karty při spuštění aplikace"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:147
- msgid "Reuse session for multiple tabs"
- msgstr "Znovu použít relaci pro více karet"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:136
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:78
- #: tabby-core/src/tabContextMenu.ts:78
- msgid "Right"
- msgstr "Vpravo"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:56
- msgid "Right click"
- msgstr "Pravé tlačítko myši"
- #: locale/tmp-html/tabby-local/src/components/localProfileSettings.component.html:5
- msgid "Run as administrator"
- msgstr "Spustit jako správce"
- #: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:6
- #: locale/tmp-html/tabby-settings/src/components/editProfileGroupModal.component.html:27
- #: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:70
- #: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsForMode.component.html:29
- msgid "Save"
- msgstr "Uložit"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:101
- msgid "Save a password in the keychain"
- msgstr "Uložit heslo"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:129
- msgid "Save and apply"
- msgstr "Uložit a použít"
- #: tabby-terminal/src/tabContextMenu.ts:173
- msgid "Save as profile"
- msgstr "Uložit jako profil"
- #: tabby-core/src/tabContextMenu.ts:148
- msgid "Save layout as profile"
- msgstr "Uložit rozložení jako profil"
- #: tabby-terminal/src/tabContextMenu.ts:210
- msgid "Saved"
- msgstr "Uloženo"
- #: tabby-core/src/profiles.ts:19
- msgid "Saved layout"
- msgstr "Rozložení uloženo"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:46
- msgid "Scroll on input"
- msgstr "Posunout na vstup"
- #: tabby-terminal/src/hotkeys.ts:94
- msgid "Scroll terminal one page down"
- msgstr "Posunout terminál o jednu stránku dolů"
- #: tabby-terminal/src/hotkeys.ts:90
- msgid "Scroll terminal one page up"
- msgstr "Posunout terminál o jednu stránku nahoru"
- #: tabby-terminal/src/hotkeys.ts:98
- msgid "Scroll terminal to bottom"
- msgstr "Posunout dolů"
- #: tabby-terminal/src/hotkeys.ts:86
- msgid "Scroll terminal to top"
- msgstr "Posunout nahoru"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:16
- msgid "Scrollback"
- msgstr "Posunout zpět"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:47
- msgid "Scrolls the terminal to the bottom on user input"
- msgstr "Posune při vstupu uživatele terminál dolů"
- #: tabby-terminal/src/hotkeys.ts:74
- msgid "Search"
- msgstr "Hledat"
- #: tabby-terminal/src/components/colorSchemeSelector.component.ts:9
- #: tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts:10
- msgid "Search color schemes"
- msgstr "Hledat barevná témata"
- #: tabby-settings/src/components/hotkeySettingsTab.component.ts:12
- msgid "Search hotkeys"
- msgstr "Hledat klávesové zkratky"
- #: tabby-plugin-manager/src/components/pluginsSettingsTab.component.ts:14
- msgid "Search plugins"
- msgstr "Hledat pluginy"
- #: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:17
- msgid "Secret sync token"
- msgstr "Synchronizační token"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:45
- #: tabby-electron/src/services/platform.service.ts:200
- msgid "Select"
- msgstr "Vybrat"
- #: tabby-settings/src/components/profilesSettingsTab.component.ts:61
- msgid "Select a base profile to use as a template"
- msgstr "Vyberte základní profil, který chcete použít jako šablonu"
- #: tabby-terminal/src/hotkeys.ts:18
- msgid "Select all"
- msgstr "Vybrat vše"
- #: tabby-core/src/services/fileProviders.service.ts:47
- msgid "Select file storage"
- msgstr "Vyberte úložiště"
- #: tabby-core/src/index.ts:232
- msgid "Select profile"
- msgstr "Zvolte profil"
- #: tabby-core/src/services/profiles.service.ts:308
- msgid "Select profile or enter an address"
- msgstr "Zvolte profil nebo vložte adresu"
- #: tabby-terminal/src/components/streamProcessingSettings.component.ts:33
- msgid "Send bytes by typing in hex values"
- msgstr "Poslat bajty zadáním hexadecimálních hodnot"
- #: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:75
- msgid "Sends data one byte at a time"
- msgstr "Odesílá data po 1 bitu"
- #: tabby-serial/src/profiles.ts:14
- #: tabby-serial/src/profiles.ts:74
- msgid "Serial"
- msgstr "Sériové číslo"
- #: tabby-serial/src/profiles.ts:53
- #: tabby-serial/src/profiles.ts:64
- msgid "Serial connection"
- msgstr "Sériové připojení"
- #: tabby-serial/src/profiles.ts:73
- msgid "Serial: {description}"
- msgstr "Sériový: {description}"
- #: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:2
- #: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:5
- msgid "Set master passphrase"
- msgstr "Nastavit hlavní heslo"
- #: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:11
- msgid "Set passphrase"
- msgstr "Nastavit přístupovou frázi"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:104
- msgid "Set password"
- msgstr "Nastavit heslo"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:168
- msgid "Set Tabby as %COMSPEC%"
- msgstr "nastavit Tabby jako %COMSPEC%"
- #: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:69
- msgid "Set to 0 to disable recent profiles"
- msgstr "Nastavte na 0 pro vypnutí nedávných profilů"
- #: locale/tmp-html/tabby-ssh/src/components/sshSettingsTab.component.html:36
- msgid "Sets the SSH agent's named pipe path."
- msgstr "Nastaví agenta SSH na pojmenovanou cestu potrubí."
- #: tabby-settings/src/buttonProvider.ts:28
- #: tabby-settings/src/components/settingsTab.component.ts:57
- msgid "Settings"
- msgstr "Nastavení"
- #: locale/tmp-html/tabby-local/src/components/shellSettingsTab.component.html:2
- msgid "Shell"
- msgstr "Shell"
- #: tabby-terminal/src/api/baseTerminalTab.component.ts:593
- msgid "Shell does not support current path detection"
- msgstr "Shell nepodporuje aktuální cestu"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:59
- msgid "Shell integration"
- msgstr "Integrace shellu"
- #: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:50
- #: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:25
- msgid "Show"
- msgstr "Ukázat"
- #: tabby-core/src/hotkeys.ts:275
- msgid "Show {type} profile selector"
- msgstr "Zobrazit {type} selektor profilu"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:117
- msgid "Show a confirmation box when pasting multiple lines"
- msgstr "Zobrazit potvrzovací pole při vkládání více řádků"
- #: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:75
- msgid "Show built-in profiles in selector"
- msgstr "Zobrazení vložených profilů ve výběru"
- #: tabby-core/src/hotkeys.ts:12
- msgid "Show command selector"
- msgstr "Zobrazit výběr příkazu"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:132
- msgid "Show config file"
- msgstr "Zobrazit konfigurační soubor"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:131
- msgid "Show defaults"
- msgstr "Zobrazit výchozí hodnoty"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:146
- msgid "Show Mixer"
- msgstr "Zobrazit Mixer"
- #: tabby-core/src/hotkeys.ts:56
- msgid "Show pane labels (for rearranging)"
- msgstr "Zobrazit popisky tabulek (pro přeuspořádání)"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:164
- msgid "Show profile icon on tab"
- msgstr "Zobrazit ikonu profilu na kartě"
- #: tabby-core/src/hotkeys.ts:16
- msgid "Show profile selector"
- msgstr "Zobrazit výběr profilu"
- #: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:68
- msgid "Show recent profiles in selector"
- msgstr "Zobrazit nedávné profily ve výběru"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:36
- msgid "Show release notes"
- msgstr "Zobrazit poznámky k verzi"
- #: tabby-serial/src/hotkeys.ts:10
- msgid "Show Serial connections"
- msgstr "Zobrazit sériová připojení"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:152
- msgid "Show tabs in fullscreen mode"
- msgstr "Zobrazit panely v režimu celé obrazovky"
- #: tabby-terminal/src/tabContextMenu.ts:62
- msgid "Show toolbar"
- msgstr "Zobrazit panel nástrojů"
- #: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:45
- msgid "Show vault contents"
- msgstr "Zobrazit obsah trezoru"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:29
- msgid "Sixel graphics support (experimental)"
- msgstr "Podpora šestielové grafiky (experimentální)"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:140
- msgid "Skip MoTD/banner"
- msgstr "Přeskočit MoTD/banner"
- #: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:74
- msgid "Slow feed"
- msgstr "Pomalé odesílání"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:68
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:86
- msgid "Snaps the window to a side of the screen"
- msgstr "Přichytí okno na stranu obrazovky"
- #: locale/tmp-html/tabby-ssh/src/components/sshPortForwardingConfig.component.html:22
- #: locale/tmp-html/tabby-ssh/src/components/sshPortForwardingConfig.component.html:9
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:20
- msgid "SOCKS proxy"
- msgstr "SOCKS proxy"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:51
- msgid "SOCKS proxy host"
- msgstr "SOCKS proxy host"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:55
- msgid "SOCKS proxy port"
- msgstr "SOCKS proxy port"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:130
- msgid "Sound"
- msgstr "Zvuk"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:31
- msgid "Source code"
- msgstr "Zdrojový kód"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:13
- msgid "Spaciness"
- msgstr "Prostor"
- #: tabby-core/src/tabContextMenu.ts:75
- msgid "Split"
- msgstr "Rozdělit"
- #: tabby-core/src/hotkeys.ts:160
- msgid "Split to the bottom"
- msgstr "Rozdělit do spodu"
- #: tabby-core/src/tabContextMenu.ts:85
- msgid "Split to the down"
- msgstr "rozdělit dolů"
- #: tabby-core/src/hotkeys.ts:164
- #: tabby-core/src/tabContextMenu.ts:86
- msgid "Split to the left"
- msgstr "Rozdělit vlevo"
- #: tabby-core/src/hotkeys.ts:156
- #: tabby-core/src/tabContextMenu.ts:84
- msgid "Split to the right"
- msgstr "Rozdělit vpravo"
- #: tabby-core/src/hotkeys.ts:168
- msgid "Split to the top"
- msgstr "Rozdělení nahoře"
- #: tabby-core/src/tabContextMenu.ts:87
- msgid "Split to the up"
- msgstr "Rozdělit nahoru"
- #: tabby-ssh/src/profiles.ts:82
- msgid "SSH connection"
- msgstr "Připojení SSH"
- #: locale/tmp-html/tabby-ssh/src/components/sshSettingsTab.component.html:47
- msgid "SSH connection management is now done through the \"Profiles & connections\" tab"
- msgstr "Správa SSH připojení se nyní provádí přes záložku \"Profily a připojení\""
- #: tabby-settings/src/components/vaultSettingsTab.component.ts:89
- msgid "SSH password for {user}@{host}:{port}"
- msgstr "SSH heslo pro {user}@{host}:{port}"
- #: tabby-core/src/theme.ts:8
- msgid "Standard (legacy)"
- msgstr "Standardní (Legacy)"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:150
- msgid "Startup"
- msgstr "Spuštění"
- #: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:32
- msgid "Stop bits"
- msgstr "Stop bity"
- #: tabby-terminal/src/components/streamProcessingSettings.component.ts:52
- msgid "Strip"
- msgstr "Proužek"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:41
- msgid "Subscribe to updates"
- msgstr "Přihlásit k odběru novinek"
- #: locale/tmp-html/tabby-local/src/components/environmentEditor.component.html:13
- msgid "Substitutions allowed."
- msgstr "Povolené náhrady."
- #: locale/tmp-html/tabby-core/src/components/welcomeTab.component.html:19
- #: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:5
- msgid "Switch color scheme"
- msgstr "Přepnout barevné schéma"
- #: tabby-core/src/tabContextMenu.ts:290
- msgid "Switch profile"
- msgstr "Přepnout profil"
- #: tabby-core/src/hotkeys.ts:236
- msgid "Switch profile in the active pane"
- msgstr "Přepnout profil v aktivním panelu"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:7
- msgid "Switches terminal frontend implementation (experimental)"
- msgstr "Přepíná implementaci terminálu (experimentální)"
- #: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:4
- msgid "Sync"
- msgstr "Synchronizace"
- #: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:53
- msgid "Sync automatically"
- msgstr "Synchronizovat automaticky"
- #: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:8
- msgid "Sync host"
- msgstr "Hostitel synchronizace"
- #: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:68
- msgid "Sync hotkeys"
- msgstr "Synchronizovat klávesové zkratky"
- #: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:80
- msgid "Sync Vault"
- msgstr "Synchronizovat trezor"
- #: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:74
- msgid "Sync window settings"
- msgstr "Synchronizovat nastavení okna"
- #: tabby-core/src/hotkeys.ts:100
- #: tabby-core/src/hotkeys.ts:104
- #: tabby-core/src/hotkeys.ts:108
- #: tabby-core/src/hotkeys.ts:112
- #: tabby-core/src/hotkeys.ts:116
- #: tabby-core/src/hotkeys.ts:120
- #: tabby-core/src/hotkeys.ts:124
- #: tabby-core/src/hotkeys.ts:128
- #: tabby-core/src/hotkeys.ts:132
- #: tabby-core/src/hotkeys.ts:136
- #: tabby-core/src/hotkeys.ts:140
- #: tabby-core/src/hotkeys.ts:144
- #: tabby-core/src/hotkeys.ts:148
- #: tabby-core/src/hotkeys.ts:152
- #: tabby-core/src/hotkeys.ts:76
- #: tabby-core/src/hotkeys.ts:80
- #: tabby-core/src/hotkeys.ts:84
- #: tabby-core/src/hotkeys.ts:88
- #: tabby-core/src/hotkeys.ts:92
- #: tabby-core/src/hotkeys.ts:96
- msgid "Tab {number}"
- msgstr "Karta {number}"
- #: tabby-core/src/tabContextMenu.ts:223
- msgid "Tab activity"
- msgstr "Aktivita záložek"
- #: locale/tmp-html/tabby-core/src/components/safeModeModal.component.html:3
- msgid "Tabby could not start with your plugins, so all third party plugins have been disabled in this session. The error was:"
- msgstr "Tabby nemohl začít s vašimi pluginy, takže všechny pluginy třetích stran byly v této relaci zakázány. Došlo k chybě:"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:41
- msgid "Tabby news and updates on Twitter"
- msgstr "Novinky a aktualizace Tabby na Twitteru"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:123
- msgid "Tabs"
- msgstr "Karty"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:126
- msgid "Tabs location"
- msgstr "Umístění záložek"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:141
- msgid "Tabs width"
- msgstr "Šířka panelu"
- #: tabby-telnet/src/profiles.ts:34
- msgid "Telnet session"
- msgstr "Telnet relace"
- #: tabby-terminal/src/api/baseTerminalTab.component.ts:210
- #: tabby-terminal/src/settings.ts:43
- msgid "Terminal"
- msgstr "Terminál"
- #: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:40
- msgid "Terminal background"
- msgstr "Pozadí terminálu"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:133
- msgid "Terminal bell"
- msgstr "Terminální zvonek"
- #: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:82
- msgid "Terminal identification"
- msgstr "Identifikace terminálu"
- #: locale/tmp-html/tabby-core/src/components/welcomeTab.component.html:7
- msgid "Thank you for downloading Tabby!"
- msgstr "Děkujeme vám za stažení Tabby!"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:5
- msgid "Theme"
- msgstr "Téma"
- #: tabby-core/src/components/transfersMenu.component.ts:47
- msgid "There are active file transfers"
- msgstr "Existují aktivní přenosy souborů"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:102
- msgid "There is a saved password for this connection"
- msgstr "Pro toto připojení existuje uložené heslo"
- #: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:102
- msgid "These apply to all profiles of a given type"
- msgstr "Ty se vztahují na všechny profily daného typu"
- #: locale/tmp-html/tabby-settings/src/components/editProfileGroupModal.component.html:17
- msgid "These apply to all profiles of a given type in this group"
- msgstr "Ty se vztahují na všechny profily daného typu v této skupině"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:59
- msgid "Thin"
- msgstr "Tenké"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:205
- msgid "Tick this if you're experiencing aliasing, ghosting or other visual issues"
- msgstr "Zaškrtněte, pokud máte aliasing, ghosting nebo jiné vizuální problémy"
- #: tabby-core/src/hotkeys.ts:20
- msgid "Toggle fullscreen mode"
- msgstr "Přepnout režim celé obrazovky"
- #: tabby-core/src/hotkeys.ts:36
- msgid "Toggle last tab"
- msgstr "Přepnout na poslední kartu"
- #: tabby-electron/src/hotkeys.ts:14
- msgid "Toggle terminal window"
- msgstr "Přepnout okno terminálu"
- #: locale/tmp-html/tabby-core/src/components/welcomeTab.component.html:40
- msgid "Toggles the Tabby window visibility"
- msgstr "Přepíná viditelnost okna Tabby"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:130
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:74
- msgid "Top"
- msgstr "Vrchní"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:123
- msgid "Trim whitespace and newlines"
- msgstr "Oříznout mezery a nové linie"
- #: tabby-core/src/services/config.service.ts:428
- msgid "Try again"
- msgstr "Zkuste to znovu"
- #: tabby-ssh/src/session/ssh.ts:476
- msgid "Trying saved password"
- msgstr "Pokus o uložení hesla"
- #: tabby-core/src/hotkeys.ts:68
- msgid "Turn current tab's panes into separate tabs"
- msgstr "Změní panely aktuálního panelu v samostatné panely"
- #: tabby-core/src/services/profiles.service.ts:418
- #: tabby-settings/src/components/profilesSettingsTab.component.ts:10
- msgid "Ungrouped"
- msgstr "Bez zařazení"
- #: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:59
- msgid "Uninstall"
- msgstr "Odinstalovat"
- #: tabby-settings/src/components/profilesSettingsTab.component.ts:269
- msgid "Unknown"
- msgstr "Neznámý"
- #: tabby-settings/src/components/vaultSettingsTab.component.ts:98
- msgid "Unknown secret of type {type} for {key}"
- msgstr "Neznámý typ tejemství typu {type} pro {key}"
- #: locale/tmp-html/tabby-terminal/src/components/terminalToolbar.component.html:4
- msgid "Unpin"
- msgstr "Odepnout"
- #: tabby-core/src/tabContextMenu.ts:81
- msgid "Up"
- msgstr "Nahoru"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:14
- #: tabby-electron/src/services/updater.service.ts:133
- msgid "Update"
- msgstr "Aktualizovat"
- #: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:52
- msgid "Upgrade to {version}"
- msgstr "Aktualizace na {verzi}"
- #: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:42
- #: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:10
- msgid "Upload"
- msgstr "Nahrát"
- #: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:46
- msgid "Upload as a new config"
- msgstr "Nahrát jako novou konfiguraci"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:39
- msgid "Use {altKeyName} as the Meta key"
- msgstr "Použít {altKeyName} jako Meta klíč"
- #: locale/tmp-html/tabby-local/src/components/shellSettingsTab.component.html:5
- msgid "Use ConPTY"
- msgstr "Použít ConPTY"
- #: tabby-electron/src/shells/linuxDefault.ts:31
- #: tabby-electron/src/shells/linuxDefault.ts:38
- msgid "User default"
- msgstr "Výchozí nastavení uživatele"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:70
- msgid "Username"
- msgstr "Uživatelské jméno"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:25
- msgid "Using CONNECT method"
- msgstr "Použití metody CONNECT"
- #: tabby-ssh/src/session/ssh.ts:465
- msgid "Using preset password"
- msgstr "Použití přednastaveného hesla"
- #: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:9
- msgid "Vault"
- msgstr "Trezor"
- #: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:4
- msgid "Vault is an always-encrypted container for secrets such as SSH passwords and private key passphrases."
- msgstr "Trezor je vždy šifrovaný kontejner pro tajné objekty jako jsou SSH klíče nebo hesla privátních klíčů."
- #: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:17
- msgid "Vault is empty"
- msgstr "Trezor je prázdný"
- #: locale/tmp-html/tabby-core/src/components/unlockVaultModal.component.html:4
- #: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:44
- msgid "Vault is locked"
- msgstr "Trezor je uzamčený"
- #: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:3
- msgid "Vault is not configured"
- msgstr "Trezor není nakonfigurován"
- #: tabby-core/src/services/fileProviders.service.ts:40
- msgid "Vault master passphrase needs to be set to allow storing secrets"
- msgstr "Hlavní heslo pro trezor musí být nastaveno pro ukládání tajných objektů"
- #: locale/tmp-html/tabby-ssh/src/components/sshSettingsTab.component.html:11
- msgid "Verify host keys when connecting"
- msgstr "Ověřit klíče hostitele při připojení"
- #: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:75
- msgid "Version"
- msgstr "Verze"
- #: locale/tmp-html/tabby-core/src/components/startPage.component.html:13
- msgid "Version: {version}"
- msgstr "Verze: {version}"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:28
- msgid "Vibrancy"
- msgstr "Vibrace"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:139
- msgid "Visual"
- msgstr "Vizuální"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:116
- msgid "Warn on multi-line paste"
- msgstr "Upozornit na vícevrstvé vložení"
- #: locale/tmp-html/tabby-ssh/src/components/sshSettingsTab.component.html:5
- msgid "Warn when closing active connections"
- msgstr "Upozornit při zavírání aktivních připojení"
- #: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:6
- msgid "Warning: remote host's key has suddenly changed!"
- msgstr "Varování: klíč vzdáleného hostitele se náhle změnil!"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:67
- msgid "We're only tracking your Tabby and OS versions."
- msgstr "Sledujeme pouze verzi Tabby a OS."
- #: tabby-core/src/components/welcomeTab.component.ts:25
- msgid "Welcome"
- msgstr "Vítejte"
- #: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:36
- msgid "What's new"
- msgstr "Co je nového"
- #: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:46
- msgid "When a session ends"
- msgstr "Když skončí relace"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:82
- msgid "When enabled, links are only clickable while holding this key"
- msgstr "Na odkazy lze kliknout pouze při stisku této klávesy"
- #: locale/tmp-html/tabby-ssh/src/components/sshSettingsTab.component.html:18
- msgid "When WinSCP is detected, you can launch an SCP session from the context menu."
- msgstr "Když je WinSCP detekován, můžete spustit relaci SCP z kontextového menu."
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:53
- msgid "Whether a custom window or an OS native window should be used"
- msgstr "Slouží k výběru vlastního nebo nativního vzhledu okna terminálu"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:141
- msgid "Will prevent the SSH greeting from showing up"
- msgstr "Zabránit zobrazování SSH"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:2
- #: tabby-settings/src/settings.ts:30
- msgid "Window"
- msgstr "Okno"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:112
- msgid "Window dimension along the edge"
- msgstr "Rozměr okna podél okraje"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:105
- msgid "Window dimension away from the edge"
- msgstr "Rozměry okna od okraje"
- #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:52
- msgid "Window frame"
- msgstr "Rám okna"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:165
- msgid "Windows"
- msgstr "Windows"
- #: locale/tmp-html/tabby-local/src/components/shellSettingsTab.component.html:11
- msgid "Windows 10 build 18309 or above is recommended for ConPTY"
- msgstr "Pro ConPTY je doporučeno sestavení Windows 10 18309 nebo vyšší"
- #: locale/tmp-html/tabby-ssh/src/components/sshSettingsTab.component.html:17
- msgid "WinSCP path"
- msgstr "Cesta k WinSCP"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:74
- msgid "Word separators"
- msgstr "Oddělovače slov"
- #: locale/tmp-html/tabby-local/src/components/localProfileSettings.component.html:10
- msgid "Working directory"
- msgstr "Pracovní adresář"
- #: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:15
- #: locale/tmp-html/tabby-ssh/src/components/sshTab.component.html:6
- msgid "Working directory detection"
- msgstr "Detekce pracovního adresáře"
- #: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:145
- msgid "WSL terminal bell can only be muted via Volume Mixer"
- msgstr "Zvonek terminálu WSL lze ztlumit pouze pomocí směšovače hlasitosti"
- #: locale/tmp-html/tabby-local/src/components/shellSettingsTab.component.html:14
- msgid "WSL terminal only supports TrueColor with ConPTY"
- msgstr "WSL terminál podporuje pouze TrueColor s ConPTY"
- #: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:128
- msgid "X11 forwarding"
- msgstr "X11 Přesměrování"
- #: tabby-core/src/utils.ts:65
- msgid "Yellow"
- msgstr "Žlutá"
- #: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:4
- msgid "You can change it later, but it's unrecoverable if forgotten."
- msgstr "Můžeš to změnit později, ale je to nevratné, pokud je zapomenuto."
- #: locale/tmp-html/tabby-ssh/src/components/hostKeyPromptModal.component.html:7
- msgid "You could be under a man-in-the-middle attack right now, or the host key could have just been changed."
- msgstr "Může se jednat o útok typu \"man-in-the-middle\" nebo byl právě změněn klíč hostitele."
- #: tabby-terminal/src/hotkeys.ts:54
- msgid "Zoom in"
- msgstr "Přiblížit"
- #: tabby-terminal/src/hotkeys.ts:58
- msgid "Zoom out"
- msgstr "Oddálit"
- #: locale/tmp-html/tabby-ssh/src/components/sshPortForwardingConfig.component.html:43
- #: locale/tmp-html/tabby-ssh/src/components/sshPortForwardingConfig.component.html:5
- msgctxt "[Dynamic] port forwarding"
- msgid "id.port-forwarding.dynamic"
- msgstr "Dynamické"
|