-
Notifications
You must be signed in to change notification settings - Fork 572
/
sk.json
2144 lines (2144 loc) · 115 KB
/
sk.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": "Doplnok",
"builtin-plugins": "Vstavané doplnky",
"plugin-options": "Možnosti doplnkov",
"folder-path-example-placeholder": "Príklad: priečinok 1/priečinok 2",
"file-path-example-placeholder": "Príklad: priečinok/poznámka",
"msg-restart-required": "Na prejavenie tejto zmeny je nutný reštart.",
"editor": {
"name": "Editor",
"section-behavior": "Správanie",
"section-display": "Zobrazenie",
"option-spellcheck": "Kontrola pravopisu",
"option-spellcheck-description": "Zapne kontrolu pravopisu. V súčasnosti je podporovaná iba v Angličtine (US).",
"spellcheck-languages": "Jazyky kontroly pravopisu",
"spellcheck-languages-description": "Zvoľte jazyky pre kontrolu pravopisu.",
"spellcheck-languages-mac-description": "Prirodzená kontrola pravopisu automaticky rozpozná jazyk, ktorý používate v macOS.",
"spellcheck-dict": "Slovník kontroly pravopisu",
"spellcheck-dict-empty": "Slovník kontroly pravopisu je prázdny.",
"option-show-inline-title": "Zobraziť vložený nadpis",
"option-show-inline-title-description": "Zobrazí názov súboru ako upraviteľný nadpis zarovno s obsahom súboru.",
"option-readable-line-length": "Čitateľná dĺžka riadku",
"option-readable-line-description": "Obmedziť maximálnu dĺžku riadku. Na obrazovku sa zmestí menej obsahu, ale dlhé odseky budú čitateľnejšie.",
"option-strict-line-break": "Prísne zalomenia riadkov",
"option-strict-line-break-description": "V režime náhľadu ignoruje zalomenia jednotlivých riadkov podľa špecifikácií Markdown. Túto možnosť vypnite, aby sa zlomy jedného riadku zobrazovali v náhľade.",
"option-properties-in-document": "Vlastnosti v dokumente",
"option-properties-in-document-description": "Vyber ako majú byť zobrazovné vlastnosti v editore. Vyber \"source\" aby sa vlastnosti zobrazili ako YAML.",
"option-properties-hidden": "Skryté",
"option-properties-visible": "Viditeľné",
"option-properties-source": "Zdroj",
"option-show-file-properties": "Zobraz vlastnosti v dokumente.",
"option-show-file-properties-description": "Zobraz vlastnosti v sekcii na vrchu súboru.",
"option-auto-pair-brackets": "Automatické párovanie zátvoriek",
"option-auto-pair-brackets-description": "Automaticky spáruje zátvorky a úvodzovky.",
"option-auto-pair-markdown": "Automatické párovanie Markdown syntax",
"option-auto-pair-markdown-description": "Automaticky spáruje symboly pre tučné písmo, kurzívu, zvýraznenie, prečiarknutie a kód.",
"option-smart-indent-lists": "Múdre odsadzovanie zoznamov",
"option-smart-indent-lists-description": "Postará sa o odsadenie a označenie zoznamu automaticky.",
"option-fold-heading": "Zložiť nadpis",
"option-fold-heading-description": "Umožňuje zložiť všetko pod nadpisom.",
"option-fold-indent": "Zložiť odsadenie",
"option-fold-indent-description": "Umožňuje zložiť časť s rovnakým odsadením, napríklad zoznamy.",
"option-default-new-tab-view": "Predvolený pohľad pre nové karty",
"option-default-new-tab-view-description": "Predvolený pohľad, v ktorom sa otvorí nová karta Markdown.",
"option-default-new-tab-view-editing": "Upravovací pohľad",
"option-default-new-tab-view-reading": "Čítací pohľad",
"option-open-tab-in-foreground": "Vždy sa sústreď na novú kartu",
"option-open-tab-in-foreground-description": "Keď otvoríš spoj v novej karte, prepni hneď na ňu.",
"option-default-editing-mode": "Predvolený režim úprav",
"option-default-editing-mode-description": "Predvolený režim úprav nového panela.",
"option-default-editing-mode-source": "Režim zdrojového kódu",
"option-default-editing-mode-live-preview": "Živý náhľad",
"option-show-line-number": "Zobraziť číslo riadka",
"option-show-line-number-description": "Zobraziť číslo riadka v okraji.",
"option-indentation-guide": "Zobraziť vodítka odsadenia",
"option-indentation-guide-description": "Zobrazuje vertikálne riadiace linky medzi odrážkami pre vizuálne usmernenie.",
"option-use-tabs": "Používať záložky",
"option-use-tabs-description": "Používať tabulátor na odsadenie po stlačení klávesy \"Tab\". Ak chcete použiť medzery, nastavte túto možnosť na vypnuté.",
"option-tab-size": "Veľkosť tabulátora",
"option-tab-size-description": "Počet medzier, ktoré sú ekvivalentné jednému tabulátoru.",
"option-rtl": "Zprava doľava (RTL)",
"option-rtl-description": "Nastavuje smer textu poznámok na zobrazenie zprava doľava.",
"option-auto-convert-html": "Automatická konverzia HTML",
"option-auto-convert-html-description": "Automatická konverzia HTML na Markdown pri vkladaní a presúvaní z webových stránok. Použite Ctrl/Cmd+Shift+V pre vloženie bez konverzie.",
"option-vim-key-bindings": "Klávesové skratky Vim",
"option-vim-key-bindings-description": "Umožňuje používať klávesové skratky Vim v editori zdrojového kódu.",
"option-vim-key-bindings-mobile": "Na mobilných zariadeniach je táto možnosť špecifická pre jednotlivé zariadenia a nie je synchronizovaná cez konfiguračný súbor.",
"label-confirm-enable-vim": "Potvrďte zapnutie režimu Vim",
"label-vim-warning": "Režim Vim je určený pre efektívne upravovanie textu, ale môže byť veľmi zložitý. Ak nie ste s Vim oboznámení, táto možnosť môže vyzerať, že Obsidian prestal pracovať.",
"label-vim-test": "Na overenie, že ovládate Vim, zadajte nižšie príkaz na ukončenie Vim bez uloženia:",
"label-vim-your-answer": "Vaša odpoveď",
"placeholder-enter-command": "Zadajte príkaz...",
"button-confirm-enable-vim": "Povoliť režim Vim",
"msg-vim-mode-enabled": "Príkaz je správny. Režim Vim je teraz povolený.",
"msg-vim-mode-not-enabled": "Príkaz je nesprávny. Režim Vim zostáva zakázaný pre vašu ochranu.",
"msg-vim-mode-please-enter-command": "Zadajte prosím príkaz na povolenie režimu Vim"
},
"file": {
"name": "Súbory a spoje",
"option-confirm-file-deletion": "Potvrď vymazanie súboru",
"option-confirm-file-deletion-description": "Chceš zobrazovať upozornenie pred vymazaním súboru?",
"option-delete-destination": "Vymazané súbory",
"option-delete-destination-description": "Čo urobiť s vymazanými súbormi.",
"option-choice-system-trash": "Presunúť do systémoveho koša",
"option-choice-vault-trash": "Presunúť do Obsidian koša (.trash priečinok)",
"option-choice-permanent-delete": "Permanente vymazať",
"option-always-update-links": "Vždy aktualizuj interné spoje",
"option-always-update-links-description": "Automaticky aktualizovať spoje po premenovaní súboru alebo oznam.",
"option-new-note-location": "Nová poznámka predvolené umiestnenie",
"option-new-note-location-description": "Kde ukladať novo vytvorené Poznámky. Nastavenia pluginov toto prepíšu.",
"option-choice-vault-root": "Zdroj trezoru",
"option-choice-current-folder": "Ten istý priečinok v akom je súbor",
"option-choice-specified-folder": "V priečinku uvdenom nižšie",
"option-new-file-folder-path": "Priečinok na vytváranie nový poznámok",
"option-new-file-folder-path-description": "Novo vytvorené poznámky sa budú objavovať pod týmto priečinkom. Nastavenia pluginov toto prepíšu",
"option-use-wiki-links": "Použi [[Wikilinks]]",
"option-use-wiki-links-description": "Automaticky generovať Wikilinks pre [[links]] a ![[images]] namiesto Markdown spojov a obrázkov. Deaktivuj túto možnosť, aby sa generovali Markdown spoje.",
"option-show-unsupported-files": "Detekovať všetky typy súborov",
"option-show-unsupported-files-description": "Zobrazovať všetky súbory, aj tie ktoré nevie Obsidian otvoriť natívne, aby si im mohol pridať spoj a zobraziť ich v Prieskumníkovi, alebo v Rýchlom Prepínači.",
"option-link-autocompleted-format": "Nový formát spojov",
"option-link-autocompleted-format-description": "Aké spoje vkladať, keď sa automaticky generujú interné spoje.",
"option-choice-shortest-linktext": "Najkratšia cesta, keď je to možné",
"option-choice-relative-path": "Relatívna cesta ku súboru",
"option-choice-absolute-path": "Absolútna cesta v trezore",
"option-new-attachment-location": "Predvolené miesto pre nové prílohy",
"option-new-attachment-location-description": "Kde sú uložené novo pridané prílohy.",
"option-choice-subdirectory": "V podbriečinku pod terajším priečinkom",
"option-attachment-folder-path": "Cesta ku priečinku s prílohami",
"option-attachment-folder-path-description": "Novo vytvorené prílohy sa zobrazia tu. Toto zahŕňa obrázky vytvorené pomocou ťahania a pustenia, alebo prilepenia a audio nahrávky.",
"option-attachment-subfolder-path": "Meno podpriečinku",
"option-attachment-subfolder-path-description": "Pokiaľ je tvoj súbor v \"vault/folder\", a nastavíš náyov podpriečinku na \"attachments\", prílohy budú uložené do \"vault/folder/attachments\".",
"option-attachment-subfolder-path-placeholder": "Prílohy",
"option-excluded-files": "Vynechané súbory",
"option-excluded-files-desc": "Vynechané súbory budú buď skryté, alebo menej nápadné na rôznych miestach ako napríklad Rýchly prepínač, návrhy spojov, a Zobrazenie Grafu.",
"label-no-excluded-filters-applied": "Žiaden vynechávací filter nie je teraz aplikovaný. Pridaj jeden nižšie.",
"label-excluded-filters-applied": "Súbory zodpovedajúce týmto filtrom sú teraz vynechané:",
"label-excluded-filter": "Filter",
"message-empty-filter": "Filter nemôže byť prázdny",
"placeholder-excluded-filter": "Napíš cestu, alebo \"/regex/\"..."
},
"appearance": {
"name": "Vzhľad",
"option-base-theme": "Základná téma",
"option-base-theme-description": "Vyber predvolenú farebnú schému pre Obsidian.",
"option-accent-color": "Farba prízvuku",
"option-accent-color-description": "Vyber farbu prízvuku, ktorá sa bude používať v aplikácii. ",
"dark-theme": "Tmavá",
"light-theme": "Svetlá",
"system-theme": "Adaptuj sa na systém",
"option-font": "Font",
"option-advanced": "Pokročílé",
"option-interface": "Interface",
"option-interface-font": "Font používateľského rozhrania",
"option-interface-font-description": "Nastav základný font pre všetko v Obsidiane.",
"option-zoom-level": "Veľkost priblíženia",
"option-zoom-level-description": "Ovláda celkové priblíženie aplikácie.",
"option-text-font": "Font textu",
"option-text-font-description": "Nastav font pre pohľady úprav a čítania.",
"option-monospace-font": "Monospace font",
"option-monospace-font-description": "Nastav font pre bloky kódu a frontmatter.",
"label-single-font-currently-in-effect": " Aktuálný font: ",
"label-multiple-fonts-currently-in-effect": " Tieto fonty sú práve používané:",
"option-font-placeholder": "Napíš názov fontu...",
"label-no-custom-font-set": "Žiaden vlastný font nie je práve používaný. Vyber jeden nižšie.",
"label-font-applied": "Prvý font z tohto listu, ktorý je dostupný na tvojom systéme bude použitý.",
"msg-font-not-found": "Tento font nie je detekovaný na tvojom systéme.",
"msg-font-found": "Tento font je detekovaný na tvojom systéme.",
"label-font-name": "Názov fontu",
"option-community-themes": "Otvor komunitné témy",
"option-community-themes-description": "Prehliadni a použi úžasné témy vytvorené komunitou.",
"button-browse-community-themes": "Prehliadať",
"option-font-size": "Veľkost fontu",
"option-font-size-description": "Veľkost fontu v pixeloch, ktorý ovplyvňuje editor a náhľad.",
"option-font-size-action": "Rýchla zmena veľkosti fontu",
"option-font-size-action-description": "Uprav veľkost fontu pomocou Ctrl + Koliesko myši, alebo použi gesto na touchpade.",
"option-themes": "Témy",
"option-manage-themes-description": "Spravovať naištalované témy a prehliadať komunitné témy.",
"option-theme-button-manage": "Spravovať",
"option-choice-none": "Žiadne",
"option-native-menus": "Natívne menu",
"option-native-menus-desc": "Menu v aplikácii sa bude zhodovať s operačným systémom. Toto nebude ovplyvnené tvojou témou.",
"button-reload-themes": "Znovu načítať témy",
"msg-reloaded-themes": "Znovu načítať vlastné CSS témy.",
"button-open-themes-folder": "Otvoriť priečinok s témami",
"option-css-snippets": "CSS snippety",
"label-no-css-snippets-found": "Žiadne CSS snippety nájdené v priečinku snippetov.",
"no-snippet-description": "CSS snippety sú uložené v \"{{path}}\".",
"button-reload-snippets": "Znovu náčítať snippety",
"button-open-snippets-folder": "Otvoriť priečinok so snippetami",
"msg-reloaded-snippets": "Znovu načítané CSS snippety.",
"option-toggle-snippet-description": "Použi CSS snippet v \"{{path}}\".",
"label-installed-themes": "Nainštalované témy",
"label-screenshot-unavailable": "Snímka obrazovky nedostupná",
"label-default-theme": "Základná",
"tooltip-click-to-enlarge": "Klikni na zväčšenie",
"button-update": "Aktualizovať",
"label-currently-active": "Active",
"option-frame-style": "Štýl okna",
"option-frame-description": "Určuje štýlovanie nadpisov okien Obsidianu. Potrebný úplný reštart pre aplikovanie zmien.",
"option-frame-hidden": "Skryté (základ)",
"option-frame-obsidian": "Obsidian rámec",
"option-frame-native": "Natívny rámen",
"option-custom-icon": "Vlastná ikona aplikácie",
"option-custom-icon-desc": "Nastav vlastnú ikonu pre aplikáciu",
"button-choose-custom-icon": "Vyber vlastnú ikonu",
"option-configure-ribbon": "Páskové menu",
"option-configure-ribbon-desc": "Nastavuje, ktoré príkazy sa majú zobrazovať v páskovom menu v navigačnom bare.",
"option-mobile-quick-ribbon-item": "Rýchly prístup ku položke páskového menu",
"option-mobile-quick-ribbon-item-desc": "Klikaním na položku páskového menu v navigačnom menu aktivuje danú položku tejto páskovej položky. Klikni a drž bude stále zobrazovať menu.",
"option-mobile-quick-ribbon-default": "Open ribbon menu",
"button-configure": "Konfigurovať",
"option-show-ribbon": "Show ribbon",
"option-show-ribbon-desc": "Display vertical toolbar on the side of the window.",
"label-additional-ribbon-items": "Iné páskové položky",
"label-modal-configuration": "Pásková konfigurácia",
"label-modal-configuration-desc": "Vyber položky, ktoré chceš, aby boli aktívne v páske. Pretiahni a pusť pre zmenu poradia.",
"option-show-view-header": "Zobraz záhlavie karty",
"option-show-view-header-desc": "Zobraz nadpis na vrchu každej karty.",
"msg-updates-found": "Nájdená {{count}} téma na aktualizáciu.",
"msg-updates-found_plural": "Nájdené {{count}} témy na aktualizáciu.",
"button-check-for-updates": "Skontrolovať aktualizácie",
"button-view-updates": "Zobraziť aktualizácie",
"button-update-all-themes": "Aktualizovať všetko",
"label-current-themes": "Terajšie komunitné témy",
"label-currently-installed": "Ty máš práve {{count}} tému naištalovanú.",
"label-currently-installed_plural": "Ty máš práve {{count}} témy naištalované."
},
"hotkeys": {
"name": "Klávesové skratky",
"option-search": "Vyhľadať klávesové skratky",
"option-search-desc": "Zobrazujem {{count}} klávesovú skratku.",
"option-search-desc_plural": "Zobrazujem {{count}} klávesové skratky.",
"option-search-conflict": "{{count}} príkaz s konfliktom.",
"option-search-conflict_plural": "{{count}} príkazy s konfliktami.",
"prompt-filter": "Filter...",
"tooltip-delete-hotkey": "Vymazať klávesovú skratku",
"label-waiting-for-hotkey-press": "Stlač klávesovú skratku...",
"label-show-all": "Všetko",
"label-show-unassigned": "Nepriradené",
"label-show-assigned": "Priradené",
"label-show-user-assigned": "Priradené mnou",
"tooltip-restore-default": "Obnoviť základné",
"tooltip-customize-command": "Prispôsobiť tento príkaz",
"tooltip-hotkey-single-conflict": "Táto klávesová skratka je v konflikte s \"{{command}}\"",
"tooltip-hotkey-multiple-conflicts": "Táto klávesová skratka je v konflikte s {{count}} ďaľšími príkazmi",
"label-blank-hotkey": "Prázdne"
},
"about": {
"name": "About",
"label-commercial-license": "Commercial license",
"label-license-key": "License key",
"license-key-placeholder": "Your license key...",
"label-activate-license": "Activate license",
"button-activate": "Activate",
"label-unknown-version": "Unknown",
"label-current-version": "Current version: ",
"label-install-version": "(Installer version: {{version}})",
"label-up-to-date": "Your app is up to date!",
"label-read-changelog": "Read the changelog.",
"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": "A new version is ready to be installed. ",
"label-relaunch-to-update": "Relaunch the app to update.",
"label-disabled-updates": "Updates are disabled.",
"label-checking-for-updates": "Checking for updates...",
"button-relaunch": "Relaunch",
"button-check-for-updates": "Check for updates",
"option-auto-update": "Automatic updates",
"option-auto-update-description": "Turn this off to prevent the app from checking for updates.",
"option-get-help": "Get help",
"option-get-help-description": "Get help on using Obsidian.",
"button-open": "Open",
"option-language": "Language",
"option-language-description": "Change the display language.",
"option-insider-build": "Receive insider builds",
"option-insider-build-description": "Auto-update to insider builds to try out new features. Note that these builds are bleeding edge and might be less stable.",
"option-advanced": "Advanced",
"option-hw-acceleration": "Hardware Acceleration",
"option-hw-acceleration-description": "Turns on Hardware Acceleration, which uses your GPU to make Obsidian smoother.",
"option-hw-acceleration-warning": "If you turn this off, app performance will be severely degraded.",
"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": "License",
"label-your-commercial-license-key": "Your commercial license key is \"{{key}}\".",
"label-commercial-license-info": "Registered to \"{{company}}\" for {{seats}} users. Valid until {{expiry}}.",
"label-validating-commercial-license": "Validating...",
"label-invalid-commercial-license": "License invalid: ",
"button-remove-commercial-license": "Remove",
"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": "Account",
"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.",
"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": "Log out",
"label-log-in": "Log in",
"label-sign-up": "Sign up",
"label-email": "Email",
"placeholder-email": "Your email...",
"label-password": "Password",
"placeholder-password": "Your password...",
"label-forgot-password": "Forgot password?",
"button-login": "Login",
"message-empty-email": "Email cannot be empty.",
"message-invalid-email": "Email is not valid.",
"message-empty-password": "Password cannot be empty.",
"message-login-failed": "Login failed, please double check your email and password.",
"label-no-account": "Don't have an account? ",
"link-sign-up-now": "Sign up now",
"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": "Third-party plugin",
"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": "Community plugins",
"option-browse-community-plugins-description": "Browse and install third-party plugins made by our amazing community.",
"button-browse": "Browse",
"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": "Search community plugins...",
"msg-failed-load-plugins": "Failed to load community plugins.",
"label-installed": "Installed",
"button-install": "Install",
"button-enable": "Enable",
"button-disable": "Disable",
"button-copy-share-link": "Copy share link",
"button-donate": "Donate",
"label-no-results-found": "No results found.",
"label-no-recent-files-found": "No recent files found. Type to search...",
"msg-failed-to-load-manifest": "Failed to load plugin manifest.",
"label-version": "Version: {{version}}",
"label-currently-installed-version": " (currently installed: {{version}})",
"label-by-author": "By ",
"label-repository": "Repository: ",
"label-last-update": "Last update: ",
"tooltip-view-last-update": "View the latest update",
"label-unsupported": "This plugin does not support your device.",
"button-update": "Update",
"label-no-readme": "This plugin did not provide a README file.",
"msg-installing-plugin": "Installing plugin \"{{name}}\"...",
"msg-failed-to-install-plugin": "Failed to install plugin \"{{name}}\".",
"msg-successfully-installed-plugin": "Successfully installed plugin \"{{name}}\".",
"label-installed-plugins": "Installed plugins",
"button-reload-plugins": "Reload plugins",
"msg-reloaded-third-party-plugins": "Reloaded third-party plugins.",
"label-uninstall": "Uninstall",
"label-uninstall-plugin": "Uninstall plugin",
"label-uninstall-plugin-confirmation": "Are you sure you want to uninstall this plugin? This will delete the folder of the plugin.",
"button-open-plugins-folder": "Open plugins folder",
"button-check-for-updates": "Check for updates",
"button-update-all-plugins": "Update all",
"label-current-plugins": "Current plugins",
"label-currently-installed": "You currently have {{count}} plugin installed.",
"label-currently-installed_plural": "You currently have {{count}} plugins installed.",
"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": "No plugin updates found.",
"msg-updates-found": "Found {{count}} plugin to update.",
"msg-updates-found_plural": "Found {{count}} plugins to update.",
"msg-update-plugin": "Update to version {{version}}",
"option-search-installed-plugin": "Search installed plugins",
"option-search-installed-plugin-description": "Filter installed plugins by name or description.",
"placeholder-search-installed-plugin": "Search installed plugins...",
"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": "Showing {{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...",
"quick-action-disabled": "None",
"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": "Nájsť",
"placeholder-replace": "Nahradiť",
"label-exit-search": "Opustiť vyhľadávanie",
"label-next": "Nasledujúci",
"label-previous": "Predchádzajúci",
"label-find-all": "Find all",
"label-replace": "Nahradiť",
"label-replace-all": "Nahradiť všetky"
},
"link-suggestion": {
"label-type-hash": "Zadajte #",
"label-link-heading": "na prepojenie nadpisu",
"label-type-block": "Zadajte ^",
"label-link-block": "na prepojenie bloku",
"label-type-pipe": "Zadajte |",
"label-change-display-text": "pre zmenu zobrazovaného textu",
"label-no-alias": "Display text",
"label-no-heading": "Heading",
"label-no-match-found": "Nenašla sa žiadna zhoda",
"label-image-size": "Image size: {{size}}px wide",
"label-accept": "to accept"
},
"spellcheck": {
"no-suggestion": "Žiadne návrhy...",
"add-to-dictionary": "Pridať do slovníka"
},
"menu": {
"edit-link": "Upraviť odkaz",
"edit-tag": "Edit tag",
"label-edit-block": "Edit this block"
},
"heading-suggestion": {
"label-no-heading": "Žiadny nadpis",
"label-heading-level": "Nadpis {{level}}"
},
"print-modal": {
"title": "Exportovať do PDF",
"caption": "Exportovať \"{{filename}}\" do PDF s nastaveniami nižšie.",
"setting-page-size": "Veľkosť strany",
"setting-page-size-a3": "A3",
"setting-page-size-a4": "A4",
"setting-page-size-a5": "A5",
"setting-page-size-legal": "Právnický",
"setting-page-size-letter": "List",
"setting-page-size-tabloid": "Bulvárny denník",
"setting-include-file-name": "Použiť názov súboru ako nadpis",
"setting-landscape": "Na šírku",
"setting-margin": "Okraj",
"setting-margin-default": "Predvolený",
"setting-margin-minimal": "Minimálny",
"setting-margin-none": "Žiadny",
"setting-downscale-percent": "Percentuálne zmenšenie",
"button-export-to-pdf": "Exportovať do PDF"
},
"link-popover": {
"tooltip-follow-link": "Nasledovať odkaz",
"tooltip-open-link": "Otvoriť odkaz",
"tooltip-search-tag": "Vyhľadať štítok"
}
},
"interface": {
"embed-cannot-find": "Cannot find:",
"embed-open-in-default-app-tooltip": "Open in default app",
"empty-sidebar": "The sidebar is empty, try dragging a pane here.",
"sidebar-expand": "Expand",
"sidebar-collapse": "Collapse",
"msg-fail-to-save-file": "Failed to save file \"{{filepath}}\". {{message}}.",
"msg-failed-to-load-plugin": "Failed to load plugin “{{plugin}}”",
"msg-failed-to-load-file": "Failed to open “{{filepath}}”",
"msg-failed-to-open-href": "Cannot open location “{{href}}”",
"no-file": "No file",
"msg-file-changed": "\"{{file}}\" has been modified externally, merging changes automatically.",
"switch-vault": "Open another vault",
"manage-vaults": "Manage vaults...",
"help": "Help",
"settings": "Settings",
"drag-to-rearrange": "Drag to rearrange",
"msg-switched-to-read": "Switched default view mode to reading view.",
"msg-switched-to-edit": "Switched default view mode to editor.",
"msg-upgrade-installer": "To use this feature, please re-install with latest installer available from our website.",
"tooltip-restore-default-settings": "Restore default settings",
"label-copy": "Copy to clipboard",
"label-copy-short": "Copy",
"copied_generic": "Copied to your clipboard",
"copied": "{{item}} copied to your clipboard",
"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",
"option-hide-ribbon": "Hide ribbon",
"msg-tab-busy": "This tab is currently busy, please try again later",
"formatting": {
"label-formatting": "Format",
"label-paragraph": "Paragraph",
"label-insert": "Insert",
"insert-link": "Add link",
"insert-external-link": "Add external link",
"insert-callout": "Callout",
"insert-horizontal-rule": "Horizontal rule",
"insert-code-block": "Code block",
"insert-math-block": "Math block",
"insert-table": "Table",
"toggle-bold": "Bold",
"toggle-code": "Code",
"toggle-comments": "Comment",
"toggle-highlight": "Highlight",
"toggle-italics": "Italic",
"toggle-strikethrough": "Strikethrough",
"toggle-math": "Math",
"toggle-bullet-list": "Bullet list",
"toggle-checklist": "Task list",
"toggle-numbered-list": "Numbered list",
"set-heading": "Heading {{level}}",
"no-heading": "Body",
"clear": "Clear formatting",
"toggle-quote": "Quote"
},
"empty-state": {
"no-file-open": "No file is open",
"create-new-file": "Create new file",
"go-to-file": "Go to file",
"see-recent-files": "See recent files",
"close": "Close",
"unknown-pane-title": "Plugin no longer active",
"unknown-pane-desc": "The plugin that created this pane ({{type}}) has gone away"
},
"menu": {
"edit-view": "Edit (Ctrl/Cmd+Click to edit in new pane)",
"read-view": "Current view: reading",
"ribbon": "Ribbon",
"left-sidebar": "Left sidebar",
"right-sidebar": "Right sidebar",
"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": "Find...",
"replace": "Replace...",
"edit": "Edit",
"remove": "Remove",
"rename": "Rename",
"preview": "Preview",
"more-options": "More options",
"close": "Close",
"close-all": "Close all",
"close-others": "Close others",
"close-right": "Close tabs to the right",
"pin": "Pin",
"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": "Delete file",
"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": "Copy 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": "Click to expand",
"click-to-collapse": "Click to collapse",
"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": "Open folder as vault",
"option-open-folder-as-vault-description": "Choose an existing folder of Markdown files.",
"option-create-vault": "Create new vault",
"option-create-vault-description": "Create a new Obsidian vault under a folder.",
"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": "Vault name",
"option-new-vault-name-description": "Pick a name for your awesome vault.",
"option-new-vault-location": "Location",
"option-new-vault-location-description": "Pick a place to put your new vault.",
"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...",
"option-copy-vault-i-d": "Copy vault ID",
"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": "Open",
"button-browse": "Browse",
"button-connect": "Connect",
"button-create-vault": "Create",
"button-back": "Back",
"msg-empty-vault-name": "Vault name cannot be empty.",
"msg-trailing-dot-vault-name": "Vault name cannot end with a dot.",
"msg-invalid-folder": "Please pick a valid folder.",
"msg-failed-to-create-vault": "Failed to create vault.",
"msg-failed-to-create-vault-at-location": "Could not create vault at the given location. Please double check the location and permission.",
"msg-error-failed-to-open-vault": "Failed to open.",
"msg-error-remove-current-open-vault": "Can't remove a currently open vault.",
"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."
},
"starter-content": {
"welcome-filename": "Welcome",
"welcome-file-content": "This is your new *vault*.\n\nMake a note of something, [[create a link]], or try [the Importer](https://help.obsidian.md/Plugins/Importer)!\n\nWhen you're ready, delete this note and make the vault your own."
},
"drag-and-drop": {
"insert-link-here": "Insert link here",
"insert-links-here": "Insert links here",
"move-into-folder": "Move into \"{{folder}}\"",
"star-this-file": "Star this file",
"star-these-files": "Star these files",
"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-insert-text-desc": "Add text to file:",
"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žiť aktuálny súbor",
"follow-cursor-link": "Otvoriť odkaz pod kurzorom",
"open-cursor-link-in-new-tab": "Otvoriť odkaz pod kurzorom na novej karte",
"open-cursor-link-to-the-right": "Otvoriť odkaz pod kurzorom napravo",
"open-cursor-link-in-new-window": "Otvoriť odkaz pod kurzorom v novom okne",
"navigate-tab-above": "Sústrediť na skupinu kariet nad",
"navigate-tab-below": "Sústrediť na skupinu kariet pod",
"navigate-tab-left": "Sústrediť na skupinu kariet vľavo",
"navigate-tab-right": "Sústrediť na skupinu kariet vpravo",
"toggle-pin": "Pripnúť/odopnúť",
"split-right": "Rozdeliť vpravo",
"split-down": "Rozdeliť dole",
"toggle-stacked-tabs": "Prepnúť nahromadené karty",
"navigate-back": "Navigovať späť",
"navigate-forward": "Navigovať vpred",
"use-dark-mode": "Použiť tmavý režim",
"use-light-mode": "Použiť svetlý režim",
"change-theme": "Zmeniť tému",
"search-current-file": "Hľadať v aktuálnom súbore",
"search-replace-current-file": "Hľadať a nahradiť v aktuálnom súbore",
"add-property": "Add file property",
"add-alias": "Add alias",
"edit-property": "Edit file property",
"clear-properties": "Clear file properties",
"open-settings": "Otvoriť nastavenia",
"open-help": "Otvoriť pomoc",
"toggle-edit": "Prepnúť režim úprav/čítania",
"toggle-source-mode": "Prepnúť režim náhľadu/zdroja",
"delete-current-file": "Vymazať aktuálny súbor",
"new-tab": "Nová karta",
"show-trash": "Show trash",
"close-all-tabs": "Zatvoriť všetky kary",
"close-active-tab": "Zatvoriť aktuálnu kartu",
"close-others-in-tab-group": "Close others in tab group",
"close-other-tabs": "Zatvoriť všetky ostatné kary",
"close-tab-group": "Close this tab group",
"toggle-left-sidebar": "Prepnúť ľavý bočný panel",
"toggle-ribbon": "Toggle ribbon",
"toggle-right-sidebar": "Prepnúť pravý bočný panel",
"toggle-default-new-tab-mode": "Prepnúť predvolený režim pre nové karty",
"add-cursor-above": "Add cursor above",
"add-cursor-below": "Add cursor below",
"focus-editor": "Sústrediť na editor",
"toggle-fold-properties": "Toggle fold properties in current file",
"toggle-fold": "Prepnúť zvinutie na aktuálnom riadku",
"fold-all": "Zvinúť všetko",
"unfold-all": "Rozvinúť všetko",
"fold-more": "Zvinúť viac",
"fold-less": "Zvinúť menej",
"swap-line-up": "Vymeniť s riadkom nad",
"swap-line-down": "Vymeniť s riadkom pod",
"remove-heading": "Vymazať nadpis",
"toggle-heading": "Nastaviť ako nadpis {{level}}",
"toggle-bold": "Tučné Písmo",
"toggle-italics": "Kurzíva",
"toggle-highlight": "Zvýraznenie",
"toggle-comments": "Komentár",
"clear-formatting": "Clear formatting",
"insert-link": "Vložiť odkaz",
"toggle-spellcheck": "Prepnúť kontrolu pravopisu",
"delete-paragraph": "Vymazať odstavec",
"toggle-checklist": "Zoznam úloh",
"cycle-list-checklist": "Prepnúť medzi odrážka/začiarkavacie políčko",
"insert-callout": "Vložiť popis",
"insert-code-block": "Insert code block",
"insert-math-block": "Insert math block",
"insert-horizontal-rule": "Insert horizontal rule",
"insert-table": "Insert table",
"edit-file-title": "Upraviť názov súboru",
"copy-path": "Skopírovať cestu k súvoru",
"copy-url": "Skopírovať obsidian url",
"export-pdf": "Exportovať do PDF",
"reload": "Reštartovať aplikáciu bez uloženia",
"undo-close-tab": "Vrátiť späť zatvorenie karty",
"context-menu": "Zobraziť kontextové menu pod kurzorom",
"show-debug-info": "Zobraziť informácie o ladení",
"open-sandbox-vault": "Open sandbox vault",
"always-on-top": "Prepnúť okno vždy navrchu",
"zoom-in": "Priblížiť",
"zoom-out": "Vzdialiť",
"reset-zoom": "Obnoviť priblíženie",
"toggle-preview": "Prepnúť režim úprav/náhľad",
"move-to-new-window": "Presunúť aktuálny panel do nového okna",
"open-in-new-window": "Otvoriť aktuálny panel v novom okne",
"rename-current-file": "Premenovať aktuálny súbor",
"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": "Toto ovplyvní {{links}} v {{files}}.",
"msg-updated-links": "{{links}} in {{files}} boli aktualizované.",
"label-update-links": "Aktualizovať odkazy",
"label-confirm-update-link-to-file": "Chcete aktualizovať interné odkazy, ktoré odkazujú na tento súbor?",
"button-always-update": "Aktualizovať vždy",
"button-just-once": "Len raz",
"button-do-not-update": "Neaktualizovať",
"label-confirm-deletion": "Naozaj chcete odstrániť \"{{filename}}\"?",
"label-move-to-system-trash": "Bude presunutý do systémového koša.",
"label-move-to-vault-trash": "Bude presunutý do Obsidian koša, ktorý sa nachádza v skrytom priečinku \".trash\" vášho trezora.",
"label-permanent-delete": "Súbor bude natrvalo odstránený.",
"label-non-empty-folder": "Tento priečinok nie je prázdny.",
"label-delete-folder-warning": "Ak budete pokračovať, všetky súbory v tomto priečinku budú odstránené.",
"label-delete-folder": "Odstrániť priečinok",
"button-delete": "Odstrániť",
"button-delete-do-not-ask-again": "Odstrániť a už sa nepýtať",
"label-do-not-ask-again": "Už sa nepýtať",
"label-existing-backlink": "Na túto poznámku momentálne odkazuje {{links}}.",
"label-existing-backlink_plural": "Na túto poznámku momentálne odkazujú(e) {{links}}.",
"label-delete-file": "Odstrániť súbor",
"button-manage": "Spravovať",
"button-cancel": "Zrušiť",
"button-done": "Hotovo",
"button-save": "Uložiť",
"button-stop": "Stop",
"button-continue": "Pokračovať",
"button-choose": "Choose",
"preparing-pdf": "Pripravuje sa PDF...",
"label-rename-file": "Premenovať súbor",
"label-rename-file-generic": "File name",
"label-new-name": "Nový názov",
"msg-rename-success": "Súbor bol úspešne premenovaný.",
"msg-merge-failed": "Failed to merge notes: {{message}}",
"msg-file-or-folder-not-found": "The file or folder “{{path}}” does not exist.",
"label-rename-heading": "Premenovať nadpis",
"label-rename-blockid": "Premenovať ID bloku"
},
"menu-items": {
"new-file": "Vytvoriť poznámku",
"new-file-to-the-right": "Nová poznámka na pravú stranu",
"new-window": "Nové okno",
"open-switcher": "Rýchlo otvoriť...",
"open-vault": "Otvoriť trezor...",
"close-tab": "Zatvoriť kartu",
"close-window": "Zatvoriť okno",
"find": "Hľadať",
"replace": "Nahradiť",
"insert-callout": "Popis",
"insert-markdown-link": "Markdown odkaz",
"insert-wikilink": "Odkaz",
"set-heading": "Nadpis {{level}}",
"no-heading": "Žiaden nadpis",
"insert-quote": "Vložiť citát",
"export-pdf": "Exportovať do PDF",
"insert-attachment": "Insert Attachment...",
"insert-codeblock": "Code Block",
"insert-math-block": "Math Block",
"insert-table": "Table",
"toggle-bullet-list": "Zoznam odrážok",
"toggle-numbered-list": "Číslovaný zoznam",
"toggle-checklist": "Zoznam úloh",
"toggle-bold": "Tučné Písmo",
"toggle-code": "Kód",
"toggle-comment": "Komentár",
"toggle-italics": "Kurzíva",
"toggle-inline-math": "Math",
"toggle-highlight": "Zvýraznenie",
"toggle-strikethrough": "Prečiarknutie",
"toggle-comments": "Komentár",
"folding-menu": "Folding",
"fold-all": "Zvinúť všetko",
"unfold-all": "Rozvinúť všetko",
"fold-more": "Zvinúť viac",
"fold-less": "Zvinúť menej",
"source-mode": "Režim zdroj",
"reading-view": "Pohľad na čítanie",
"show-debug-info": "Zobraziť informácie o ladení",
"open-sandbox": "Open Sandbox Vault",
"navigate-back": "Navigovať späť",
"navigate-forward": "Navigovať vpred",
"toggle-left-sidebar": "Prepnúť ľavý bočný panel",
"toggle-right-sidebar": "Prepnúť pravý bočný panel",
"toggle-ribbon": "Ribbon",
"split-right": "Rozdeliť vpravo",
"split-down": "Rozdeliť dole",
"release-notes": "Poznámky vydania"
},
"plugins": {
"name": "Doplnky",
"file-explorer": {
"name": "File explorer",
"desc": "See all the files in your vault.",
"action-open": "Open file explorer",
"action-show": "Show file explorer",
"action-create-note": "Create new note",
"action-create-folder": "Create new folder",
"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": "New note",
"action-new-folder": "New folder",
"action-change-sort": "Change sort order",
"action-reveal-file": "Reveal file in file explorer",
"action-reveal-active-file": "Reveal active file in file explorer",
"command-make-a-copy": "Make a copy of the current file",
"command-move-file": "Move file to another folder",
"action-move-file": "Move file to...",
"action-move-folder": "Move folder to...",
"action-move-items": "Move {{count}} items to...",
"prompt-type-folder": "Type a folder",
"label-no-folders": "No folders found.",
"instruction-navigate": "to navigate",
"instruction-move": "to move",
"instruction-create": "to create",
"instruction-dismiss": "to dismiss",
"label-sort-a-to-z": "Sort by file name (A to Z)",
"label-sort-z-to-a": "Sort by file name (Z to A)",
"label-sort-new-to-old": "Sort by edit time (new to old)",
"label-sort-old-to-new": "Sort by edit time (old to new)",
"label-sort-created-old-to-new": "Created time (old to new)",
"label-sort-created-new-to-old": "Created time (new to old)",
"menu-opt-new-note": "New note",
"menu-opt-new-folder": "New folder",
"menu-opt-rename": "Rename",
"menu-opt-delete": "Delete",
"menu-opt-make-copy": "Make a copy",
"msg-invalid-characters": "File name cannot contain any of the following characters: ",
"msg-unsafe-characters": "Links will not work with file names containing any of these characters: ",
"msg-file-already-exists": "There's already a file with the same name",
"msg-empty-file-name": "File name cannot be empty.",
"msg-bad-dotfile": "File name must not start with a dot.",
"tooltip-modified-time": "Last modified at {{time}}",
"tooltip-created-time": "Created at {{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": "Search",
"desc": "Search for keyword in all the notes.",
"action-open-search": "Search in all files",
"label-collapse-results": "Collapse results",
"label-match-case": "Match case",
"label-explain-search-term": "Explain search term",
"label-more-context": "Show more context",
"label-result-count": "{{count}} result",
"label-result-count_plural": "{{count}} results",
"label-toggle-search-settings": "Search settings",
"prompt-start-search": "Type to start search...",
"label-match-text": "Matches text: ",
"label-match-regex": "Matches regex: ",
"label-match-exact-text": "Contains exact text: ",
"label-match-greater-than": "Greater than: ",
"label-match-less-than": "Less than: ",
"label-match-true": "Is true",
"label-match-false": "Is false",
"label-match-empty": "Is empty",
"label-match-property": "Contains property:",
"label-match-all": "Match all of: ",