forked from obsidianmd/obsidian-translations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvi.json
1299 lines (1299 loc) · 72.8 KB
/
vi.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": "Tùy chọn",
"plugin": "Trình cắm",
"builtin-plugins": "Trình cắm cốt lõi",
"plugin-options": "Tùy chọn trình cắm",
"folder-path-example-placeholder": "Ví dụ: folder 1/folder 2",
"file-path-example-placeholder": "Ví dụ: folder/notes",
"editor": {
"name": "Trình soạn thảo",
"option-spellcheck": "Kiểm tra chính tả",
"option-spellcheck-description": "Bật kiểm tra chính tả. Hiện tại chỉ hỗ trợ Tiếng Anh (Hoa Kỳ).",
"spellcheck-dict": "Từ điển kiểm tra chính tả",
"spellcheck-dict-empty": "Từ điển kiểm tra chính tả rỗng.",
"option-readable-line-length": "Độ dài đọc được của dòng",
"option-readable-line-description": "Giới hạn độ dài tối đa của dòng. Chứa ít nội dung hơn trên màn hình, nhưng giúp các đoạn văn dễ đọc hơn.",
"option-strict-line-break": "Ngắt dòng tuyệt đối",
"option-strict-line-break-description": "Trong chế độ xem trước, bỏ qua các ngắt dòng đơn dựa trên Markdown tiêu chuẩn. Tắt tính năng này để hiển thị ngắt dòng đơn trong chế độ xem trước.",
"option-show-frontmatter": "Hiển thị frontmatter",
"option-show-frontmatter-description": "Trong chế độ xem trước, hiển thị frontmatter dưới dạng khối mã. Tắt để không hiển thị frontmatter.",
"option-auto-pair-brackets": "Tự động đóng ngoặc",
"option-auto-pair-brackets-description": "Tự động đóng các dấu ngoặc đơn và ngoặc kép.",
"option-auto-pair-markdown": "Tự động đóng cú pháp Markdown",
"option-auto-pair-markdown-description": "Tự động đóng các cú pháp in đậm, in nghiêng, highlight, gạch ngang, và đoạn mã.",
"option-smart-indent-lists": "Thụt đầu dòng thông minh",
"option-smart-indent-lists-description": "Tự động thụt đầu dòng và quản lý các dấu gạch đầu dòng cho bạn.",
"option-fold-heading": "Thu gọn đề mục",
"option-fold-heading-description": "Cho phép bạn thu gọn nội dung bên dưới các đề mục.",
"option-fold-indent": "Thu gọn thụt đầu dòng",
"option-fold-indent-description": "Cho phép bạn thu gọn các phần có thụt đầu dòng bằng nhau, ví dụ như danh sách.",
"option-default-new-pane-mode": "Chế độ mặc định trong khung mới",
"option-default-new-pane-mode-description": "Chế độ mặc định khi mở một khung mới.",
"option-default-new-pane-mode-source": "Trình soạn thảo",
"option-default-new-pane-mode-preview": "Xem trước",
"option-show-line-number": "Hiển thị số dòng",
"option-show-line-number-description": "Hiển thị số dòng ở lề.",
"option-use-tabs": "Dùng tab",
"option-use-tabs-description": "Thụt đầu dòng bằng tab khi nhấn nút \"Tab\". Tắt để dùng khoảng trắng thay cho tab.",
"option-tab-size": "Kích thước tab",
"option-tab-size-description": "Số khoảng trắng tương đương với một tab.",
"option-line-wrap": "Xuống dòng",
"option-line-wrap-description": "Xuống các dòng dài để vừa với cửa sổ, không cần phải cuộn từ trái sang phải.",
"option-auto-convert-html": "Tự động chuyển đổi HTML",
"option-auto-convert-html-description": "Tự động chuyển đổi HTML sang Markdown khi dán và kéo-thả từ các trang web. Dùng Ctrl/Cmd+Shift+V để dán mà không qua chuyển đổi.",
"option-vim-key-bindings": "Hệ thống phím Vim",
"option-vim-key-bindings-description": "Cho phép dùng hệ thống phím Vim trong trình soạn thảo.",
"option-emacsy-keys": "Hệ thống phím Emacs kiểu cũ cho macOS",
"option-emacsy-keys-description": "Cho phép sử dụng các phím điều hướng bổ sung kiểu Emacs, là tiêu chuẩn trên macOS, nhưng có thể gây trở ngại cho một số thao tác phím.",
"label-confirm-enable-vim": "Xác nhận vào chế độ Vim",
"label-vim-warning": "Chế độ Vim có thể giúp soạn thảo văn bản hiệu quả nhưng cũng có thể gây phản trực giác. Nếu bạn không quen làm việc với Vim, tùy chọn này có thể sẽ khiến Obsidian trông như bị hỏng.",
"label-vim-test": "Để xác nhận bạn biết cách sử dụng Vim, vui lòng nhập lệnh để thoát Vim mà không lưu:",
"label-vim-your-answer": "Câu trả lời của bạn",
"placeholder-enter-command": "Nhập lệnh...",
"button-confirm-enable-vim": "Kích hoạt Vim cho tôi",
"msg-vim-mode-enabled": "Lệnh nhập đúng. Chế độ Vim đã được kích hoạt.",
"msg-vim-mode-not-enabled": "Lệnh nhập sai. Chế độ Vim vẫn được vô hiệu hóa để bảo vệ bạn.",
"msg-vim-mode-please-enter-command": "vui lòng nhập lệnh để kích hoạt chế độ Vim"
},
"file": {
"name": "Tập tin & Liên kết",
"option-confirm-file-deletion": "Xác nhận xóa tập tin",
"option-confirm-file-deletion-description": "Bạn có muốn được hỏi xác nhận xóa tập tin không.",
"option-delete-destination": "Các tập tin bị xóa",
"option-delete-destination-description": "Làm gì với các tập tin sau khi bị bạn xóa.",
"option-choice-system-trash": "Chuyển vào thùng rác hệ thống",
"option-choice-vault-trash": "Chuyển vào thùng rác Obsidian (thư mục .trash)",
"option-choice-permanent-delete": "Xóa vĩnh viễn",
"option-always-update-links": "Luôn luôn cập nhật liên kết nội bộ",
"option-always-update-links-description": "Bạn muốn tự động cập nhật liên kết hay hiển thị thông báo mỗi khi đổi tên tập tin.",
"option-new-note-location": "Vị trí mặc định cho tập tin mới",
"option-new-note-location-description": "Vị trí tạo các ghi chú mới. Thiết lập của các phần mở rộng sẽ tiếm quyền tùy chọn này.",
"option-choice-vault-root": "Thư mục gốc của kho trữ",
"option-choice-current-folder": "Cùng thư mục chứa tập tin",
"option-choice-specified-folder": "Trong thư mục chỉ định bên dưới",
"option-new-file-folder-path": "Thư mục chứa ghi chú mới tạo",
"option-new-file-folder-path-description": "Các ghi chú mới tạo sẽ xuất hiện bên trong thư mục này. Thiết lập của các phần mở rộng sẽ tiếm quyền tùy chọn này.",
"option-use-wiki-links": "Dùng [[Liên kết kiểu Wiki]]",
"option-use-wiki-links-description": "Tự động khởi tạo Liên kết kiểu Wiki cho [[liên kết]] và ![[hình ảnh]] thay vì liên kết và hình ảnh Markdown. Tắt tùy chọn này để dùng liên kết Markdown.",
"option-show-unsupported-files": "Phát hiện mọi phần mở rộng",
"option-show-unsupported-files-description": "Hiển thi tập tin có bất kì phần mở rộng ngay cả khi Obsidian không thể mở, bạn vẫn có thể liên kết chúng và xem được trong Quản Lý Tập Tin và Trình Chuyển Nhanh.",
"option-link-autocompleted-format": "Định dạng liên kết mới",
"option-link-autocompleted-format-description": "Chèn liên kết nào khi tự động khởi tạo liên kết nội bộ.",
"option-choice-shortest-linktext": "Đường dẫn ngắn nhất có thể",
"option-choice-relative-path": "Đường dẫn tương đối đến tập tin",
"option-choice-absolute-path": "Đường dẫn tuyệt đối trong kho trữ",
"option-new-attachment-location": "Vị trí mặc định cho tập tin đính kèm",
"option-new-attachment-location-description": "Vị trí chứ cấc tập tin đính kèm mới thêm vào.",
"option-choice-subdirectory": "Trong thư mục con bên dưới thư mục hiện tại",
"option-attachment-folder-path": "Đường dẫn thư mục chứa tập tin đính kèm",
"option-attachment-folder-path-description": "Các tập tin đính kèm mới tạo sẽ xuất hiện ở đây. Bao gồm các hình ảnh được kéo-thả hoặc dán vào, và các bản thu âm.",
"option-attachment-subfolder-path": "Tên thư mục con",
"option-attachment-subfolder-path-description": "Nếu tập tin của bạn nằm trong \"vault/folder\", và bạn đặt tên thư mục con là \"attachment\", tập tin đính kèm sẽ được lưu vào \"vault/folder/attachment\".",
"option-attachment-subfolder-path-placeholder": "attachment"
},
"appearance": {
"name": "Diện mạo",
"option-base-theme": "Chủ đề chính",
"option-base-theme-description": "Chọn hệ thống màu sắc mặc định cho Obsidian.",
"dark-theme": "Tối",
"light-theme": "Sáng",
"option-use-obsidian-css": "Áp dụng CSS tùy chỉnh",
"option-use-obsidian-css-description": "Đọc và áp dụng “obsidian.css” trong thư mục kho trữ. Đây là thiết lập cũ, vui lòng di chuyển tập tin CSS tùy chỉnh vào thư mục snippet bên dưới.",
"option-community-themes": "Mở chủ đề cộng đồng",
"option-community-themes-description": "Xem trước và sử dụng các chủ đề tuyệt đẹp được tạo bởi cộng đồng.",
"button-browse-community-themes": "Duyệt",
"option-font-size": "Kích cỡ chữ",
"option-font-size-description": "Kích cỡ chữ (đơn vị pixel) ảnh hưởng đến trình soạn thảo và xem trước.",
"option-font-size-action": "Chỉnh nhanh kích cỡ chữ",
"option-font-size-action-description": "Chỉnh kích cỡ chữ bằng Ctrl + Cuộn chuột giữa, hoặc sử dụng hai ngón tay để phóng to trên trackpad.",
"option-themes": "Chủ đề",
"option-theme": "Chủ đề",
"option-theme-description": "Chọn chủ đề để sử dụng. Chủ đề được lưu trong \"vault/.obsidian/themes/\".",
"option-choice-none": "Không",
"button-reload-themes": "Tải lại chủ đề",
"msg-reloaded-themes": "Chủ đề CSS tùy chỉnh đã được tải lại.",
"button-open-themes-folder": "Mở thư mục chủ đề",
"option-css-snippets": "CSS snippets",
"label-no-css-snippets-found": "Không có CSS snippets nào được tìm thấy trong thư mục snippets.",
"no-snippet-description": "CSS Snippets được lưu trong \"{{path}}\".",
"button-reload-snippets": "Tải lại snippets",
"button-open-snippets-folder": "Mở thư mục snippets",
"msg-reloaded-snippets": "CSS snippets đã được tải lại.",
"option-toggle-snippet-description": "Áp dụng CSS snippet trong \"{{path}}\"."
},
"hotkeys": {
"name": "Phím tắt",
"prompt-filter": "Bộ lọc...",
"tooltip-delete-hotkey": "Xóa phím tắt",
"label-waiting-for-hotkey-press": "Bấm tổ hợp phím...",
"tooltip-restore-default": "Phục hồi mặc định",
"tooltip-customize-command": "Tùy chỉnh lệnh này",
"tooltip-hotkey-single-conflict": "Phím tắt này xung đột với lệnh \"{{command}}\"",
"tooltip-hotkey-multiple-conflicts": "Phím tắt này xung đột với {{count}} lệnh khác",
"label-blank-hotkey": "Rỗng"
},
"about": {
"name": "Thông tin",
"label-license-key": "Key bản quyền",
"license-key-placeholder": "Key bản quyền của bạn...",
"label-enter-commercial-license": "Vui lòng nhập key bản quyền thương mại của bạn:",
"label-activate-license": "Kích hoạt bản quyền",
"button-activate": "Kích hoạt",
"label-unknown-version": "Không rõ",
"label-current-version": "Phiên bản hiện tại: ",
"label-install-version": "(Phiên bản bộ cài đặt: {{version}})",
"label-up-to-date": "Ứng dụng của bạn là phiên bản mới nhất!",
"label-read-changelog": "Xem changelog.",
"label-manual-install-required": "Bạn phải cài đặt phiên bản mới nhất một cách thủ công.",
"label-download-link": "Tải ở đây.",
"label-new-version-ready": "Một phiên bản mới đã sẵn sàng để cài đặt. ",
"label-relaunch-to-update": "Khởi động lại ứng dụng để cập nhật.",
"label-disabled-updates": "Cập nhật bị vô hiệu hóa.",
"label-checking-for-updates": "Đang kiểm tra cập nhật...",
"button-relaunch": "Khởi động lại",
"button-check-for-updates": "Kiểm tra cập nhật",
"option-auto-update": "Tự động cập nhật",
"option-auto-update-description": "Tắt để ngăn ứng dụng tự động cập nhật.",
"option-open-help": "Trợ giúp Obsidian",
"option-open-help-description": "Mở tài liệu trợ giúp.",
"button-open": "Mở",
"option-language": "Ngôn ngữ",
"option-language-description": "Thày đổi ngôn ngữ hiển thị.",
"option-insider-build": "Nhận bản cập nhật insider",
"option-insider-build-description": "Tự động cập nhật phiên bản insider để thử nghiệm các tính năng mới. Lưu ý các bản nội bộ này rất mới và có thể sẽ không ổn định.",
"option-advanced": "Nâng cao",
"option-hw-acceleration": "Tăng tốc phần cứng",
"option-hw-acceleration-description": "Bật Tăng tốc phần cứng sẽ sử dụng GPU của bạn để làm Obsidian mượt hơn.",
"option-hw-acceleration-warning": "Nếu bạn tắt tính năng này, hiệu năng của ứng dụng sẽ giảm sút trầm trọng.",
"option-config-location": "Tiếm quyền thư mục cấu hình",
"option-config-location-description": "Sử dụng thư mục cấu hình khác thư mục mặc định. Tên thư mục phải bắt đầu bằng dấu chấm.",
"option-config-location-warning": "Vị trí thư mục cấu hình phải là một thư mục có tên hợp lệ (tên bắt đầu bằng dấu chấm).",
"label-license": "Bản quyền",
"label-your-commercial-license": "Key bản quyền thương mại của bạn là ",
"label-commercial-license-info": "\"{{company}}\" đã đăng ký cho {{seats}} người dùng. Có giá trị đến {{expiry}}.",
"label-validating-commercial-license": "Đang xác thực...",
"label-invalid-commercial-license": "Bản quyền không hợp lệ: ",
"button-activate-commercial-license": "Kíc hhoajt bản quyền thương mại",
"label-personal-license": " bản quyền cá nhân. ",
"label-thank-you-for-support": "Cảm ơn bạn đã ủng hộ!",
"label-free-personal-license": "Bản quyền cá nhân: miễn phí cho mục đích cá nhân."
},
"account": {
"name": "Tài khoản",
"label-welcome": "Chào mừng, {{name}}!",
"label-your-account-email": "Tài khoản của bạn là ",
"label-insider": "insider",
"label-supporter": "supporter",
"label-vip": "VIP",
"label-role-text": "Bạn là một {{- role}}!",
"label-insider-build-access": "Cảm ơn bạn đã ủng hộ. Bạn có thể truy cập các bản insider của chúng tôi.",
"label-action-suggestion": "Có thể bạn muốn...",
"button-get-commercial-license": "Mua bản quyền thương mại",
"button-get-catalyst-license": "Ủng hộ Obsidian bằng Obsidian Catalyst",
"button-check-for-catalyst-license": "Kiểm tra Obsidian Catalyst của bạn",
"button-upgrade-catalyst-license": "Nâng cấp lên gói cao hơn",
"button-log-out": "Đăng xuất",
"label-log-in": "Đăng nhập",
"label-email": "Email",
"placeholder-email": "Email của bạn...",
"label-password": "Mật khẩu",
"placeholder-password": "Mật khẩu của bạn...",
"button-login": "Đăng nhập",
"message-empty-email": "Email không được để trống.",
"message-invalid-email": "Email không hợp lệ.",
"message-empty-password": "Password không được để trống.",
"message-login-failed": "Đăng nhập thất bại, vui lòng kiểm tra lại email và mật khẩu.",
"label-no-account": "Bạn không có tài khoản ư? ",
"link-sign-up-now": "Đăng ký ngay",
"message-get-community-badges": "Đối với huy hiệu cộng đồng, vui lòng gửi email đến [email protected] nếu bạn chưa nhận được chúng trong 24h sau khi nhận được bản quyền của bạn.",
"message-obtain-commercial-license": "Để nhận bản quyền thương mại, truy cập {{pricingPageLink}}."
},
"core-plugin": {
"plugin-list": "Danh sách trình cắm",
"option-search-plugin": "Tìm kiếm trình cắm cốt lõi",
"option-search-plugin-description": "Lọc trình cắm theo tên hoặc mô tả.",
"placeholder-search-plugin": "Tìm kiếm trình cắm..."
},
"third-party-plugin": {
"name": "Trình cắm bên thứ ba",
"option-safe-mode": "Chế độ an toàn",
"option-safe-mode-description-on": "Chế độ an toàn BẬT. Mọi trình cắm cộng đồng bị vô hiệu hóa.",
"option-safe-mode-description-off": "Chế độ an toàn TẮT. Trình cắm cộng đồng có thể được kích hoạt.",
"option-browse-community-plugins": "Trình cắm cộng đồng",
"option-browse-community-plugins-description": "Duyệt và cài đặt các trình cắm bên thứ ba được tạo ra bởi cộng đồng người dùng.",
"button-browse": "Duyệt",
"label-third-party-plugin-warning": "Trình cắm bên thứ ba có thể truy cập vào tập tin trên máy tính của bạn, kết nối vào internet, và cài đặt các chương trình bổ sung.",
"label-disable-safe-mode-confirmation": "Bạn có muốn vô hiệu hóa Chế độ an toàn để cho phép chạy các trình cắm này?",
"button-keep-safe-mode": "Giữ Chế độ an toàn bật",
"button-disable-safe-mode": "Tắt Chế độ an toàn",
"label-select-a-plugin": "Chọn một trình cắm để cài đặt hoặc tìm hiểu thêm về nó.",
"placeholder-community-plugins": "Tìm kiếm trình cắm cộng đồng...",
"msg-failed-load-plugins": "Tải trình cắm cộng đồng thất bại.",
"label-installed": "Đã cài đặt",
"tooltip-downloaded-times": "Đã được tải về {{count}} lần",
"tooltip-downloaded-times_plural": "Đã được tải về {{count}} lần",
"button-install": "Cài đặt",
"button-enable": "Kích hoạt",
"button-disable": "Vô hiệu hóa",
"label-no-results-found": "Không tìm thấy kết quả.",
"msg-failed-to-load-manifest": "Tải thông tin trình cắm thất bại.",
"label-version": "Phiên bản: {{version}}",
"label-currently-installed-version": " (hiện tại đã cài đặt: {{version}})",
"label-by-author": "Bởi ",
"label-repository": "Kho lưu trữ: ",
"label-unsupported": "Trình cắm này không hỗ trợ thiết bị của bạn.",
"button-update": "Cập nhật",
"label-no-readme": "Trình cắm này không cung cấp một tập tin README.",
"msg-installing-plugin": "Đang cài đặt trình cắm \"{{name}}\"...",
"msg-failed-to-install-plugin": "Cài đặt trình cắm \"{{name}}\" thất bại.",
"msg-successfully-installed-plugin": "Cài đặt trình cắm \"{{name}}\" thành công.",
"label-installed-plugins": "Các trình cắm đã cài đặt",
"button-reload-plugins": "Tải lại trình cắm",
"msg-reloaded-third-party-plugins": "Trình cắm bên thứ ba đã được tải lại.",
"label-uninstall": "Gỡ cài đặt",
"label-uninstall-plugin": "Gỡ cài đặt trình cắm",
"label-uninstall-plugin-confirmation": "Bạn chắc chắn muốn gỡ cài đặt trình cắm này chứ? Việc này sẽ xóa thư mục chưa trình cắm.",
"button-open-plugins-folder": "Mở thư mục trình cắm",
"button-check-for-updates": "Kiểm tra cập nhật",
"button-update-all-plugins": "Cập nhật tất cả",
"label-current-plugins": "Các trình cắm hiện tại",
"label-currently-installed": "Hiện tại bạn có {{count}} trình cắm được cài đặt.",
"label-currently-installed_plural": "Hiện tại bạn có {{count}} trình cắm được cài đặt.",
"msg-no-updates-found": "Không có cập nhật cho trình cắm.",
"msg-updates-found": "Tìm thấy {{count}} cập nhật cho trình cắm.",
"msg-updates-found_plural": "Tìm thấy {{count}} cập nhật cho trình cắm.",
"msg-update-plugin": "Cập nhật lên phiên bản {{version}}",
"option-search-installed-plugin": "Tìm kiếm các trình cắm đã cài đặt",
"option-search-installed-plugin-description": "Lọc trình cắm đã cầi đặt theo tên hoặc mô tả.",
"placeholder-search-installed-plugin": "Tìm kiếm trình cắm đã cài đặt...",
"label-sort-downloads-high-to-low": "Số lượt tải về (cao đến thấp)",
"label-sort-downloads-low-to-high": "Số lượt tải về (thấp đến cao)",
"label-sort-release-date-new-to-old": "Thời điểm phát hành đầu tiên (mới đến cũ)",
"label-sort-release-date-old-to-new": "Thời điểm phát hành đầu tiên (cũ đến mới)",
"label-sort-alphabetical": "Tên trình (A đến Z)",
"label-sort-alphabetical-reverse": "Tên trình cắm (Z đến A)",
"label-search-summary": "Đang hiển thị {{pluginCount}}:"
},
"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-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": {
"label-previous": "Prev",
"label-next": "Next",
"label-all": "All",
"label-exit-search": "Exit search",
"label-replace": "Replace",
"label-replace-all": "Replace all",
"key-enter": "Enter",
"key-shift-f3": "Shift + F3",
"key-enter-or-f3": "Enter or F3"
},
"link-suggestion": {
"label-type-hash": "Type #",
"label-link-heading": "to link heading",
"label-type-block": "Type ^",
"label-link-block": "to link blocks",
"label-type-pipe": "Type |",
"label-change-display-text": "to change display text",
"label-no-match-found": "No match found"
},
"spellcheck": {
"no-suggestion": "No suggestions...",
"add-to-dictionary": "Add to dictionary"
},
"print-modal": {
"title": "Export to PDF",
"caption": "Export \"{{filename}}\" to PDF with the setting below.",
"setting-page-size": "Page size",
"setting-page-size-a3": "A3",
"setting-page-size-a4": "A4",
"setting-page-size-a5": "A5",
"setting-page-size-legal": "Legal",
"setting-page-size-letter": "Letter",
"setting-page-size-tabloid": "Tabloid",
"setting-landscape": "Landscape",
"setting-margin": "Margin",
"setting-margin-default": "Default",
"setting-margin-minimal": "Minimal",
"setting-margin-none": "None",
"setting-downscale-percent": "Downscale percent",
"button-export-to-pdf": "Export to PDF"
},
"link-popover": {
"tooltip-follow-link": "Follow link",
"tooltip-open-link": "Open link",
"tooltip-search-tag": "Search tag"
}
},
"interface": {
"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}}.",
"no-file": "No file",
"msg-file-changed": "\"{{file}}\" has been modified externally, merging changes automatically.",
"switch-vault": "Open another vault",
"help": "Help",
"settings": "Settings",
"drag-to-rearrange": "Drag to rearrange",
"msg-switched-to-preview": "Switched default view mode to preview.",
"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",
"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.",
"label-enter-to-create": "Enter to create",
"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"
},
"menu": {
"edit-view": "Edit (Ctrl/Cmd+Click to edit in new pane)",
"preview-view": "Preview (Ctrl/Cmd+Click to open in new pane)",
"find": "Find...",
"replace": "Replace...",
"edit": "Edit",
"preview": "Preview",
"more-options": "More options",
"close": "Close",
"pin": "Pin",
"unlink-pane": "Unlink pane",
"link-pane": "Link with pane...",
"delete-file": "Delete file",
"open-in-new-pane": "Open in new pane",
"copy-url": "Copy url",
"close-current-pane": "Close current pane",
"copy": "Copy",
"cut": "Cut",
"paste": "Paste",
"paste-as-plain-text": "Paste as plain text",
"select-all": "Select all",
"rename-heading": "Rename this heading..."
},
"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",
"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-open-help-vault": "Open help vault",
"option-open-help-vault-description": "Open a \"Demo & Help\" 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.",
"button-open": "Open",
"button-help": "Help",
"button-browse": "Browse",
"button-create-vault": "Create",
"button-back": "Back",
"msg-empty-vault-name": "Vault name cannot be empty.",
"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."
},
"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-pane": "Open in this pane"
},
"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-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}}"
}
},
"commands": {
"save-file": "Save current file",
"follow-cursor-link": "Follow link under cursor",
"open-cursor-link-in-new-pane": "Open link under cursor in new pane",
"navigate-pane-above": "Focus on pane above",
"navigate-pane-below": "Focus on pane below",
"navigate-pane-left": "Focus on pane to the left",
"navigate-pane-right": "Focus on pane to the right",
"toggle-pin": "Toggle pin",
"split-vertically": "Split vertically",
"split-horizontally": "Split horizontally",
"navigate-back": "Navigate back",
"navigate-forward": "Navigate forward",
"use-dark-mode": "Use dark mode",
"use-light-mode": "Use light mode",
"search-current-file": "Search current file",
"search-replace-current-file": "Search & replace in current file",
"open-settings": "Open settings",
"open-help": "Open help",
"toggle-preview": "Toggle edit/preview mode",
"delete-current-file": "Delete current file",
"close-active-pane": "Close active pane",
"close-other-panes": "Close all other panes",
"toggle-left-sidebar": "Toggle left sidebar",
"toggle-right-sidebar": "Toggle right sidebar",
"toggle-default-new-pane-mode": "Toggle default new pane mode",
"focus-editor": "Focus on editor",
"toggle-fold": "Toggle fold on the current line",
"fold-all": "Fold all headings and lists",
"unfold-all": "Unfold all headings and lists",
"swap-line-up": "Swap line up",
"swap-line-down": "Swap line down",
"toggle-bold": "Toggle bold for selection",
"toggle-italics": "Toggle italics for selection",
"toggle-highlight": "Toggle highlight for selection",
"toggle-comments": "Toggle comments for selection",
"insert-link": "Insert link",
"toggle-spellcheck": "Toggle spellcheck",
"delete-paragraph": "Delete paragraph",
"toggle-checklist": "Toggle checklist status",
"edit-file-title": "Edit file title",
"copy-path": "Copy file path",
"copy-url": "Copy obsidian url",
"export-pdf": "Export to PDF",
"reload": "Reload app without saving"
},
"dialogue": {
"label-link-affected": "This will affect {{links}} in {{files}}.",
"msg-updated-links": "Updated {{links}} in {{files}}.",
"label-update-links": "Update links",
"label-confirm-update-link-to-file": "Do you want to update internal links that link to this file?",
"button-always-update": "Always update",
"button-just-once": "Just once",
"button-do-not-update": "Do not update",
"label-confirm-deletion": "Are you sure you want to delete \"{{filename}}\"?",
"label-move-to-system-trash": "It will be moved to your system trash.",
"label-move-to-vault-trash": "It will be moved to your Obsidian trash, which is located in the \".trash\" hidden folder in your vault.",
"label-permanent-delete": "The file will be permanent deleted.",
"label-non-empty-folder": "This folder is not empty.",
"label-delete-folder-warning": "If you continue, all files inside this folder will be deleted.",
"label-delete-folder": "Delete folder",
"button-delete": "Delete",
"button-delete-do-not-ask-again": "Delete and don't ask again",
"label-existing-backlink": "There are currently {{links}} pointing to this note.",
"label-delete-file": "Delete file",
"button-cancel": "Cancel",
"button-done": "Done",
"preparing-pdf": "Preparing PDF...",
"label-rename-file": "Rename file",
"label-new-name": "New name",
"msg-rename-success": "Successfully renamed file.",
"label-rename-heading": "Rename heading"
},
"plugins": {
"name": "Plugins",
"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-note-in-new-pane": "Create note in new pane",
"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-move-file": "Move file to another folder",
"action-move-file": "Move file to...",
"action-move-folder": "Move folder to...",
"prompt-type-folder": "Type a folder",
"label-no-folders": "No folders found.",
"instruction-navigate": "to navigate",
"instruction-move": "to move",
"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-set-attachment-folder": "Set as attachment 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.",
"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",
"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-all": "Match all of: ",
"label-match-any": "Match any of: ",
"label-excluding": "Excluding: ",
"label-case-sensitive": "Case sensitive",
"label-case-insensitive": "Case insensitive",
"label-match-file-path": "Match file path: ",
"label-match-file-name": "Match file name: ",
"label-match-content": "Match file content: ",
"label-match-task": "Match task: ",
"label-match-task-todo": "Match task (todo): ",
"label-match-task-done": "Match task (done): ",
"label-match-line": "Match line: ",
"label-match-block": "Match block: ",
"label-match-section": "Match section: ",
"label-match-tag": "Match tag: ",
"label-no-matches": "No matches found.",
"matches-with-count": "... and {{count}} more match.",
"matches-with-count_plural": "... and {{count}} more matches.",
"label-copy-search-results": "Copy search results",
"button-copy-results": "Copy results",
"msg-successfully-copied": "Results copied to your clipboard.",
"option-show-path": "Show path",
"option-show-path-description": "Display full path of the file rather than just the file name.",
"option-link-style": "Link style",
"option-link-style-description": "Optionally turn each file result in to a link.",
"option-choice-link-style-none": "None",
"option-choice-link-style-wikilink": "Wikilink",
"option-choice-link-style-markdown-link": "Markdown link",
"option-list-prefix": "List prefix",
"option-list-prefix-description": "Optionally add a list item prefix to each file result.",
"option-choice-list-style-none": "None",
"option-choice-list-style-dash": "Dash (-)",
"option-choice-list-style-asterisk": "Asterisk (*)",
"option-choice-list-style-numbered": "Numbered",
"tooltip-clear-search": "Clear search",
"label-search-options": "Search options",
"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",
"menu-opt-search-for": "Search for \"{{keyword}}\""
},
"quick-switcher": {
"name": "Quick switcher",
"desc": "Jump to any files without leaving your keyboard. Ctrl/Cmd+O to activate.",
"short-name": "Switcher",
"action-open": "Open quick switcher",
"instruction-navigate": "to navigate",
"instruction-open": "to open",
"instruction-open-in-new-pane": "to open in new pane",
"instruction-create": "to create",
"instruction-dismiss": "to dismiss",
"label-no-note-create-new": "No notes found. Enter to create a new one.",
"prompt-type-file-name": "Type file to switch to or create...",
"label-enter-to-create": "Enter to create",
"tooltip-not-created-yet": "Not created yet, select to create",
"option-show-existing-only": "Show existing only",
"option-show-existing-only-description": "Whether to show links to files that are not yet created.",
"option-show-attachments": "Show attachments",
"option-show-attachments-desc": "Show attachment files like images, videos, and PDFs.",
"option-show-all-file-types": "Show all file types",
"option-show-all-file-types-desc": "Show all files including ones that Obsidian can't open. The file will be opened with the default app for that file type."
},
"graph-view": {
"name": "Graph view",
"desc": "See a graph overview of which notes link to which.",
"action-open": "Open graph view",
"action-open-local": "Open local graph",
"action-copy-screenshot": "Copy screenshot",
"tab-title": "Graph of {{displayText}}",
"label-filters": "Filters",
"prompt-filter-nodes": "Search files...",
"option-depth": "Depth",
"option-depth-description": "Show nodes this number of links away",
"option-neighbor-links": "Neighbor links",
"option-neighbor-links-description": "Show links between neighbors.",
"option-forelinks": "Outgoing links",
"option-forelinks-description": "Show links to other files",
"option-backlinks": "Incoming links",
"option-backlinks-description": "Show links from other files",
"option-show-tags": "Tags",
"option-show-tags-description": "Tags are linked to the files that contain them",
"option-show-attachments": "Attachments",
"option-show-attachments-description": "Show attachments included by files",
"option-show-existing-files-only": "Existing files only",
"option-show-existing-files-only-description": "When checked, links to nonexistent files are not shown",
"option-show-orphans": "Orphans",
"option-show-orphans-description": "Show files that are not linked to any other file",
"label-display": "Display",
"option-show-arrows": "Arrows",
"option-show-arrows-description": "Show arrows when zoomed in",
"option-text-fade": "Text fade threshold",
"option-node-size": "Node size",
"option-link-thickness": "Link thickness",
"label-forces": "Forces",
"option-center-force": "Center force",
"option-link-force": "Link force",
"option-link-distance": "Link distance",
"option-repel-force": "Repel force",
"tooltip-open-graph-settings": "Open graph settings",
"msg-screenshot-copied": "Screenshot copied to the clipboard.",
"label-groups": "Groups",
"placeholder-enter-query": "Enter query...",
"tooltip-delete-graph": "Delete group",
"button-new-group": "New group",
"tooltip-click-to-change-drag-to-reorder": "Click to change color\nDrag to reorder groups",
"action-timelapse": "Start graph timelapse animation",
"tooltip-start-timelapse-animation": "Start timelapse animation",
"button-animate-timelapse": "Animate"
},
"backlinks": {
"name": "Backlinks",
"desc": "Show number of backlinks in the status bar.",
"action-open": "Open backlinks",
"action-show": "Show backlinks pane",
"action-open-for-current": "Open backlinks for the current file",
"action-toggle-backlinks-in-document": "Toggle backlinks in document",
"label-linked-mentions": "Linked mentions",
"label-no-backlinks": "No backlinks found.",
"label-unlinked-mentions": "Unlinked mentions",
"label-show-search": "Show search filter",
"label-link-button-text": "Link",
"tab-title": "Backlinks for {{displayText}}",
"label-no-unlinked-mentions": "No unlinked mentions found.",
"ellipsis": "..."
},
"outgoing-links": {
"name": "Outgoing Links",
"desc": "Show outgoing links and detect unlinked mentions of other notes in the current note.",
"action-open": "Open outgoing links",
"action-show": "Show outgoing links pane",
"action-open-for-current": "Open outgoing links for the current file",
"tab-title": "Outgoing links from {{displayText}}",
"label-links": "Links",
"label-no-links": "No links found.",
"label-unlinked-mentions": "Unlinked mentions",
"tooltip-link-file": "Link this file",
"tooltip-not-created": "Not created yet"
},
"tag-pane": {
"name": "Tag pane",
"desc": "Displays all your tags and along with their number of occurrences.",
"action-show": "Show tag pane",
"label-no-tags": "No tags found.",
"label-sort-by-name-a-to-z": "Tag name (A to Z)",
"label-sort-by-name-z-to-a": "Tag name (Z to A)",
"label-sort-by-frequency-high-to-low": "Frequency (high to low)",
"label-sort-by-frequency-low-to-high": "Frequency (low to high)",
"action-show-nested-tags": "Show nested tags"
},
"page-preview": {
"name": "Page preview",
"desc": "Preview a note when hovering an internal link. Ctrl/Cmd + hover in editor mode.",
"label-empty-note": "\"{{linktext}}\" is not created yet. Click to create.",
"label-source-editor": "Editor",
"label-source-preview": "Preview",
"label-source-search": "Search, Backlinks, and Outgoing links",
"label-require-mod": "Require {{key}} to trigger page preview on hover"
},
"starred": {
"name": "Starred",
"desc": "Star frequently used files and searches.",
"action-show": "Show starred pane",
"action-toggle": "Star/unstar current file",
"action-toggle-search": "Star/unstar current search",
"action-star": "Star",
"action-unstar": "Unstar",
"menu-opt-remove": "Remove",
"msg-successfully-starred": "Successfully starred {{type}} \"{{title}}\".",
"msg-removed-starred": "Removed starred {{type}} \"{{title}}\".",
"msg-cannot-find-path": "Cannot find file at \"{{path}}\"."
},
"custom-css": {
"name": "Custom CSS",
"desc": "Reads \"obsidian.css\" in the vault and applies it.",
"setting-community-themes": "Community themes",
"msg-fetching-themes": "Fetching community theme data...",
"prompt-filter": "Filter...",
"label-dark-theme-only": "Dark themes only",
"label-light-theme-only": "Light themes only",
"label-preview": "Preview",
"label-stop-preview": "Stop preview",
"label-use": "Use",
"label-override": "Override",
"label-visit-on-github": "Visit on GitHub",
"msg-fetching-css": "Fetching CSS...",
"theme-title": "\"{{name}}\" by {{author}}",
"msg-override-theme": "Override current CSS",
"msg-existing-theme": "You already have the \"obsidian.css\" custom CSS file.",
"msg-confirm-override": "Are you sure you want to override it? You will lose your original CSS file. Please make a back up if necessary.",
"msg-load-error": "Could not load community themes, please check your network.",
"msg-now-using-theme": "You're now using {{title}} as your CSS theme."
},
"command-palette": {
"name": "Command palette",
"desc": "Type a command to invoke it. No need to use the UI or remember the shortcut.",
"action-open": "Open command palette",
"instruction-navigate": "to navigate",
"instruction-use": "to use",
"instruction-dismiss": "to dismiss",
"label-no-commands": "No commands found.",
"prompt-type-command": "Type a command...",
"label-pinned-commands": "Pinned commands",
"option-add-new-pin": "New pinned command",
"option-add-new-pin-description": "Pinned commands will appear at the top of all commands when no search query is present."
},
"markdown-format-importer": {
"name": "Markdown format importer",
"desc": "Convert Markdown from other apps to Obsidian format.",
"action-open": "Open Markdown importer",
"option-roam-tag-fixer": "Roam Research tag fixer",
"option-roam-tag-fixer-description": "Converts \"#tag\" and \"#[[tag]]\" to \"[[tag]]\".",
"option-roam-highlight-fixer": "Roam Research highlight fixer",
"option-roam-highlight-fixer-description": "Converts \"^^highlight^^\" to \"==highlight==\".",
"option-roam-todo-converter": "Roam Research TODO converter",
"option-roam-todo-converter-description": "Converts \"{{[[TODO]]}}\" to \"[ ]\".",
"option-bear-highlight-fixer": "Bear highlight fixer",
"option-bear-highlight-fixer-description": "Converts \"::highlight::\" to \"==highlight==\".",
"zettelkasten-link-fixer": "Zettelkasten link fixer",
"zettelkasten-link-fixer-description": "Fixes \"[[UID]]\" links to full \"[[UID File Name]]\".",
"zettelkasten-link-beautifier": "Zettelkasten link beautifier",
"zettelkasten-link-beautifier-description": "Fixes \"[[UID]]\" links and also beautify them \"[[UID File Name|File Name]]\".",
"msg-all-files-warning": "Warning: the importer will convert all the files in your vault, not just the current file.",
"msg-override-files-warning": "Your files will be overwritten. Back up all your files before attempting conversion.",
"label-start-conversion": "Start Conversion",
"label-stop": "Stop",
"label-go-back": "Go back",
"label-done": "Done",
"label-processing": "Processing...",
"label-cancelling": "Cancelling...",
"label-finished": "Finished!",
"label-processed-files": "Processed files",
"label-modified-files": "Modified files",
"label-total-replacements": "Total replacements"
},
"daily-notes": {
"name": "Daily notes",
"desc": "Open today's daily note, or create one if not present.",
"short-name": "Today",
"action-open": "Open today's note",
"action-open-previous": "Open previous daily note",
"action-open-next": "Open next daily note",
"action-insert-text": "Insert text into daily note",
"action-insert-link": "Insert link into daily note",
"msg-fail-format": "Failed to create daily note. \"{{format}}\" is not a valid format.",
"msg-fail-folder": "Failed to create daily note. Folder \"{{folderOption}}\" not found.",
"msg-fail-template-file": "Failed to create daily note. Template file \"{{template}}\" not found.",
"msg-no-previous": "There's no daily note before this one.",
"msg-no-next": "There's no daily note after this one.",
"option-date-format": "Date format",
"label-refer-to-syntax": "For more syntax, refer to: ",
"label-syntax-link": "format reference",
"label-syntax-live-preview": "Here is what it will look like: ",
"option-new-file-location": "New file location",
"option-new-file-location-description": "The folder path to create the new daily note.",
"option-template": "Template file location",
"option-template-description": "The file path to use as template.",
"option-open-on-start": "Open daily note on startup",
"option-open-on-start-description": "Open your daily note automatically whenever you open this vault."
},
"zettelkasten-prefixer": {
"name": "Zettelkasten prefixer",
"desc": "Create a new note with the 12-digit Zettelkasten ID format YYYYMMDDHHII (Example 202001010000).",
"short-name": "ZK note",
"action-create-note": "Create new Zettelkasten note",
"option-new-file-location": "New file location",
"option-new-file-location-description": "The folder path to create the new Zettelkasten note.",
"msg-folder-not-found": "Failed to create Zettelkasten note. Folder \"{{folderOption}}\" not found.",
"option-template-file": "Template file location",
"option-template-file-description": "The file path to use as template.",
"option-template-file-placeholder": "Example: folder1/note",
"option-id-format": "Zettel ID format",
"msg-template-file-not-found": "Failed to create Zettelkasten note. Template file \"{{template}}\" not found."
},
"random-note": {
"name": "Random note",
"desc": "Opens a random note. Useful for reviewing and discovering.",
"short-name": "Random",
"action-open": "Open random note"
},
"outline": {
"name": "Outline",
"desc": "Displays the outline of the current file or linked pane.",
"action-open": "Open outline",
"action-show": "Show outline pane",
"action-open-for-current": "Open outline of the current file",
"tab-title": "Outline of {{displayText}}",
"label-no-headings": "No headings found."
},
"word-count": {
"name": "Word count",
"desc": "Show word count in the status bar."
},
"slides": {
"name": "Slides",
"desc": "Present from Markdown. Use \"---\" to separate slides.",
"action-start": "Start presentation"
},
"audio-recorder": {
"name": "Audio recorder",
"desc": "Record audio and save as attachment.",
"action-start": "Start recording audio",
"action-stop": "Stop recording audio",
"action-toggle": "Start/stop recording",
"msg-access-denied": "Microphone access was denied, please enable it from the preference pane.",
"msg-pending-grant": "Please grant microphone permission to start recording.",
"msg-no-microphone": "No microphone is connected."
},
"open-with-default-app": {
"name": "Open in default app",
"desc": "Add button to open current file in the default app.",
"action-open-file": "Open in default app",
"action-open-file-mobile": "Share",
"action-show-in-folder": "Show in folder"
},
"templates": {
"name": "Templates",
"desc": "Insert template content from a folder of template files.",
"action-insert": "Insert template",
"action-insert-current-date": "Insert current date",
"action-insert-current-time": "Insert current time",
"option-template-folder-location": "Template folder location",
"option-template-folder-location-description": "Files in this folder will be available as templates.",
"option-template-date-format": "Date format",
"option-template-date-format-description": "{{date}} in the template file will be replaced with this value.",
"option-template-date-format-description2": "You can also use {{date:YYYY-MM-DD}} to override the format once.",
"option-template-time-format": "Time format",
"option-template-time-format-description": "{{time}} in the template file will be replaced with this value.",
"option-template-time-format-description2": "You can also use {{time:HH:mm}} to override the format once.",
"instruction-navigate": "to navigate",
"instruction-insert": "to insert template",
"instruction-dismiss": "to dismiss",
"msg-no-templates-found": "No templates found",
"msg-fail-invalid-folder": "Failed to list templates. Template folder is invalid.",
"msg-fail-folder-not-found": "Failed to list templates. Folder \"{{folderOption}}\" not found.",
"prompt-type-template": "Type name of a template..."
},
"translucency": {
"name": "Translucent window",
"desc": "Turn on translucency effect to enhance a sense of depth. Best used with dark mode. Not supported on Linux."
},
"publish": {
"name": "Publish",
"desc": "Publish your notes through Obsidian Publish.",
"action-publish-changes": "Publish changes...",
"label-no-internet-access": "You need access to the internet to publish changes.",
"label-publish-service-description": "Obsidian Publish is an add-on paid service that lets you publish your notes online directly from Obsidian.",
"label-please-login": "To start publishing, please log in or create a new Obsidian account.",
"label-no-publish-subscription": "You do not have an Obsidian Publish subscription yet.",
"button-purchase": "Purchase",
"label-manage-sites": "Manage sites",
"label-no-sites": "You don't have any sites.",
"button-choose": "Choose",
"tooltip-edit-site-id": "Edit site ID",
"tooltip-delete-site": "Delete site",
"label-delete-site-confirmation": "Are you sure you want to delete this site?",
"label-delete-site-details": "This will immediately and permanently delete your site.",
"label-confirm-delete-site": "Confirm delete site \"{{site}}\"",
"option-site-id": "Site ID",
"option-site-id-description": "Your site will be at https://publish.obsidian.md/{site id}. You can change this later. Only lower case letters, numbers, and dashes are allowed.",
"option-site-id-placeholder": "Pick a site ID",
"button-create": "Create",
"msg-invalid-site-id": "Site ID can only contain lowercase letters, numbers, and dashes.",
"msg-site-id-in-use": "This site ID is in use, please try another one.",
"msg-create-site-issue": "That was an issue when creating your site.",
"label-site-options": "Site options",
"option-site-metadata": "Metadata",
"option-site-components": "Components",
"option-site-appearance": "Appearance",
"option-site-reading-experience": "Reading experience",
"option-site-misc": "Other site settings",
"option-site-name": "Site name",
"option-site-name-description": "Name of your published site. It will show up in the page title of your site.",
"option-site-name-placeholder": "Name of your site",
"option-home-page-file": "Homepage file",
"option-home-page-file-description": "The first page the user sees when landing on your published site",
"option-home-page-file-placeholder": "Pick a published file",
"option-logo": "Logo",
"option-logo-description": "Pick an image file as your site logo.",