-
Notifications
You must be signed in to change notification settings - Fork 4
/
results.yml
1866 lines (1593 loc) · 57.9 KB
/
results.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
###########################################################################
- key: results.start
t: 开始
- key: page.previous
t: "上一项:"
- key: page.next
t: "下一项:"
- key: general.state_of_css_link
t: CSS 现况
- key: general.netlify_link
t: 由 <a href="{link}">Netlify</a>托管
- key: general.completion_percentage
t: "完成率:"
- key: sponsors.thanks
t: 感谢合作伙伴对我们的支持!
- key: sponsors.learn_more
t: 了解更多。
- key: tabs.all_respondents
t: 所有受访者
- key: tabs.main_answers
t: 主要答案
- key: tabs.other_answers
t: 其他答案
- key: tabs.bracket_wins
t: 胜出
- key: tabs.bracket_matchups
t: 对决
- key: tabs.chart
t: 图表
- key: tabs.data
t: 数据
- key: tabs.share
t: 分享
- key: tabs.debug
t: 调试
- key: tabs.by_country
t: 根据国家/地区区分
- key: tabs.by_experience
t: 根据经验区分
- key: tabs.by_degree
t: 根据学位区分
- key: tabs.by_salary
t: 根据薪水区分
- key: tabs.by_gender
t: 根据性别区分
- key: tabs.by_race_ethnicity
t: 根据种族和民族区分
- key: tabs.low_vs_high_income
t: 低收入 vs 高收入
- key: tabs.usa_vs_the_world
t: 美国 vs 世界
###########################################################################
# Options
###########################################################################
- key: options.experience_ranking.satisfaction
t: 满意度
- key: options.experience_ranking.interest
t: 关注度
- key: options.experience_ranking.usage
t: 使用度
- key: options.experience_ranking.awareness
t: 认知度
- key: ratios.interest
aliasFor: options.experience_ranking.interest
- key: ratios.usage
aliasFor: options.experience_ranking.usage
- key: ratios.awareness
aliasFor: options.experience_ranking.awareness
- key: ratios.retention
t: 保留
- key: ratios.positivity
t: 积极性
- key: ratios.interest.description
t: >
**听说过**某个项目的受访者中**积极情绪**的比例
- key: ratios.usage.description
t: >
**使用过**某个项目的受访者比例
- key: ratios.awareness.description
t: >
**听说过或使用过**某个项目的受访者比例
- key: ratios.retention.description
t: >
**使用过**某物品的受访者中**积极情绪**的比例
- key: ratios.positivity.description
t: >
所有受访者中**积极情绪**的比例
- key: modes.rank
t: 排名
- key: modes.value
t: 值
- key: modes.rank.description
t: 根据排名排序
- key: modes.value.description
t: 根据值排序
- key: options.features_mode.grouped
t: 分组
- key: options.features_mode.awareness_rank
t: 根据认知区分
- key: options.features_mode.usage_rank
t: 根据使用数量区分
- key: options.features_mode.usage_ratio_rank
t: 根据使用率区分
- key: options.features_simplified.know_it
t: 听说过
- key: options.features_simplified.used_it
t: 使用过
- key: options.features_simplified.usage_ratio
t: 使用率
- key: options.quadrant.assess
t: 评估
- key: options.quadrant.assess.long
t: |
评估: 使用率较低,留存度较高。值得关注的技术。
- key: options.quadrant.adopt
t: 采用
- key: options.quadrant.adopt.long
t: |
采用: 使用率高,留存度高。可采用安全技术。
- key: options.quadrant.avoid
t: 规避
- key: options.quadrant.avoid.long
t: |
规避: 使用率低,留存度低。目前最好避免使用的技术。
- key: options.quadrant.analyze
t: 待定
- key: options.quadrant.analyze.long
t: |
待定: 使用率高,留存度低。如果你正在使用这些技术,请重新评估它们。
- key: options.quadrant.1
t: 1
- key: options.quadrant.1.long
t: |
1: 使用率低,留存度高,可以持续观望的技术。
- key: options.quadrant.2
t: 2
- key: options.quadrant.2.long
t: |
2: 使用率高,留存度高,可以放心使用的技术。
- key: options.quadrant.3
t: 3
- key: options.quadrant.3.long
t: |
3: 使用率低,留存度低,不建议使用的技术。
- key: options.quadrant.4
t: 4
- key: options.quadrant.4.long
t: |
4: 使用率高,留存度低,建议重新评估的技术。
- key: ranges.selector.years_of_experience
t: 经验年限
- key: ranges.selector.yearly_salary
t: 薪资
- key: ranges.selector.company_size
t: 公司规模
# other learning methods
- key: options.first_steps.blogs
t: 博客
- key: options.first_steps.forums
t: 论坛
- key: options.first_steps.view_source
t: 查看源代码
- key: options.first_steps.copy_paste
t: 复制/粘贴
- key: options.first_steps.trial_and_error
t: 尝试与错误
- key: options.first_steps.documentation
t: 文档
# other disablities
- key: options.disability_status_others.adhd
t: 多动症
- key: options.disability_status_others.autism
t: 自闭症
- key: options.disability_status_others.glasses
t: 近视
- key: options.disability_status_others.old
t: 老年病
- key: options.disability_status_others.back_pain
t: 背疼
- key: options.disability_status_others.epilepsy
t: 癫痫
- key: options.disability_status_others.aspergers
t: 阿斯伯格综合症
- key: options.disability_status_others.color_blindness
t: 色盲
- key: options.disability_status_others.anxiety
t: 焦虑症
- key: options.disability_status_others.dyslexia
t: 失读症
- key: options.disability_status_others.diabetes
t: 糖尿病
- key: options.disability_status_others.carpal_tunnel
t: 腕道症候群
- key: options.disability_status_others.migraine
t: 偏头痛
- key: options.disability_status_others.speech_impairment
t: 语言障碍
- key: options.disability_status_others.ocd
t: 强迫症
- key: options.disability_status_others.chronic_pain
t: 慢性疼痛
- key: options.disability_status_others.chronic_fatigue
t: 慢性疲劳
- key: options.disability_status_others.crohn
t: 克罗恩病
- key: options.disability_status_others.depression
t: 抑郁症
###########################################################################
# Sections
###########################################################################
- key: sections.introduction.title
t: 介绍
- key: sections.demographics.title
t: 从业者统计
- key: sections.tshirt.title
t: T恤衫
- key: sections.technologies.title
t: 技术
- key: sections.libraries.title
t: 库
- key: sections.conclusion.title
t: 总结
- key: sections.about.title
t: 关于
- key: sections.how_to_help.title
t: 如何帮助
- key: sections.support.title
t: 支持我们
- key: sections.support.description
t: >
我们将这个调查作为一个副业项目进行,但为了使这个项目可持续发展,
我们一直在寻找能够支持我们的合作伙伴,
无论是在经济上还是帮助我们传播信息。
如果你认为你能在任何方面提供帮助,请不要犹豫[联系我们](mailto:[email protected])!
- key: sections.awards.title
t: 大奖
- key: sections.awards.description
t: 今年的亮点
###########################################################################
# User Info
###########################################################################
- key: user_info.locale
t: 语言
- key: user_info.locale.description
t: 受访者选择了什么语言来填写调查问卷?
- key: user_info.source
t: 来源
- key: user_info.source.description
t: 受访者如何了解到这项调查的?
- key: user_info.source.note
t: 这些数据是自报答案、推荐人数据和URL跟踪数据的混合。
- key: options.source.other_answers
t: 其他来源
- key: user_info.source_by_gender
t: 按来源分列的性别
- key: user_info.source_by_race_ethnicity
t: 按种族来分列的性别
- key: user_info.gender_by_country
t: 按国家分列的性别
- key: user_info.gender_by_country.description
t: 按国家划分的性别分布,至少有100名受访者,按“平均性别”(每个性别键按升序分配一个整数值)降序排序。
- key: user_info.years_of_experience_by_salary
t: 按薪资范围划分的工作年限
- key: user_info.years_of_experience_by_salary.description
t: 按薪资范围划分的工作年限。
- key: user_info.average_income_by_years_of_experience
t: 按经验年限划分的平均收入
- key: user_info.average_income_by_years_of_experience.description
t: 按经验年限划分的平均收入。
- key: user_info.average_income_by_company_size
t: 按公司大小划分的平均收入
- key: user_info.average_income_by_company_size.description
t: 按公司大小划分的平均收入
- key: user_info.yearly_salary_by_country
t: 按国家分列的薪金
- key: user_info.yearly_salary_by_country.description
t: 按国家划分的年薪分布,至少有100名受访者,按平均薪资递减排序。
- key: user_info.yearly_salary_by_degree
t: 按高等教育程度划分的工资
- key: user_info.yearly_salary_by_degree.description
t: 按高等教育程度划分的年薪分配,按平均工资递减排序。
- key: user_info.yearly_salary_by_experience
t: 经验工资
- key: user_info.yearly_salary_by_experience.description
t: 年薪按经验分配,按平均工资降幅排序。
- key: user_info.yearly_salary_usa_vs_the_world
t: >
年收入:美国vs世界
- key: user_info.race_ethnicity_by_years_of_experience
t: 根据多年经验划分的种族和民族
- key: user_info.race_ethnicity_by_years_of_experience.description
t: 按经验年限划分的种族和民族分布,按平均经验排序。
- key: user_info.higher_education_degree_by_gender
t: 按性别分列的高等教育学位
- key: user_info.higher_education_degree_by_gender.description
t: 按性别划分的高等教育学位分布。
###########################################################################
# Locales
###########################################################################
- key: options.locale.en-US
t: 英语
- key: options.locale.ca-ES
t: 加泰罗尼亚语
- key: options.locale.es-ES
t: 西班牙语
- key: options.locale.ru-RU
t: 俄语
- key: options.locale.fr-FR
t: 法语
- key: options.locale.zh-Hant
t: 中文 (繁体)
- key: options.locale.de-DE
t: 德语
- key: options.locale.cs-CZ
t: 捷克语
- key: options.locale.pt-PT
t: 葡萄牙语
- key: options.locale.pt-BR
t: 葡萄牙语 (巴西)
- key: options.locale.it-IT
t: 意大利语
- key: options.locale.sv-SE
t: 瑞典语
- key: options.locale.tr-TR
t: 土耳其语
- key: options.locale.id-ID
t: 印尼语
- key: options.locale.hi-IN
t: 北印度语
- key: options.locale.zh-Hans
t: 中文 (简体)
- key: options.locale.ja-JP
t: 日语
- key: options.locale.ua-UA
t: 乌克兰语
- key: options.locale.pl-PL
t: 波兰语
- key: options.locale.fa-IR
t: 波斯语
- key: options.locale.nl-NL
t: 荷兰语
- key: options.locale.ko-KR
t: 韩国人
- key: options.locale.ro-RO
t: 罗马尼亚语
- key: options.locale.am-ET
t: 阿姆哈拉语
- key: options.locale.ar-EG
t: 阿拉伯语
- key: options.locale.el-GR
t: 希腊语
- key: options.locale.gl-ES
t: 加利西亚语
- key: options.locale.hr-HR
t: 克罗地亚语
- key: options.locale.hu-HU
t: 匈牙利语
- key: options.locale.sk-SK
t: 斯洛伐克语
- key: options.locale.vi-VN
t: 越南语
###########################################################################
# Features
###########################################################################
- key: features.learn_more
t: 了解更多 (MDN)
- key: features.mdn_link
t: MDN
- key: features.caniuse_link
t: Can I use
- key: features.specification_link
t: W3C 标准
# knowledge score
- key: features.knowledge_score
t: 知识得分
- key: features.knowledge_score.description
t: 在调查中提到的所有特性中,受访者知道多少?
###########################################################################
# Tools & Methodologies
###########################################################################
- key: tools.all_items.experience
t: Libraries Experience & Sentiment
- key: tools.all_items.experience.short
aliasFor: tools.experience
# general
- key: tools.links
t: 链接
- key: tools.github_link
t: github
- key: tools.github_stars
t: github star 数
- key: tools.homepage_link
t: 主页
- key: tools.npm_link
t: NPM
- key: tools.technology
t: 技术
###########################################################################
# Blocks
###########################################################################
# heatmaps
- key: blocks.tools_company_size_heatmap
t: 按公司规模划分的使用情况
- key: blocks.tools_company_size_heatmap.description
t: |
对于每种技术,在不同公司规模范围的受访者中,
使用情况如何。
- key: blocks.tools_yearly_salary_heatmap
t: 按薪水范围划分的使用情况
- key: blocks.tools_yearly_salary_heatmap.description
t: |
对于每种技术,在选择不同薪资范围的受访者中,
使用情况如何。
- key: blocks.tools_years_of_experience_heatmap
t: 按经验年限划分的使用情况
- key: blocks.tools_years_of_experience_heatmap.description
t: |
对于每种技术,在选择不同经验年限范围的受访者中,使用情况如何。
请注意,这里讨论的经验是一般经验,而不是特定技术的经验。
# tool
- key: blocks.entity.homepage_link
t: 主页
- key: blocks.entity.github_link
t: github
- key: blocks.entity.twitter_link
t: 推特
- key: blocks.entity.mastodon_link
t: Mastodon
- key: blocks.entity.blog_link
t: 博客
- key: blocks.entity.rss_link
t: RSS
- key: blocks.entity.twitch_link
t: Twitch
- key: blocks.entity.npm_link
t: npm
- key: blocks.entity.youtube_link
t: YouTube
- key: blocks.entity.mdn_link
t: MDN
- key: blocks.entity.caniuse_link
t: CanIUse
# people
- key: blocks.people.name
t: 名字
- key: blocks.people.social_links
t: 链接
- key: blocks.people.responses
t: 答复
# cardinality
- key: blocks.all_sections_tools_cardinality_by_user
t: 技术使用基数
- key: blocks.all_sections_tools_cardinality_by_user.description
t: >
对于每一部分,
受访者对前几种技术的使用率
(此处的"使用"定义为"会再次使用")。
- key: blocks.cardinality.max
t: 最常见的答案
# tools arrows
- key: blocks.tools_arrows
t: 随时间变化
- key: blocks.tools_arrows.description
t: |
每条时间从2016到2020年。较高的点表示更多的人在使用该技术。
较右则的点意昧着更多的受访者想要学习它;或者已经使用过并且会再次使用它。
- key: blocks.tools_arrows.note
t: |
- 有些线条跳过了几年。
- 只有一年数据的技术没有显示。
- 速度公式 = (最新的意见 - 最旧的意见) + (最新的使用) - (最旧的使用)
- 积极的速度意味着使用或积极的意见随着时间的推移而增加。
# tools quadrant
- key: blocks.tools_quadrant
t: 满意度 对比 使用率
- key: tools.scatterplot_overview
aliasFor: blocks.tools_quadrant
- key: blocks.tools_quadrant.description
t: |
这张图表显示了每种技术对其总 **用户数量** 的 **满意率**。
它可以分为四个象限:
- **评估**: 使用率较低,满意度较高。值得关注的技术。
- **采用**: 使用率高,满意度高。可采用安全技术。
- **规避**: 使用率低,满意度低。目前最好避免使用的技术。
- **待定**: 使用率高,满意度低。如果你正在使用这些技术,请重新评估它们。
# category other tools
- key: blocks.category_other_tools
t: 其他工具
- key: blocks.category_other_tools.description
t: 此类别中的其他工具(自由填写的答案)。
# tool experience
- key: blocks.tool_experience
t: "{name} 体验"
- key: blocks.tool_experience.description
t: 受访者对 {name} 的体验.
# tool positive/negative split ("marimekko" chart)
- key: blocks.tools_experience_marimekko
t: 积极/消极体验拆分图
- key: blocks.tools_experience_marimekko.description
t: |
这张图表将
用户的积极体验(想学习,会再次使用)和消极体验(不感兴趣,不会再次使用)
分别呈现在中轴两侧。
柱状的厚度代表了解某一技术的访问者数量。
# tool tier list
- key: blocks.tools_tier_list
t: 代码库层级列表
- key: blocks.tools_tier_list.note
t: |
该图表会根据代码库的满意度对代码库进行排名
满意度指的是“会再次使用这个库的人数”。
请注意,使用率不到 10% 的代码库不包括在内。
- key: blocks.tools_tier_list.bounds
t: >
{lowerBound}% - {upperBound}%
# tools section streams
- key: blocks.tools_section_streams
t: 随时间变化的体验
- key: blocks.tools_section_streams.description
t: |
技术体验随时间变化的概览。
- key: blocks.tools_section_streams.note
t: |
不包含只有一年数据的技术。
# tools section overview
- key: blocks.tools_section_overview
t: 分类概览
- key: blocks.tools_section_overview.description
t: |
对所调查技术的态度的概览。
较深的部分代表积极的观点,而较浅的部分对应消极的情绪。
# tools experience ranking
- key: blocks.tools_experience_ranking
t: 排行
- key: blocks.tools_experience_ranking.percentages
t: 百分比
- key: blocks.tools_experience_ranking.rankings
t: 排行
- key: blocks.tools_experience_ranking.description
t: 满意度, 关注度, 使用率, 和认知率的排行。
- key: blocks.tools_experience_ranking.note
t: |
不包含认知率低于10%的技术。 每个比率定义如下:
- 满意率:**会再次使用** / (**会再次使用** + **不会再次使用**)
- 关注率:**想学习** / (**想学习** + **不感兴趣**)
- 使用率:(**将再次使用** + **将不再使用**) / **总计**
- 认知率:(**总计** - **从未听说过**) / **总计**
# tools experience linechart
- key: blocks.tools_experience_linechart
t: 长期比率
- key: blocks.tools_experience_linechart.description
t: 随着时间的推移,保留率、兴趣率、使用率和认知率都会有所提高。
- key: blocks.tools_experience_linechart.note
aliasFor: blocks.tools_experience_ranking.note
# happiness
- key: blocks.happiness
t: 总体满意度
- key: blocks.happiness.description
t: |
从1(非常不高兴)到5(非常高兴),
开发者对这一类别的整体满意度。
# newsletter
- key: blocks.newsletter.title
t: 持续关注
- key: blocks.newsletter.description
t: |
如果你想知道我们何时发布额外的结果或宣布明年的版本,
请在下面留下你的邮箱:
- key: blocks.newsletter.email
t: 你的邮箱
- key: blocks.newsletter.submit
t: 通知我
# features_overview
- key: blocks.features_overview
t: 使用情况概览
- key: blocks.features_overview.description
t: |
这张图根据分类划分,显示了各种特性的采用率。
在图中,<span class="text-teal-darker text-bold">外圈</span>的尺寸代表了了解这个特性的用户数量, <span class="text-teal text-bold">内圈</span>的尺寸代表了实际使用这个特性的用户数量。
鼠标悬浮在每个节点上,可以查看详细数据。
# features_experience_linechart
- key: blocks.features_experience_linechart
t: 随时间变化的比率
- key: blocks.features_experience_linechart.description
t: 随着时间的推移,评价最高的功能的使用率和认知率。
- key: blocks.features_experience_linechart.note
t: |
每个比率定义如下:
- 使用情况:(**已使用**)/ **总计**
- 认知度:(**使用过** + **了解它**)/ **总计**
- key: blocks.features_experience_ranking
t: 随时间变化的排名
- key: blocks.features_experience_ranking.description
t: 随着时间的推移使用情况和认知度排名。
- key: blocks.features_experience_ranking.note
aliasFor: blocks.features_experience_linechart.note
# export
- key: export.export
t: 导出
- key: export.title
t: 导出 {title} 数据
- key: export.nocsv
t: 对不起, 当前数据集不支持 CSV 导出。
- key: export.graphql
t: >
你可以在我们的公共 <a target="_blank" rel="nofollow" href="https://graphiql.devographics.com/">public GraphQL API</a> 中复制粘贴此查询。
- key: export.export_json
t: 获取JSON数据
- key: export.export_graphql
t: 获取GraphQL查询
- key: export.export_filters
t: 导出代码
- key: custom_data.heading
t: 自定义图表
- key: custom_data.custom_data
t: 自定义数据
- key: custom_data.graphql_query
t: GraphQL查询
- key: custom_data.chart_title
t: 自定义图表
- key: custom_data.submit
t: 提交
- key: custom_data.empty_contents
t: 请在“自定义数据”栏中输入一些数据。
- key: custom_data.edit_title
t: 编辑图表标题
- key: custom_data.customize
t: 自定义数据
- key: custom_data.details
t: >
1. 复制“GraphQL Query”文本域的内容,粘贴到[GraphQL API explorer](https://graphiql.stateofjs.com/)的中间面板。
2. 通过使用左侧资源管理器边栏添加一个或多个**过滤器**来修改查询。确保数据的整体结构相同。
3. 在资源管理器窗口中,单击播放(“执行查询”)按钮。
4. 将修改后的查询结果 (`{ data: ... }` ) 复制到上面的“自定义数据”文本字段中并提交。
# Tools usage variations
- key: blocks.tools_usage_variations
t: 使用率变化
- key: blocks.tools_usage_variations.description
t: |
不同的因素,
如薪资范围,经验年限或公司规模会如何影响使用率。
(依据受访者“会再次使用”或“不会再次使用”的答案)
基准代表每个工具的基本使用率,
偏移量对应于每个范围中相对基线的的增量。
比方说工具X在所有受访者中的总体使用率为10%(基准),
如果拥有1至2年经验的用户使用此工具的比例为13%,
那么相对于拥有1-2年经验的所有用户,
我们的增量为 +3%。
- key: blocks.tools_usage_variations.note
t: |
请记住,总体使用率较低的工具往往变化更大。
# Recommended Resources
- key: blocks.recommended_resources
t: 资源推荐
- key: blocks.recommended_events
t: 活动推荐
# Brackets
- key: tool_evaluation.tool_evaluation_wins
t: 工具库评价排名
- key: tool_evaluation.tool_evaluation_wins.description
t: 在评估新工具库时,你优先考虑哪些因素?结果按赢得的锦标赛轮数排列。
- key: tool_evaluation.tool_evaluation_matchups
t: 工具库评估排名(配对)
- key: tool_evaluation.tool_evaluation_matchups.description
t: 在评估新工具库时,你优先考虑哪些因素?左手项对上边项赢得回合数的百分比。
# other
- key: blocks.freeform
t: (自由提问)
# Reading List
- key: features.reading_list
t: 阅读列表
- key: features.reading_list.note
t: >
每个项目被添加到受访者阅读列表的次数,该功能可让受访者在参与调查时了解更多有关特定主题的信息。
###########################################################################
# Charts
###########################################################################
- key: chart_units.respondents
t: “{count}问题回答者({percentage}%完成百分比)”
- key: chart_units.percentage
t: 百分比
- key: chart_units.count
t: 数量
- key: chart_units.percentage_question
t: 受访者百分比
- key: chart_units.percentageQuestion
aliasFor: chart_units.percentage_question
- key: chart_units.percentage_survey
t: 调查对象百分比
- key: chart_units.percentageSurvey
aliasFor: chart_units.percentage_survey
- key: chart_units.percentage_bucket
t: "样本的 %"
- key: chart_units.percentageBucket
aliasFor: chart_units.percentage_bucket
- key: chart_units.average
t: 平均 {axis}
- key: chart_units.averageByFacet
aliasFor: chart_units.average
- key: chart_units.facetCounts
t: 数量
- key: chart_units.percentilesByFacet
t: "{axis} 百分比"
- key: charts.average
t: 平均的
- key: charts.mean
t: 意思是
- key: charts.all_respondents
t: 所有受访者
- key: charts.overall
aliasFor: charts.all_respondents
- key: charts.facet_responses
t: “{count}响应”
- key: charts.facet_respondents
t: "({count}受访者)"
- key: charts.nth_percentile
t: "{percentile}th 百分位数"
- key: charts.nth_percentile_value
t: "{percentile}th 百分位数: {value}"
- key: charts.freeform_data_indicator
t: (自由形式的答案)
- key: charts.insufficient_data
t: 数据不足
- key: charts.insufficient_data.description
t: 结果中不包含受访者数量少于 {value} 的结果。
- key: charts.axis_legends.years_of_experience
t: 经验年限
- key: charts.axis_legends.yearly_salary
t: 薪资范围 (USD)
- key: charts.axis_legends.company_size
t: 公司员工人数
- key: charts.axis_legends.backend_proficiency
t: 后端熟练程度
- key: charts.axis_legends.css_proficiency
t: CSS 熟练程度
- key: charts.axis_legends.javascript_proficiency
t: JavaScript 熟练程度
- key: charts.axis_legends.users_percentage
t: 用户百分比
- key: charts.axis_legends.users_count
t: 用户数量
- key: charts.axis_legends.users_average
t: 平均数{axis}
- key: charts.axis_legends.interest_percentage
t: 关注度百分比
- key: charts.axis_legends.satisfaction_percentage
t: 满意度百分比
- key: charts.axis_legends.retention_percentage
t: 留存率百分比
- key: charts.axis_legends.usage_percentage
t: 使用率%
- key: charts.axis_legends.awareness_percentage
t: 意识%
- key: chart_units.interest_percentage
aliasFor: charts.axis_legends.interest_percentage
- key: chart_units.satisfaction_percentage
aliasFor: charts.axis_legends.satisfaction_percentage
- key: chart_units.usage_percentage
aliasFor: charts.axis_legends.usage_percentage
- key: chart_units.awareness_percentage
aliasFor: charts.axis_legends.awareness_percentage
- key: charts.axis_legends.happiness
t: 幸福感
- key: charts.axis_legends.knowledge_score
t: 知道的特性
- key: charts.axis_legends.frequency
t: 频率
- key: charts.axis_legends.age
t: 年龄
- key: charts.axis_legends.users_percentage_survey
t: 调查对象百分比
- key: charts.axis_legends.users_percentageSurvey
aliasFor: charts.axis_legends.users_percentage_survey
- key: charts.axis_legends.users_percentage_question
t: 受访者百分比
- key: charts.axis_legends.users_percentageQuestion
aliasFor: charts.axis_legends.users_percentage_question
- key: charts.axis_legends.users_percentage_bucket
t: "%受访者数量"
- key: charts.axis_legends.users_percentageBucket
aliasFor: charts.axis_legends.users_percentage_bucket
- key: charts.axis_legends.users_averageByFacet
aliasFor: chart_units.average
- key: charts.axis_legends.users_percentilesByFacet
aliasFor: chart_units.percentilesByFacet
- key: charts.ranges_multiple_diverging_lines.baseline
t: 基准
- key: charts.ranges_multiple_diverging_lines.positive_offset
t: 正偏移量
- key: charts.ranges_multiple_diverging_lines.negative_offset
t: 负偏移量
- key: charts.tools_arrows.negative_opinion
t: 消极观点
- key: charts.tools_arrows.positive_opinion
t: 积极观点
- key: charts.tools_arrows.have_not_used
t: 未使用过
- key: charts.tools_arrows.have_used
t: 用过
- key: charts.tools_arrows.x_axis
t: X轴范围
- key: charts.tools_arrows.y_axis
t: Y轴范围
- key: charts.tools_arrows.legend
t: 传奇
- key: charts.tools_arrows.velocity
t: 速度
- key: charts.tools_arrows.velocity_positive
t: 总的来说,随着时间的推移,会有更多积极的意见和/或使用
- key: charts.tools_arrows.velocity_negative
t: 总的来说,随着时间的推移,负面意见越来越多,使用率越来越低
- key: charts.tools_arrows.opinions_positive
t: 大多数是积极的意见
- key: charts.tools_arrows.opinions_negative
t: 大多是负面意见
- key: charts.tools_arrows.low_usage
t: 低使用率
- key: charts.tools_arrows.high_usage
t: 高利用率
- key: charts.tools_arrows.popularity_positive
t: 越来越受欢迎
- key: charts.tools_arrows.popularity_negative
t: 人气下降
- key: charts.no_answer
t: 没有回答
- key: charts.no_answer.short
t: 没有回答
- key: charts.no_match
t: 回答不匹配
- key: charts.no_match.short
t: 回答不匹配
- key: charts.no_match.description
t: 无法与选项匹配的自由格式答案
- key: charts.cutoff_answers
t: 过滤掉的答案
- key: charts.cutoff_answers.short
t: 过滤掉的答案
- key: charts.cutoff_answers.description
t: 得分低于定义阈值的答案
- key: charts.other_answers
t: 其他答案
- key: charts.other_answers.short
t: 其他答案
- key: charts.other_answers.description
t: 其他不在选项中的答案
- key: charts.overlimit_answers
t: 超出限制
- key: charts.overlimit_answers.short
t: 超出限制
- key: charts.overlimit_answers.description
t: 超出问题额定数量的答案
- key: charts.freeform_data
t: 自由格式数据
- key: charts.freeform_data.description
t: 通过自由格式文本字段收集的数据
- key: charts.tick.links
t: 链接
- key: charts.resources
t: 有用的链接
- key: charts.facets_clarification
t: >
请注意,上面显示的百分比
会受到属于每个组的受访者总数的影响。
- key: charts.average_clarification
t: >
请注意,平均值是通过将每个范围的中点值作为近似代表值来计算的。
- key: charts.share
t: 分享图表
- key: charts.export
t: 导出数据
- key: charts.mode
t: >
模式: