forked from obsidianmd/obsidian-translations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vi.json
1856 lines (1856 loc) · 106 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": "Plugin",
"builtin-plugins": "Các plugin chính",
"plugin-options": "Tùy chọn plugin",
"folder-path-example-placeholder": "Ví dụ: thư mục 1 / thư mục 2",
"file-path-example-placeholder": "Ví dụ: thư mục / ghi chú",
"msg-restart-required": "Cần khởi động lại để thay đổi được kích hoạt.",
"editor": {
"name": "Trình biên tập",
"section-general": "Tổng quan",
"section-behavior": "Hành vi",
"section-display": "Hiển thị",
"option-spellcheck": "Kiểm tra chính tả",
"option-spellcheck-description": "Bật tính năng kiểm tra chính tả. Hiện chỉ hoạt động với tiếng Anh (Mỹ).",
"spellcheck-languages": "Kiểm tra chính tả các ngôn ngữ",
"spellcheck-languages-description": "Chọn ngôn ngữ cho trình kiểm tra chính tả.",
"spellcheck-languages-mac-description": "Trình kiểm tra chính tả gốc sẽ tự động phát hiện ngôn ngữ đang được sử dụng cho bạn trên macOS.",
"spellcheck-dict": "Từ điển kiểm tra chính tả",
"spellcheck-dict-empty": "Từ điển kiểm tra chính tả trống..",
"option-show-inline-title": "Show inline title",
"option-show-inline-title-description": "Displays the filename as an editable title inline with the file contents.",
"option-readable-line-length": "Độ dài dòng tối đa",
"option-readable-line-description": "Giới hạn số ký tự tối đa trên một dòng. Hiển thị ít nội dung hơn, nhưng khiến các đoạn văn dài dễ đọc hơn.",
"option-strict-line-break": "Ngắt dòng nghiêm ngặt",
"option-strict-line-break-description": "Ở chế độ xem trước, bỏ qua các ngắt dòng đơn theo thông số Markdown. Tắt tùy chọn này để ngắt dòng đơn hiển thị trong bản xem trước.",
"option-show-frontmatter": "Hiển thị frontmatter",
"option-show-frontmatter-description": "Ở chế độ xem trước, hiển thị frontmatter dưới dạng một khối mã. Tắt để ẩn phần frontmatter",
"option-auto-pair-brackets": "Đóng ngoặc tự động",
"option-auto-pair-brackets-description": "Tự động thêm dấu đóng ngoặc vuông hoặc đóng ngoặc kép khi gõ dấu mở ngoặc tương ứng",
"option-auto-pair-markdown": "Đóng cú pháp Markdown tự động",
"option-auto-pair-markdown-description": "Tự động thêm ký hiệu kết thúc tương ứng khi gõ ký hiệu bắt đầu in đậm, in nghiêng, tô sáng, gạch ngang và mã.",
"option-smart-indent-lists": "Tính năng thụt lề thông minh cho danh sách",
"option-smart-indent-lists-description": "Tự động thụt lề và sinh ra đánh dấu phù hợp",
"option-fold-heading": "Tiêu đề gấp",
"option-fold-heading-description": "Cho phép bạn gấp mọi thứ vào trong một tiêu đề",
"option-fold-indent": "Gấp thụt lề",
"option-fold-indent-description": "Cho phép bạn gấp một phần của cùng một thụt lề, chẳng hạn như danh sách.",
"option-default-new-tab-view": "Default view for new tabs",
"option-default-new-tab-view-description": "The default view that a new markdown tab gets opened in.",
"option-default-new-tab-view-editing": "Editing view",
"option-default-new-tab-view-reading": "Reading view",
"option-open-tab-in-foreground": "Always focus new tabs",
"option-open-tab-in-foreground-description": "When you open a link in a new tab, switch to it immediately.",
"option-default-editing-mode": "Chế độ chỉnh sửa mặc định",
"option-default-editing-mode-description": "Chế độ chỉnh sửa mặc định mà một ngăn mới sẽ bắt đầu.",
"option-default-editing-mode-source": "Chế độ nguồn",
"option-default-editing-mode-live-preview": "Xem trước trực tiếp",
"option-show-line-number": "Hiển thị số dòng",
"option-show-line-number-description": "Hiển thị số dòng trên cột gutter.",
"option-indentation-guide": "Hiển thị đường dọc chỉ dẫn thụt lề",
"option-indentation-guide-description": "Hiển thị tương quan theo cột dọc giữa các mục trong danh sách, giúp dễ quan sát.",
"option-use-tabs": "Sử dụng ký tự tab",
"option-use-tabs-description": "Sử dụng ký tự tab để thụt lề, khi nhấn phím \" Tab \" . Tắt lựa chọn này để sử dụng ký tự trắng",
"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-rtl": "Từ phải sang trái (RTL)",
"option-rtl-description": "Đặt hướng văn bản của ghi chú để hiển thị từ phải sang trái.",
"option-auto-convert-html": "Tự động chuyển đổi HTML",
"option-auto-convert-html-description": "Tự động chuyển đổi HTML thành Markdown khi dán và kéo thả từ trang web. Sử dụng Ctrl/Cmd+Shift+V để dán mà không có sự chuyển đổi.",
"option-vim-key-bindings": "Tổ hợp phím Vim",
"option-vim-key-bindings-description": "Cho phép bạn sử dụng tổ hợp phím Vim trong trình biên tập nguồn.",
"option-vim-key-bindings-mobile": "On mobile devices, this setting is per-device and is not synchronized through the config file.",
"option-emacsy-keys": "Tổ hợp phím cổ kiểu Emacs cho macOS",
"option-emacsy-keys-description": "Cho phép bạn sử dụng phím di chuyển kiểu Emacs bổ sung, tiêu chuẩn trên macOS, nhưng có thể gây trở ngại cho một số hoạt động chính.",
"label-confirm-enable-vim": "Xác nhận bật chế độ Vim",
"label-vim-warning": "Chế độ Vim là để chỉnh sửa văn bản hiệu quả nhưng có thể không trực quan. Nếu bạn không quen với Vim, tùy chọn này có thể làm cho nó giống như Obsidian đã ngừng hoạt động.",
"label-vim-test": "Để xác nhận rằng bạn biết cách dùng Vim, vui lòng nhập lệnh để tắt Vim mà không lưu dữ liệu dưới đây:",
"label-vim-your-answer": "Câu trả lời của bạn",
"placeholder-enter-command": "Nhập lệnh...",
"button-confirm-enable-vim": "Cho phép tôi bật Vim",
"msg-vim-mode-enabled": "Lệnh đúng. Chế độ Vim đã bật.",
"msg-vim-mode-not-enabled": "Lệnh không đúng. Chế độ Vim vẫn tắt để bảo vệ bạn.",
"msg-vim-mode-please-enter-command": "Vui lòng nhập dòng lệnh để kích hoạt chế độ Vim",
"option-legacy-editor": "Sử dụng trình chỉnh sửa cổ",
"option-legacy-editor-description2": "The legacy editor will be deprecated soon. It is currently no longer maintained, and as such, bugs will no longer be addressed.",
"label-legacy-deprecation": "New editor is here",
"label-legacy-deprecation-1": "Obsidian now has a brand new editor that's more robust and accessible.",
"label-legacy-deprecation-2": "It seems you're still using the legacy editor, and we think you'll enjoy the new editor.",
"label-legacy-deprecation-choice": "Which mode would you like to use?",
"label-live-preview-description": "A more modern, what-you-see-is-what-you-get experience.",
"label-source-mode-description": "See raw Markdown with syntax highlighting.",
"button-start-new-editor": "Start new editor"
},
"file": {
"name": "Tệp & Liên kết",
"option-confirm-file-deletion": "Xác nhận xóa tệp",
"option-confirm-file-deletion-description": "Nếu bạn muốn được nhắc xác nhận xóa tệp.",
"option-delete-destination": "Những tệp đã xóa",
"option-delete-destination-description": "Phải làm gì với các tệp sau khi bạn xóa chúng.",
"option-choice-system-trash": "Chuyển vào thùng rác của máy tính",
"option-choice-vault-trash": "Chuyển đến thùng rác của Obsidian (thư mục .trash)",
"option-choice-permanent-delete": "Xóa vĩnh viễn",
"option-always-update-links": "Luôn cập nhật liên kết nội bộ",
"option-always-update-links-description": "Có tự động cập nhật liên kết sau khi đổi tên tệp hoặc lời nhắc hay không.",
"option-new-note-location": "Vị trí mặc định của ghi chú mới",
"option-new-note-location-description": "Nơi đặt các ghi chú mới tạo. Cài đặt của plugin sẽ ghi đè lên.",
"option-choice-vault-root": "Vault gốc",
"option-choice-current-folder": "Cùng thư mục với tệp",
"option-choice-specified-folder": "Trong thư mục được chỉ định bên dưới",
"option-new-file-folder-path": "Thư mục để tạo ghi chú mới bên trong",
"option-new-file-folder-path-description": "Các ghi chú mới tạo sẽ xuất hiện trong thư mục này. Plugin settings will override this.",
"option-use-wiki-links": "Sử dụng [[những Wikilink]]",
"option-use-wiki-links-description": "Tự động tạo những Wikilink cho [[những liên kết]] và ![[những hình ảnh]] thay vì các liên kết và hình ảnh Markdown. Thay vào đó, hãy tắt tùy chọn này để tạo liên kết Markdown.",
"option-show-unsupported-files": "Phát hiện tất cả các phần mở rộng của tệp",
"option-show-unsupported-files-description": "Hiển thị các tệp có bất kỳ phần mở rộng nào ngay cả khi Obsidian không thể trực tiếp mở chúng, để bạn có thể liên kết với chúng và xem chúng trong File Explorer và Quick Switcher.",
"option-link-autocompleted-format": "Định dạng liên kết mới",
"option-link-autocompleted-format-description": "Những liên kết nào để chèn khi tự động tạo liên kết nội bộ.",
"option-choice-shortest-linktext": "Con đường ngắn nhất khi có thể",
"option-choice-relative-path": "Đường dẫn tương đối đến tệp",
"option-choice-absolute-path": "Đường dẫn tuyệt đối trong vault",
"option-new-attachment-location": "Vị trí mặc định cho các tệp đính kèm mới",
"option-new-attachment-location-description": "Nơi các tệp đính kèm mới thêm vào được đặt.",
"option-choice-subdirectory": "Trong thư mục con dưới thư mục hiện tại",
"option-attachment-folder-path": "Đường dẫn thư mục đính kèm",
"option-attachment-folder-path-description": "Các tệp đính kèm mới được tạo sẽ xuất hiện ở đây. Chúng bao gồm các hình ảnh được tạo bằng cách kéo và thả hoặc dán, và các bản ghi âm.",
"option-attachment-subfolder-path": "Tên thư mục con",
"option-attachment-subfolder-path-description": "Nếu tệp của bạn dưới \"vault/folder\", và bạn đặt tên thư mục con thành \"attachments\", tệp đính kèm sẽ được lưu vào \"vault/folder/attachments\".",
"option-attachment-subfolder-path-placeholder": "các tệp đính kèm",
"option-excluded-files": "Excluded files",
"option-excluded-files-desc": "Excluded files will be either hidden or less noticeable in various places, such as Quick Switcher, link suggestion, and Graph View.",
"label-no-excluded-filters-applied": "No excluded filter is applied right now. Add one below.",
"label-excluded-filters-applied": "Files matching the following filters are currently excluded:",
"label-excluded-filter": "Filter",
"message-empty-filter": "Filter cannot be empty",
"placeholder-excluded-filter": "Enter path or \"/regex/\"..."
},
"appearance": {
"name": "Vẻ ngoài",
"option-base-theme": "Chủ đề mặc định",
"option-base-theme-description": "Chọn bảng màu mặc định của Obsidian.",
"option-accent-color": "Accent color",
"option-accent-color-description": "Choose the accent color used throughout the app.",
"dark-theme": "Tối",
"light-theme": "Sáng",
"system-theme": "Adapt to system",
"option-font": "Font",
"option-advanced": "Advanced",
"option-interface-font": "Interface font",
"option-interface-font-description": "Set base font for all of Obsidian.",
"option-zoom-level": "Zoom level",
"option-zoom-level-description": "Controls the overall zoom level of the app.",
"option-text-font": "Text font",
"option-text-font-description": "Set font for editing and reading views.",
"option-monospace-font": "Monospace font",
"option-monospace-font-description": "Set font for places like code blocks and frontmatter.",
"label-single-font-currently-in-effect": " Currently applied font: ",
"label-multiple-fonts-currently-in-effect": " The following fonts are currently applied:",
"option-font-placeholder": "Enter font name...",
"label-no-custom-font-set": "No custom font is applied right now. Add one below.",
"label-font-applied": "The first font from this list that is available on your system will be applied.",
"msg-font-not-found": "This font is not detected on your system.",
"msg-font-found": "This font is detected on your system.",
"label-font-name": "Font name",
"option-community-themes": "Mở các chủ đề cộng đồng",
"option-community-themes-description": "Xem trước và sử dụng các chủ đề tuyệt vời do cộng đồng tạo ra.",
"button-browse-community-themes": "Duyệt",
"option-font-size": "Cỡ chữ",
"option-font-size-description": "Kích thước phông chữ tính bằng pixel ảnh hưởng đến trình chỉnh sửa và xem trước.",
"option-font-size-action": "Điều chỉnh kích thước phông chữ nhanh chóng",
"option-font-size-action-description": "Điều chỉnh kích thước phông chữ bằng Ctrl + Cuộn Chuột Giữa hoặc sử dụng cử chỉ chụm-thu phóng trên bàn di chuột.",
"option-themes": "Các chủ đề",
"option-manage-themes-description": "Quản lý các chủ đề đã cài đặt và duyệt các chủ đề cộng đồng.",
"option-theme-button-manage": "Quản Lý",
"option-choice-none": "Không",
"option-native-menus": "Native menus",
"option-native-menus-desc": "Menus throughout the app will match the operating system. They will not be affected by your theme.",
"button-reload-themes": "Tải lại chủ đề",
"msg-reloaded-themes": "Đã tải lại các chủ đề CSS tùy chỉnh.",
"button-open-themes-folder": "Mở thư mục chủ đề",
"option-css-snippets": "Đoạn mã CSS",
"label-no-css-snippets-found": "Không tìm thấy đoạn mã CSS nào trong thư mục đoạn mã.",
"no-snippet-description": "Các đoạn mã CSS được lưu trữ trong \"{{path}}\".",
"button-reload-snippets": "Tải lại đoạn mã",
"button-open-snippets-folder": "Mở thư mục đoạn mã",
"msg-reloaded-snippets": "Các đoạn CSS đã tải lại.",
"option-toggle-snippet-description": "Áp dụng đoạn mã CSS tại \"{{path}}\".",
"label-installed-themes": "Các chủ đề đã cài đặt",
"label-screenshot-unavailable": "Ảnh chụp màn hình không khả dụng",
"label-default-theme": "Mặc định",
"tooltip-click-to-enlarge": "Bấm để phóng to",
"button-update": "Cập Nhật",
"label-currently-selected": "Đã chọn",
"option-frame-style": "Window frame style",
"option-frame-description": "Determines the styling of the title bar of Obsidian windows. Requires a full restart to take effect.",
"option-frame-hidden": "Hidden (default)",
"option-frame-obsidian": "Obsidian frame",
"option-frame-native": "Native frame",
"option-configure-ribbon": "Ribbon menu",
"option-configure-ribbon-desc": "Configure what commands appear in the ribbon menu in that navigation bar.",
"option-mobile-quick-ribbon-item": "Quick access ribbon item",
"option-mobile-quick-ribbon-item-desc": "Tapping on the ribbon item in the navigation menu will active this ribbon item. Tap and hold will still show the menu.",
"button-configure": "Configure",
"label-additional-ribbon-items": "Other ribbon items",
"label-modal-configuration": "Ribbon Configuration",
"label-modal-configuration-desc": "Choose what items you want to be active in the ribbon. Drag and drop to change the order.",
"option-show-view-header": "Show tab title bar",
"option-show-view-header-desc": "Display the header at the top of every tab.",
"msg-updates-found": "Found {{count}} theme to update.",
"msg-updates-found_plural": "Found {{count}} themes to update.",
"button-check-for-updates": "Check for updates",
"button-view-updates": "View updates",
"button-update-all-themes": "Update all",
"label-current-themes": "Current community themes",
"label-currently-installed": "You currently have {{count}} theme installed.",
"label-currently-installed_plural": "You currently have {{count}} themes installed."
},
"hotkeys": {
"name": "Các phím tắt",
"option-search": "Search hotkeys",
"option-search-desc": "Showing {{count}} hotkey. ",
"option-search-desc_plural": "Showing {{count}} hotkeys. ",
"option-search-conflict": "{{count}} command with conflicts.",
"option-search-conflict_plural": "{{count}} commands with conflicts.",
"prompt-filter": "Lọc...",
"tooltip-delete-hotkey": "Xóa phím tắt",
"label-waiting-for-hotkey-press": "Nhấn phím tắt...",
"label-show-all": "All",
"label-show-unassigned": "Unassigned",
"label-show-assigned": "Assigned",
"label-show-user-assigned": "Assigned by me",
"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 \"{{command}}\"",
"tooltip-hotkey-multiple-conflicts": "Phím tắt này xung đột với {{count}} lệnh khác",
"label-blank-hotkey": "Trống"
},
"about": {
"name": "Về chúng tôi",
"label-commercial-license": "Giấy phép thương mại",
"label-license-key": "Mã bản quyền",
"license-key-placeholder": "Mã bản quyền 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 xác định",
"label-current-version": "Phiên bản hiện tại: ",
"label-install-version": "(Phiên bản trình cài đặt: {{version}})",
"label-up-to-date": "Ứng dụng của bạn đã được cập nhật!",
"label-read-changelog": "Đọc ghi chú cập nhật.",
"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": "Tải xuống",
"label-new-version-ready": "Một phiên bản mới đã sẵn sàng để được cài đặt. ",
"label-relaunch-to-update": "Khởi chạy 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": "Kiểm tra các bản cập nhật...",
"button-relaunch": "Khởi chạy lại",
"button-check-for-updates": "Kiểm tra cập nhật",
"option-auto-update": "Cập nhật tự động",
"option-auto-update-description": "Tắt tính năng này để ngăn ứng dụng kiểm tra các bản cập nhật.",
"option-get-help": "Get help",
"option-get-help-description": "Get help on using Obsidian.",
"button-open": "Mở",
"option-language": "Ngôn ngữ",
"option-language-description": "Thay đổi ngôn ngữ hiển thị.",
"option-insider-build": "Nhận bản dựng nội bộ",
"option-insider-build-description": "Tự động cập nhật các bản dựng nội bộ để thử các tính năng mới. Lưu ý rằng các bản dựng này mới nhất và có thể kém ổn định hơn.",
"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ử dụng GPU của bạn để làm cho Obsidian mượt mà hơn.",
"option-hw-acceleration-warning": "Nếu bạn tắt tính năng này, hiệu suất ứng dụng sẽ bị giảm sút nghiêm trọng.",
"option-config-location": "Ghi đè thư mục cấu hình",
"option-config-location-description": "Sử dụng thư mục cấu hình khác với thư mục mặc định. Phải bắt đầu bằng dấu chấm.",
"option-config-location-warning": "Vị trí cấu hình phải là tên thư mục hợp lệ bắt đầu bằng dấu chấm.",
"label-license": "Bản quyền",
"label-your-commercial-license-key": "Mã bản quyền thương mại của bạn là \"{{key}}\".",
"label-commercial-license-info": "Đã đăng ký với \"{{company}}\" cho {{seats}} người dùng. Có hiệu lực cho đến khi {{expiry}}.",
"label-validating-commercial-license": "Đang xác thực...",
"label-invalid-commercial-license": "Bản quyền không hợp lệ: ",
"button-remove-commercial-license": "Loại bỏ",
"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"
},
"account": {
"name": "Tài Khoản",
"option-your-account": "Your account",
"option-your-account-desc": "You're currently signed in {{name}} ({{email}}).",
"option-your-account-desc-no-login": "You're not logged in right now. An account is only needed for Obsidian Sync, Obsidian Publish, and Catalyst insider builds.",
"button-manage-settings": "Manage settings",
"label-insider": "người dùng nội bộ",
"label-supporter": "người ủng hộ",
"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": "Đăng xuất",
"label-log-in": "Đăng nhập",
"label-sign-up": "Sign up",
"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": "Mật khẩu không được để trống.",
"message-login-failed": "Đăng nhập không thành công, vui lòng kiểm tra lại email và mật khẩu của bạn.",
"label-no-account": "Không có tài khoản? ",
"link-sign-up-now": "Đăng ký ngay"
},
"core-plugin": {
"plugin-list": "Danh sách plugin",
"option-search-plugin": "Tìm kiếm các plugin lõi",
"option-search-plugin-description": "Lọc các plugin theo tên hoặc mô tả.",
"placeholder-search-plugin": "Tìm kiếm plugin..."
},
"third-party-plugin": {
"name": "Plugin của bên thứ ba",
"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": "Plugin cộng đồng",
"option-browse-community-plugins-description": "Duyệt và cài đặt các plugin của bên thứ ba do cộng đồng tuyệt vời của chúng tôi tạo ra.",
"button-browse": "Duyệt",
"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": "Tìm kiếm plugin cộng đồng...",
"msg-failed-load-plugins": "Không tải được plugin cộng đồng.",
"label-installed": "Đã cài đặt",
"button-install": "Cài đặt",
"button-enable": "Bật",
"button-disable": "Tắt",
"button-copy-share-link": "Sao chép liên kết chia sẻ",
"button-donate": "Donate",
"label-no-results-found": "Không tìm thấy kết quả.",
"label-no-recent-files-found": "No recent files found. Type to search...",
"msg-failed-to-load-manifest": "Không tải được tệp kê khai plugin.",
"label-version": "Phiên bản: {{version}}",
"label-currently-installed-version": " (đang cài đặt: {{version}})",
"label-by-author": "Bởi ",
"label-repository": "Kho: ",
"label-last-update": "Last update: ",
"tooltip-view-last-update": "View the latest update",
"label-unsupported": "Plugin này không hỗ trợ thiết bị của bạn.",
"button-update": "Cập nhật",
"label-no-readme": "Plugin này không cung cấp tệp README.",
"msg-installing-plugin": "Đang cài đặt plugin \"{{name}}\"...",
"msg-failed-to-install-plugin": "Không cài đặt được plugin \"{{name}}\".",
"msg-successfully-installed-plugin": "Đã cài đặt thành công plugin \"{{name}}\".",
"label-installed-plugins": "Plugin đã cài đặt",
"button-reload-plugins": "Tải lại plugin",
"msg-reloaded-third-party-plugins": "Đã tải lại plugin của bên thứ ba.",
"label-uninstall": "Gỡ cài đặt",
"label-uninstall-plugin": "Gỡ cài đặt plugin",
"label-uninstall-plugin-confirmation": "Bạn có chắc chắn muốn gỡ cài đặt plugin này không? Thao tác này sẽ xóa thư mục của plugin.",
"button-open-plugins-folder": "Mở thư mục plugin",
"button-check-for-updates": "Kiểm tra các bản cập nhật",
"button-update-all-plugins": "Cập nhật tất cả",
"label-current-plugins": "Các plugin hiện tại",
"label-currently-installed": "Bạn chỉ có {{count}} plugin được cài đặt.",
"label-currently-installed_plural": "Bạn đang có {{count}} plugin được cài đặt.",
"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": "Không tìm thấy bản cập nhật plugin nào.",
"msg-updates-found": "Chỉ tìm thấy {{count}} plugin để cập nhật.",
"msg-updates-found_plural": "Đã tìm thấy {{count}} plugin để cập nhật.",
"msg-update-plugin": "Cập nhật lên phiên bản {{version}}",
"option-search-installed-plugin": "Tìm kiếm các plugin đã cài đặt",
"option-search-installed-plugin-description": "Lọc các plugin đã cài đặt theo tên hoặc mô tả.",
"placeholder-search-installed-plugin": "Tìm kiếm các plugin đã cài đặt ...",
"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": "Đang hiển thị {{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": "Thanh công cụ di động",
"option-configure-quick-action": "Định cấu hình Hành động nhanh trên thiết bị di động",
"option-configure-quick-action-description": "Định cấu hình lệnh nào sẽ kích hoạt khi kéo từ trên xuống. Lệnh hiện tại được đặt thành \"{{command}}\".",
"button-configure": "Định cấu hình",
"placeholder-select-quick-action": "Chọn tác vụ nhanh ...",
"manage-toolbar-options": "Quản lý tùy chọn thanh công cụ",
"option-internal-link": "Thêm liên kết nội bộ",
"option-internal-embed": "Thêm nhúng",
"option-tag": "Thêm thẻ",
"option-heading": "Chuyển đổi tiêu đề",
"option-strikethrough": "Chuyển đổi gạch ngang",
"option-highlight": "Chuyển đổi vùng đánh dấu",
"option-code": "Chuyển đổi khối mã",
"option-blockquote": "Chuyển đổi blockquote",
"option-markdown-link": "Thêm liên kết Markdown",
"option-bullet-list": "Chuyển đổi danh sách dấu đầu dòng",
"option-numbered-list": "Chuyển đổi danh sách được đánh số",
"option-indent-list": "Thụt lề mục danh sách",
"option-unindent-list": "Không thụt lề mục danh sách",
"option-undo": "Hoàn tác",
"option-redo": "Làm lại",
"option-move-caret-up": "Di chuyển dấu mũ lên trên",
"option-move-caret-down": "Di chuyển dấu mũ xuống dưới",
"option-move-caret-left": "Di chuyển dấu mũ sang trái",
"option-move-caret-right": "Di chuyển dấu mũ sang phải",
"option-first-line": "Đi đến dòng đầu tiên",
"option-last-line": "Đến dòng cuối cùng",
"option-toggle-keyboard": "Chuyển đổi bàn phím",
"option-configure-toolbar": "Định cấu hình thanh công cụ di động",
"option-added-options": "Đã thêm các tùy chọn",
"option-more-toolbar-options": "Các tùy chọn thanh công cụ khác",
"option-attach": "Chèn tệp đính kèm",
"option-add-command": "Thêm lệnh toàn cục",
"option-add-command-description": "Chọn bất kỳ lệnh chung nào để thêm vào thanh công cụ."
}
},
"editor": {
"search": {
"placeholder-find": "Tìm",
"placeholder-replace": "Thay thế",
"label-previous": "Trước",
"label-next": "Tiếp",
"label-all": "Tất cả",
"label-exit-search": "Thoát tìm kiếm",
"label-replace": "Thay thế",
"label-replace-all": "Thay thế tất cả"
},
"link-suggestion": {
"label-type-hash": "Nhập #",
"label-link-heading": "để liên kết tiêu đề",
"label-type-block": "Nhập ^",
"label-link-block": "để liên kết các khối",
"label-type-pipe": "Nhập |",
"label-change-display-text": "để thay đổi các từ hiển thị",
"label-no-match-found": "Không tìm thấy kết quả phù hợp"
},
"spellcheck": {
"no-suggestion": "Không có gợi ý...",
"add-to-dictionary": "Thêm vào từ điển"
},
"menu": {
"edit-link": "Edit link"
},
"heading-suggestion": {
"label-no-heading": "No heading",
"label-heading-level": "Heading {{level}}"
},
"print-modal": {
"title": "Xuất sang PDF",
"caption": "Xuất \"{{filename}}\" sang PDF với cài đặt bên dưới.",
"setting-page-size": "Kích thước trang",
"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-include-file-name": "Include file name as title",
"setting-landscape": "Ngang",
"setting-margin": "Lề",
"setting-margin-default": "Mặc định",
"setting-margin-minimal": "Tối thiểu",
"setting-margin-none": "Không",
"setting-downscale-percent": "Giảm tỷ lệ phần trăm",
"button-export-to-pdf": "Xuất sang PDF"
},
"link-popover": {
"tooltip-follow-link": "Theo dõi liên kết",
"tooltip-open-link": "Mở liên kết",
"tooltip-search-tag": "Tìm kiếm thẻ "
}
},
"interface": {
"embed-cannot-find": "Cannot find:",
"embed-open-in-default-app-tooltip": "Mở trong ứng dụng mặc định",
"empty-sidebar": "Thanh bên trống, hãy thử kéo ngăn tại đây.",
"sidebar-expand": "Mở rộng",
"sidebar-collapse": "Thu gọn",
"msg-fail-to-save-file": "Không lưu được tệp \"{{filepath}}\". {{message}}.",
"no-file": "Không có tập tin",
"msg-file-changed": "\"{{file}}\" đã được sửa đổi bên ngoài, tự động hợp nhất các thay đổi.",
"switch-vault": "Mở một vault khác",
"help": "Trợ giúp",
"settings": "Cài đặt",
"drag-to-rearrange": "Kéo để sắp xếp lại",
"msg-switched-to-read": "Đã chuyển chế độ xem mặc định sang chế độ xem chỉ đọc.",
"msg-switched-to-edit": "Đã chuyển chế độ xem mặc định sang chế độ xem chỉnh sửa.",
"msg-upgrade-installer": "Để sử dụng tính năng này, vui lòng cài đặt lại bằng trình cài đặt mới nhất có sẵn từ trang web của chúng tôi.",
"tooltip-restore-default-settings": "Khôi phục cài đặt mặc định",
"label-copy": "Sao chép vào khay nhớ tạm",
"copied_generic": "Copied to your clipboard",
"copied": "{{item}} được sao chép vào khay nhớ tạm của bạn",
"url": "Url",
"msg-open-file-through-uri": "Đã mở tệp \"{{path}}\"",
"msg-file-not-found-through-uri": "Tệp \"{{name}}\" không tìm thấy.",
"delete-action-short-name": "Xóa",
"msg-indexing": "Obsidian đang lập chỉ mục cho kho của bạn...\nĐiều này chỉ nên xảy ra một lần.\nMột số chức năng có thể không khả dụng cho đến khi hoàn tất.",
"msg-indexing-complete": "Hoàn tất lập chỉ mục.",
"msg-sandbox-vault": "This is a sandbox vault.\nChanges you make in this vault will be lost.",
"label-enter-to-create": "Nhập để tạo",
"label-update-available": "Đã có bản cập nhật",
"label-debug-info": "Thông tin gỡ lỗi",
"button-learn-more": "Tìm hiểu thêm",
"button-not-now": "Không phải bây giờ",
"button-add": "Add",
"button-manage": "Manage",
"label-new-tab": "New tab",
"msg-tab-busy": "This tab is currently busy, please try again later",
"empty-state": {
"no-file-open": "Không có tệp nào được mở",
"create-new-file": "Tạo tệp mới",
"go-to-file": "Đi tới tệp",
"see-recent-files": "Xem các tệp gần đây",
"close": "Đóng",
"unknown-pane-title": "Plugin không còn hoạt động",
"unknown-pane-desc": "Plugin tạo ngăn này ({{type}}) không còn nữa"
},
"menu": {
"edit-view": "Chỉnh sửa (Ctrl / Cmd + Nhấp để chỉnh sửa trong ngăn mới)",
"read-view": "Chế độ xem hiện tại: đang đọc",
"switch-to-edit-view": "Nhấp để chỉnh sửa",
"switch-to-read-view": "Nhấp để đọc",
"mod-click-open-new-tab": "{{key}}+Click to open in new tab",
"find": "Tìm ...",
"replace": "Thay thế ...",
"edit": "Chỉnh sửa",
"preview": "Xem trước",
"more-options": "Thêm tùy chọn",
"close": "Đóng",
"close-all": "Close all",
"close-others": "Close others",
"close-right": "Close tabs to the right",
"pin": "Ghim",
"unpin": "Unpin",
"unlink-tab": "Unlink tab",
"link-tab": "Link with tab...",
"toggle-source-mode": "Source mode",
"toggle-reading-view": "Reading view",
"delete-file": "Xóa tệp",
"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": "Sao chép url",
"close-current-tab": "Close current tab",
"copy": "Sao chép",
"cut": "Cắt",
"paste": "Dán",
"paste-as-plain-text": "Dán dưới dạng văn bản thuần túy",
"lookup-selection": "Look up “{{selection}}”",
"select-all": "Chọn tất cả",
"rename-heading": "Đổi tên tiêu đề này ...",
"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": "Nhấp để mở rộng",
"click-to-collapse": "Nhấp để thu gọn",
"alias": "Bí danh",
"not-created-yet": "Chưa tạo, chọn để tạo"
},
"start-screen": {
"label-version": "Phiên bản",
"label-create-local-vault": "Create local vault",
"option-open-folder-as-vault": "Mở thư mục dưới dạng vault",
"option-open-folder-as-vault-description": "Chọn một thư mục hiện có chứa các tệp Markdown.",
"option-create-vault": "Tạo vault mới",
"option-create-vault-description": "Tạo một kho chứa Obsidian mới trong một thư mục.",
"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": "Tên kho",
"option-new-vault-name-description": "Chọn tên cho vault tuyệt vời của bạn.",
"option-new-vault-location": "Vị trí",
"option-new-vault-location-description": "Chọn một nơi để đặt vault mới của bạn.",
"label-new-vault-location-preview": "Your new vault will be placed in: ",
"option-reveal-vault-in-explorer": "Reveal vault in system explorer",
"option-reveal-vault-in-explorer-mac": "Reveal vault in Finder",
"option-rename-vault": "Rename vault...",
"msg-error-rename-exists": "There is already a vault with this name.",
"msg-error-nested": "Cannot move vault into a subfolder of itself.",
"msg-error-rename-open": "Can't rename a currently open vault.",
"msg-rename-failed": "Failed to rename vault.",
"msg-rename-success": "Successfully renamed vault.",
"option-move-vault": "Move vault...",
"msg-move-select-dest": "Select destination folder",
"msg-error-move-exists": "There is already a vault at the destination.",
"msg-error-move-open": "Can't move a currently open vault.",
"msg-move-failed": "Failed to move vault.",
"msg-move-success": "Successfully moved vault.",
"option-remove": "Remove from list",
"button-quick-start": "Quick start",
"button-open": "Mở",
"button-browse": "Duyệt",
"button-connect": "Connect",
"button-create-vault": "Tạo",
"button-back": "Quay lại",
"msg-empty-vault-name": "Không được để trống tên Vault.",
"msg-invalid-folder": "Vui lòng chọn một thư mục hợp lệ.",
"msg-failed-to-create-vault": "Không thể tạo vault.",
"msg-failed-to-create-vault-at-location": "Không thể tạo vault tại vị trí đã cho. Vui lòng kiểm tra kỹ vị trí và quyền.",
"msg-error-failed-to-open-vault": "Không mở được.",
"msg-error-remove-current-open-vault": "Không thể xóa một kho hiện đang mở.",
"option-get-help": "Get Help",
"option-user-email": "Email",
"placeholder-your-email": "Your email...",
"option-user-password": "Password",
"placeholder-your-password": "Your password...",
"button-sign-in": "Sign in",
"button-setup": "Setup",
"option-connect-vault-desc": "Create a synced vault on this device.",
"tooltip-own-vault": "This is a remote vault owned by you.",
"tooltip-shared-vault": "This is a remote vault shared with you."
},
"drag-and-drop": {
"insert-link-here": "Chèn liên kết tại đây",
"insert-links-here": "Chèn liên kết vào đây",
"move-into-folder": "Chuyển vào \"{{folder}}\"",
"star-this-file": "Gắn dấu sao tệp này",
"star-these-files": "Gắn dấu sao cho các tệp này",
"open-in-this-tab": "Open in this tab",
"open-as-tab": "Open as new tab"
},
"window": {
"maximize": "Phóng to",
"minimize": "Thu nhỏ",
"restore-down": "Khôi phục xuống",
"close-window": "Đóng cửa sổ",
"go-back": "Quay lại",
"go-forward": "Tiếp tục"
},
"start-up": {
"loading-obsidian": "Đang tải Obsidian ...",
"obsidian-load-error": "Đã xảy ra lỗi khi tải Obsidian.",
"button-reload-app": "Tải lại ứng dụng",
"button-reload-app-in-safe-mode": "Reload app in safe mode",
"button-open-another-vault": "Mở một vault khác",
"loading-components": "Đang tải thành phần ...",
"loading-plugins": "Đang tải plugin ...",
"loading-vault": "Đang tải vault ...",
"msg-failed-to-load-vault": "Không tải được vault:",
"loading-cache": "Đang tải bộ nhớ đệm ...",
"loading-workspace": "Đang tải không gian làm việc ..."
},
"mobile": {
"action-import": "Nhập vào vault",
"action-choose-file-to-insert": "Chọn tệp để chèn",
"action-insert-text-into-file": "Chèn văn bản vào {{filename}}",
"action-insert-link-into-file": "Chèn văn bản vào {{filename}}",
"msg-importing": "Đang chèn...",
"msg-import-success": "Chèn thành công",
"msg-failed-to-import-file": "Nhập không thành công tệp {{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": "Lưu tệp hiện tại",
"follow-cursor-link": "Theo liên kết dưới con trỏ",
"open-cursor-link-in-new-tab": "Open link under cursor in new tab",
"open-cursor-link-to-the-right": "Open link under cursor to the right",
"open-cursor-link-in-new-window": "Open link under cursor in new window",
"navigate-tab-above": "Focus on tab group above",
"navigate-tab-below": "Focus on tab group below",
"navigate-tab-left": "Focus on tab group to the left",
"navigate-tab-right": "Focus on tab group to the right",
"toggle-pin": "Chuyển đổi ghim",
"split-right": "Split right",
"split-down": "Split down",
"toggle-stacked-tabs": "Toggle stacked tabs",
"navigate-back": "Điều hướng trở lại",
"navigate-forward": "Điều hướng về phía trước",
"use-dark-mode": "Sử dụng chế độ tối",
"use-light-mode": "Sử dụng chế độ sáng",
"change-theme": "Change theme",
"search-current-file": "Tìm kiếm tệp hiện tại",
"search-replace-current-file": "Tìm kiếm và thay thế trong tệp hiện tại",
"open-settings": "Mở cài đặt",
"open-help": "Mở trợ giúp",
"toggle-edit": "Chuyển đổi chế độ chỉnh sửa/đọc",
"toggle-source-mode": "Chuyển đổi chế độ xem trước trực tiếp/Nguồn",
"delete-current-file": "Xóa tệp hiện tại",
"new-tab": "New tab",
"close-all-tabs": "Close all tabs",
"close-active-tab": "Close current tab",
"close-others-in-tab-group": "Close others in tab group",
"close-other-tabs": "Close all other tabs",
"close-tab-group": "Close this tab group",
"toggle-left-sidebar": "Chuyển đổi thanh bên trái",
"toggle-right-sidebar": "Chuyển đổi thanh bên phải",
"toggle-default-new-tab-mode": "Toggle default mode for new tabs",
"focus-editor": "Tiêu điểm trên biên tập viên",
"toggle-fold": "Chuyển đổi nếp gấp trên dòng hiện tại",
"fold-all": "Gấp tất cả các tiêu đề và danh sách",
"unfold-all": "Mở rộng tất cả các đề mục và danh sách",
"fold-more": "Fold more",
"fold-less": "Fold less",
"swap-line-up": "Hoán đổi dòng lên",
"swap-line-down": "Hoán đổi dòng xuống",
"remove-heading": "Remove heading",
"toggle-heading": "Set as heading {{level}}",
"toggle-bold": "Chuyển sang in đậm để chọn",
"toggle-italics": "Chuyển đổi in nghiêng cho lựa chọn",
"toggle-highlight": "Chuyển đổi đánh dấu cho lựa chọn",
"toggle-comments": "Chuyển đổi nhận xét để lựa chọn",
"insert-link": "Chèn liên kết",
"toggle-spellcheck": "Chuyển đổi kiểm tra chính tả",
"delete-paragraph": "Xóa đoạn",
"toggle-checklist": "Chuyển đổi trạng thái danh sách kiểm tra",
"cycle-list-checklist": "Cycle bullet/checkbox",
"insert-callout": "Insert callout",
"edit-file-title": "Chỉnh sửa tiêu đề tệp",
"copy-path": "Sao chép đường dẫn tệp",
"copy-url": "Sao chép url obsidian",
"export-pdf": "Xuất sang PDF",
"reload": "Tải lại ứng dụng mà không lưu",
"undo-close-tab": "Undo close tab",
"context-menu": "Hiển thị menu ngữ cảnh dưới con trỏ ",
"show-debug-info": "Hiển thị thông tin gỡ lỗi",
"open-sandbox-vault": "Open sandbox vault",
"always-on-top": "Toggle window always on top",
"zoom-in": "Zoom in",
"zoom-out": "Zoom out",
"reset-zoom": "Reset zoom",
"toggle-preview": "Chuyển đổi chế độ chỉnh sửa/xem trước",
"move-to-new-window": "Move current pane to new window",
"open-in-new-window": "Open current pane in new window",
"rename-current-file": "Rename current file"
},
"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-do-not-ask-again": "Don't ask again",
"label-existing-backlink": "There are currently {{links}} pointing to this note.",
"label-existing-backlink_plural": "There are currently {{links}} pointing to this note.",
"label-delete-file": "Delete file",
"button-manage": "Manage",
"button-cancel": "Cancel",
"button-done": "Done",
"button-save": "Save",
"button-stop": "Stop",
"button-continue": "Continue",
"preparing-pdf": "Preparing PDF...",
"label-rename-file": "Rename file",
"label-rename-file-generic": "File name",
"label-new-name": "New name",
"msg-rename-success": "Successfully renamed file.",
"label-rename-heading": "Rename heading",
"label-rename-blockid": "Rename block ID"
},
"menu-items": {
"new-file": "Create Note",
"new-file-to-the-right": "New Note to the Right",
"new-window": "New Window",
"open-switcher": "Open Quickly...",
"open-vault": "Open Vault...",
"close-tab": "Close Tab",
"close-window": "Close Window",
"find": "Find",
"replace": "Replace",
"insert-callout": "Callout",
"insert-markdown-link": "Markdown Link",
"insert-wikilink": "Link",
"set-heading": "Heading {{level}}",
"no-heading": "No Heading",
"insert-quote": "Quote",
"export-pdf": "Export PDF",
"toggle-bullet-list": "Bullet List",
"toggle-numbered-list": "Numbered List",
"toggle-checklist": "Task List",
"toggle-bold": "Bold",
"toggle-code": "Code",
"toggle-comment": "Comment",
"toggle-italics": "Italics",
"toggle-highlight": "Highlight",
"toggle-strikethrough": "Strikethrough",
"toggle-comments": "Comment",
"fold-all": "Fold All",
"unfold-all": "Unfold All",
"fold-more": "Fold More",
"fold-less": "Fold Less",
"source-mode": "Source Mode",
"reading-view": "Reading View",
"show-debug-info": "Show Debug Info",
"open-sandbox": "Open Sandbox Vault",
"navigate-back": "Navigate Back",
"navigate-forward": "Navigate Forward",
"toggle-left-sidebar": "Toggle Left Sidebar",
"toggle-right-sidebar": "Toggle Right Sidebar",
"split-right": "Split Right",
"split-down": "Split Down",
"release-notes": "Release Notes"
},
"plugins": {
"name": "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-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-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.",
"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-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-tab": "to open in new tab",
"instruction-open-to-the-right": "to open to the right",
"instruction-create": "to create",
"instruction-dismiss": "to dismiss",
"instruction-select": "to select",
"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",