forked from obsidianmd/obsidian-translations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cs.json
1990 lines (1990 loc) · 111 KB
/
cs.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"setting": {
"options": "Možnosti",
"plugin": "Doplněk",
"builtin-plugins": "Vestavěné doplňky",
"plugin-options": "Možnosti doplňků",
"folder-path-example-placeholder": "Příklad: složka 1/složka 2",
"file-path-example-placeholder": "Příklad: složka/poznámka",
"msg-restart-required": "Je vyžadován restart aby se tato změna projevila.",
"editor": {
"name": "Režim úprav",
"section-general": "Obecné",
"section-behavior": "Chování",
"section-display": "Zobrazení",
"option-spellcheck": "Kontrola pravopisu",
"option-spellcheck-description": "Spustit kontrolu pravopisu. V současnosti je podporována pouze v Angličtině.",
"spellcheck-languages": "Jazyky kontroly pravopisu",
"spellcheck-languages-description": "Zvolte jazyk kontroly pravopisu.",
"spellcheck-languages-mac-description": "Nativní kontrola pravopisu automaticky rozpozná jazyk, který se se používá v macOS.",
"spellcheck-dict": "Slovník kontroly pravopisu",
"spellcheck-dict-empty": "Slovník kontroly pravopisu je prázdný.",
"option-show-inline-title": "Show inline title",
"option-show-inline-title-description": "Displays the filename as an editable title inline with the file contents.",
"option-readable-line-length": "Čitelná délka řádku",
"option-readable-line-description": "Omezit maximální délku řádku. Na obrazovku se vleze méně informací, ale dlouhé odstavce budou lépe čitelné.",
"option-strict-line-break": "Přísné zalomení řádku",
"option-strict-line-break-description": "V režimu náhledu ignorovat jednotlivé zalomení konce řádků podle specifikací Markdownu. Tuto možnost vypněte, aby se jednotlivé zalomení řádků zobrazovaly v náhledu.",
"option-properties-in-document": "Properties in document",
"option-properties-in-document-description": "Choose how properties are displayed within the editor. Select \"source\" to have the properties displayed as YAML.",
"option-properties-hidden": "Hidden",
"option-properties-visible": "Visible",
"option-properties-source": "Source",
"option-show-file-properties": "Show properties in document",
"option-show-file-properties-description": "Show the properties section at the top of the file.",
"option-auto-pair-brackets": "Automatické spárování závorek",
"option-auto-pair-brackets-description": "Automaticky spáruje závorky a citace.",
"option-auto-pair-markdown": "Automatické spárování pomocí Markdown syntaxe",
"option-auto-pair-markdown-description": "Automaticky spárujte symboly pro tučné písmo a kurzívu.",
"option-smart-indent-lists": "Inteligentní odsazení seznamů",
"option-smart-indent-lists-description": "Postará se o odsazení a očíslování seznamů za vás.",
"option-fold-heading": "Srolovatelné nadpisy",
"option-fold-heading-description": "Umožní schovat vše pod nadpisem.",
"option-fold-indent": "Srolovatelné odsazení",
"option-fold-indent-description": "Umožní schovat část stejného odsazení, třeba seznam.",
"option-default-new-tab-view": "Default view for new tabs",
"option-default-new-tab-view-description": "The default view that a new markdown tab gets opened in.",
"option-default-new-tab-view-editing": "Editing view",
"option-default-new-tab-view-reading": "Reading view",
"option-open-tab-in-foreground": "Always focus new tabs",
"option-open-tab-in-foreground-description": "When you open a link in a new tab, switch to it immediately.",
"option-default-editing-mode": "Defaultní režim pro editování",
"option-default-editing-mode-description": "Defaultní režim pro editování, který se použije pro nový panel.",
"option-default-editing-mode-source": "Zdrojový kód",
"option-default-editing-mode-live-preview": "Živý náhled",
"option-show-line-number": "Zobrazovat čísla řádků",
"option-show-line-number-description": "Zobrazení čísla řádku v levém žlábku.",
"option-indentation-guide": "Show indentation guides",
"option-indentation-guide-description": "Show vertical relationship lines between bullet points for visual guidance.",
"option-use-tabs": "Používat odrážky",
"option-use-tabs-description": "Použije odrážky při odsazení pomocí klávesy \"Tab\". Chcete-li používat mezery, nechte tuto možnost vypnutou.",
"option-tab-size": "Velikost tabulátoru",
"option-tab-size-description": "Množství mezer kterému odbovídá tabulátor.",
"option-rtl": "Right-to-left (RTL)",
"option-rtl-description": "Sets the text direction of notes to display in right-to-left.",
"option-auto-convert-html": "Automatická konverze HTML",
"option-auto-convert-html-description": "Automaticky konvertuje HTML do Markdownu při vkládání nebo přetažení z webových stránek. Použíjte Ctrl/Cmd+Shift+V pro vložení bez konverze.",
"option-vim-key-bindings": "Vim klávesové zkratky",
"option-vim-key-bindings-description": "Umožní použití Vim klávesových zkratek v zdrojovém editoru.",
"option-vim-key-bindings-mobile": "On mobile devices, this setting is per-device and is not synchronized through the config file.",
"option-emacsy-keys": "Legacy Emacs-style key bindings for macOS",
"option-emacsy-keys-description": "Allows you to use the additional Emacs-style navigation keys, which are standard on macOS, but may interfere with some key operations.",
"label-confirm-enable-vim": "Confirm entering Vim mode",
"label-vim-warning": "Vim mode is for efficient text editing but can be quite counter-intuitive. If you're not familiar with Vim, this option might make it look like Obsidian has stopped working.",
"label-vim-test": "To verify that you know your way around Vim, please enter the command to quit Vim without saving below:",
"label-vim-your-answer": "Your answer",
"placeholder-enter-command": "Enter command...",
"button-confirm-enable-vim": "Let me enable Vim",
"msg-vim-mode-enabled": "Command is correct. Vim mode now enabled.",
"msg-vim-mode-not-enabled": "Command is incorrect. Vim mode remains disabled to protect you.",
"msg-vim-mode-please-enter-command": "Please enter the command to enable Vim mode",
"option-legacy-editor": "Použít starší verzi editoru",
"option-legacy-editor-description2": "The legacy editor will be deprecated soon. It is currently no longer maintained, and as such, bugs will no longer be addressed.",
"label-legacy-deprecation": "New editor is here",
"label-legacy-deprecation-1": "Obsidian now has a brand new editor that's more robust and accessible.",
"label-legacy-deprecation-2": "It seems you're still using the legacy editor, and we think you'll enjoy the new editor.",
"label-legacy-deprecation-choice": "Which mode would you like to use?",
"label-live-preview-description": "A more modern, what-you-see-is-what-you-get experience.",
"label-source-mode-description": "See raw Markdown with syntax highlighting.",
"button-start-new-editor": "Start new editor"
},
"file": {
"name": "Soubory a odkazy",
"option-confirm-file-deletion": "Potvrzovat odstranění souborů",
"option-confirm-file-deletion-description": "Chcete-li být vyzváni k potvrzení při odstraňování souboru.",
"option-delete-destination": "Odstraněné soubory",
"option-delete-destination-description": "Kam přesouvat odstraněné soubory.",
"option-choice-system-trash": "Přesunout do systémového koše",
"option-choice-vault-trash": "Přesunout do koše Obsidianu (složka .trash)",
"option-choice-permanent-delete": "Permanentní odstranění",
"option-always-update-links": "Vždy aktualizovat interní odkazy",
"option-always-update-links-description": "Zda automaticky aktualizovat odkazy po přejmenování souboru.",
"option-new-note-location": "Výchozí umístění nové poznámky",
"option-new-note-location-description": "Specifikujte kde se mají vytvářet nové poznámky. Nastavení jiných doplňků toto nastavení přepíšou.",
"option-choice-vault-root": "Kořen trezoru",
"option-choice-current-folder": "Stejná složka ve které je aktuální soubor",
"option-choice-specified-folder": "Ve složce specifikované níže",
"option-new-file-folder-path": "Složka do které se budou vytvářet nové poznámky",
"option-new-file-folder-path-description": "Nově vytvořené poznámky se vytvoří v této složce. Nastavení doplňků toto nastavení přepíšou.",
"option-use-wiki-links": "Používat [[Wiki-odkaz]]",
"option-use-wiki-links-description": "Automaticky vytvoří Wiki-odkaz pro [[odkaz]] a ![[obrázek]] místo Markdown odkazů a obrázků. Tuto možnost vypněte pro vytváření Markdown odkazů.",
"option-show-unsupported-files": "Detect all file extensions",
"option-show-unsupported-files-description": "Show files with any extension even if Obsidian can't open them natively, so that you can link to them and see them in File Explorer and Quick Switcher.",
"option-link-autocompleted-format": "Formát automaticky vytvořených odkazů",
"option-link-autocompleted-format-description": "Jaký formát mají mít automaticky vygenerované interní odkazy.",
"option-choice-shortest-linktext": "Nejkratší možná cesta",
"option-choice-relative-path": "Relativní cesta k souboru",
"option-choice-absolute-path": "Absolutní cesta k souboru",
"option-new-attachment-location": "Výchozí umístění pro nové přílohy",
"option-new-attachment-location-description": "Kam se umisťují nově přidané přílohy.",
"option-choice-subdirectory": "Do podsložky v aktuální složce",
"option-attachment-folder-path": "Umístění složky příloh",
"option-attachment-folder-path-description": "Nově vytvořené přílohy se přesunou sem. Mezi přílohy patří vložené obrázky nebo audio nahrávky.",
"option-attachment-subfolder-path": "Název podsložky",
"option-attachment-subfolder-path-description": "Pokud je soubor v \"trezor/složka\", a pojmenujete podsložku jako \"přílohy\", tak se přílohy budou ukládat do \"trezor/složka/přílohy\".",
"option-attachment-subfolder-path-placeholder": "přílohy",
"option-excluded-files": "Excluded files",
"option-excluded-files-desc": "Excluded files will be either hidden or less noticeable in various places, such as Quick Switcher, link suggestion, and Graph View.",
"label-no-excluded-filters-applied": "No excluded filter is applied right now. Add one below.",
"label-excluded-filters-applied": "Files matching the following filters are currently excluded:",
"label-excluded-filter": "Filter",
"message-empty-filter": "Filter cannot be empty",
"placeholder-excluded-filter": "Enter path or \"/regex/\"..."
},
"appearance": {
"name": "Vzhled",
"option-base-theme": "Základní motiv",
"option-base-theme-description": "Zvolte výchozí odstín základního motivu Obsidianu.",
"option-accent-color": "Accent color",
"option-accent-color-description": "Choose the accent color used throughout the app.",
"dark-theme": "Tmavý",
"light-theme": "Světlý",
"system-theme": "Adapt to system",
"option-font": "Font",
"option-advanced": "Advanced",
"option-interface-font": "Interface font",
"option-interface-font-description": "Set base font for all of Obsidian.",
"option-zoom-level": "Zoom level",
"option-zoom-level-description": "Controls the overall zoom level of the app.",
"option-text-font": "Text font",
"option-text-font-description": "Set font for editing and reading views.",
"option-monospace-font": "Monospace font",
"option-monospace-font-description": "Set font for places like code blocks and frontmatter.",
"label-single-font-currently-in-effect": " Currently applied font: ",
"label-multiple-fonts-currently-in-effect": " The following fonts are currently applied:",
"option-font-placeholder": "Enter font name...",
"label-no-custom-font-set": "No custom font is applied right now. Add one below.",
"label-font-applied": "The first font from this list that is available on your system will be applied.",
"msg-font-not-found": "This font is not detected on your system.",
"msg-font-found": "This font is detected on your system.",
"label-font-name": "Font name",
"option-community-themes": "Otevřít komunitní motivy",
"option-community-themes-description": "Prouzkoumejte a vyberte si z úžasných motivů vytvořených komunitou.",
"button-browse-community-themes": "Prohledat",
"option-font-size": "Font size",
"option-font-size-description": "Font size in pixels that affects editor and preview.",
"option-font-size-action": "Quick font size adjustment",
"option-font-size-action-description": "Adjust the font size using Ctrl + Scroll, or using the trackpad pinch-zoom gesture.",
"option-themes": "Motivy",
"option-manage-themes-description": "Manage installed themes and browse community themes.",
"option-theme-button-manage": "Manage",
"option-choice-none": "Žádný",
"option-native-menus": "Native menus",
"option-native-menus-desc": "Menus throughout the app will match the operating system. They will not be affected by your theme.",
"button-reload-themes": "Znovu načíst motivy",
"msg-reloaded-themes": "Vlastní CSS byli aktualizovány.",
"button-open-themes-folder": "Otevřít složku motivů",
"option-css-snippets": "CSS úryvky",
"label-no-css-snippets-found": "Ve složce úryvků nejsou žádné CSS úryvky.",
"no-snippet-description": "CSS úryvky jsou umisťovány v \"{{path}}\".",
"button-reload-snippets": "Znovu načíst úryvky",
"button-open-snippets-folder": "Otevřít složku úryvků",
"msg-reloaded-snippets": "CSS úryvky byli aktualizovány.",
"option-toggle-snippet-description": "Použít CSS úryvky umistěné v \"{{path}}\".",
"label-installed-themes": "Installed themes",
"label-screenshot-unavailable": "Screenshot unavailable",
"label-default-theme": "Default",
"tooltip-click-to-enlarge": "Click to enlarge",
"button-update": "Update",
"label-currently-selected": "Selected",
"option-frame-style": "Window frame style",
"option-frame-description": "Determines the styling of the title bar of Obsidian windows. Requires a full restart to take effect.",
"option-frame-hidden": "Hidden (default)",
"option-frame-obsidian": "Obsidian frame",
"option-frame-native": "Native frame",
"option-custom-icon": "Custom app icon",
"option-custom-icon-desc": "Set a custom icon for the app",
"button-choose-custom-icon": "Choose custom icon",
"option-configure-ribbon": "Ribbon menu",
"option-configure-ribbon-desc": "Configure what commands appear in the ribbon menu in that navigation bar.",
"option-mobile-quick-ribbon-item": "Quick access ribbon item",
"option-mobile-quick-ribbon-item-desc": "Tapping on the ribbon item in the navigation menu will active this ribbon item. Tap and hold will still show the menu.",
"button-configure": "Configure",
"label-additional-ribbon-items": "Other ribbon items",
"label-modal-configuration": "Ribbon Configuration",
"label-modal-configuration-desc": "Choose what items you want to be active in the ribbon. Drag and drop to change the order.",
"option-show-view-header": "Show tab title bar",
"option-show-view-header-desc": "Display the header at the top of every tab.",
"msg-updates-found": "Found {{count}} theme to update.",
"msg-updates-found_plural": "Found {{count}} themes to update.",
"button-check-for-updates": "Check for updates",
"button-view-updates": "View updates",
"button-update-all-themes": "Update all",
"label-current-themes": "Current community themes",
"label-currently-installed": "You currently have {{count}} theme installed.",
"label-currently-installed_plural": "You currently have {{count}} themes installed."
},
"hotkeys": {
"name": "Klávesové Zkratky",
"option-search": "Search hotkeys",
"option-search-desc": "Showing {{count}} hotkey. ",
"option-search-desc_plural": "Showing {{count}} hotkeys. ",
"option-search-conflict": "{{count}} command with conflicts.",
"option-search-conflict_plural": "{{count}} commands with conflicts.",
"prompt-filter": "Filtrovat...",
"tooltip-delete-hotkey": "Smazat klávesovou zkratku",
"label-waiting-for-hotkey-press": "Stikněte klávesovou zkratku...",
"label-show-all": "All",
"label-show-unassigned": "Unassigned",
"label-show-assigned": "Assigned",
"label-show-user-assigned": "Assigned by me",
"tooltip-restore-default": "Vrátit vychozí nastavení",
"tooltip-customize-command": "Přizpůsobte si tento příkaz",
"tooltip-hotkey-single-conflict": "Tato klávesová zkratka je už používána \"{{command}}\"",
"tooltip-hotkey-multiple-conflicts": "Tato klávesová zkratka je už používána {{count}} dalšími zkratkami",
"label-blank-hotkey": "Blank"
},
"about": {
"name": "O Obsidianu",
"label-commercial-license": "Commercial license",
"label-license-key": "Licenční klíč",
"license-key-placeholder": "Váš licenční klíč...",
"label-activate-license": "Aktivovat licenci",
"button-activate": "Aktivovat",
"label-unknown-version": "Neznáma",
"label-current-version": "Současná verze: ",
"label-install-version": "(Verze instalátoru: {{version}})",
"label-up-to-date": "Vaše aplikace je aktuální!",
"label-read-changelog": "Přečíst seznam změn.",
"label-manual-update-required": "To support the latest features and to receive the latest security patches, Obsidian needs a major installer update. You need to manually download and reinstall Obsidian.",
"label-download": "Download",
"label-new-version-ready": "Nová verze je připravená k instalaci. ",
"label-relaunch-to-update": "Restartovat a aktualizovat aplikaci.",
"label-disabled-updates": "Aktualizace jsou vypnuté.",
"label-checking-for-updates": "Vyhledávání aktualizací...",
"button-relaunch": "Restartovat",
"button-check-for-updates": "Vyhledat aktualizace",
"option-auto-update": "Automatické aktualizace",
"option-auto-update-description": "Toto vypnětě pokud nechcete aby si aplikace sama vyhledávala aktualizace.",
"option-get-help": "Get help",
"option-get-help-description": "Get help on using Obsidian.",
"button-open": "Otevřít",
"option-language": "Jazyk",
"option-language-description": "Změna jazyku rozhraní.",
"option-insider-build": "Dostávat insider buildy",
"option-insider-build-description": "Automatická aktualizace insider buildů pro vyzkoušení nejnovějších funkcí. Varujeme že tyto buildy obsahují nejmodernější technologie a můou být méně stabilní.",
"option-advanced": "Rozšířené",
"option-hw-acceleration": "Hardwarová akcelerace",
"option-hw-acceleration-description": "Zapne hardwarovou akceleraci, která využívá GPU pro plynulejší chod Obsidianu.",
"option-hw-acceleration-warning": "Pokud toto vypnete, výkon aplikace poklesne.",
"option-config-location": "Override config folder",
"option-config-location-description": "Use a different config folder than the default one. Must start with a dot.",
"option-config-location-warning": "Config location must be a valid folder name that starts with a dot.",
"label-license": "Licence",
"label-your-commercial-license-key": "Klíč vaší komerční licence je \"{{key}}\".",
"label-commercial-license-info": "Registrováno \"{{company}}\" pro {{seats}} uživatelů. Platné do {{expiry}}.",
"label-validating-commercial-license": "Ověřování...",
"label-invalid-commercial-license": "Licence je neplatná: ",
"button-remove-commercial-license": "Odebrat",
"option-catalyst": "Catalyst license",
"option-catalyst-desc": "You currently have the {{tier}} Catalyst license. Thanks for your support!",
"option-catalyst-desc-no-license": "You don't have a Catalyst license right now. Catalyst license is a one-time donation to support Obsidian development.",
"label-app": "App",
"label-add-own-language": "See how to add your language to Obsidian."
},
"account": {
"name": "Účet",
"option-your-account": "Your account",
"option-your-account-desc": "You're currently signed in {{name}} ({{email}}).",
"option-your-account-desc-no-login": "You're not logged in right now. An account is only needed for Obsidian Sync, Obsidian Publish, and Catalyst insider builds.",
"button-manage-settings": "Manage settings",
"label-insider": "insider",
"label-supporter": "supporter",
"label-vip": "VIP",
"button-upgrade-catalyst": "Upgrade",
"option-commercial-license": "Commercial license",
"option-commercial-license-desc": "If you use Obsidian for commercial purpose, you may need to get a commercial license.",
"button-purchase": "Purchase",
"button-log-out": "Odhlásit",
"label-log-in": "Přihlásit",
"label-sign-up": "Sign up",
"label-email": "Email",
"placeholder-email": "Váš email...",
"label-password": "Heslo",
"placeholder-password": "Vaše heslo...",
"button-login": "Přihlásit",
"message-empty-email": "Email nesmí být prázdný.",
"message-invalid-email": "Email není správně.",
"message-empty-password": "Heslo nesmí být prázdné.",
"message-login-failed": "Přihlášení selhalo, zkontrolujte váš email a heslo.",
"label-no-account": "Nemáte účet? ",
"link-sign-up-now": "Zaregistrujte se",
"label-mfa-code": "6-digit 2FA code",
"mfa-wrong-format": "The 2FA authenticator code must be 6 digits.",
"mfa-verification-failed": "2FA code is incorrect, please double check your authenticator app."
},
"core-plugin": {
"plugin-list": "Plugin list",
"option-search-plugin": "Search core plugins",
"option-search-plugin-description": "Filter plugins by name or description.",
"placeholder-search-plugin": "Search plugins..."
},
"third-party-plugin": {
"name": "Doplňky třetích stran",
"option-restricted-mode": "Restricted mode",
"option-restricted-mode-description": "Restricted Mode is off. Turn on to disable community plugins.",
"button-turn-on": "Turn on",
"option-browse-community-plugins": "Komunitní doplňky",
"option-browse-community-plugins-description": "Prozkoumejte a nainstalujte si doplňky třetích stran od naší skvělé komunity.",
"button-browse": "Prohledat",
"label-exit-restricted-mode": "Exit Restricted Mode",
"label-exit-restricted-mode-description-1": "Community plugins, like any other software you install, could potentially cause data integrity and security issues.",
"label-exit-restricted-mode-description-2": "Plugin security is important to us. Here's what we do:",
"label-exit-restricted-mode-description-3": "Despite our efforts, there is still a small chance that a community plugin might misbehave.",
"label-code-review": "Initial code review",
"label-code-review-desc": "Plugins undergo an initial code review by our team before they appear in the store.",
"label-open-source": "Open source",
"label-open-source-desc": "Most plugins are open source on GitHub, so you can inspect the code yourself.",
"label-peer-audit": "Peer audit",
"label-peer-audit-desc": "We have a large community of developers who watch out for each other.",
"label-report-mechanism": "Report mechanism",
"label-report-mechanism-desc": "We follow up and remove faulty plugins upon user report.",
"label-exit-restricted-mode-disable-confirmation": "Would you like to exit Restricted Mode to enable community plugins? We strongly recommend making backups of your data before doing so.",
"label-learn-more": "Learn more about plugin security",
"button-turn-on-community-plugins": "Turn on community plugins",
"label-trust-author": "Do you trust the author of this vault?",
"label-trust-author-description-1": "You're opening this vault for the first time, and it comes with some plugins.",
"label-trust-author-description-2": "If you obtained this vault from someone else, please note that plugins of unknown origin might pose security risks.",
"label-trust-author-description-3": "If you do not fully trust the author of this vault, we recommend staying in Restricted Mode, so the plugins in this vault do not run.",
"button-enable-plugins": "Trust author and enable plugins",
"button-dont-trust-author": "Browse vault in Restricted Mode",
"placeholder-community-plugins": "Prohledat komunitní doplňky...",
"msg-failed-load-plugins": "Načtení komunitních doplňků selhalo.",
"label-installed": "Nainstalováno",
"button-install": "Nainstalovat",
"button-enable": "Enable",
"button-disable": "Disable",
"button-copy-share-link": "Copy share link",
"button-donate": "Donate",
"label-no-results-found": "Žádné výsledky.",
"label-no-recent-files-found": "No recent files found. Type to search...",
"msg-failed-to-load-manifest": "Nepodařilo se načíct manifest doplňku.",
"label-version": "Verze: {{version}}",
"label-currently-installed-version": " (aktuálně nainstalovaná: {{version}})",
"label-by-author": "Autor ",
"label-repository": "Repozitář: ",
"label-last-update": "Last update: ",
"tooltip-view-last-update": "View the latest update",
"label-unsupported": "This plugin does not support your device.",
"button-update": "Aktualizovat",
"label-no-readme": "Tento doplněk neposkytlu README soubor.",
"msg-installing-plugin": "Instaluje se dompněk \"{{name}}\"...",
"msg-failed-to-install-plugin": "Nepodařilo se nainstalovat doplněk \"{{name}}\".",
"msg-successfully-installed-plugin": "Doplněk \"{{name}}\" byl úspěšně nainstalován.",
"label-installed-plugins": "Nainstalované doplňky",
"button-reload-plugins": "Znovu načíst doplňky",
"msg-reloaded-third-party-plugins": "Doplňky třetích stran byli aktualizovány.",
"label-uninstall": "Odinstalovat",
"label-uninstall-plugin": "Odinstalovat doplněk",
"label-uninstall-plugin-confirmation": "Jste si jisti že chcete odinstalovat tento doplněk? Složka tohoto doplňku bude smazána.",
"button-open-plugins-folder": "Otevřít složku doplňků",
"button-check-for-updates": "Zkontrolovat aktualizace",
"button-update-all-plugins": "Aktualizovat vše",
"label-current-plugins": "Současné doplňky",
"label-currently-installed": "V současnosti máte nainstalován {{count}} doplněk.",
"label-currently-installed_plural": "V současnosti máte nainstalováno {{count}} doplňků.",
"label-debug-startup-time": "Debug startup time",
"label-debug-startup-time-description": "Show a message with how long each plugin took to initialize when starting the app.",
"msg-no-updates-found": "Nebyly nalezeny žádné aktualizace doplňků.",
"msg-updates-found": "Nalezena aktualizace pro {{count}} doplněk.",
"msg-updates-found_plural": "Nalezeny aktualizace pro {{count}} doplňků.",
"msg-update-plugin": "Aktualizovat na verzi {{version}}",
"option-search-installed-plugin": "Prohledat nainstalované doplňky",
"option-search-installed-plugin-description": "Filtrovat nainstalované doplňky dle jména nebo popisu.",
"placeholder-search-installed-plugin": "Prohledat nainstalované doplňky...",
"show-installed-only": "Show installed only",
"label-donate-modal-title": "Donate to support {{name}}",
"label-donate-modal-text1": "Plugin developers are community volunteers who make amazing things out of passion. If you find this plugin useful, please consider funding its development.",
"label-donate-modal-text2": "100% of your contribution will go to the plugin developer; Obsidian does not take a cut. The funding platform they choose might charge a fee.",
"label-donate-modal-text3": "Thanks for your generous support!",
"label-support-this-plugin": "Support this plugin:",
"label-search-summary": "Zobrazuji {{pluginCount}}:",
"label-by-popularity": "Most downloaded",
"label-by-released": "Recently released",
"label-by-updated": "Recently updated",
"label-alphabetical": "Alphabetical",
"label-last-updated": "Updated {{time}}"
},
"mobile-toolbar": {
"name": "Mobile toolbar",
"option-configure-quick-action": "Configure mobile Quick Action",
"option-configure-quick-action-description": "Configure which command to trigger when pull down from the top. The current command is set to \"{{command}}\".",
"button-configure": "Configure",
"placeholder-select-quick-action": "Select Quick Action...",
"manage-toolbar-options": "Manage toolbar options",
"option-internal-link": "Add internal link",
"option-internal-embed": "Add embed",
"option-tag": "Add tag",
"option-heading": "Toggle heading",
"option-strikethrough": "Toggle strikethrough",
"option-highlight": "Toggle highlight",
"option-code": "Toggle code",
"option-blockquote": "Toggle blockquote",
"option-inline-math": "Toggle inline math",
"option-math-block": "Toggle math block",
"option-markdown-link": "Add Markdown link",
"option-bullet-list": "Toggle bullet list",
"option-numbered-list": "Toggle numbered list",
"option-indent-list": "Indent list item",
"option-unindent-list": "Unindent list item",
"option-undo": "Undo",
"option-redo": "Redo",
"option-move-caret-up": "Move caret up",
"option-move-caret-down": "Move caret down",
"option-move-caret-left": "Move caret left",
"option-move-caret-right": "Move caret right",
"option-first-line": "Go to first line",
"option-last-line": "Go to last line",
"option-toggle-keyboard": "Toggle keyboard",
"option-configure-toolbar": "Configure mobile toolbar",
"option-added-options": "Added options",
"option-more-toolbar-options": "More toolbar options",
"option-attach": "Insert attachment",
"option-add-command": "Add global command",
"option-add-command-description": "Select any global command to add to the toolbar."
}
},
"editor": {
"search": {
"placeholder-find": "Find",
"placeholder-replace": "Replace",
"label-previous": "Předchozí",
"label-next": "Následující",
"label-all": "Všechny",
"label-exit-search": "Opustit vyhledávání",
"label-replace": "Nahradit",
"label-replace-all": "Nahradit vše"
},
"link-suggestion": {
"label-type-hash": "Napište #",
"label-link-heading": "pro odkaz na nadpis",
"label-type-block": "Napište ^",
"label-link-block": "pro blokovou referenci",
"label-type-pipe": "Napište |",
"label-change-display-text": "pro změnu zobrazovaného textu",
"label-no-match-found": "No match found"
},
"spellcheck": {
"no-suggestion": "Žádné návrhy...",
"add-to-dictionary": "Přidat do slovníku"
},
"menu": {
"edit-link": "Edit link"
},
"heading-suggestion": {
"label-no-heading": "No heading",
"label-heading-level": "Heading {{level}}"
},
"print-modal": {
"title": "Exportovat do PDF",
"caption": "Exportuje \"{{filename}}\" do PDF s nastavením níže.",
"setting-page-size": "Velikost stránky",
"setting-page-size-a3": "A3",
"setting-page-size-a4": "A4",
"setting-page-size-a5": "A5",
"setting-page-size-legal": "Legální",
"setting-page-size-letter": "Dopis",
"setting-page-size-tabloid": "Tabloid",
"setting-include-file-name": "Include file name as title",
"setting-landscape": "Na šířku",
"setting-margin": "Okraj",
"setting-margin-default": "Základní",
"setting-margin-minimal": "Minimální",
"setting-margin-none": "Žádný",
"setting-downscale-percent": "Procento zmenšení",
"button-export-to-pdf": "Exportovat do PDF"
},
"link-popover": {
"tooltip-follow-link": "Follow link",
"tooltip-open-link": "Open link",
"tooltip-search-tag": "Search tag"
}
},
"interface": {
"embed-cannot-find": "Cannot find:",
"embed-open-in-default-app-tooltip": "Otevřít ve výchozí aplikaci",
"empty-sidebar": "Postranní panel je prázdný, zkuste sem přetáhnout nějaký panel.",
"sidebar-expand": "Vysunout",
"sidebar-collapse": "Skrýt",
"msg-fail-to-save-file": "Uložení souboru \"{{filepath}}\" se nezdařilo. {{message}}.",
"no-file": "Žádný soubor",
"msg-file-changed": "\"{{file}}\" has been modified externally, merging changes automatically.",
"switch-vault": "Otevřít jiný trezor",
"help": "Nápověda",
"settings": "Nastavení",
"drag-to-rearrange": "Přetažením změníte uspořádání",
"msg-switched-to-read": "Switched default view mode to reading view.",
"msg-switched-to-edit": "Přepnuto výchozího zobrazení na mód úprav.",
"msg-upgrade-installer": "Pro použít této funkce, nainstalujte znovu pomocí nejnovějšího instalátoru, který je dostupný na našem webu.",
"tooltip-restore-default-settings": "Obnovit výchozí nastavení",
"label-copy": "Copy to clipboard",
"copied_generic": "Copied to your clipboard",
"copied": "{{item}} zkopírován do schránky",
"url": "Url",
"msg-open-file-through-uri": "Opened file \"{{path}}\"",
"msg-file-not-found-through-uri": "File \"{{name}}\" not found.",
"delete-action-short-name": "Delete",
"msg-indexing": "Obsidian is indexing your vault...\nThis should only happen once.\nSome functionality may not be available until this is complete.",
"msg-indexing-complete": "Indexing complete.",
"msg-sandbox-vault": "This is a sandbox vault.\nChanges you make in this vault will be lost.",
"label-enter-to-create": "Enter to create",
"label-update-available": "Update Available",
"label-debug-info": "Debug info",
"button-learn-more": "Learn more",
"button-not-now": "Not now",
"button-add": "Add",
"button-manage": "Manage",
"label-new-tab": "New tab",
"msg-tab-busy": "This tab is currently busy, please try again later",
"empty-state": {
"no-file-open": "Není otevřený žádný soubor",
"create-new-file": "Vytvořit nový soubor",
"go-to-file": "Přejít k souboru",
"see-recent-files": "Nedávné soubory",
"close": "Zavřít",
"unknown-pane-title": "Plugin no longer active",
"unknown-pane-desc": "The plugin that created this pane ({{type}}) has gone away"
},
"menu": {
"edit-view": "Režim úprav (Ctrl/Cmd+Klik pro úpravu v novém panelu)",
"read-view": "Current view: reading",
"switch-to-edit-view": "Click to edit",
"switch-to-read-view": "Click to read",
"mod-click-open-new-tab": "{{key}}+Click to open in new tab",
"find": "Najít...",
"replace": "Vyměnit...",
"edit": "Upravit",
"preview": "Náhled",
"more-options": "Více možností",
"close": "Zavřít",
"close-all": "Close all",
"close-others": "Close others",
"close-right": "Close tabs to the right",
"pin": "Připnout",
"unpin": "Unpin",
"unlink-tab": "Unlink tab",
"link-tab": "Link with tab...",
"toggle-source-mode": "Source mode",
"toggle-reading-view": "Reading view",
"add-property": "Add file property",
"delete-file": "Smazat soubor",
"create-file": "Create this file",
"open-link": "Open link",
"open-in-new-tab": "Open in new tab",
"open-to-the-right": "Open to the right",
"copy-url": "Kopírovat url",
"close-current-tab": "Close current tab",
"copy": "Copy",
"cut": "Cut",
"paste": "Paste",
"paste-as-plain-text": "Paste as plain text",
"lookup-selection": "Look up “{{selection}}”",
"select-all": "Select all",
"rename-heading": "Rename this heading...",
"rename-blockid": "Rename this block ID...",
"open-in-new-window": "Open in new window",
"move-to-new-window": "Move to new window",
"open-in-browser": "Open in browser",
"stack-tabs": "Stack tabs",
"unstack-tabs": "Unstack tabs",
"open-linked-view": "Open linked view"
},
"tooltip": {
"click-to-expand": "Kliknutím rozbalíte",
"click-to-collapse": "Kliknutím sbalíte",
"alias": "Alias",
"not-created-yet": "Not created yet, select to create"
},
"start-screen": {
"label-version": "Version",
"label-create-local-vault": "Create local vault",
"option-open-folder-as-vault": "Použít složku jako trezor",
"option-open-folder-as-vault-description": "Vyberte existující složku s Markdown soubory.",
"option-create-vault": "Vytvořit nový trezor",
"option-create-vault-description": "Vytvořit nový trezor Obsidianu ve složce.",
"option-connect-obsidian-sync": "Connect to Obsidian Sync",
"option-connect-obsidian-sync-description": "Set up a synced vault with existing remote vault.",
"option-new-vault-name": "Jméno trezoru",
"option-new-vault-name-description": "Zvolte jméno vašeho úžasného trezoru.",
"option-new-vault-location": "Umístění",
"option-new-vault-location-description": "Zvolte umístění nového trezoru.",
"label-new-vault-location-preview": "Your new vault will be placed in: ",
"option-reveal-vault-in-explorer": "Reveal vault in system explorer",
"option-reveal-vault-in-explorer-mac": "Reveal vault in Finder",
"option-rename-vault": "Rename vault...",
"msg-error-rename-exists": "There is already a vault with this name.",
"msg-error-nested": "Cannot move vault into a subfolder of itself.",
"msg-error-rename-open": "Can't rename a currently open vault.",
"msg-rename-failed": "Failed to rename vault.",
"msg-rename-success": "Successfully renamed vault.",
"option-move-vault": "Move vault...",
"msg-move-select-dest": "Select destination folder",
"msg-error-move-exists": "There is already a vault at the destination.",
"msg-error-move-open": "Can't move a currently open vault.",
"msg-move-failed": "Failed to move vault.",
"msg-move-success": "Successfully moved vault.",
"option-remove": "Remove from list",
"button-quick-start": "Quick start",
"button-open": "Otevřít",
"button-browse": "Procházet",
"button-connect": "Connect",
"button-create-vault": "Vytvořit",
"button-back": "Zpět",
"msg-empty-vault-name": "Jméno trezoru nesmí být prázdné.",
"msg-invalid-folder": "Prosím zvolte platnou složku.",
"msg-failed-to-create-vault": "Trezor se nepodařilo vytvořit.",
"msg-failed-to-create-vault-at-location": "Trezor se nepodařilo vytvořit ve zvoleném umístění. Znovu zkontrolujte umístění a oprávnění.",
"msg-error-failed-to-open-vault": "Trezor se nepodařilo otevřít.",
"msg-error-remove-current-open-vault": "Nelze smazat právě otevřený trezor.",
"option-get-help": "Get Help",
"option-user-email": "Email",
"placeholder-your-email": "Your email...",
"option-user-password": "Password",
"placeholder-your-password": "Your password...",
"button-sign-in": "Sign in",
"button-setup": "Setup",
"option-connect-vault-desc": "Create a synced vault on this device.",
"tooltip-own-vault": "This is a remote vault owned by you.",
"tooltip-shared-vault": "This is a remote vault shared with you."
},
"drag-and-drop": {
"insert-link-here": "Zde vložte odkaz",
"insert-links-here": "Zde vložte odkazy",
"move-into-folder": "Přesunout do složky \"{{folder}}\"",
"star-this-file": "Označit hvězdičkou",
"star-these-files": "Označit hvězdičkami",
"open-in-this-tab": "Open in this tab",
"open-as-tab": "Open as new tab"
},
"window": {
"maximize": "Maximize",
"minimize": "Minimize",
"restore-down": "Restore down",
"close-window": "Close window",
"go-back": "Go back",
"go-forward": "Go forward"
},
"start-up": {
"loading-obsidian": "Loading Obsidian...",
"obsidian-load-error": "An error occurred while loading Obsidian.",
"button-reload-app": "Reload app",
"button-reload-app-in-safe-mode": "Reload app in safe mode",
"button-open-another-vault": "Open another vault",
"loading-components": "Loading components...",
"loading-plugins": "Loading plugins...",
"loading-vault": "Loading vault...",
"msg-failed-to-load-vault": "Failed to load vault: ",
"loading-cache": "Loading cache...",
"loading-workspace": "Loading workspace..."
},
"mobile": {
"action-import": "Import into vault",
"action-choose-file-to-insert": "Choose a file to insert",
"action-insert-text-into-file": "Insert text into {{filename}}",
"action-insert-link-into-file": "Insert link into {{filename}}",
"msg-importing": "Importing...",
"msg-import-success": "Import success",
"msg-failed-to-import-file": "Failed to import file {{filename}}",
"msg-back-again-to-exit": "Press back again to exit."
},
"help-screen": {
"label-official-help-site": "Official help site",
"label-official-help-site-desc": "Read the official help documentation of Obsidian, available in multiple languages.",
"action-visit": "Visit",
"label-discord-chat": "Discord chat",
"label-discord-chat-desc": "Discord is the best place to chat with other experienced Obsidian users from around the world.",
"action-join": "Join",
"label-forum": "Official forum",
"label-forum-desc": "Help each other, post feature requests, report bugs, and have in-depth discussions about knowledge management.",
"label-sandbox-vault": "Sandbox vault",
"label-sandbox-vault-desc": "Play around and experiment with various features. Please note your changes will not be saved."
}
},
"commands": {
"save-file": "Uložit aktuální soubor",
"follow-cursor-link": "Následovat odkaz pod kurzorem",
"open-cursor-link-in-new-tab": "Open link under cursor in new tab",
"open-cursor-link-to-the-right": "Open link under cursor to the right",
"open-cursor-link-in-new-window": "Open link under cursor in new window",
"navigate-tab-above": "Focus on tab group above",
"navigate-tab-below": "Focus on tab group below",
"navigate-tab-left": "Focus on tab group to the left",
"navigate-tab-right": "Focus on tab group to the right",
"toggle-pin": "Připnout",
"split-right": "Split right",
"split-down": "Split down",
"toggle-stacked-tabs": "Toggle stacked tabs",
"navigate-back": "Přejít zpět",
"navigate-forward": "Přejít vpřed",
"use-dark-mode": "Použít tmavý režim",
"use-light-mode": "Použít světlý režim",
"change-theme": "Change theme",
"search-current-file": "Najít v aktivním souboru",
"search-replace-current-file": "Najít a vyměnit v aktivním souboru",
"add-property": "Add file property",
"edit-property": "Edit file property",
"clear-properties": "Clear file properties",
"open-settings": "Otevřít nastavení",
"open-help": "Otevřít nápovědu",
"toggle-edit": "Toggle editing/reading view",
"toggle-source-mode": "Toggle Live Preview/Source mode",
"delete-current-file": "Odstranit současný soubor",
"new-tab": "New tab",
"close-all-tabs": "Close all tabs",
"close-active-tab": "Close current tab",
"close-others-in-tab-group": "Close others in tab group",
"close-other-tabs": "Close all other tabs",
"close-tab-group": "Close this tab group",
"toggle-left-sidebar": "Zobrazit/skrýt levý boční panel",
"toggle-right-sidebar": "Zobrazit/skrýt pravý boční panel",
"toggle-default-new-tab-mode": "Toggle default mode for new tabs",
"focus-editor": "Focus on editor",
"toggle-fold-properties": "Toggle fold properties in current file",
"toggle-fold": "Sbalení/rozbalení aktuálního řádku",
"fold-all": "Sbalit všechny nadpisy a seznamy",
"unfold-all": "Rozbalit všechny nadpisy a seznamy",
"fold-more": "Fold more",
"fold-less": "Fold less",
"swap-line-up": "Prohodit řádek nahoru",
"swap-line-down": "Prohodit řádek dolů",
"remove-heading": "Remove heading",
"toggle-heading": "Set as heading {{level}}",
"toggle-bold": "Přepnout tučně pro výběr",
"toggle-italics": "Přepnout kurzívu pro výběr",
"toggle-highlight": "Přepnout zvýraznění pro výběr",
"toggle-comments": "Toggle comments for selection",
"insert-link": "Vložit odkaz",
"toggle-spellcheck": "Toggle spellcheck",
"delete-paragraph": "Odstranit odstavec",
"toggle-checklist": "Změnit odfajfkování",
"cycle-list-checklist": "Cycle bullet/checkbox",
"insert-callout": "Insert callout",
"insert-code-block": "Insert code block",
"insert-math-block": "Insert math block",
"edit-file-title": "Upravit název souboru",
"copy-path": "Kopírovat cestu souboru",
"copy-url": "Kopírovat url obsidianu",
"export-pdf": "Exportovat do PDF",
"reload": "Reload app without saving",
"undo-close-tab": "Undo close tab",
"context-menu": "Show context menu under cursor",
"show-debug-info": "Show debug info",
"open-sandbox-vault": "Open sandbox vault",
"always-on-top": "Toggle window always on top",
"zoom-in": "Zoom in",
"zoom-out": "Zoom out",
"reset-zoom": "Reset zoom",
"toggle-preview": "Přepínání mezi módem úprav/náhledu",
"move-to-new-window": "Move current pane to new window",
"open-in-new-window": "Open current pane in new window",
"rename-current-file": "Rename current file",
"go-to-prev-tab": "Go to previous tab",
"go-to-next-tab": "Go to next tab",
"go-to-last-tab": "Go to last tab",
"go-to-nth-tab": "Go to tab #{{n}}",
"show-release-notes": "Show release notes"
},
"dialogue": {
"label-link-affected": "Tohle ovlivní {{links}} ve {{files}}.",
"msg-updated-links": "Aktualizovány {{links}} ve {{files}}.",
"label-update-links": "Aktualizovány odkazy",
"label-confirm-update-link-to-file": "Chcete aktualizovat interní odkazy, které odkazují na tento soubor?",
"button-always-update": "Aktualizovat vždy",
"button-just-once": "Jen jednou",
"button-do-not-update": "Neaktualizovat",
"label-confirm-deletion": "Jste si jisti že chcete odstranit \"{{filename}}\"?",
"label-move-to-system-trash": "Soubor bude přesunut do systémového koše.",
"label-move-to-vault-trash": "Soubor bude přesunut do koše Obsidianu, který se nachází v schované složce \".trash\" ve vašem trezoru.",
"label-permanent-delete": "Soubor bude permanentně odstraněn.",
"label-non-empty-folder": "Složka není prázdná.",
"label-delete-folder-warning": "Pokud budete pokračovat, všechny soubory uvnitř složky budou také odstraněny.",
"label-delete-folder": "Odstranit složku",
"button-delete": "Odstranit",
"button-delete-do-not-ask-again": "Odstranit a vícekrát se neptat",
"label-do-not-ask-again": "Don't ask again",
"label-existing-backlink": "Tento počet odkazů odkazuje na tuto poznámku: {{links}}.",
"label-existing-backlink_plural": "There are currently {{links}} pointing to this note.",
"label-delete-file": "Odstranit soubor",
"button-manage": "Manage",
"button-cancel": "Zrušit",
"button-done": "Hotovo",
"button-save": "Save",
"button-stop": "Stop",
"button-continue": "Continue",
"button-choose": "Choose",
"preparing-pdf": "Připravuje se PDF...",
"label-rename-file": "Rename file",
"label-rename-file-generic": "File name",
"label-new-name": "New name",
"msg-rename-success": "Successfully renamed file.",
"label-rename-heading": "Rename heading",
"label-rename-blockid": "Rename block ID"
},
"menu-items": {
"new-file": "Create Note",
"new-file-to-the-right": "New Note to the Right",
"new-window": "New Window",
"open-switcher": "Open Quickly...",
"open-vault": "Open Vault...",
"close-tab": "Close Tab",
"close-window": "Close Window",
"find": "Find",
"replace": "Replace",
"insert-callout": "Callout",
"insert-markdown-link": "Markdown Link",
"insert-wikilink": "Link",
"set-heading": "Heading {{level}}",
"no-heading": "No Heading",
"insert-quote": "Quote",
"export-pdf": "Export PDF",
"insert-attachment": "Insert Attachment...",
"insert-codeblock": "Code Block",
"insert-math-block": "Math Block",
"toggle-bullet-list": "Bullet List",
"toggle-numbered-list": "Numbered List",
"toggle-checklist": "Task List",
"toggle-bold": "Bold",
"toggle-code": "Code",
"toggle-comment": "Comment",
"toggle-italics": "Italics",
"toggle-inline-math": "Math",
"toggle-highlight": "Highlight",
"toggle-strikethrough": "Strikethrough",
"toggle-comments": "Comment",
"folding-menu": "Folding",
"fold-all": "Fold All",
"unfold-all": "Unfold All",
"fold-more": "Fold More",
"fold-less": "Fold Less",
"source-mode": "Source Mode",
"reading-view": "Reading View",
"show-debug-info": "Show Debug Info",
"open-sandbox": "Open Sandbox Vault",
"navigate-back": "Navigate Back",
"navigate-forward": "Navigate Forward",
"toggle-left-sidebar": "Toggle Left Sidebar",
"toggle-right-sidebar": "Toggle Right Sidebar",
"split-right": "Split Right",
"split-down": "Split Down",
"release-notes": "Release Notes"
},
"plugins": {
"name": "Doplňky",
"file-explorer": {
"name": "Průzkumník souborů",
"desc": "Zobrazuje všechny soubory ve vašem trezoru.",
"action-open": "Open file explorer",
"action-show": "Show file explorer",
"action-create-note": "Vytvořit novou poznámku",
"action-create-note-in-current-tab": "Create new note in current tab",
"action-create-note-to-the-right": "Create note to the right",
"action-collapse-all": "Collapse all",
"action-expand-all": "Expand all",
"action-new-note": "Nová poznámka",
"action-new-folder": "Nová složka",
"action-change-sort": "Změnit pořadí řazení",
"action-reveal-file": "Zobrazit soubor v průzkumníku souborů",
"action-reveal-active-file": "Zobrazit aktivní soubor v průzkumníku souborů",
"command-make-a-copy": "Make a copy of the current file",
"command-move-file": "Přesunou soubor do jiné složky",
"action-move-file": "Přesunout soubor do...",
"action-move-folder": "Přesunou složku do...",
"action-move-items": "Move {{count}} items to...",
"prompt-type-folder": "Napište název složky",
"label-no-folders": "Nebyly nalezeny žádné složky.",
"instruction-navigate": "přesunout na",
"instruction-move": "přemístit na",
"instruction-create": "to create",
"instruction-dismiss": "přerušit",
"label-sort-a-to-z": "Seřadit podle jména (od A do Z)",
"label-sort-z-to-a": "Seřadit podle jména (od Z po A)",
"label-sort-new-to-old": "Seřadit podle data upravení (od nejnovéjšího po nejstarší)",
"label-sort-old-to-new": "Seřadit podle data upravení (od nejstaršího po nejnovější)",
"label-sort-created-old-to-new": "Čas vytvoření (od nejstaršího po nejnovější)",
"label-sort-created-new-to-old": "Čas vytvoření (od nejnovéjšího po nejstarší)",
"menu-opt-new-note": "Nová poznámka",
"menu-opt-new-folder": "Nová složka",
"menu-opt-set-attachment-folder": "Nastavit jako složku příloh",
"menu-opt-rename": "Přejmenovat",
"menu-opt-delete": "Smazat",
"menu-opt-make-copy": "Vytvořit kopii",
"msg-invalid-characters": "Název souborů nemůže obsahovat žádný z nasledujících znaků: ",
"msg-unsafe-characters": "Links will not work with file names containing any of these characters: ",
"msg-file-already-exists": "Již existuje soubor se stejným názvem",
"msg-empty-file-name": "Název souboru nemůže být prázdný.",
"msg-bad-dotfile": "File name must not start with a dot.",
"tooltip-modified-time": "Naposledy upraveno {{time}}",
"tooltip-created-time": "Vytvořeno {{time}}",
"tooltip-folders-files-count": "{{fileCount}}, {{folderCount}}",
"action-move-file-short-name": "Move",
"label-untitled-file": "Untitled",
"label-untitled-folder": "Untitled",
"msg-set-attachment-folder": "Attachments will be saved to \"{{path}}\" from now on."
},
"search": {
"name": "Hledat",
"desc": "Vyhledat klíčové slovo ve všech poznámkách.",
"action-open-search": "Hledat ve všech souborech",
"label-collapse-results": "Sbalit výsledky",
"label-match-case": "Rozlišovat velká a malá písmena",
"label-explain-search-term": "Vysvětlit hledaný výraz",
"label-more-context": "Zobrazit více kontextu",
"label-result-count": "{{count}} result",
"label-result-count_plural": "{{count}} results",
"label-toggle-search-settings": "Search settings",
"prompt-start-search": "Pište pro zahájení hledání ...",
"label-match-text": "Odpovídá textu:",
"label-match-regex": "Shoduje se s regulárním výrazem:",
"label-match-exact-text": "Obsahuje přesný text:",
"label-match-property": "Contains property:",
"label-match-all": "Shoduje se ze vším z:",
"label-match-any": "Shoduje se s některými z:",
"label-excluding": "Vyloučit:",
"label-case-sensitive": "Rozlišovat malá a velká písmena",
"label-case-insensitive": "Nerozlišovat malá a velká písmena",
"label-match-file-path": "Shoduje se s cestou k souboru:",
"label-match-file-name": "Shoduje se s názevem souboru:",
"label-match-content": "Shoduje se s obsahem souboru:",
"label-match-task": "Match task: ",
"label-match-task-todo": "Match task (todo): ",
"label-match-task-done": "Match task (done): ",
"label-match-line": "Shoduje se s frází: ",
"label-match-block": "Match block: ",
"label-match-section": "Match section: ",
"label-match-tag": "Shoduje se s štítkem:",
"label-no-matches": "Nebyly nalezeny žádné shody.",
"matches-with-count": "... a {{count}} další shoda.",
"matches-with-count_plural": "... a {{count}} dalších shod.",
"label-copy-search-results": "Kopírovat výsledky hledání",
"button-copy-results": "Kopírovat výsledky",
"msg-successfully-copied": "Výsledky zkopírovány do schránky.",
"option-show-path": "Zobrazit cestu",
"option-show-path-description": "Zobrazit celou cestu k souboru, nikoli pouze jeho název.",
"option-link-style": "Styl odkazu",
"option-link-style-description": "Každý nalezený soubor transformovat na odkaz.",
"option-choice-link-style-none": "Žádný",
"option-choice-link-style-wikilink": "Wiki odkaz (Wikilink)",
"option-choice-link-style-markdown-link": "Markdown odkaz",
"option-list-prefix": "Předpona seznamu",
"option-list-prefix-description": "Volitelně přidat předponu položky seznamu ke každému výsledku souboru.",
"option-choice-list-style-none": "Žádný",
"option-choice-list-style-dash": "Pomlčka (-)",
"option-choice-list-style-asterisk": "Hvězdička (*)",
"option-choice-list-style-numbered": "Očíslovaný",
"tooltip-clear-search": "Smazat historii hledání",
"label-search-options": "Search options",
"label-properties-group": "Properties",
"label-tags-group": "Tags",
"tooltip-read-more": "Read more",
"label-history": "History",
"tooltip-clear-history": "Clear search history",
"label-path-option-description": "match path of the file",
"label-file-name-option-description": "match file name",
"label-tag-option-description": "search for tags",
"label-line-option-description": "search keywords on same line",
"label-section-option-description": "search keywords under same heading",
"label-property-option-description": "match property",
"menu-opt-search-for": "Search for \"{{keyword}}\""
},
"quick-switcher": {
"name": "Rychlé přepínání",
"desc": "Skakejte mezi soubory bez sundání rukou z klávesnice. Ctrl/Cmd+O pro aktivování.",
"short-name": "Switcher",
"action-open": "Otevřít rychlé přepínání",
"instruction-navigate": "pro navigaci",
"instruction-open": "pro otevření",
"instruction-open-in-new-tab": "to open in new tab",
"instruction-open-to-the-right": "to open to the right",
"instruction-create": "pro vytvoření",
"instruction-dismiss": "pro odmítnutís",
"instruction-select": "to select",