-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathaccessibility-checker-vi.po
More file actions
2157 lines (1662 loc) · 138 KB
/
Copy pathaccessibility-checker-vi.po
File metadata and controls
2157 lines (1662 loc) · 138 KB
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
# Copyright (C) 2025 Equalize Digital
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
"Project-Id-Version: Accessibility Checker 1.26.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2025-06-24T21:54:49+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.11.0\n"
"X-Domain: accessibility-checker\n"
#. Plugin Name of the plugin
#: accessibility-checker.php
#: admin/class-meta-boxes.php:39
#: includes/classes/class-accessibility-statement.php:50
#: includes/options-page.php:43
#: partials/welcome-page.php:24
msgid "Accessibility Checker"
msgstr "Trình kiểm tra khả năng tiếp cận"
#. Plugin URI of the plugin
#: accessibility-checker.php
msgid "https://a11ychecker.com"
msgstr "https://a11ychecker.com"
#. Description of the plugin
#: accessibility-checker.php
msgid "Audit and check your website for accessibility before you hit publish. In-post accessibility scanner and guidance."
msgstr "Kiểm tra và đánh giá khả năng tiếp cận của trang web của bạn trước khi xuất bản. Công cụ quét và hướng dẫn khả năng tiếp cận trong bài viết."
#. Author of the plugin
#: accessibility-checker.php
msgid "Equalize Digital"
msgstr "Equalize Digital"
#. Author URI of the plugin
#: accessibility-checker.php
msgid "https://equalizedigital.com"
msgstr "https://equalizedigital.com"
#: admin/AdminPage/FixesPage.php:71
#: admin/site-health/class-free.php:105
#: admin/site-health/class-pro.php:90
msgid "Fixes"
msgstr "Sửa lỗi"
#: admin/AdminPage/FixesPage.php:138
msgid "General Fixes"
msgstr "Sửa lỗi chung"
#: admin/AdminPage/FixesPage.php:212
msgid "These fixes help improve accessibility by modifying HTML elements and behaviors on your site."
msgstr "Những sửa đổi này giúp cải thiện khả năng tiếp cận bằng cách điều chỉnh các phần tử HTML và hành vi trên trang web của bạn."
#: admin/AdminPage/FixesSettingType/Checkbox.php:46
#: admin/AdminPage/FixesSettingType/Text.php:37
#: build/admin.bundle.js:2
msgid "Get Pro to unlock this feature, opens in a new window."
msgstr "Nâng cấp lên bản Pro để mở khóa tính năng này, mở trong cửa sổ mới."
#: admin/AdminPage/FixesSettingType/Checkbox.php:47
#: admin/AdminPage/FixesSettingType/Text.php:38
msgid "Get Pro"
msgstr "Nâng cấp lên bản Pro"
#: admin/AdminPage/FixesSettingType/Checkbox.php:67
#: admin/class-ajax.php:338
msgid "Opens in a new window."
msgstr "Mở trong cửa sổ mới."
#. translators: %s: the label of the fix
#: admin/AdminPage/FixesSettingType/Text.php:54
msgid "Read documentation for %s. Opens in a new window."
msgstr "Đọc tài liệu cho %s. Mở trong cửa sổ mới."
#: admin/class-accessibility-statement.php:33
msgid "Our Commitment to Web Accessibility"
msgstr "Cam kết của chúng tôi về khả năng tiếp cận web"
#: admin/class-accessibility-statement.php:53
msgid "[YOUR COMPANY NAME] is committed to providing a fully accessible website experience for all users of all abilities, including those who rely on assistive technologies like screen readers, screen enlargement software, and alternative keyboard input devices to navigate the web."
msgstr "[TÊN CÔNG TY CỦA BẠN] cam kết cung cấp trải nghiệm trang web hoàn toàn có thể tiếp cận cho tất cả người dùng thuộc mọi khả năng, bao gồm cả những người phụ thuộc vào các công nghệ hỗ trợ như trình đọc màn hình, phần mềm phóng to màn hình và các thiết bị nhập liệu bàn phím thay thế để điều hướng web."
#: admin/class-accessibility-statement.php:54
msgid "Ongoing Efforts to Ensure Accessibility"
msgstr "Nỗ lực liên tục để đảm bảo khả năng tiếp cận"
#: admin/class-accessibility-statement.php:55
msgid "We follow the <a href=\"https://www.w3.org/TR/WCAG21/\">Web Content Accessibility Guidelines (WCAG) version 2.1</a> as our guiding principle for determining accessibility. These are internationally agreed-upon standards that cover a wide range of recommendations and best practices for making content useable. As we add new pages and functionality to our website, all designs, code, and content entry practices are checked against these standards."
msgstr "Chúng tôi tuân theo <a href=\"https://www.w3.org/TR/WCAG21/\">Hướng dẫn về Khả năng Tiếp cận Nội dung Web (WCAG) phiên bản 2.1</a> làm nguyên tắc chỉ đạo để xác định khả năng tiếp cận. Đây là các tiêu chuẩn được thống nhất quốc tế bao gồm nhiều khuyến nghị và thực tiễn tốt nhất để làm cho nội dung có thể sử dụng được. Khi chúng tôi thêm các trang mới và chức năng mới vào trang web của mình, tất cả các thiết kế, mã và thực hành nhập nội dung đều được kiểm tra dựa trên các tiêu chuẩn này."
#: admin/class-accessibility-statement.php:56
msgid "Website accessibility is an ongoing process. We continually test content and features for WCAG 2.1 Level AA compliance and remediate any issues to ensure we meet or exceed the standards. Testing of our website is performed by our team members using industry-standard tools such as the <a href=\"https://a11ychecker.com/\">Accessibility Checker WordPress Plugin</a>, color contrast analyzers, keyboard-only navigation techniques, and Flesch-Kincaid readability tests."
msgstr "Khả năng tiếp cận trang web là một quá trình liên tục. Chúng tôi thường xuyên kiểm tra nội dung và tính năng để đảm bảo tuân thủ WCAG 2.1 Cấp AA và khắc phục mọi vấn đề để đảm bảo đáp ứng hoặc vượt quá các tiêu chuẩn. Việc kiểm tra trang web của chúng tôi được thực hiện bởi các thành viên trong nhóm sử dụng các công cụ tiêu chuẩn trong ngành như <a href=\"https://a11ychecker.com/\">Plugin WordPress Accessibility Checker</a>, công cụ phân tích độ tương phản màu sắc, kỹ thuật điều hướng chỉ bằng bàn phím và kiểm tra độ dễ đọc Flesch-Kincaid."
#: admin/class-accessibility-statement.php:57
msgid "Accessibility Features On Our Website"
msgstr "Các tính năng tiếp cận trên trang web của chúng tôi"
#: admin/class-accessibility-statement.php:58
msgid "The following is a list of items we have included in our website to improve its accessibility:"
msgstr "Sau đây là danh sách các mục chúng tôi đã bao gồm trong trang web của mình để cải thiện khả năng tiếp cận:"
#: admin/class-accessibility-statement.php:59
msgid "[LIST ACCESSIBILITY FEATURES HERE]"
msgstr "[LIỆT KÊ CÁC TÍNH NĂNG TIẾP CẬN Ở ĐÂY]"
#: admin/class-accessibility-statement.php:60
msgid "Where We're Improving"
msgstr "Những điểm chúng tôi đang cải thiện"
#: admin/class-accessibility-statement.php:61
msgid "In our efforts to bring our website up to standard, we are targeting the following areas:"
msgstr "Trong nỗ lực nâng cấp trang web của chúng tôi lên tiêu chuẩn, chúng tôi đang nhắm vào các lĩnh vực sau:"
#: admin/class-accessibility-statement.php:62
msgid "[LIST ITEMS YOU'RE WORKING TO FIX HERE]"
msgstr "[LIỆT KÊ CÁC MỤC BẠN ĐANG LÀM VIỆC ĐỂ SỬA CHỮA Ở ĐÂY]"
#: admin/class-accessibility-statement.php:63
msgid "[IT MAY HELP TO REVIEW THE OPEN ISSUES TAB TO SEE THE MOST COMMON PROBLEMS]"
msgstr "[CÓ THỂ HỮU ÍCH KHI XEM LẠI TAB CÁC VẤN ĐỀ MỞ ĐỂ XEM CÁC VẤN ĐỀ PHỔ BIẾN NHẤT]"
#: admin/class-accessibility-statement.php:64
msgid "This is part of our broader effort to make everyone's experience at [COMPANY NAME] a welcoming and enjoyable one. Please note that while we make every effort to provide information accessible for all users, we cannot guarantee the accessibility of third party websites to which we may link."
msgstr "Đây là một phần trong nỗ lực rộng lớn hơn của chúng tôi nhằm tạo ra trải nghiệm chào đón và thú vị cho mọi người tại [TÊN CÔNG TY]. Xin lưu ý rằng mặc dù chúng tôi cố gắng hết sức để cung cấp thông tin có thể tiếp cận cho tất cả người dùng, chúng tôi không thể đảm bảo khả năng tiếp cận của các trang web bên thứ ba mà chúng tôi có thể liên kết đến."
#: admin/class-accessibility-statement.php:65
msgid "Accessibility Support Contact"
msgstr "Liên hệ hỗ trợ về khả năng tiếp cận"
#: admin/class-accessibility-statement.php:66
msgid "We welcome comments, questions, and feedback on our website. If you are using assistive technologies and are having difficulty using our website, please email [YOUR ACCESSIBILITY EMAIL ADDRESS] or give us a call at [YOUR PHONE NUMBER]. We will do our best to assist you and resolve issues."
msgstr "Chúng tôi hoan nghênh các nhận xét, câu hỏi và phản hồi về trang web của chúng tôi. Nếu bạn đang sử dụng các công nghệ hỗ trợ và gặp khó khăn khi sử dụng trang web của chúng tôi, vui lòng gửi email đến [ĐỊA CHỈ EMAIL TIẾP CẬN CỦA BẠN] hoặc gọi cho chúng tôi theo số [SỐ ĐIỆN THOẠI CỦA BẠN]. Chúng tôi sẽ cố gắng hết sức để hỗ trợ bạn và giải quyết các vấn đề."
#. translators: %1$s is the opening anchor tag, %2$s is the closing anchor tag.
#: admin/class-admin-notices.php:94
msgid "We have improved the statistics calculations in version 1.21.0. As a result, some numbers in the data below may have changed. Read more in our %1$srelease announcement post%2$s."
msgstr "Chúng tôi đã cải thiện các tính toán thống kê trong phiên bản 1.21.0. Do đó, một số con số trong dữ liệu dưới đây có thể đã thay đổi. Đọc thêm trong %1$sbài đăng thông báo phát hành%2$s của chúng tôi."
#: admin/class-admin-notices.php:114
#: admin/class-admin-notices.php:225
#: admin/class-admin-notices.php:312
#: admin/class-admin-notices.php:401
#: admin/class-admin-notices.php:483
#: admin/class-ajax.php:56
#: admin/class-ajax.php:196
#: admin/class-ajax.php:561
#: admin/class-ajax.php:700
#: admin/class-ajax.php:780
#: admin/class-frontend-highlight.php:79
msgid "Permission Denied"
msgstr "Quyền truy cập bị từ chối"
#: admin/class-admin-notices.php:123
#: admin/class-admin-notices.php:234
#: admin/class-admin-notices.php:324
#: admin/class-admin-notices.php:421
#: admin/class-admin-notices.php:492
msgid "Update option wasn't successful"
msgstr "Cập nhật tùy chọn không thành công"
#: admin/class-admin-notices.php:203
msgid "🎉 Black Friday special! 🎉"
msgstr "🎉 Ưu đãi đặc biệt Black Friday! 🎉"
#: admin/class-admin-notices.php:204
msgid "Upgrade to a paid version of Accessibility Checker from November 25th to December 3rd and get 30% off! Full site scanning, site-wide open issues report, ignore logs, and more."
msgstr "Nâng cấp lên phiên bản trả phí của Accessibility Checker từ ngày 25 tháng 11 đến ngày 3 tháng 12 và được giảm giá 30%! Quét toàn bộ trang web, báo cáo vấn đề mở toàn trang, nhật ký bỏ qua và nhiều tính năng khác."
#: admin/class-admin-notices.php:205
#: admin/class-admin-notices.php:292
msgid "Ask a Pre-Sale Question"
msgstr "Đặt câu hỏi trước khi mua"
#: admin/class-admin-notices.php:206
#: admin/class-admin-notices.php:293
msgid "Upgrade Now"
msgstr "Nâng cấp ngay"
#: admin/class-admin-notices.php:290
msgid "🎉 Get 25% off Accessibility Checker Pro in honor of Global Accessibility Awareness Day! 🎉"
msgstr "🎉 Giảm giá 25% cho Accessibility Checker Pro nhân Ngày Nhận thức Khả năng Tiếp cận Toàn cầu! 🎉"
#: admin/class-admin-notices.php:291
msgid "Use coupon code GAAD25 from May 13th-May 21st to get access to full-site scanning and other pro features at a special discount. Not sure if upgrading is right for you?"
msgstr "Sử dụng mã giảm giá GAAD25 từ ngày 13 tháng 5 đến ngày 21 tháng 5 để được truy cập vào tính năng quét toàn bộ trang web và các tính năng Pro khác với mức giảm giá đặc biệt. Không chắc liệu nâng cấp có phù hợp với bạn không?"
#: admin/class-admin-notices.php:376
msgid "Hello! Thank you for using Accessibility Checker as part of your accessibility toolkit. Since you've been using it for a while, would you please write a 5-star review of Accessibility Checker in the WordPress plugin directory? This will help increase our visibility so more people can learn about the importance of web accessibility. Thanks so much!"
msgstr "Xin chào! Cảm ơn bạn đã sử dụng Accessibility Checker như một phần trong bộ công cụ kiểm tra khả năng tiếp cận của bạn. Vì bạn đã sử dụng nó một thời gian, bạn có thể viết đánh giá 5 sao cho Accessibility Checker trên thư mục plugin WordPress được không? Điều này sẽ giúp tăng khả năng hiển thị của chúng tôi để nhiều người có thể biết về tầm quan trọng của khả năng tiếp cận web. Cảm ơn bạn rất nhiều!"
#: admin/class-admin-notices.php:379
msgid "Write A Review"
msgstr "Viết đánh giá"
#: admin/class-admin-notices.php:380
msgid "Remind Me In Two Weeks"
msgstr "Nhắc tôi sau hai tuần"
#: admin/class-admin-notices.php:381
msgid "Never Ask Again"
msgstr "Không bao giờ hỏi lại"
#: admin/class-admin-notices.php:408
msgid "The review action value was not set"
msgstr "Giá trị hành động đánh giá không được thiết lập"
#. translators: %s is the link to upgrade to pro, with "upgrade to pro" as the anchor text.
#: admin/class-admin-notices.php:446
msgid "Whoops! It looks like your website is currently password protected. The free version of Accessibility Checker can only scan live websites. To scan this website for accessibility problems either remove the password protection or %s. Scan results may be stored from a previous scan."
msgstr "Ối! Có vẻ như trang web của bạn hiện đang được bảo vệ bằng mật khẩu. Phiên bản miễn phí của Accessibility Checker chỉ có thể quét các trang web trực tiếp. Để quét trang web này về các vấn đề khả năng tiếp cận, hãy gỡ bỏ bảo vệ mật khẩu hoặc %s. Kết quả quét có thể được lưu trữ từ lần quét trước đó."
#: admin/class-admin-notices.php:449
msgid "Upgrade to accessibility checker pro. Opens in a new window."
msgstr "Nâng cấp lên Accessibility Checker Pro. Mở trong cửa sổ mới."
#: admin/class-admin-notices.php:450
#: includes/options-page.php:448
msgid "upgrade to pro"
msgstr "nâng cấp lên pro"
#: admin/class-ajax.php:63
#: admin/class-ajax.php:203
#: admin/class-ajax.php:568
#: admin/class-ajax.php:787
msgid "The post ID was not set"
msgstr "ID bài viết chưa được thiết lập"
#: admin/class-ajax.php:92
msgid "A Simplified summary has not been included for this content."
msgstr "Bản tóm tắt đơn giản hóa chưa được bao gồm cho nội dung này."
#: admin/class-ajax.php:95
msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary."
msgstr "Nội dung của bạn có trình độ đọc ở mức lớp 9 hoặc thấp hơn và không cần bản tóm tắt đơn giản hóa."
#: admin/class-ajax.php:98
msgid "The reading level of the simplified summary is too high."
msgstr "Trình độ đọc của bản tóm tắt đơn giản hóa quá cao."
#: admin/class-ajax.php:100
msgid "A simplified summary has been included for this content."
msgstr "Bản tóm tắt đơn giản hóa đã được bao gồm cho nội dung này."
#. translators: %s: Number of errors
#: admin/class-ajax.php:133
msgid "%s Error"
msgid_plural "%s Errors"
msgstr[0] "%s Lỗi"
msgstr[1] "%s Lỗi"
#. translators: %s: Number of contrast errors
#: admin/class-ajax.php:139
msgid "%s Contrast Error"
msgid_plural "%s Contrast Errors"
msgstr[0] "%s Lỗi tương phản"
msgstr[1] "%s Lỗi tương phản"
#. translators: %s: Number of warnings
#: admin/class-ajax.php:145
msgid "%s Warning"
msgid_plural "%s Warnings"
msgstr[0] "%s Cảnh báo"
msgstr[1] "%s Cảnh báo"
#. translators: %s: Number of ignored items
#: admin/class-ajax.php:151
msgid "%s Ignored Item"
msgid_plural "%s Ignored Items"
msgstr[0] "%s Mục bị bỏ qua"
msgstr[1] "%s Mục bị bỏ qua"
#: admin/class-ajax.php:173
msgid "No summary to return"
msgstr "Không có bản tóm tắt để trả về"
#: admin/class-ajax.php:217
msgid "Invalid table name"
msgstr "Tên bảng không hợp lệ"
#: admin/class-ajax.php:363
msgid "These settings enable global fixes across your entire site."
msgstr "Những cài đặt này cho phép sửa lỗi toàn cục trên toàn bộ trang web của bạn."
#: admin/class-ajax.php:364
msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports."
msgstr "Các trang có thể cần được lưu lại hoặc quét toàn bộ trang web cần được thực hiện để thấy các sửa đổi được phản ánh trong báo cáo."
#: admin/class-ajax.php:392
#: build/frontendHighlighterApp.bundle.js:2
msgid "Save"
msgstr "Lưu"
#: admin/class-ajax.php:412
msgid "Affected Code"
msgstr "Mã bị ảnh hưởng"
#. Translators: %d is the issue ID.
#: admin/class-ajax.php:477
msgid "View Issue ID %d on website, opens a new window"
msgstr "Xem Vấn đề ID %d trên trang web, mở cửa sổ mới"
#: admin/class-ajax.php:478
msgid "View on page"
msgstr "Xem trên trang"
#: admin/class-ajax.php:497
msgid "Fix: "
msgstr "Sửa: "
#: admin/class-ajax.php:498
msgid "Fix"
msgstr "Sửa"
#: admin/class-ajax.php:521
msgid "Your user account doesn't have permission to ignore this issue."
msgstr "Tài khoản người dùng của bạn không có quyền bỏ qua vấn đề này."
#: admin/class-ajax.php:539
msgid "No details to return"
msgstr "Không có chi tiết để trả về"
#: admin/class-ajax.php:679
msgid "No readability data to return"
msgstr "Không có dữ liệu khả năng đọc để trả về"
#: admin/class-ajax.php:736
#: admin/class-ajax.php:759
msgid "No ignore data to return"
msgstr "Không có dữ liệu bỏ qua để trả về"
#: admin/class-ajax.php:794
msgid "The summary was not set"
msgstr "Bản tóm tắt chưa được thiết lập"
#: admin/class-frontend-highlight.php:84
msgid "The id value was not set"
msgstr "Giá trị id chưa được thiết lập"
#: admin/class-frontend-highlight.php:92
msgid "Issue query returned no results"
msgstr "Truy vấn vấn đề không trả về kết quả nào"
#: admin/class-frontend-highlight.php:137
msgid "Object query returned no results"
msgstr "Truy vấn đối tượng không trả về kết quả nào"
#: admin/class-welcome-page.php:38
msgid "Most Recent Test Summary"
msgstr "Tóm tắt kiểm tra gần đây nhất"
#: admin/class-welcome-page.php:44
msgid "Update Counts"
msgstr "Cập nhật số lượng"
#: admin/class-welcome-page.php:48
msgid "Start New Scan"
msgstr "Bắt đầu quét mới"
#: admin/class-welcome-page.php:52
msgid "View All Open Issues"
msgstr "Xem tất cả vấn đề đang mở"
#: admin/class-welcome-page.php:57
msgid "See History"
msgstr "Xem lịch sử"
#: admin/class-welcome-page.php:70
#: admin/class-widgets.php:92
msgid "Passed Tests"
msgstr "Các bài kiểm tra đã vượt qua"
#: admin/class-welcome-page.php:86
msgid "Unique Error"
msgid_plural "Unique Errors"
msgstr[0] "Lỗi độc nhất"
msgstr[1] "Lỗi độc nhất"
#: admin/class-welcome-page.php:111
msgid "Unique Color Contrast Error"
msgid_plural "Unique Color Contrast Errors"
msgstr[0] "Lỗi tương phản màu sắc độc nhất"
msgstr[1] "Lỗi tương phản màu sắc độc nhất"
#: admin/class-welcome-page.php:136
msgid "Unique Warning"
msgid_plural "Unique Warnings"
msgstr[0] "Cảnh báo độc nhất"
msgstr[1] "Cảnh báo độc nhất"
#: admin/class-welcome-page.php:161
msgid "Ignored Item"
msgid_plural "Ignored Items"
msgstr[0] "Mục bị bỏ qua"
msgstr[1] "Các mục bị bỏ qua"
#: admin/class-welcome-page.php:178
msgid "Average Issues Per Page"
msgstr "Số vấn đề trung bình mỗi trang"
#: admin/class-welcome-page.php:191
msgid "Average Issue Density"
msgstr "Mật độ vấn đề trung bình"
#: admin/class-welcome-page.php:204
#: admin/class-widgets.php:99
msgid "Report Last Updated:"
msgstr "Báo cáo cập nhật lần cuối:"
#: admin/class-welcome-page.php:214
#: includes/options-page.php:392
msgid "Never"
msgstr "Chưa bao giờ"
#: admin/class-welcome-page.php:228
msgid "URLs Scanned"
msgstr "URL đã quét"
#. translators: %1$s is the number of post types with issues, %2$s is the number of public post types.
#: admin/class-welcome-page.php:239
msgid "%1$s of %2$s"
msgstr "%1$s trong số %2$s"
#: admin/class-welcome-page.php:248
msgid "Post Types Checked"
msgstr "Loại bài viết đã kiểm tra"
#: admin/class-welcome-page.php:261
msgid "URLs with 100% score"
msgstr "URL có điểm số 100%"
#: admin/class-welcome-page.php:269
msgid "This summary is automatically updated every 24 hours, or any time a full site scan is completed. You can also manually update these results by clicking the Update Counts button."
msgstr "Bản tóm tắt này được tự động cập nhật mỗi 24 giờ, hoặc bất cứ khi nào một lần quét toàn bộ trang web hoàn tất. Bạn cũng có thể cập nhật thủ công các kết quả này bằng cách nhấp vào nút Cập nhật Số lượng."
#: admin/class-welcome-page.php:275
msgid "Your site has a large number of issues. For performance reasons, not all issues have been included in this summary."
msgstr "Trang web của bạn có số lượng lớn vấn đề. Vì lý do hiệu suất, không phải tất cả các vấn đề đều được bao gồm trong bản tóm tắt này."
#: admin/class-welcome-page.php:285
msgid "Site-Wide Accessibility Reports"
msgstr "Báo cáo Khả năng Tiếp cận Toàn trang web"
#: admin/class-welcome-page.php:290
msgid "Hide banner"
msgstr "Ẩn banner"
#: admin/class-welcome-page.php:299
msgid "Unlock Detailed Accessibility Reports"
msgstr "Mở khóa báo cáo khả năng tiếp cận chi tiết"
#: admin/class-welcome-page.php:302
#: admin/class-widgets.php:65
msgid "Start scanning your entire website for accessibility issues, get full-site reports, and become compliant with accessibility guidelines faster."
msgstr "Bắt đầu quét toàn bộ trang web của bạn để tìm các vấn đề về khả năng tiếp cận, nhận báo cáo toàn trang web, và tuân thủ nhanh hơn các hướng dẫn về khả năng tiếp cận."
#: admin/class-welcome-page.php:306
#: admin/class-widgets.php:67
msgid "Upgrade Accessibility Checker"
msgstr "Nâng cấp Accessibility Checker"
#: admin/class-widgets.php:63
msgid "close ad"
msgstr "đóng quảng cáo"
#: admin/class-widgets.php:64
msgid "Get Detailed Accessibility Reports"
msgstr "Nhận báo cáo khả năng tiếp cận chi tiết"
#: admin/class-widgets.php:82
msgid "Full Site Accessibility Status"
msgstr "Trạng thái khả năng tiếp cận toàn trang web"
#: admin/class-widgets.php:107
msgid "URLs Scanned:"
msgstr "URL đã quét:"
#: admin/class-widgets.php:115
msgid "Errors:"
msgstr "Lỗi:"
#: admin/class-widgets.php:119
msgid "Color Contrast Errors:"
msgstr "Lỗi tương phản màu sắc:"
#: admin/class-widgets.php:123
msgid "Warnings:"
msgstr "Cảnh báo:"
#: admin/class-widgets.php:132
msgid "Your site has accessibility issues that should be addressed as soon as possible to ensure compliance with accessibility guidelines."
msgstr "Trang web của bạn có các vấn đề về khả năng tiếp cận cần được giải quyết càng sớm càng tốt để đảm bảo tuân thủ các hướng dẫn về khả năng tiếp cận."
#: admin/class-widgets.php:135
msgid "Way to go! Accessibility Checker cannot find any accessibility problems in the content it tested. Some problems cannot be found by automated tools so don't forget to"
msgstr "Tuyệt vời! Accessibility Checker không tìm thấy bất kỳ vấn đề nào về khả năng tiếp cận trong nội dung đã kiểm tra. Một số vấn đề không thể được phát hiện bởi các công cụ tự động, vì vậy đừng quên"
#: admin/class-widgets.php:135
msgid "manually test your site"
msgstr "kiểm tra trang web của bạn thủ công"
#: admin/class-widgets.php:150
msgid "Issues By Post Type"
msgstr "Vấn đề theo loại bài viết"
#: admin/class-widgets.php:157
msgid "Post Type"
msgstr "Loại bài viết"
#: admin/class-widgets.php:160
msgid "Errors"
msgstr "Lỗi"
#: admin/class-widgets.php:163
msgid "Contrast"
msgstr "Tương phản"
#: admin/class-widgets.php:166
msgid "Warnings"
msgstr "Cảnh báo"
#: admin/class-widgets.php:225
msgid "Upgrade to Scan"
msgstr "Nâng cấp để quét"
#: admin/class-widgets.php:254
msgid "See More Reports"
msgstr "Xem thêm báo cáo"
#: admin/class-widgets.php:264
#: partials/welcome-page.php:232
msgid "Learn Accessibility"
msgstr "Học về khả năng tiếp cận"
#: admin/class-widgets.php:273
msgid "Additional Resources"
msgstr "Tài nguyên bổ sung"
#: admin/class-widgets.php:274
msgid "Blog (opens in a new window)"
msgstr "Blog (mở trong cửa sổ mới)"
#: admin/class-widgets.php:274
msgid "Blog"
msgstr "Blog"
#: admin/class-widgets.php:275
msgid "Documentation (opens in a new window)"
msgstr "Tài liệu (mở trong cửa sổ mới)"
#: admin/class-widgets.php:275
msgid "Documentation"
msgstr "Tài liệu"
#: admin/opt-in/class-email-opt-in.php:115
msgid "Accessibility Events & News in Your Inbox"
msgstr "Sự kiện & tin tức về khả năng tiếp cận trong hộp thư của bạn"
#: admin/opt-in/class-email-opt-in.php:121
msgid "Subscribe to Equalize Digital's email list to get access to free accessibility webinars and training resources."
msgstr "Đăng ký vào danh sách email của Equalize Digital để nhận được quyền truy cập vào các hội thảo trực tuyến và tài nguyên đào tạo miễn phí về khả năng tiếp cận."
#: admin/opt-in/class-email-opt-in.php:127
msgid "Email*"
msgstr "Email*"
#: admin/opt-in/class-email-opt-in.php:131
msgid "Type your email"
msgstr "Nhập email của bạn"
#: admin/opt-in/class-email-opt-in.php:139
msgid "First Name"
msgstr "Tên"
#: admin/opt-in/class-email-opt-in.php:143
msgid "Type your first name"
msgstr "Nhập tên của bạn"
#: admin/site-health/class-audit-history.php:32
msgid "Accessibility Checker — Audit History"
msgstr "Accessibility Checker — Lịch sử kiểm tra"
#: admin/site-health/class-free.php:46
msgid "Accessibility Checker — Free"
msgstr "Accessibility Checker — Miễn phí"
#: admin/site-health/class-free.php:49
#: admin/site-health/class-pro.php:50
msgid "Version"
msgstr "Phiên bản"
#: admin/site-health/class-free.php:53
#: admin/site-health/class-pro.php:54
msgid "Database Version"
msgstr "Phiên bản cơ sở dữ liệu"
#: admin/site-health/class-free.php:57
msgid "Policy Page"
msgstr "Trang chính sách"
#: admin/site-health/class-free.php:58
#: admin/site-health/class-free.php:78
#: admin/site-health/class-pro.php:51
#: admin/site-health/class-pro.php:55
#: admin/site-health/class-pro.php:63
#: admin/site-health/class-pro.php:67
msgid "Unset"
msgstr "Chưa thiết lập"
#: admin/site-health/class-free.php:61
msgid "Activation Date"
msgstr "Ngày kích hoạt"
#: admin/site-health/class-free.php:65
msgid "Footer Statement"
msgstr "Tuyên bố chân trang"
#: admin/site-health/class-free.php:66
#: admin/site-health/class-free.php:70
#: admin/site-health/class-free.php:74
msgid "Enabled"
msgstr "Đã bật"
#: admin/site-health/class-free.php:66
#: admin/site-health/class-free.php:70
#: admin/site-health/class-free.php:74
msgid "Disabled"
msgstr "Đã tắt"
#: admin/site-health/class-free.php:69
#: includes/options-page.php:137
msgid "Delete Data"
msgstr "Xóa dữ liệu"
#: admin/site-health/class-free.php:73
msgid "Include Statement Link"
msgstr "Bao gồm liên kết tuyên bố"
#: admin/site-health/class-free.php:77
msgid "Post Types"
msgstr "Loại bài viết"
#: admin/site-health/class-free.php:81
msgid "Simplified Sum Position"
msgstr "Vị trí tóm tắt đơn giản hóa"
#: admin/site-health/class-free.php:85
msgid "Simplified Sum Prompt"
msgstr "Lời nhắc tóm tắt đơn giản hóa"
#: admin/site-health/class-free.php:89
msgid "Post Count"
msgstr "Số lượng bài viết"
#: admin/site-health/class-free.php:93
msgid "Error Count"
msgstr "Số lượng lỗi"
#: admin/site-health/class-free.php:97
msgid "Warning Count"
msgstr "Số lượng cảnh báo"
#: admin/site-health/class-free.php:101
msgid "DB Table Count"
msgstr "Số lượng Bảng DB"
#: admin/site-health/class-pro.php:47
msgid "Accessibility Checker — Pro"
msgstr "Accessibility Checker — Pro"
#: admin/site-health/class-pro.php:58
msgid "License Status"
msgstr "Trạng thái giấy phép"
#: admin/site-health/class-pro.php:62
msgid "Authorization Username"
msgstr "Tên người dùng ủy quyền"
#: admin/site-health/class-pro.php:66
msgid "Authorization Password"
msgstr "Mật khẩu ủy quyền"
#: admin/site-health/class-pro.php:70
msgid "Scan ID"
msgstr "ID quét"
#: admin/site-health/class-pro.php:74
msgid "Scan Total"
msgstr "Tổng số lần quét"
#: admin/site-health/class-pro.php:78
msgid "Simplified Sum Heading"
msgstr "Tiêu đề tóm tắt đơn giản hóa"
#: admin/site-health/class-pro.php:82
msgid "Ignore Permissions"
msgstr "Quyền bỏ qua"
#: admin/site-health/class-pro.php:83
msgid "None"
msgstr "Không có"
#: admin/site-health/class-pro.php:86
msgid "Ignores DB Table Count"
msgstr "Số lượng Bảng DB bỏ qua"
#. translators: %1$s is the site name, %2$s is a link with the plugin name.
#: includes/classes/class-accessibility-statement.php:45
msgid "%1$s uses %2$s to monitor our website's accessibility."
msgstr "Trình %1$s sử dụng %2$s để theo dõi khả năng truy cập của trang web của chúng tôi."
#: includes/classes/class-accessibility-statement.php:49
msgid "Accessibility Checker (opens in a new window)"
msgstr "Accessibility Checker (mở trong cửa sổ mới)"
#. translators: %1$s is a link to the accessibility policy page, with text "Accessibility Policy".
#: includes/classes/class-accessibility-statement.php:58
msgid "Read our %s"
msgstr "Đọc %s của chúng tôi"
#: includes/classes/class-accessibility-statement.php:59
msgid "Accessibility Policy"
msgstr "Chính sách về khả năng truy cập"
#: includes/classes/class-simplified-summary.php:73
msgid "Simplified Summary"
msgstr "Tóm tắt đơn giản"
#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:34
msgid "Add Size & Type To File Links"
msgstr "Thêm kích thước & loại vào liên kết tệp"
#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:43
msgid "Add Context to Linked Files"
msgstr "Thêm ngữ cảnh cho các tệp được liên kết"
#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:76
msgid "Add File Size & Type To Links"
msgstr "Thêm kích thước & loại tệp vào liên kết"
#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:78
msgid "Add the file size and type to linked files that may trigger a download."
msgstr "Thêm kích thước và loại tệp vào các liên kết tệp có thể kích hoạt tải xuống."
#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:34
msgid "Add Labels to Unlabelled Form Fields"
msgstr "Thêm nhãn cho các trường biểu mẫu chưa có nhãn"
#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:43
#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:66
#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:89
msgid "Label Form Fields"
msgstr "Gắn nhãn cho các trường biểu mẫu"
#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:92
msgid "Add labels to unlabelled form fields if field purpose can be determined."
msgstr "Thêm nhãn cho các trường biểu mẫu chưa có nhãn nếu có thể xác định mục đích của trường."
#. translators: %1$s: a CSS class name wrapped in a <code> tag.
#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:123
msgid "Attempt to add labels to form fields that are missing them. Note: You may need to add custom styles targeting the %1$s class if adding labels affects your form layouts."
msgstr "Cố gắng thêm nhãn cho các trường biểu mẫu còn thiếu. Lưu ý: Bạn có thể cần thêm kiểu tùy chỉnh nhắm vào lớp %1$s nếu việc thêm nhãn ảnh hưởng đến bố cục biểu mẫu của bạn."
#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:34
msgid "Add Missing or Empty Page Titles"
msgstr "Thêm tiêu đề trang bị thiếu hoặc trống"
#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:43
msgid "Set Page HTML Titles"
msgstr "Đặt tiêu đề HTML cho trang"
#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:77
msgid "Add Missing Page Title"
msgstr "Thêm tiêu đề trang bị thiếu"
#. translators: %1$s: a code tag with a title tag.
#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:80
msgid "Add a %1$s tag to the page if it's missing or empty."
msgstr "Thêm thẻ %1$s vào trang nếu nó bị thiếu hoặc trống."
#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:34
msgid "Add warning when link opens new tab/window"
msgstr "Thêm cảnh báo khi liên kết mở tab/cửa sổ mới"
#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:68
msgid "Add Label To Links That Open A New Tab/Window"
msgstr "Thêm nhãn cho các liên kết mở tab/cửa sổ mới"
#. translators: %1%s: A <code> tag containing target="_blank".
#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:73
msgid "Add a label and icon to links with %1$s informing users they will open a new tab/window. %2$sNote: This setting will have no effect if the \"Block Links Opening New Windows\" fix is enabled.%3$s"
msgstr "Thêm nhãn và biểu tượng cho các liên kết có %1$s thông báo cho người dùng rằng chúng sẽ mở một tab/cửa sổ mới. %2$sLưu ý: Cài đặt này sẽ không có tác dụng nếu tính năng \"Chặn Liên kết Mở Cửa sổ Mới\" được bật.%3$s"
#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:36
#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:68
msgid "Block PDF Uploads"
msgstr "Chặn Tải lên PDF"
#. translators: %1$s: a code tag with the capability name.
#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:72
msgid "Restrict PDF uploads for users without the %1$s capability (allowed for admins by default)."
msgstr "Hạn chế tải lên PDF đối với người dùng không có khả năng %1$s (mặc định cho phép đối với quản trị viên)."
#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:34
msgid "Add Labels to Comment and Search Forms"
msgstr "Thêm nhãn cho biểu mẫu bình luận và tìm kiếm"
#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:43
msgid "Label Comment/Search Fields"
msgstr "Gắn nhãn cho trường bình luận/tìm kiếm"
#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:66
msgid "Comment and Search Form Labels"
msgstr "Nhãn biểu mẫu bình luận và tìm kiếm"
#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:67
msgid "Add missing labels to WordPress comment and search forms."
msgstr "Thêm nhãn còn thiếu cho biểu mẫu bình luận và tìm kiếm WordPress."
#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:90
msgid "Label Comment Form"
msgstr "Gắn nhãn biểu mẫu bình luận"
#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:93
msgid "Add missing labels to the WordPress comment form."
msgstr "Thêm nhãn còn thiếu cho biểu mẫu bình luận WordPress."
#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:101
msgid "Label Search Form"
msgstr "Gắn nhãn biểu mẫu tìm kiếm"
#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:104
msgid "Add a missing label to the WordPress search form."
msgstr "Thêm nhãn còn thiếu cho biểu mẫu tìm kiếm WordPress."
#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:138
msgid "Comment"
msgstr "Bình luận"
#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:143
msgid "Name"
msgstr "Tên"
#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:148
msgid "Email"
msgstr "Email"
#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:153
msgid "Website"
msgstr "Trang web"
#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:177
msgid "Search …"
msgstr "Tìm kiếm …"
#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:182
msgid "Search for:"
msgstr "Tìm kiếm:"
#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:184
msgid "Search"
msgstr "Tìm kiếm"
#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:198
msgid "Settings to add missing labels to WordPress comment and search forms."
msgstr "Cài đặt để thêm nhãn còn thiếu vào biểu mẫu bình luận và tìm kiếm của WordPress."
#: includes/classes/Fixes/Fix/FocusOutlineFix.php:33
msgid "Add Focus Outlines"
msgstr "Thêm đường viền khi được focus"
#: includes/classes/Fixes/Fix/FocusOutlineFix.php:56
msgid "Focus Outline"
msgstr "Đường viền khi focus"
#: includes/classes/Fixes/Fix/FocusOutlineFix.php:57
#: includes/classes/Fixes/Fix/FocusOutlineFix.php:83
msgid "Add an outline to elements when they receive keyboard focus."
msgstr "Thêm đường viền cho các phần tử khi chúng được focus bằng bàn phím."
#: includes/classes/Fixes/Fix/FocusOutlineFix.php:81
msgid "Add Focus Outline"
msgstr "Thêm đường viền khi focus"
#: includes/classes/Fixes/Fix/FocusOutlineFix.php:112
msgid "Settings related to enhancing focus outlines for better keyboard accessibility."
msgstr "Các cài đặt liên quan đến việc nâng cao đường viền khi focus để cải thiện khả năng truy cập bằng bàn phím."
#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:33
msgid "Add lang & dir Attributes"
msgstr "Thêm thuộc tính lang & dir"
#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:42
msgid "Set Page Language"
msgstr "Đặt ngôn ngữ trang"
#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:76
msgid "Add \"lang\" & \"dir\" Attributes"
msgstr "Thêm thuộc tính \"lang\" & \"dir\""
#. translators: %1$s: a attribute name wrapped in a <code> tag. %2$s: dir attribute %3$s: html element.
#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:79
msgid "Add the site language (%1$s) and text direction (%2$s) attributes to the %3$s element."
msgstr "Thêm thuộc tính ngôn ngữ trang web (%1$s) và hướng văn bản (%2$s) vào phần tử %3$s."
#: includes/classes/Fixes/Fix/LinkUnderline.php:33
msgid "Add Underlines to all non-nav Links"
msgstr "Thêm gạch chân cho tất cả liên kết không phải điều hướng"
#: includes/classes/Fixes/Fix/LinkUnderline.php:42
msgid "Underline Links"
msgstr "Gạch chân liên kết"
#: includes/classes/Fixes/Fix/LinkUnderline.php:76
msgid "Force Link Underline"
msgstr "Bắt buộc gạch chân liên kết"
#: includes/classes/Fixes/Fix/LinkUnderline.php:78
msgid "Ensure that non-navigation links are underlined."
msgstr "Đảm bảo rằng các liên kết không phải điều hướng được gạch chân."
#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:34
msgid "Make Meta Viewport Tag Scalable"
msgstr "Làm cho thẻ meta viewport có thể điều chỉnh tỷ lệ"
#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:57
msgid "Ensure scalable viewport"
msgstr "Đảm bảo viewport có thể điều chỉnh tỷ lệ"
#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:58
msgid "Make sure that the viewport tag on the page allows scaling."
msgstr "Đảm bảo rằng thẻ viewport trên trang cho phép điều chỉnh tỷ lệ."
#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:81
msgid "Make Viewport Scalable"
msgstr "Làm cho viewport có thể điều chỉnh tỷ lệ"
#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:84
msgid "Ensure the viewport tag allows for scaling, enhancing accessibility on mobile devices."
msgstr "Đảm bảo thẻ viewport cho phép điều chỉnh tỷ lệ, nâng cao khả năng truy cập trên thiết bị di động."
#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:34
msgid "Prevent Links Opening New Windows"
msgstr "Ngăn liên kết mở cửa sổ mới"
#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:68
msgid "Block Links Opening New Windows"
msgstr "Chặn liên kết mở cửa sổ mới"
#. translators: %1%s: A <code> tag containing target="_blank".
#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:73
msgid "Prevent links from opening in a new window or tab by removing %1$s."
msgstr "Ngăn liên kết mở trong cửa sổ hoặc tab mới bằng cách xóa %1$s."
#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:34
msgid "Add \"Read\" Link with Post Title"
msgstr "Thêm liên kết \"Đọc\" với tiêu đề bài viết"
#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:43
msgid "Add Title to Read More Link"
msgstr "Thêm tiêu đề vào liên kết đọc thêm"
#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:66
msgid "Read More links"
msgstr "Liên kết Đọc thêm"
#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:67
msgid "Add the post title and links "
msgstr "Thêm tiêu đề bài viết và liên kết "
#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:91
msgid "Add Post Title To \"Read More\""
msgstr "Thêm tiêu đề bài viết vào \"Đọc thêm\""
#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:93
msgid "Add the post title to \"Read More\" links in post lists when your theme outputs those links."
msgstr "Thêm tiêu đề bài viết vào liên kết \"Đọc thêm\" trong danh sách bài viết khi giao diện của bạn hiển thị những liên kết đó."
#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:102
msgid "For Screen Readers Only"
msgstr "Chỉ dành cho trình đọc màn hình"
#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:104
msgid "Makes the post title added to \"Read More\" links visible only to screen readers."
msgstr "Làm cho tiêu đề bài viết được thêm vào liên kết \"Đọc thêm\" chỉ hiển thị với trình đọc màn hình."
#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:235
msgid "This fix adds the post title to the \"Read More\" links in post lists at the \"More\" block and in excerpts."
msgstr "Sửa đổi này thêm tiêu đề bài viết vào liên kết \"Đọc thêm\" trong danh sách bài viết tại khối \"Thêm\" và trong các đoạn trích."
#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:33
msgid "Prefer Accessible Label Attribute"
msgstr "Ưu tiên thuộc tính nhãn có thể truy cập"