-
Notifications
You must be signed in to change notification settings - Fork 4
/
common.yml
1878 lines (1716 loc) · 59.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: zh-Hans
translations:
###########################################################################
# General
###########################################################################
# homepage
- key: general.why_create_account
t: 为什么我需要创建一个账户?
- key: general.create_account_reasons
t: >
因为可以:
- 确保数据的唯一性
- 用于访问自己的数据
- 保持会话状态以便继续操作
- 结果公布后,可以通知到你
- key: general.survey_closed_detailed
t: >
抱歉,此问卷已结束!你仍可以查看已有数据,但不能修改。
- key: general.survey_read_only
t: >
你当前正在以只读模式查看此问卷。
- key: general.survey_preview
t: >
此调查处于预览模式。
它的内容可能会发生变化,所有输入的数据在实际调查开始时将被删除。
- key: general.survey_read_only_back
t: >
<a href="{link}">返回问卷主页</a> 以继续(重新)填写。
- key: general.take_survey
t: 选择{name}调查
- key: options.na
t: 无
# surveys
- key: general.open_surveys
t: 进行中
- key: general.no_open_surveys
t: 没有可供填写的问卷。
- key: general.closed_surveys
t: 已关闭
- key: general.no_closed_surveys
t: 没有关闭的调查。
- key: general.preview_surveys
t: 预览调查
- key: general.no_preview_surveys
t: 没有可供预览的调查。
- key: general.start_survey
t: 开始问卷 »
- key: general.continue_survey
t: 继续填写 »
- key: general.completion
t: "已完成 {completion}%"
- key: general.started_on
t: 开始于 {createdAt}
- key: general.last_modified_on
t: 最后修改于 {updatedAt}
- key: general.review_survey
t: 查看已填写 »
- key: general.review_answers
t: 查看已填写的答案 »
- key: general.preview_survey
t: 预览问卷 »
- key: general.finish_survey
t: 完成问卷
- key: general.next_section
t: 下一部分
- key: general.previous_section
t: 上一部分
- key: general.survey_closed
t: 此问卷调查已结束。
- key: general.survey_closed_on
t: 问卷调查会持续到 {endedAt} 为止。
- key: general.survey_results
t: 查看问卷调查结果 »
- key: general.surveys_available_languages
t: "切换语言:"
- key: general.help_us_translate
t: 帮助我们翻译问卷调查 »
- key: general.translators
t: 译者
- key: general.translation_help
t: 翻译帮助
- key: general.newly_added
t: 今年新增
- key: general.new
t: 新
- key: general.devographics_banner
t: <a href="https://www.devographics.com/" target="_blank">Devographics</a> 是运作 JavaScript、CSS 和 GraphQL 状态调查的集体的新名称。
# credits
- key: credits.thanks
t: 特别感谢
- key: credits.contributors
t: 贡献者
- key: credits.contributors.description
t: 特别感谢以下人员帮助我们设计调查问卷。
- key: credits.accessibility
t: 无障碍咨询
- key: credits.survey_design
t: 问卷设计
- key: credits.logo_design
t: Logo设计
- key: credits.mobile_testing
t: 移动端测试
- key: credits.data_visualizations
t: 数据可视化
- key: credits.repo_architecture
t: 仓库架构
- key: credits.code_refactoring
t: 代码重构
- key: credits.data_processing
t: 数据处理
- key: credits.back_end_development
t: 后端开发
# support
- key: general.support_from
t: 赞助来源
# footer
- key: general.privacy_policy
t: 隐私政策
- key: general.leave_issue
t: 遇到问题,发生bug? 请<a href="{link}" target="_blank">提交 issue</a>。
- key: general.leave_issue2
aliasFor: homepage.leave_issue
- key: general.emoji_icons
t: Emoji 图标来自 <a target="_blank" rel="noreferrer" href="https://icons8.com">Icons8</a>
# navigation
- key: general.table_of_contents
t: 目录
- key: general.all_questions_optional
t: >
提示:所有问题都不是必填项,不强制填满。
- key: general.data_is_saved
t: 每次进行“上一步”或“下一步”跳转操作时,数据都会自动保存。
- key: general.close_nav
t: 关闭菜单
- key: general.open_nav
t: 打开菜单
- key: general.more_actions
t: 更多行为
- key: general.skip_to_content
t: 跳到内容
# thanks
- key: general.back
t: 返回
- key: general.thanks
t: >
非常感谢你的填写!
数据已保存。在调查结束之前,你都可以进行查看和修改。
另外,如果可以,你可以将此问卷分享给更多人,
让最终的数据更具代表性:
- key: general.thanks2
t: >
通过分享本调查问卷来帮助我们宣传!点点滴滴都很重要,它将帮助我们的数据更具代表性。
- key: thanks.learn_more_about
t: "还有一些你可能感兴趣的功能:"
- key: thanks.knowledge_score
t: 分数排名
- key: thanks.features_score
t: 功能得分
- key: thanks.quiz_score
t: 测验得分
- key: thanks.score_explanation
t: >
你的调查问卷里提到的 <span class="score-number score-number-known">{known}</span> 个提案,
已有<span class="score-number score-number-total">{total}</span> 个计分,
在所有提交者里,
你的排名是 <span class="score-number score-number-ranking">{knowledgeRankingFromTop}%</span>。
- key: thanks.score_explanation_no_ranking
t: >
在调查问卷中提到的 <span class="score-number
score-number-total">{total}</span> 个特性中,你曾听过或者用过 <span class="score-number
score-number-known">{known}</span> 个。
- key: thanks.share_on_twitter
t: 分享至 Twitter
- key: thanks.share_score_message
t: >
我正在参与 #{hashtag} 调查问卷,我的分数排名是 {score}%。点击链接和我一起参与调查问卷: {shareUrl}
# share
- key: general.share_subject
t: >
{surveyName} 调查问卷
- key: general.share_text
t: >
今年份 {surveyName} 开放填写中! {link}
# forms
- key: forms.select_option
t: 选项
- key: forms.clear_field
t: 清除
- key: forms.more_options
t: 展示更多...
- key: forms.less_options
t: 显示更少
- key: sponsors.with_support_from
t: 特别支持
# partners
- key: sponsors.our_partners
t: 我们的合作伙伴
- key: sponsors.become_partner
t: 成为合作伙伴
# 404
- key: notfound.title
t: 未找到
- key: notfound.description
t: 抱歉,我们找不到你想要的资源
# other
- key: general.join_discord
t: 在 <a href="{link}">Discord</a> 中加入我们
- key: general.translator_mode
t: 按住 option/alt 键开启翻译模式
- key: general.charts_nivo
t: 图表使用 <a href="{link}">Nivo</a> 构建
- key: general.made_by_devographics
t: 使用 <a href="{link}">Devographics</a> 制作
- key: general.view_code_example
t: 查看代码示例
- key: general.feature_code_example
t: "**{featureName}** 代码示例"
- key: general.code_example
t: "**{featureName}** 代码示例"
###########################################################################
# Nav
###########################################################################
- key: nav.surveys
t: 调查问卷
- key: nav.account
t: 账户
###########################################################################
# Sections
###########################################################################
- key: sections.user_info.title
t: 关于你
- key: sections.user_info.description
t: 让我们了解真实的你。
- key: sections.features.title
t: 特性
- key: sections.features.description
t: 语法,关键字,和其他语言特性。
- key: sections.resources.title
t: 资料
- key: sections.resources.description
t: 你可能想要了解关于 {topic} 的资料?
- key: sections.opinions.title
t: 想法
- key: sections.opinions.description
t: 对于 {topic} 的现状调查有什么想说的?
- key: sections.other_tools.title
t: 其他工具
- key: sections.other_tools.description
t: 请在这些工具和技术中,选择你常用的。
- 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: 趋势报告
- key: sections.usage.title
t: 使用情况
- key: sections.finish.title
t: 完成调查
- key: sections.finish.description
t: 完成调查
- key: options.other
t: 其他...
###########################################################################
# Options
###########################################################################
- key: options.experience.title
t: 经验
# other answer
- key: options.other
t: 其他
- key: options.other.placeholder
t: 上面未提及的其他项目,以逗号分隔
# features
- key: options.features.never_heard
t: <span aria-hidden="true">🤷</span> 没听说过/不确定它是什么
- key: options.features.heard
t: <span aria-hidden="true">✅</span> 知道它是什么,但是没用过
- key: options.features.used
t: <span aria-hidden="true">👍</span> 用过
# features v2
- key: options.features2.never_heard
t: <span class="option-chip option-main option-main-never_heard">没听说过/不确定它是什么</option>
- key: options.features2.interested
t: |
<span class="option-chip option-main option-main-heard">没听说过</span> » <span class="option-chip option-positive">感兴趣</span>
- key: options.features2.not_interested
t: |
<span class="option-chip option-main option-main-heard">有听说过</span> » <span class="option-chip option-negative">不感兴趣</span>
- key: options.features2.used_positive
t: |
<span class="option-chip option-main option-main-used">用过</span> » <span class="option-chip option-positive">体验良好</span>
- key: options.features2.used_negative
t: |
<span class="option-chip option-main option-main-used">用过</span> » <span class="option-chip option-negative">体验糟糕</span>
# features (short)
- key: options.features.never_heard.short
t: <span aria-hidden="true">🤷</span> 没听说过
- key: options.features.heard.short
t: <span aria-hidden="true">👀</span> 有听说过
- key: options.features.used.short
t: <span aria-hidden="true">🤓</span> 用过
- key: options.experience.never_heard
aliasFor: options.features.never_heard.short
- key: options.experience.heard
aliasFor: options.features.heard.short
- key: options.experience.used
aliasFor: options.features.used.short
- key: options.experience.never_heard.short
aliasFor: options.features.never_heard.short
- key: options.experience.heard.short
aliasFor: options.features.heard.short
- key: options.experience.used.short
aliasFor: options.features.used.short
# features (no emoji)
- key: options.features.never_heard.label
t: 没听说过/不确定它是什么
- key: options.features.heard.label
t: 知道它是什么,但是没用过
- key: options.features.used.label
t: 用过
# features (no emoji, short versions)
- key: options.features.never_heard.label.short
t: 没听说过
- key: options.features.heard.label.short
t: 有听说过
- key: options.features.used.label.short
t: 用过
# aliases
- key: options.experience.never_heard.label.short
aliasFor: options.features.never_heard.label.short
- key: options.experience.heard.label.short
aliasFor: options.features.heard.label.short
- key: options.experience.used.label.short
aliasFor: options.features.used.label.short
- key: options.experience.never_heard.description
t: 从未听说过此项目的受访者。
- key: options.experience.heard.description
t: 听说过此项目,但没有使用过此项目的受访者。
- key: options.experience.used.description
t: 使用过此项目的受访者。
# sentiments
- key: options.sentiment.title
t: 情绪(态度)
- key: options.sentiment.positive.label
t: 积极
- key: options.sentiment.neutral.label
t: 中立
- key: options.sentiment.negative.label
t: 消极
- key: options.sentiment.never_heard.positive.label
aliasFor: followups.sentiment_interested
- key: options.sentiment.never_heard.negative.label
aliasFor: followups.sentiment_not_interested
- key: options.sentiment.heard.positive.label
aliasFor: followups.sentiment_interested
- key: options.sentiment.heard.negative.label
aliasFor: followups.sentiment_not_interested
- key: options.sentiment.used.positive.label
aliasFor: followups.sentiment_positive_experience
- key: options.sentiment.used.negative.label
aliasFor: followups.sentiment_negative_experience
- key: options.sentiment.positive.label.short
t: 积极
- key: options.sentiment.neutral.label.short
t: 中立
- key: options.sentiment.negative.label.short
t: 消极
- key: options.sentiment.positive.short
aliasFor: options.sentiment.positive.label.short
- key: options.sentiment.neutral.short
aliasFor: options.sentiment.neutral.label.short
- key: options.sentiment.negative.short
aliasFor: options.sentiment.negative.label.short
- key: options.sentiment.never_heard.positive.label.short
aliasFor: followups.sentiment_interested
- key: options.sentiment.never_heard.negative.label.short
aliasFor: followups.sentiment_not_interested
- key: options.sentiment.heard.positive.label.short
aliasFor: followups.sentiment_interested
- key: options.sentiment.heard.negative.label.short
aliasFor: followups.sentiment_not_interested
- key: options.sentiment.used.positive.label.short
aliasFor: followups.sentiment_positive_experience
- key: options.sentiment.used.negative.label.short
aliasFor: followups.sentiment_negative_experience
- key: options.sentiment.positive.description
t: 有兴趣了解此技术,或者愿意再次使用它的受访者
- key: options.sentiment.neutral.description
t: 未对此技术发表看法的受访者
- key: options.sentiment.negative.description
t: 对此技术不感兴趣,或者使用此技术有糟糕体验的受访者
# patterns
- key: options.patterns.use_never
t: 避而远之
- key: options.patterns.use_sparingly
t: 不常用
- key: options.patterns.use_neutral
t: 观望态度
- key: options.patterns.use_frequently
t: 常用
- key: options.patterns.use_always
t: 重度使用
# tools experience
- key: options.tools.never_heard
t: <span aria-hidden="true">🤷</span> 我从来没有听说过这个技术
- key: options.tools.interested
t: <span aria-hidden="true">✅</span> 我听说过这个技术,且有学习的意向
- key: options.tools.not_interested
t: <span aria-hidden="true">🚫</span> 我听说过这个技术,但我不感兴趣
- key: options.tools.would_use
t: <span aria-hidden="true">👍</span> 我使用过这个技术,以后也愿意再次使用
- key: options.tools.would_not_use
t: <span aria-hidden="true">👎</span> 我使用过这个技术,但以后不愿意再用
# tools experience (no emoji)
- key: options.tools.never_heard.legend
t: 我从来没有听说过这个技术
- key: options.tools.interested.legend
t: 我听说过这个技术,且有学习的意向
- key: options.tools.not_interested.legend
t: 我听说过这个技术,但我不感兴趣
- key: options.tools.would_use.legend
t: 我使用过这个技术,以后也愿意再次使用
- key: options.tools.would_not_use.legend
t: 我使用过这个技术,但以后不愿意再用
# tools experience (short versions)
- key: options.tools.never_heard.short
t: 没听过
- key: options.tools.interested.short
t: 感兴趣
- key: options.tools.not_interested.short
t: 不感冒
- key: options.tools.would_use.short
t: 还不错
- key: options.tools.would_not_use.short
t: 不会再用
# happiness
- key: options.happiness.0
t: 很不好
- key: options.happiness.1
t: 不好
- key: options.happiness.2
t: 一般
- key: options.happiness.3
t: 不错
- key: options.happiness.4
t: 非常不错
# happiness (short version)
- key: options.happiness.0.short
t: 很不开心
- key: options.happiness.1.short
t: 不开心
- key: options.happiness.2.short
t: 中立
- key: options.happiness.3.short
t: 开心
- key: options.happiness.4.short
t: 很开心
# opinions
- key: options.opinions.0
t: 强烈反对
- key: options.opinions.1
t: 反对
- key: options.opinions.2
t: 中立
- key: options.opinions.3
t: 同意
- key: options.opinions.4
t: 十分同意
# age
- key: options.age.range_less_than_10
t: 小于10岁
- key: options.age.range_10_18
t: 10-18岁
- key: options.age.range_18_24
t: 18-24岁
- key: options.age.range_25_34
t: 24-34岁
- key: options.age.range_35_44
t: 35-44岁
- key: options.age.range_45_54
t: 45-54岁
- key: options.age.range_55_64
t: 55-64岁
- key: options.age.range_more_than_65
t: 65岁以上
# age (short versions)
- key: options.age.range_less_than_10.short
t: 小于10岁
- key: options.age.range_10_18.short
t: 10-18岁
- key: options.age.range_18_24.short
t: 18-24岁
- key: options.age.range_25_34.short
t: 24-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岁以上
# age 2
- key: options.age.range_under_20
t: 小于20岁
- key: options.age.range_20_29
t: 20-29岁
- key: options.age.range_30_39
t: 30-39岁
- key: options.age.range_40_49
t: 40-49岁
- key: options.age.range_50_59
t: 50-59岁
- key: options.age.range_over_60
t: 60岁及以上
- key: options.age.range_under_20.short
t: "<20"
- key: options.age.range_20_29.short
t: 20-29
- key: options.age.range_30_39.short
t: 30-39
- key: options.age.range_40_49.short
t: 40-49
- key: options.age.range_50_59.short
t: 50-59
- key: options.age.range_over_60.short
t: ">60"
# years of experience
- key: options.years_of_experience.range_less_than_1
t: 少于 1 年
- key: options.years_of_experience.range_1_2
t: 1 至 2 年
- key: options.years_of_experience.range_2_5
t: 2 至 5 年
- key: options.years_of_experience.range_5_10
t: 5 至 10 年
- key: options.years_of_experience.range_10_20
t: 10 至 20 年
- key: options.years_of_experience.range_more_than_20
t: 20 年以上
# years of experience (short versions)
- key: options.years_of_experience.range_less_than_1.short
t: "<1"
- key: options.years_of_experience.range_1_2.short
t: 1-2
- key: options.years_of_experience.range_2_5.short
t: 2-5
- key: options.years_of_experience.range_5_10.short
t: 5-10
- key: options.years_of_experience.range_10_20.short
t: 10-20
- key: options.years_of_experience.range_more_than_20.short
t: ">20"
# years of experience v2
- key: options.years_of_experience.range_under_1
t: 小于一年
- key: options.years_of_experience.range_1_3
t: 1-3年
- key: options.years_of_experience.range_4_6
t: 4-6年
- key: options.years_of_experience.range_7_9
t: 7-9年
- key: options.years_of_experience.range_10_12
t: 10-12年
- key: options.years_of_experience.range_13_15
t: 13-15年
- key: options.years_of_experience.range_16_20
t: 16-20年
- key: options.years_of_experience.range_over_20
t: 超过20年
# years of experience v2 (short versions)
- key: options.years_of_experience.range_under_1.short
t: "<1年"
- key: options.years_of_experience.range_1_3.short
t: 1-3年
- key: options.years_of_experience.range_4_6.short
t: 4-6年
- key: options.years_of_experience.range_7_9.short
t: 7-9年
- key: options.years_of_experience.range_10_12.short
t: 10-12年
- key: options.years_of_experience.range_13_15.short
t: 13-15年
- key: options.years_of_experience.range_16_20.short
t: 16-20年
- key: options.years_of_experience.range_over_20.short
t: ">20年"
# years of experience v3
- key: options.years_of_experience.range_0_4
t: 0-4 年
- key: options.years_of_experience.range_5_9
t: 5-9 年
- key: options.years_of_experience.range_10_14
t: 10-14 年
- key: options.years_of_experience.range_15_19
t: 15-19 年
- key: options.years_of_experience.range_20_24
t: 20-24 年
- key: options.years_of_experience.range_25_29
t: 25-29 年
- key: options.years_of_experience.range_over_30
t: 超过 30 年
# years of experience v3
- key: options.years.range_0_4
aliasFor: options.years_of_experience.range_0_4
- key: options.years.range_5_9
aliasFor: options.years_of_experience.range_5_9
- key: options.years.range_10_14
aliasFor: options.years_of_experience.range_10_14
- key: options.years.range_15_19
aliasFor: options.years_of_experience.range_15_19
- key: options.years.range_20_24
aliasFor: options.years_of_experience.range_20_24
- key: options.years.range_25_29
aliasFor: options.years_of_experience.range_25_29
- key: options.years.range_over_30
aliasFor: options.years_of_experience.range_over_30
# company size
- key: options.company_size.na
t: 不清楚
- key: options.company_size.range_1
t: 1 个雇员
- key: options.company_size.range_1_5
t: 1 至 5 个雇员
- key: options.company_size.range_5_10
t: 5 至 10 个雇员
- key: options.company_size.range_10_20
t: 10 至 20 个雇员
- key: options.company_size.range_20_50
t: 20 至 50 个雇员
- key: options.company_size.range_50_100
t: 50 至 100 个雇员
- key: options.company_size.range_100_1000
t: 100 至 1000 个雇员
- key: options.company_size.range_more_than_1000
t: 超过 1000 个雇员
# company size (short versions)
- key: options.company_size.na.short
t: 不清楚
- key: options.company_size.range_1.short
t: 1 个雇员
- key: options.company_size.range_1_5.short
t: 1-5 个雇员
- key: options.company_size.range_5_10.short
t: 5-10 个雇员
- key: options.company_size.range_10_20.short
t: 10-20 个雇员
- key: options.company_size.range_20_50.short
t: 20-50 个雇员
- key: options.company_size.range_50_100.short
t: 50-100 个雇员
- key: options.company_size.range_100_1000.short
t: 100-1000 个雇员
- key: options.company_size.range_more_than_1000.short
t: 超过 1000 个雇员
# salary
- key: options.yearly_salary.na
t: 🚫 不清楚
- key: options.yearly_salary.range_work_for_free
t: 我没有收入
- key: options.yearly_salary.range_0_10
t: 0 美元 - 1 万美元
- key: options.yearly_salary.range_10_30
t: 1 万美元 - 3 万美元
- key: options.yearly_salary.range_30_50
t: 3 万美元 - 5 万美元
- key: options.yearly_salary.range_50_100
t: 5 万美元 - 10 万美元
- key: options.yearly_salary.range_100_200
t: 10 万美元 - 20 万美元
- key: options.yearly_salary.range_more_than_200
t: 大于 20 万美元
- key: options.yearly_salary.range_0_20
t: 0 美元 - 2 万美元
- key: options.yearly_salary.range_20_40
t: 2 万美元 - 4 万美元
- key: options.yearly_salary.range_40_60
t: 4 万美元 - 6 万美元
- key: options.yearly_salary.range_60_80
t: 6 万美元 - 8 万美元
- key: options.yearly_salary.range_80_100
t: 8 万美元 - 10 万美元
- key: options.yearly_salary.range_100_150
t: 10 万美元 - 15 万美元
- key: options.yearly_salary.range_150_200
t: 15 万美元 - 20 万美元
# salary (short versions)
- key: options.yearly_salary.na.short
t: 不清楚
- key: options.yearly_salary.range_work_for_free.short
t: 0 美元
- key: options.yearly_salary.range_0_10.short
t: 0-$0k 美元
- 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 美元
# job titles
- key: options.job_title.cto
t: CTO
- key: options.job_title.front_end_developer
t: 前端开发者/工程师
- key: options.job_title.back_end_developer
t: 后端开发者/工程师
- key: options.job_title.full_stack_developer
t: 全栈开发者/工程师
- key: options.job_title.web_developer
t: Web 开发者
- key: options.job_title.web_designer
t: Web 设计师
- key: options.job_title.ux_designer
t: UX 设计师
- key: options.job_title.ui_designer
t: UI 设计师
- key: options.job_title.back_end_dev
t: 后端开发者/工程师
# JavaScript proficiency
- key: options.javascript_proficiency.0
t: 不会 JavaScript
- key: options.javascript_proficiency.1
t: 会一点 JavaScript 或 jQuery 代码
- key: options.javascript_proficiency.2
t: 会用一些现成的前端流行框架,如 (React、 Vue、 等)
- key: options.javascript_proficiency.3
t: 从 0 到 1 构建前端技术栈
- key: options.javascript_proficiency.4
t: 能处理复杂的前端业务(状态管理,数据管理等)
# CSS proficiency
- key: options.css_proficiency.0
t: 实际上没有 CSS 经验
- key: options.css_proficiency.1
t: 使用 CSS 框架以及调整现有样式
- key: options.css_proficiency.2
t: 知道特定规则,能够创建布局
- key: options.css_proficiency.3
t: 精通动画、交互、过渡等
- key: options.css_proficiency.4
t: 能够以统一的方法论从零构建整个前端站点的样式
# Back-end proficiency
- key: options.backend_proficiency.0
t: 无法完成任何后端工作
- key: options.backend_proficiency.1
t: 会配置一体化 CMS(WordPress 等)或静态站点生成器(Jekyll 等)
- key: options.backend_proficiency.2
t: 能够使用现有框架开发应用(Rails、Laravel 等)
- key: options.backend_proficiency.3
t: 从零搭建整个后端(Go、Node.js 等)
- key: options.backend_proficiency.4
t: 能够掌控复杂的多台服务器或微服务架构
# Proficiency (generic versions)
- key: options.proficiency.0
t: 无
- key: options.proficiency.1
t: 初学
- key: options.proficiency.2
t: 中等
- key: options.proficiency.3
t: 高级
- key: options.proficiency.4
t: 资深
# Gender
- key: options.gender.female
t: 女性
- key: options.gender.male
t: 男性
- key: options.gender.non_binary
t: 第三性别
- key: options.gender.questioning
t: 不详
- key: options.gender.prefer_not_to_say
t: 不便透露
- key: options.gender.not_listed
t: 不在选项中
# Gender (short)
- key: options.gender.female.short
t: 女
- key: options.gender.male.short
t: 男
- key: options.gender.non_binary.short
t: 第三性别
- key: options.gender.questioning.short
t: 不详
- key: options.gender.prefer_not_to_say.short
t: 不便透露
- key: options.gender.not_listed.short
t: 不在选项中
# Race & Ethnicity
- key: options.race_ethnicity.white_european
t: 白种人或欧洲裔
- key: options.race_ethnicity.south_asian
t: 南亚
- key: options.race_ethnicity.south_east_asian
t: 东南亚
- key: options.race_ethnicity.hispanic_latin
t: 西班牙裔或拉丁裔男/女
- key: options.race_ethnicity.east_asian
t: 东亚
- key: options.race_ethnicity.middle_eastern
t: 亚洲中部
- key: options.race_ethnicity.black_african
t: 黑种人或非裔
- key: options.race_ethnicity.multiracial
t: 多民族混血
- key: options.race_ethnicity.biracial
t: 双民族混血
- key: options.race_ethnicity.native_american_islander_australian
t: 美洲原住民、太平洋岛民或澳洲原住民
- key: options.race_ethnicity.not_listed
t: 不在选项中
- key: options.race_ethnicity.european
t: 欧洲
- key: options.race_ethnicity.indian
t: 印度
- key: options.race_ethnicity.human
t: 人类
- key: options.race_ethnicity.slav
t: 斯拉夫
- key: options.race_ethnicity.north_african
t: 北非
- key: options.race_ethnicity.jewish
t: 犹太
# Race & Ethnicity (short)
- key: options.race_ethnicity.white_european.short
t: 欧洲
- key: options.race_ethnicity.south_asian.short
t: 南亚
- key: options.race_ethnicity.south_east_asian.short
t: 东南亚
- key: options.race_ethnicity.hispanic_latin.short
t: 西班牙/拉美
- key: options.race_ethnicity.east_asian.short
t: 东亚
- key: options.race_ethnicity.middle_eastern.short
t: 中东
- key: options.race_ethnicity.black_african.short
t: 非洲
- key: options.race_ethnicity.multiracial.short
t: 多种族
- key: options.race_ethnicity.biracial.short
t: 混血儿
- key: options.race_ethnicity.native_american_islander_australian.short
t: 美洲/太平洋/澳大利亚原住民
- key: options.race_ethnicity.not_listed.short
t: 不在选项中
# Disability Status
- key: options.disability_status.na
t: 🚫 无
- key: options.disability_status.visual_impairments
t: >
视觉障碍(如:失明、色盲等)
- key: options.disability_status.hearing_impairments
t: >
听力障碍(如:耳聋、耳鸣等)
- key: options.disability_status.mobility_impairments
t: >
行动不便(如:关节炎、腕管等)
- key: options.disability_status.cognitive_impairments
t: >
认知障碍(如:焦虑、阅读障碍等)
- key: options.disability_status.not_listed
t: >
不在选项中
# Disability Status (short)
- key: options.disability_status.visual_impairments.short
t: >
视觉障碍
- key: options.disability_status.hearing_impairments.short
t: >
听力障碍
- key: options.disability_status.mobility_impairments.short
t: >
行动不便
- key: options.disability_status.cognitive_impairments.short
t: >
认知障碍
- key: options.disability_status.not_listed.short
t: >
不在选项中
# Form Factors
- key: options.form_factors.desktop
t: 个人电脑
- key: options.form_factors.keyboard_only
t: 仅带键盘的台式机
- key: options.form_factors.smartphone
t: 智能手机
- key: options.form_factors.feature_phone
t: 非智能手机
- key: options.form_factors.tablet
t: 平板
- key: options.form_factors.smart_watch
t: 智能手表
- key: options.form_factors.tv
t: TV
- key: options.form_factors.gaming_console
t: 游戏主机
- key: options.form_factors.screen_reader
t: 屏幕阅读器
- key: options.form_factors.print
t: 打印机
- key: options.form_factors.testing_tools
t: 测试工具
- key: options.form_factors.vision_simulator
t: 视觉模拟题
# Industry Sector
- key: options.industry_sector.ecommerce
t: 电子商务与零售
- key: options.industry_sector.news_media