-
Notifications
You must be signed in to change notification settings - Fork 3
/
common.yml
1088 lines (986 loc) · 34 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-Hant
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}
# 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.review_survey
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_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: 商標設計
- key: credits.mobile_testing
t: 行動裝置測試
- key: credits.data_visualizations
t: 資料視覺化
- key: credits.repo_architecture
t: Repo 架構
- 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: 有問題?發現臭蟲?<a href="{link}" target="_blank">請填寫 Issue</a>。
- key: general.emoji_icons
t: 表情符號圖示是 <a target="_blank" rel="noreferrer" href="https://icons8.com">Icons8</a> 的作品
# navigation
- key: general.table_of_contents
t: 目錄
- key: general.all_questions_optional
t: >
附註:所有問題都不是必填,不一定得要達到 100% 完成度。
- 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: thanks.learn_more_about
t: "還有一些說不定你想要深入瞭解的功能:"
- key: thanks.knowledge_score
t: 熟悉分數
- key: thanks.score_explanation
t: >
調查裡提到的 <span class="score-number score-number-total">{total}</span> 個功能,
你聽過或使用過 <span class="score-number score-number-known">{known}</span> 個。在所有答題者裡,你的排名是 <span class="score-number score-number-ranking">{knowledgeRankingFromTop}%</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: 清除問題
# partners
- key: sponsors.our_partners
t: 我們的夥伴
- key: sponsors.become_partner
t: 成為夥伴
# 404
- key: notfound.title
t: 404 找不到
- 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: 程式碼範例
###########################################################################
# 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: sections.report.title
t: 趨勢報告
###########################################################################
# Options
###########################################################################
# 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 (no emoji)
- key: options.features.never_heard.label
t: 從未聽過/不確定是什麼
- key: options.features.heard.label
t: 知道是什麼,但從未用過
- key: options.features.used.label
t: 已經有用過
# features (short versions)
- key: options.features.never_heard.short
t: 從未聽過
- key: options.features.heard.short
t: 知道是什麼
- key: options.features.used.short
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: 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: 少於 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 年"
# company size
- 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.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: 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.range_work_for_free
t: 我免費做功德
- 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: 超過 $200k
# salary (short versions)
- 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: 無
- 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: 不在列表上
# 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.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: 電視
- 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: 測試工具(Axe、Lighthouse⋯等)
- key: options.form_factors.vision_simulator
t: 視覺改變模擬器(色盲⋯等)
# Industry Sector
- key: options.industry_sector.ecommerce
t: 電子商務與零售
- key: options.industry_sector.news_media
t: 新聞、媒體與部落格
- key: options.industry_sector.healthcare
t: 醫療照護
- key: options.industry_sector.finance
t: 金融
- key: options.industry_sector.programming_tools
t: 程式與技術工具
- key: options.industry_sector.socialmedia
t: 社群媒體
- key: options.industry_sector.marketing_tools
t: 行銷/業務/分析工具
- key: options.industry_sector.education
t: 教育
- key: options.industry_sector.real_estate
t: 房地產
- key: options.industry_sector.government
t: 政府
- key: options.industry_sector.entertainment
t: 娛樂
- key: options.industry_sector.consulting
t: 顧問與服務
- key: options.industry_sector.travel
t: 旅遊
- key: options.industry_sector.insurance
t: 保險
- key: options.industry_sector.logistics
t: 物流
- key: options.industry_sector.energy
t: 能源
- key: options.industry_sector.telecommunications
t: 通訊
- key: options.industry_sector.student
t: 學生
- key: options.industry_sector.hospitality
t: 接待服務
- key: options.industry_sector.cyber_security
t: 網路安全
- key: options.industry_sector.construction
t: 營造
- key: options.industry_sector.automotive
t: 汽車
- key: options.industry_sector.agriculture
t: 農業
- key: options.industry_sector.transport
t: 運輸
- key: options.industry_sector.manufacturing
t: 製造
# tool evaluation
- key: options.tool_evaluation.learning_curve_documentation
t: 文件
- key: options.tool_evaluation.learning_curve_documentation.description
t: 覺得很容易學習且/或文件很完整?
- key: options.tool_evaluation.momentum_popularity
t: 炒作與潮流
- key: options.tool_evaluation.momentum_popularity.description
t: 目前產生許多熱門詞彙?
- key: options.tool_evaluation.user_base_size
t: 使用者基礎數量
- key: options.tool_evaluation.user_base_size.description
t: 是發展成熟且有長期追蹤記錄的嗎?
- key: options.tool_evaluation.developer_experience_tooling
t: 開發者體驗
- key: options.tool_evaluation.developer_experience_tooling.description
t: 有優秀的開發者工具,和龐大的外掛生態⋯等?
- key: options.tool_evaluation.performance_user_experience
t: 使用者體驗
- key: options.tool_evaluation.performance_user_experience.description
t: 能夠幫助建造滑順且高效能的使用者體驗?
- key: options.tool_evaluation.creator_team
t: 作者與團隊
- key: options.tool_evaluation.creator_team.description
t: 是由知名、資金充裕或有經驗的團隊支持嗎?
- key: options.tool_evaluation.accessibility_features
t: 無障礙設計功能
- key: options.tool_evaluation.accessibility_features.description
t: 擅長為全體使用者創造無障礙體驗嗎?
- key: options.tool_evaluation.community_inclusivity
t: 社群與平權
- key: options.tool_evaluation.community_inclusivity.description
t: 社群是友善且充滿活力的嗎?
# accessibility features
- key: options.accessibility_features.keyboard_navigation
t: 鍵盤操作
- key: options.accessibility_features.compliant_contrast
t: 相容 WCAG 的對比度
- key: options.accessibility_features.focus_indicators
t: Focus 指示
- key: options.accessibility_features.skip_to_content_link
t: 跳至內容的連結
- key: options.accessibility_features.color_themes
t: 顏色主題(暗色模式、高對比度模式⋯等)
- key: options.accessibility_features.prefers_reduced_motion
t: Prefers-reduced-motion
- key: options.accessibility_features.alt_text
t: Alt 文字
- key: options.accessibility_features.semantic_markup
t: 情境式標籤
- key: options.accessibility_features.aria_attributes
t: ARIA HTML 屬性
# learning methods
- key: options.first_steps.books
t: 書籍
- key: options.first_steps.videos
t: 影片與教學錄影
- key: options.first_steps.school
t: 學校與高等教育
- key: options.first_steps.courses_free
t: 線上課程(免費)
- key: options.first_steps.courses_paid
t: 線上課程(付費)
- key: options.first_steps.podcasts
t: Podcast
- key: options.first_steps.bootcamp
t: 程式學校
- key: options.first_steps.on_the_job
t: 在職訓練
- key: options.first_steps.self_directed
t: 自學(Google、Stack Overflow⋯等)
- key: options.first_steps.mentoring
t: 師徒制
# degree
- key: options.higher_education_degree.no_degree
t: 否
- key: options.higher_education_degree.yes_related
t: 是,跟我目前職業相關的領域
- key: options.higher_education_degree.yes_unrelated
t: 是,但跟目前職業無關的領域
# degree (short versions)
- key: options.higher_education_degree.no_degree.short
t: 否
- key: options.higher_education_degree.yes_related.short
t: 是,相關領域
- key: options.higher_education_degree.yes_unrelated.short
t: 是,無關領域
# bracket
- key: options.bracket.round1
t: 第 1 輪獲勝
- key: options.bracket.round2
t: 第 2 輪獲勝
- key: options.bracket.round3
t: 第 3 輪獲勝
- key: options.bracket.combined
t: 總和
###########################################################################
# Tools
###########################################################################
- key: tools.other_tools
t: 其他選項
- key: tools.other_tools.description
t: 上方列表裡沒有可選的項目時使用。
- key: tools.happiness
t: 整體愉悅感
- key: tools.happiness.description
t: >
上面提到的項目裡,以 1(非常不開心)到 5(非常開心)來劃分的話,目前整體的感覺是?
###########################################################################
# Demographics (About You/User Info)
###########################################################################
# age
- key: user_info.age
t: 年齡
- key: user_info.age.question
t: 年紀是?以歲數來算。
# years of experience
- key: user_info.years_of_experience
t: 年資
- key: user_info.years_of_experience.question
t: 在此領域,已經工作或研究多久?
# company size
- key: user_info.company_size
t: 公司規模
- key: user_info.company_size.question
t: 任職的公司有多大?
# salary ranges
- key: user_info.yearly_salary
t: 年薪
- key: user_info.yearly_salary.question
t: 美金為單位。
# job title
- key: user_info.job_title
t: 職稱
- key: user_info.job_title.question
t: 在聚會中如何介紹自己?
# javascript proficiency
- key: user_info.javascript_proficiency
t: JavaScript 熟悉程度
- key: user_info.javascript_proficiency.question
t: 對於 JavaScript 的熟悉程度?
# css proficiency
- key: user_info.css_proficiency
t: CSS 熟悉程度
- key: user_info.css_proficiency.question
t: 對於 CSS 的熟悉程度?
# backend proficiency
- key: user_info.backend_proficiency
t: 後端熟悉程度
- key: user_info.backend_proficiency.question
t: 對於後端開發的熟悉程度?
# gender
- key: user_info.gender
t: 性別
- key: user_info.gender.question
t: >
下列選項中,如果有的話,哪個可以用來形容自己?請挑選一個。
- key: user_info.gender.note
t: >
儘管我們知道搜集並公開多元族群資料是敏感議題,仍覺得取得這些資料,對於觀測和改進這份調查,在包容性與代表性的努力有幫助。
# race & ethnicity
- key: user_info.race_ethnicity
t: 種族與族群
- key: user_info.race_ethnicity.question
t: >
下列選項中,如果有的話,哪個可以用來形容自己?請勾選符合的。
- key: user_info.race_ethnicity.note
t: >
儘管我們知道搜集並公開多元族群資料是敏感議題,仍覺得取得這些資料,對於觀測和改進這份調查,在包容性與代表性的努力有幫助。
- key: user_info.race_ethnicity.not_allowed
t: >
為遵循當地政策,在你/妳的國家不開放蒐集種族與族群資料。
# disability status
- key: user_info.disability_status
t: 不便狀態
- key: user_info.disability_status.question
t: >
如果有的話,經歷過下列哪些不便?請勾選符合的。
請注意這也包含暫時的不便或受傷。
# disability status (other)
- key: user_info.disability_status.others
t: 其他不便
# other info
- key: user_info.how_did_user_find_out_about_the_survey
t: 是怎麼找到這份調查的?
- key: user_info.email
t: 電子郵件
- key: user_info.email.description
t: >
完成以匿名填寫這份調查。如果願意的話,可以輸入電子郵件,之後就可以查閱自己的資料,也可以在調查結果發布時獲得通知。
- key: user_info.email.note
t: >
我們不會儲存任何個人資料。因此,填寫完電子郵件地址後,會用來產生一組獨一無二的匿名辨認符號,接著,就把地址本身從記錄上刪除。
- key: user_info.country
t: 國家或區域
- key: user_info.country.description
t: 目前住在哪裡?
- key: user_info.github_username
t: GitHub 帳號
- key: user_info.github_username.description
t: >
未來,我們可能會使用 GitHub 帳號來檢視 Repo,並交叉參考可以公開利用的資訊。
- key: user_info.twitter_username
t: Twitter 帳號
- key: user_info.twitter_username.description
t: >
未來,我們可能會使用 Twitter 帳號來檢視在 Twitter 的活動,並交叉參考可以公開利用的資訊。
(例如,列出關注的人)
- key: user_info.industry_sector
t: 產業領域
- key: user_info.industry_sector.question
t: 在哪些產業領域工作?
- key: user_info.industry_sector.others
t: 其他產業領域
- key: user_info.industry_sector.others.description
t: 在上面沒提到的產業領域工作。
# degree
- key: user_info.higher_education_degree
t: 高等教育
- key: user_info.higher_education_degree.question
t: 有高等教育學歷嗎?
# completion
- key: user_info.completion_stats
t: 調查完成度
- key: user_info.completion_stats.description
t: 答題者填寫了調查的多少比例?
# email_temporary (receive updates?)
- key: user_info.receive_notifications
t: 想要在調查結果釋出時,獲得通知嗎?
- key: user_info.receive_notifications.note
t: >
我們不會儲存任何個人資料。所以把你/妳的電子郵件地址轉給郵寄清單提供者後,就會從我們自己的記錄上刪除。
# how can we improve the survey?
- key: user_info.how_can_we_improve
t: 要如何讓這份調查更好呢?
###########################################################################
# Other Tools
###########################################################################
- key: tools_others.libraries
t: 函式庫
- key: tools_others.libraries.question
t: 經常使用哪些函式庫?
- key: tools_others.libraries.others
t: 其他函式庫
- key: tools_others.libraries.others.description
t: 其他回答(自由填寫)。
- key: tools_others.text_editors
t: 文字編輯器
- key: tools_others.text_editors.question
t: 通常使用的文字編輯器是哪些?
- key: tools_others.text_editors.others
t: 其他文字編輯器
- key: tools_others.text_editors.others.description
t: 其他回答(自由填寫)。
- key: tools_others.utilities
t: 工具
- key: tools_others.utilities.question
t: 通常使用哪些工具程式庫 (utility libraries)?
- key: tools_others.utilities.others
t: 其他工具
- key: tools_others.utilities.others.description
t: 其他工具(自由填寫)。
- key: tools_others.browsers
t: 瀏覽器
- key: tools_others.browsers.question
t: 在早期開發的時候,主要使用哪些瀏覽器?
- key: tools_others.browsers.others
t: 其他瀏覽器
- key: tools_others.browsers.others.description
t: 其他回答(自由填寫)。
- key: tools_others.build_tools
t: Build 工具
- key: tools_others.build_tools.question
t: 在用哪些 Build 工具?
- key: tools_others.build_tools.others