-
Notifications
You must be signed in to change notification settings - Fork 1
/
common.yml
1597 lines (1453 loc) · 56.8 KB
/
common.yml
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
locale: vi-VN
translations:
###########################################################################
# General
###########################################################################
# homepage
- key: general.why_create_account
t: Tại sao tôi cần phải tạo một tài khoản?
- key: general.create_account_reasons
t: >
Chúng tôi yêu cầu bạn tạo một tài khoản để:
- Tránh các câu trả lời trùng lặp
- Cấp cho bạn quyền truy cập vào dữ liệu của bạn
- Lưu phiên làm việc của bạn khi bạn rời đi
- Thông báo cho bạn khi công bố kết quả
- key: general.survey_closed_detailed
t: >
Xin lỗi, cuộc khảo sát hiện đã kết thúc! Bạn vẫn có thể xem lại dữ liệu của mình nhưng sẽ không thể sửa đổi dữ liệu đó.
- key: general.survey_read_only
t: >
Bạn hiện đang xem khảo sát này ở chế độ chỉ đọc.
- key: general.survey_preview
t: >
Khảo sát này ở **chế độ xem trước**. Các câu hỏi của nó có thể thay đổi và tất cả dữ liệu đã nhập **sẽ bị xóa** khi cuộc khảo sát thực tế bắt đầu.
- key: general.survey_feedback
t: Để lại feedback
- key: general.survey_read_only_back
t: >
<a href="{link}">Quay lại</a> trang khảo sát chính để bắt đầu hoặc tiếp tục.
- key: general.take_survey
t: Tham gia khảo sát {name}
- key: options.na
t: 🚫 None
# surveys
- key: general.open_surveys
t: Các khảo sát đang mở
- key: general.no_open_surveys
t: Không có cuộc khảo sát nào đang mở.
- key: general.closed_surveys
t: Các khảo sát đã hoàn thành
- key: general.no_closed_surveys
t: Không có cuộc khảo sát nào hoàn thành.
- key: general.preview_surveys
t: Khảo sát đang chuẩn bị
- key: general.no_preview_surveys
t: Không có bản khảo sát nào để xem trước.
- key: general.start_survey
t: Bắt đầu làm khảo sát »
- key: general.continue_survey
t: Tiếp tục làm khảo sát »
- key: general.completion
t: "{completion}% đã hoàn thành"
- key: general.started_on
t: Bắt đầu vào {createdAt}
- key: general.last_modified_on
t: Lần cuối chỉnh sửa vào {updatedAt}
- key: general.review_survey
t: Đánh giá khảo sát »
- key: general.review_answers
t: Đánh giá câu trả lời »
- key: general.preview_survey
t: Khảo sát đang chuẩn bị »
- key: general.finish_survey
t: Kết thúc khảo sát
- key: general.next_section
t: Phần tiếp theo
- key: general.previous_section
t: Phần trước đó
- key: general.survey_closed
t: Khảo sát này hiện đã kết thúc.
- key: general.survey_closed_on
t: Khảo sát này đã kết thúc {endedAt}.
- key: general.survey_results
t: Xem kết quả khảo sát »
- key: general.surveys_available_languages
t: "Khảo sát có sẵn trong:"
- key: general.help_us_translate
t: Giúp chúng tôi dịch cuộc khảo sát »
- key: general.translators
t: Danh sách phiên dịch viên
- key: general.translation_help
t: Hỗ trợ dịch thuật
- key: general.newly_added
t: Mới được thêm vào năm nay
- key: general.new
t: Mới
- key: general.devographics_banner
t: <a href="https://www.devographics.com/" target="_blank">Devographics</a> là tên mới của nhóm điều hành các cuộc khảo sát State of JavaScript, CSS, và GraphQL.
# credits
- key: credits.thanks
t: Xin chân thành cảm ơn
- key: credits.contributors
t: Những người đóng góp
- key: credits.contributors.description
t: Đặc biệt cảm ơn những người sau đây đã giúp chúng tôi thiết kế cuộc khảo sát.
- key: credits.accessibility
t: Tư vấn về khả năng truy cập
- key: credits.survey_design
t: Thiết kế khảo sát
- key: credits.logo_design
t: Thiết kế logo
- key: credits.mobile_testing
t: Kiểm tra trên thiết bị di động
- key: credits.data_visualizations
t: Trực quan hóa dữ liệu
- key: credits.repo_architecture
t: Kiến trúc kho lưu trữ
- key: credits.code_refactoring
t: Cải thiện Code
- key: credits.data_processing
t: Xử lý dữ liệu
- key: credits.back_end_development
t: Phát triển Back-End
- key: credits.survey_review
t: Đánh giá khảo sát
# support
- key: general.support_from
t: Với sự hỗ trợ từ
# footer
- key: general.privacy_policy
t: Chính sách bảo mật
- key: general.leave_issue
t: Câu hỏi? Tìm thấy lỗi? <a href="{link}" target="_blank">Báo cáo sự cố</a>.
- key: general.leave_issue2
aliasFor: homepage.leave_issue
- key: general.emoji_icons
t: Biểu tượng cảm xúc bởi <a target="_blank" rel="noreferrer" href="https://icons8.com">Icons8</a>
# navigation
- key: general.table_of_contents
t: >
{sectionCount} section ({completion}% hoàn thành)
- key: general.all_questions_optional
t: >
Lưu ý: tất cả các câu hỏi đều là tùy chọn, không bắt buộc phải hoàn thành 100%.
- key: general.data_is_saved
t: Dữ liệu của bạn được lưu bất cứ khi nào bạn quay về trước hoặc đi tới phần tiếp theo.
- key: general.close_nav
t: Đóng menu
- key: general.open_nav
t: Mở menu
- key: general.more_actions
t: Thêm hành động
- key: general.skip_to_content
t: Bỏ qua đến nội dung
# thanks
- key: general.back
t: Quay lại
- key: general.back_to_survey
t: Quay lại khảo sát
- key: general.thanks
t: >
Cảm ơn bạn đã điền vào bản khảo sát! Dữ liệu của bạn đã được lưu.
Ngoài ra, bạn có thể giúp chúng tôi bằng cách chia sẻ khảo sát này.
Mỗi câu trả lời đều có giá trị và nó sẽ giúp làm cho dữ liệu của chúng tôi trở nên toàn diện hơn:
- key: general.thanks1
t: >
Cảm ơn bạn đã điền khảo sát! Dữ liệu của bạn đã được lưu.
- key: general.thanks2
t: >
Hãy giúp chúng tôi truyền bá bằng cách chia sẻ khảo sát này! Mọi đóng góp đều có giá trị
và sẽ giúp dữ liệu của chúng tôi đại diện hơn.
- key: thanks.learn_more_about
t: "Một số tính năng bạn có thể muốn tìm hiểu thêm:"
- key: thanks.knowledge_score
t: Điểm kiến thức
- key: thanks.features_score
t: Điểm tính năng
- key: thanks.quiz_score
t: Điểm bài kiểm tra
- key: thanks.score_statistics
t: >
Trong số {total} tính năng được đề cập trong cuộc khảo sát,
bạn đã sử dụng {usage_count} và nghe nói thêm về {awareness_count},,
điều này đưa bạn vào vị trí {knowledgeRankingFromTop} hàng đầu trong số tất cả những người trả lời.
Làm tốt lắm!
- key: thanks.score_statistics_noranking
t: >
Trong số {total} tính năng được đề cập trong cuộc khảo sát,
bạn đã sử dụng {usage_count} và nghe nói thêm về {awareness_count}.
Làm tốt lắm!
- key: thanks.points
t: >
điểm.
- key: thanks.score_awareness_explanation
t: >
Để công bằng, tỷ lệ phần trăm này chỉ được tính dựa trên các tính năng {awareness_total} mà bạn có thể biết
- key: thanks.share_on_twitter
t: Chia sẻ trên Twitter
- key: thanks.share_score_message
t: >
Tôi đã nhận được {score} điểm kiến thức trong cuộc khảo sát #{hashtag} năm nay!
Tôi đã sử dụng {usage_count} tính năng, và biết thêm về {awareness_count} tính năng,
đưa tôi vào {rank}% hàng đầu trong số tất cả những người trả lời.
Bạn có thể đánh bại điểm số của tôi? {shareUrl}
# share
- key: general.share_subject
t: >
Khảo sát {surveyName}
- key: general.share_text
t: >
Cuộc khảo sát {surveyName} năm nay hiện đang mở! {link}
# forms
- key: forms.select_option
t: Chọn tùy chọn
- key: forms.clear_field
t: Xóa câu hỏi
- key: forms.more_options
t: Hiển thị thêm…
- key: forms.less_options
t: Hiển hị ít lại
# partners & sponsors
- key: sponsors.with_support_from
t: Với sự hỗ trợ đặc biệt từ
- key: sponsors.our_partners
t: Những đối tác của chúng tôi
- key: sponsors.become_partner
t: Trở thành đối tác
# 404
- key: notfound.title
t: 404 Not Found
- key: notfound.description
t: Xin lỗi, chúng tôi không thể tìm thấy những gì bạn đang tìm kiếm.
# other
- key: general.join_discord
t: Tham gia cùng chúng tôi trên <a href="{link}">Discord</a>.
- key: general.translator_mode
t: Nhấn option/alt để bật chế độ phiên dịch.
- key: general.charts_nivo
t: Biểu đồ được xây dựng với <a href="{link}">Nivo</a>.
- key: general.made_by_devographics
t: Được làm bởi <a href="{link}">Devographics</a>
- key: general.view_code_example
t: Xem Code Ví dụ
- key: general.feature_code_example
t: "**{featureName}** Code Example"
- key: general.code_example
t: Code Ví dụ
- key: general.language_code
t: |
{language} Code
###########################################################################
# Nav
###########################################################################
- key: nav.surveys
t: Khảo sát
- key: nav.account
t: Tài khoản
###########################################################################
# Sections
###########################################################################
- key: sections.user_info.title
t: Về bạn
- key: sections.user_info.description
t: Hãy tìm hiểu con người thật của bạn.
- key: sections.features.title
t: Tính năng
- key: sections.features.description
t: Cú pháp, từ khóa và các tính năng ngôn ngữ khác.
- key: sections.resources.title
t: Tài nguyên
- key: sections.resources.description
t: Bạn tham khảo tài nguyên {topic} nào?
- key: sections.opinions.title
t: Ý kiến
- key: sections.opinions.description
t: Bạn cảm thấy thế nào về tình trạng của {topic}?
- key: sections.other_tools.title
t: Công cụ khác
- key: sections.other_tools.description
t: Đối với những công cụ & công nghệ này, chỉ chọn những công cụ & công nghệ bạn sử dụng thường xuyên.
- key: section.tools_others.title
aliasFor: section.other_tools.title
- key: section.tools_others.description
aliasFor: section.other_tools.description
- key: sections.report.title
t: Báo cáo xu hướng
- key: sections.usage.title
t: Cách sử dụng
- key: sections.finish.title
t: Kết thúc khảo sát
- key: sections.finish.description
t: Kết thúc cuộc khảo sát
###########################################################################
# Options
###########################################################################
# other answer
- key: options.other
t: Khác…
- key: options.other.placeholder
t: Các mục khác không được đề cập ở trên, được phân tách bằng dấu phẩy
# features
- key: options.features.never_heard
t: <span aria-hidden="true">🤷</span> Chưa bao giờ nghe về nó/Không chắc nó là gì
- key: options.features.heard
t: <span aria-hidden="true">✅</span> Biết nó là gì, nhưng chưa sử dụng nó
- key: options.features.used
t: <span aria-hidden="true">👍</span> Tôi đã sử dụng nó
# features v2
- key: options.features2.never_heard
t: <span class="option-chip option-main option-main-never_heard">Chưa bao giờ nghe về nó/Không chắc nó là gì</option>
- key: options.features2.interested
t: |
<span class="option-chip option-main option-main-heard">Có nghe về nó</span> » <span class="option-chip option-positive">Có quan tâm</span>
- key: options.features2.not_interested
t: |
<span class="option-chip option-main option-main-heard">Có nghe về nó</span> » <span class="option-chip option-negative">Không quan tâm</span>
- key: options.features2.used_positive
t: |
<span class="option-chip option-main option-main-used">Đã sử dụng nó</span> » <span class="option-chip option-positive">Có trãi nghiệm tốt</span>
- key: options.features2.used_negative
t: |
<span class="option-chip option-main option-main-used">Đã sử dụng nó</span> » <span class="option-chip option-negative">Có trãi nghiệm xấu</span>
# features (short)
- key: options.features.never_heard.short
t: <span aria-hidden="true">🤷</span> Chưa bao giờ nghe về nó
- key: options.features.heard.short
t: <span aria-hidden="true">👀</span> Có nghe về nó
- key: options.features.used.short
t: <span aria-hidden="true">🤓</span> Đã sử dụng nó
# features (no emoji)
- key: options.features.never_heard.label
t: Chưa bao giờ nghe về nó/Không chắc nó là gì
- key: options.features.heard.label
t: Biết nó là gì, nhưng chưa sử dụng nó
- key: options.features.used.label
t: Tôi đã sử dụng nó
# features (short versions)
- key: options.features.never_heard.short
t: Chưa bao giờ nghe về nó
- key: options.features.heard.short
t: Biết về nó
- key: options.features.used.short
t: Đã sử dụng nó
# patterns
- key: options.patterns.use_never
t: Hầu như luôn tránh
- key: options.patterns.use_sparingly
t: Sử dụng một cách tiết kiệm
- key: options.patterns.use_neutral
t: Trung lập
- key: options.patterns.use_frequently
t: Thường xuyên sử dụng
- key: options.patterns.use_always
t: Dùng nhiều nhất có thể
# tools experience
- key: options.tools.never_heard
t: <span aria-hidden="true">🤷</span> Chưa bao giờ nghe về nó/Không chắc nó là gì
- key: options.tools.interested
t: <span aria-hidden="true">✅</span> Nghe nói về nó > Muốn học
- key: options.tools.not_interested
t: <span aria-hidden="true">🚫</span> Nghe nói về nó > Không quan tâm
- key: options.tools.would_use
t: <span aria-hidden="true">👍</span> Used it > Sẽ sử dụng lại
- key: options.tools.would_not_use
t: <span aria-hidden="true">👎</span> Used it > Sẽ không sử dụng lại
# tools experience (no emoji)
- key: options.tools.never_heard.legend
t: Chưa bao giờ nghe về nó/Không chắc nó là gì
- key: options.tools.interested.legend
t: Nghe nói về nó > Muốn học
- key: options.tools.not_interested.legend
t: Nghe nói về nó > Không quan tâm
- key: options.tools.would_use.legend
t: Đã sử dụng nó > Sẽ sử dụng lại
- key: options.tools.would_not_use.legend
t: Đã sử dụng nó > Sẽ không sử dụng lại
# tools experience (short versions)
- key: options.tools.never_heard.short
t: Chưa bao giờ nghe
- key: options.tools.interested.short
t: Có quan tâm
- key: options.tools.not_interested.short
t: Không quan tâm
- key: options.tools.would_use.short
t: Sẽ sử dụng lại
- key: options.tools.would_not_use.short
t: Sẽ không sử dụng
# happiness
- key: options.happiness.0
t: Rất không hài lòng
- key: options.happiness.1
t: Không hài lòng
- key: options.happiness.2
t: Trung lập
- key: options.happiness.3
t: Hài lòng
- key: options.happiness.4
t: Rất hài lòng
# happiness (short version)
- key: options.happiness.0.short
t: Rất không hài lòng
- key: options.happiness.1.short
t: Không hài lòng
- key: options.happiness.2.short
t: Trung lập
- key: options.happiness.3.short
t: Hài lòng
- key: options.happiness.4.short
t: Rất hài lòng
# opinions
- key: options.opinions.0
t: Không đồng ý mạnh mẽ
- key: options.opinions.1
t: Không đồng ý
- key: options.opinions.2
t: Trung lập
- key: options.opinions.3
t: Đồng ý
- key: options.opinions.4
t: Đồng ý mạnh mẽ
# age
- key: options.age.range_less_than_10
t: 10 tuổi trở xuống
- key: options.age.range_10_18
t: 11-18 tuổi
- key: options.age.range_18_24
t: 19-24 tuổi
- key: options.age.range_25_34
t: 25-34 tuổi
- key: options.age.range_35_44
t: 35-44 tuổi
- key: options.age.range_45_54
t: 45-54 tuổi
- key: options.age.range_55_64
t: 55-64 tuổi
- key: options.age.range_more_than_65
t: 65 tuổi trở lên
# age (short versions)
- key: options.age.range_less_than_10.short
t: "<=10"
- key: options.age.range_10_18.short
t: 11-18
- key: options.age.range_18_24.short
t: 19-24
- key: options.age.range_25_34.short
t: 25-34
- key: options.age.range_35_44.short
t: 35-44
- key: options.age.range_45_54.short
t: 45-54
- key: options.age.range_55_64.short
t: 55-64
- key: options.age.range_more_than_65.short
t: ">65"
# years of experience
- key: options.years_of_experience.range_less_than_1
t: Ít hơn một năm
- key: options.years_of_experience.range_1_2
t: 1 đến 2 năm
- key: options.years_of_experience.range_2_5
t: 3 đến 5 năm
- key: options.years_of_experience.range_5_10
t: 6 đến 10 năm
- key: options.years_of_experience.range_10_20
t: 11 đến 20 năm
- key: options.years_of_experience.range_more_than_20
t: Hơn 20 năm
# years of experience (short versions)
- key: options.years_of_experience.range_less_than_1.short
t: "<1 năm"
- key: options.years_of_experience.range_1_2.short
t: 1-2 năm
- key: options.years_of_experience.range_2_5.short
t: 3-5 năm
- key: options.years_of_experience.range_5_10.short
t: 6-10 năm
- key: options.years_of_experience.range_10_20.short
t: 11-20 năm
- key: options.years_of_experience.range_more_than_20.short
t: ">20 năm"
# company size
- key: options.company_size.na
t: 🚫 Không áp dụng
- key: options.company_size.range_1
t: Một nhân viên
- key: options.company_size.range_1_5
t: 2 đến 5 nhân viên
- key: options.company_size.range_5_10
t: 6 đến 10 nhân viên
- key: options.company_size.range_10_20
t: 11 đến 20 nhân viên
- key: options.company_size.range_20_50
t: 21 đến 50 nhân viên
- key: options.company_size.range_50_100
t: 51 đến 100 nhân viên
- key: options.company_size.range_100_1000
t: 101 đến 1000 nhân viên
- key: options.company_size.range_more_than_1000
t: Hơn 1000 nhân viên
# company size (short versions)
- key: options.company_size.na.short
t: N/A
- key: options.company_size.range_1.short
t: "1"
- key: options.company_size.range_1_5.short
t: 2-5
- key: options.company_size.range_5_10.short
t: 6-10
- key: options.company_size.range_10_20.short
t: 11-20
- key: options.company_size.range_20_50.short
t: 21-50
- key: options.company_size.range_50_100.short
t: 51-100
- key: options.company_size.range_100_1000.short
t: 101-1000
- key: options.company_size.range_more_than_1000.short
t: "1000+"
# salary
- key: options.yearly_salary.na
t: 🚫 Không áp dụng
- key: options.yearly_salary.range_work_for_free
t: Tôi làm việc miễn phí
- key: options.yearly_salary.range_0_10
t: $0k-$10k
- key: options.yearly_salary.range_10_30
t: $10k-$30k
- key: options.yearly_salary.range_30_50
t: $30k-$50k
- key: options.yearly_salary.range_50_100
t: $50k-$100k
- key: options.yearly_salary.range_100_200
t: $100k-$200k
- key: options.yearly_salary.range_more_than_200
t: Hơn $200k
- key: options.yearly_salary.range_0_20
t: $0k-$20k
- key: options.yearly_salary.range_20_40
t: $20k-$40k
- key: options.yearly_salary.range_40_60
t: $40k-$60k
- key: options.yearly_salary.range_60_80
t: $60k-$80k
- key: options.yearly_salary.range_80_100
t: $80k-$100k
- key: options.yearly_salary.range_100_150
t: $100k-$150k
- key: options.yearly_salary.range_150_200
t: $150k-$200k
# salary (short versions)
- key: options.yearly_salary.na.short
t: N/A
- key: options.yearly_salary.range_work_for_free.short
t: $0
- key: options.yearly_salary.range_0_10.short
t: $0-$10k
- key: options.yearly_salary.range_10_30.short
t: $10k-$30k
- key: options.yearly_salary.range_30_50.short
t: $30k-$50k
- key: options.yearly_salary.range_50_100.short
t: $50k-$100k
- key: options.yearly_salary.range_100_200.short
t: $100k-$200k
- key: options.yearly_salary.range_more_than_200.short
t: ">$200k"
# Proficiency (generic versions)
- key: options.proficiency.0
t: Không
- key: options.proficiency.1
t: Người mới bắt đầu
- key: options.proficiency.2
t: Trung cấp
- key: options.proficiency.3
t: Cao cấp
- key: options.proficiency.4
t: Chuyên gia
# Gender
- key: options.gender.female
t: Nữ
- key: options.gender.male
t: Nam
- key: options.gender.non_binary
t: Lưỡng tính hoặc không theo tiêu chuẩn giới
- key: options.gender.questioning
t: Không rõ
- key: options.gender.prefer_not_to_say
t: Không muốn nói
- key: options.gender.not_listed
t: Không được liệt kê
# Gender (short)
- key: options.gender.female.short
t: Nữ
- key: options.gender.male.short
t: Nam
- key: options.gender.non_binary.short
t: Lưỡng tính hoặc không theo tiêu chuẩn giới
- key: options.gender.questioning.short
t: Không rõ
- key: options.gender.prefer_not_to_say.short
t: Không muốn nói
- key: options.gender.not_listed.short
t: Không được liệt kê
# Race & Ethnicity
- key: options.race_ethnicity.white_european
t: Da trắng
- key: options.race_ethnicity.south_asian
t: Nam Á
- key: options.race_ethnicity.south_east_asian
t: Đông Nam Á
- key: options.race_ethnicity.hispanic_latin
t: Tây Ban Nha hoặc Mỹ Latinh
- key: options.race_ethnicity.east_asian
t: Đông Á
- key: options.race_ethnicity.middle_eastern
t: Trung Đông
- key: options.race_ethnicity.black_african
t: Da Đen/Gốc Phi
- key: options.race_ethnicity.multiracial
t: Đa sắc tộc
- key: options.race_ethnicity.biracial
t: Con lai
- key: options.race_ethnicity.native_american_islander_australian
t: Người Mỹ bản địa, người đảo Thái Bình Dương hoặc người Úc bản địa
- key: options.race_ethnicity.not_listed
t: Không được liệt kê
- key: options.race_ethnicity.european
t: Châu Âu
- key: options.race_ethnicity.indian
t: Người Ấn Độ
- key: options.race_ethnicity.human
t: Xon người
- key: options.race_ethnicity.slav
t: Slav
- key: options.race_ethnicity.north_african
t: Bắc Phi
- key: options.race_ethnicity.jewish
t: Người Do Thái
# Race & Ethnicity (short)
- key: options.race_ethnicity.white_european.short
t: Da trắng
- key: options.race_ethnicity.south_asian.short
t: Nam Á
- key: options.race_ethnicity.south_east_asian.short
t: Đông Nam Á
- key: options.race_ethnicity.hispanic_latin.short
t: Tây Ban Nha hoặc Mỹ Latinh
- key: options.race_ethnicity.east_asian.short
t: Đông Á
- key: options.race_ethnicity.middle_eastern.short
t: Trung Đông
- key: options.race_ethnicity.black_african.short
t: Da Đen/Gốc Phi
- key: options.race_ethnicity.multiracial.short
t: Đa sắc tộc
- key: options.race_ethnicity.biracial.short
t: Con lai
- key: options.race_ethnicity.native_american_islander_australian.short
t: Người Mỹ bản địa/người đảo Thái Bình Dương/người Úc bản địa
- key: options.race_ethnicity.not_listed.short
t: Không được liệt kê
# Disability Status
- key: options.disability_status.na
t: 🚫 None
- key: options.disability_status.visual_impairments
t: >
Khiếm thị (chẳng hạn như: mù, mù màu, v.v)
- key: options.disability_status.hearing_impairments
t: >
Khiếm thính (chẳng hạn như: điếc, ù tai, v.v)
- key: options.disability_status.mobility_impairments
t: >
Suy giảm khả năng vận động (chẳng hạn như: viêm khớp, ống cổ tay, v.v)
- key: options.disability_status.cognitive_impairments
t: >
Suy giảm nhận thức (chẳng hạn như: lo lắng, chứng khó đọc, v.v)
- key: options.disability_status.not_listed
t: >
Không được liệt kê
# Disability Status (short)
- key: options.disability_status.visual_impairments.short
t: >
Khiếm thị
- key: options.disability_status.hearing_impairments.short
t: >
Khiếm thính
- key: options.disability_status.mobility_impairments.short
t: >
Suy giảm khả năng vận động
- key: options.disability_status.cognitive_impairments.short
t: >
Suy giảm nhận thức
- key: options.disability_status.not_listed.short
t: >
Không được liệt kê
# Form Factors
- key: options.form_factors.desktop
t: Máy tính để bàn
- key: options.form_factors.keyboard_only
t: Máy tính để bàn chỉ có bàn phím
- key: options.form_factors.smartphone
t: Điện thoại thông minh
- key: options.form_factors.feature_phone
t: Điện thoại phổ thông
- key: options.form_factors.tablet
t: Máy tính bảng
- key: options.form_factors.smart_watch
t: Đồng hồ thông minh
- key: options.form_factors.tv
t: TV
- key: options.form_factors.gaming_console
t: Máy chơi game
- key: options.form_factors.screen_reader
t: Máy đọc màn hình
- key: options.form_factors.print
t: Máy in
- key: options.form_factors.testing_tools
t: Công cụ test (Axe, Lighthouse, v.v)
- key: options.form_factors.vision_simulator
t: Altered Vision Simulator (mù màu, v.v)
# Industry Sector
- key: options.industry_sector.ecommerce
t: Thương mại điện tử & Bán lẻ
- key: options.industry_sector.news_media
t: Tin tức, truyền thông & blog
- key: options.industry_sector.healthcare
t: Chăm sóc sức khỏe
- key: options.industry_sector.finance
t: Tài chính
- key: options.industry_sector.programming_tools
t: Công cụ lập trình & kỹ thuật
- key: options.industry_sector.socialmedia
t: Truyền thông xã hội
- key: options.industry_sector.marketing_tools
t: Công cụ Marketing/Bán hàng/Phân tích
- key: options.industry_sector.education
t: Giáo dục
- key: options.industry_sector.real_estate
t: Bất động sản
- key: options.industry_sector.government
t: Chính phủ
- key: options.industry_sector.entertainment
t: Giải trí
- key: options.industry_sector.consulting
t: Tư vấn & Dịch vụ
- key: options.industry_sector.travel
t: Du lịch
- key: options.industry_sector.tourism
t: Tourism
- key: options.industry_sector.insurance
t: Bảo hiểm
- key: options.industry_sector.logistics
t: Logistics
- key: options.industry_sector.energy
t: Năng lượng
- key: options.industry_sector.telecommunications
t: Viễn thông
- key: options.industry_sector.student
t: Sinh viên
- key: options.industry_sector.hospitality
t: Bệnh viện
- key: options.industry_sector.cyber_security
t: An ninh mạng
- key: options.industry_sector.construction
t: Xây dựng
- key: options.industry_sector.automotive
t: Sản xuất ô tô
- key: options.industry_sector.agriculture
t: Nông nghiệp
- key: options.industry_sector.transport
t: Giao thông Vận tải
- key: options.industry_sector.manufacturing
t: Chế tạo
- key: options.industry_sector.tech_it
t: Công nghệ & IT
- key: options.industry_sector.human_resources
t: Nhân sự
- key: options.industry_sector.sports
t: Thể thao
- key: options.industry_sector.gaming
t: Trò chơi
- key: options.industry_sector.research
t: Nghiên cứu
- key: options.industry_sector.law
t: Pháp luật
- key: options.industry_sector.non_profit
t: Phi lợi nhuận
- key: options.industry_sector.art
t: Nghệ thuật
- key: options.industry_sector.crypto
t: Tiền điện tử
- key: options.industry_sector.aerospace
t: Hàng không vũ trụ
- key: options.industry_sector.web3
t: Web3
- key: options.industry_sector.iot
t: IOT
- key: options.industry_sector.gambling
t: Cờ bạc
- key: options.industry_sector.blockchain
t: Blockchain
- key: options.industry_sector.design
t: Thiết kế
- key: options.industry_sector.unemployed
t: Thất nghiệp
- key: options.industry_sector.recruiting
t: Tuyển dụng
- key: options.industry_sector.agency
t: Đại lý
- key: options.industry_sector.business
t: Kinh doanh
- key: options.industry_sector.communication
t: Giao tiếp
- key: options.industry_sector.security
t: Bảo mật
# tool evaluation
- key: options.tool_evaluation.learning_curve_documentation
t: Tài liệu
- key: options.tool_evaluation.learning_curve_documentation.description
t: Nó có dễ học và/hoặc được ghi chép đầy đủ không?
- key: options.tool_evaluation.momentum_popularity
t: Phổ biến
- key: options.tool_evaluation.momentum_popularity.description
t: Hiện tại nó có đang tạo ra nhiều tiếng vang không?
- key: options.tool_evaluation.user_base_size
t: Quy mô người dùng
- key: options.tool_evaluation.user_base_size.description
t: Nó có phải là một lựa chọn ổn định và đáng tin cậy?
- key: options.tool_evaluation.developer_experience_tooling
t: Trải nghiệm cho nhà phát triển
- key: options.tool_evaluation.developer_experience_tooling.description
t: Nó có các công cụ tốt dành cho nhà phát triển, hay hệ sinh thái với nhiều plugin không, v.v?
- key: options.tool_evaluation.performance_user_experience
t: Trải nghiệm người dùng
- key: options.tool_evaluation.performance_user_experience.description
t: Nó có thể tạo ra trải nghiệm người dùng mượt mà, hiệu quả không?
- key: options.tool_evaluation.creator_team
t: Nhà sáng tạo & Nhóm
- key: options.tool_evaluation.creator_team.description
t: Nó có được hỗ trợ bởi một đội ngũ nổi tiếng, được tài trợ tốt hoặc có kinh nghiệm không?
- key: options.tool_evaluation.accessibility_features
t: Khả năng tiếp cận
- key: options.tool_evaluation.accessibility_features.description
t: Nó có cung cấp trải nghiệm dễ tiếp cận cho tất cả người dùng không?
- key: options.tool_evaluation.community_inclusivity
t: Cộng đồng và Hòa nhập
- key: options.tool_evaluation.community_inclusivity.description
t: Nó có một cộng đồng thân thiện, sôi động không?
# accessibility features
- key: options.accessibility_features.keyboard_navigation
t: Điều hướng bằng bàn phím
- key: options.accessibility_features.compliant_contrast
t: Độ tương phản tuân thủ WCAG
- key: options.accessibility_features.focus_indicators
t: Focus indicators
- key: options.accessibility_features.skip_to_content_link
t: Skip-to-content link
- key: options.accessibility_features.color_themes
t: Màu sắc chủ đề (chế độ tối, chế độ tương phản cao, v.v.)
- key: options.accessibility_features.prefers_reduced_motion
t: Prefers-reduced-motion
- key: options.accessibility_features.alt_text
t: Văn bản thay thế
- key: options.accessibility_features.semantic_markup
t: Semantic markup
- key: options.accessibility_features.aria_attributes
t: Thuộc tính ARIA HTML
# learning methods
- key: options.first_steps.na
t: 🚫 None
- key: options.first_steps.books
t: Sách
- key: options.first_steps.videos
t: Video & truyền hình
- key: options.first_steps.school
t: Trường học
- key: options.first_steps.courses_free
t: Các khóa học trực tuyến (miễn phí)
- key: options.first_steps.courses_paid
t: Các khóa học trực tuyến (trả phí)
- key: options.first_steps.podcasts
t: Podcast
- key: options.first_steps.bootcamp
t: Khóa học lập trình
- key: options.first_steps.on_the_job
t: Đào tạo tại chỗ làm
- key: options.first_steps.self_directed
t: Tự học (Google, Stack Overflow, v.v.)
- key: options.first_steps.mentoring
t: Cố vấn
- key: options.first_steps.documentation
t: Tài liệu
- key: options.first_steps.blogs
t: Blog
- key: options.first_steps.view_source
t: Xem mã nguồn
- key: options.first_steps.trial_and_error
t: Trial & Error
- key: options.first_steps.forums
t: Forum
- key: options.first_steps.newsletters
t: Bản tin
- key: options.first_steps.events
t: Sự kiện
# learning methods
- key: resources.learning_methods
t: Phương pháp học
- key: options.learning_methods.na
aliasFor: options.first_steps.na
- key: options.learning_methods.books
aliasFor: options.first_steps.books
- key: options.learning_methods.videos
aliasFor: options.first_steps.videos
- key: options.learning_methods.school
aliasFor: options.first_steps.school
- key: options.learning_methods.courses_free
aliasFor: options.first_steps.courses_free
- key: options.learning_methods.courses_paid
aliasFor: options.first_steps.courses_paid
- key: options.learning_methods.podcasts
aliasFor: options.first_steps.podcasts
- key: options.learning_methods.bootcamp
aliasFor: options.first_steps.bootcamp
- key: options.learning_methods.on_the_job
aliasFor: options.first_steps.on_the_job
- key: options.learning_methods.self_directed
aliasFor: options.first_steps.self_directed
- key: options.learning_methods.mentoring
aliasFor: options.first_steps.mentoring
- key: options.learning_methods.documentation
aliasFor: options.first_steps.documentation
- key: options.learning_methods.blogs