-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcommon.yml
1469 lines (1335 loc) · 49.2 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: ko-KR
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_feedback
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: Newly added this year
- key: general.new
t: New
- key: general.devographics_banner
t: <a href="https://www.devographics.com/" target="_blank">Devographics</a>는 State of JavaScript, CSS, GraphQL 설문조사를 실행하는 집단의 새로운 이름입니다.
- key: credits.thanks
t: Special Thanks
- 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: 저장소 아키텍처
- key: credits.code_refactoring
t: 코드 리팩토링
- key: credits.data_processing
t: 데이터 프로세싱
- key: credits.back_end_development
t: 백엔드 개발
# support
- key: general.support_from
t: With Support From
# footer
- key: general.privacy_policy
t: 개인 정보 정책
- key: general.leave_issue
t: 질문이 있나요? 버그를 발견하셨나요? <a href="{link}" target="_blank">이슈를 남겨주세요</a>.
- key: general.leave_issue2
aliasFor: homepage.leave_issue
- key: general.emoji_icons
t: 이모티콘 by <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.back_to_survey
t: 설문으로 돌아가기
- key: general.thanks
t: >
저희 설문에 응답해 주셔서 감사합니다!
제출하신 설문이 저장되었습니다. 설문이 종료될 때까지 제출하신 설문을 다시보거나 수정하실 수 있습니다.
또한, 이 설문을 공유하여 퍼뜨려주실 수 있습니다. 한 분 한 분의 응답이, 저희의 데이터를 더욱 신뢰할 수 있고 완성도 있게 만들 수 있습니다:
- key: general.thanks1
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_statistics
t: >
이 설문에 언급된 {total}개의 기능 중 {usage_count}개를 사용했으며, {awareness_count}개에 대해 알고 있으므로 모든 응답자 중 상위 {knowledgeRankingFromTop}에 속합니다. 수고하셨습니다!
- key: thanks.score_statistics_noranking
t: >
이 설문에 언급된 {total}개의 기능 중 {usage_count}개를 사용했으며, {awareness_count}개에 대해 알고 있습니다. 수고하셨습니다!
- key: thanks.points
t: >
포인트
- key: thanks.score_awareness_explanation
t: >
공정성을 위해 이 비율은 당신이 알고 있다고 표현한 {awareness_total}개의 기능에 대해서만 계산됩니다.
- key: thanks.share_on_twitter
t: 트위터에 공유하기
- key: thanks.share_score_message
t: >
저는 올해 #{hashtag} 설문에서 {score} 포인트의 지식 점수를 받았습니다!
{usage_count}개의 기능을 사용했고, {awareness_count}개에 대해 알고 있으며,
상위 {rank}%에 속합니다. 저를 이길 수 있으세요? {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: 접기
# partners & sponsors
- key: sponsors.with_support_from
t: 특별한 지원자들
- 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}">디스코드</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: 코드 예제
- key: general.language_code
t: |
{language} 코드
###########################################################################
# 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: 어떤 리소스를 찾아보겠습니까?
- key: sections.opinions.title
t: 의견
- key: sections.opinions.description
t: 어떻게 생각하십니까?
- 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: 설문 종료하기
###########################################################################
# Options
###########################################################################
# 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> 사용해 본 적 있음
# 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: 사용해 본 적 있음
# 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: 11-18세
- key: options.age.range_18_24
t: 19-24세
- key: options.age.range_25_34
t: 25-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.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: 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: 🚫 해당없음
- 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.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: 해당없음
- 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: 논 바이너리 or GNC
- 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: 테스트 도구 (Axe, Lighthouse, etc.)
- key: options.form_factors.vision_simulator
t: 변화된 시각 시뮬레이터 (색맹, etc.)
# 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.tourism
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: 제조
- key: options.industry_sector.tech_it
t: 기술 & IT
- key: options.industry_sector.human_resources
t: 인사
- key: options.industry_sector.sports
t: 스포츠
- key: options.industry_sector.gaming
t: 게임
- key: options.industry_sector.research
t: 연구
- key: options.industry_sector.law
t: 법률
- key: options.industry_sector.non_profit
t: 비영리
- key: options.industry_sector.art
t: 예술
- key: options.industry_sector.crypto
t: 암호화폐
- key: options.industry_sector.aerospace
t: 항공우주
- key: options.industry_sector.web3
t: 웹3
- key: options.industry_sector.iot
t: 사물인터넷
- key: options.industry_sector.gambling
t: 도박
- key: options.industry_sector.blockchain
t: 블록체인
- key: options.industry_sector.design
t: 디자인
- key: options.industry_sector.unemployed
t: 소속없음
- key: options.industry_sector.recruiting
t: 채용
- key: options.industry_sector.agency
t: 에이전시
- key: options.industry_sector.business
t: 비즈니스
- key: options.industry_sector.communication
t: 통신
- key: options.industry_sector.security
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: 포커스 표시자
- key: options.accessibility_features.skip_to_content_link
t: 콘텐츠로 건너뛰기 링크
- key: options.accessibility_features.color_themes
t: 색상 테마 (다크 모드, 고대비 모드 등)
- key: options.accessibility_features.prefers_reduced_motion
t: 움직임 감소 선호
- key: options.accessibility_features.alt_text
t: 대체 텍스트
- key: options.accessibility_features.semantic_markup
t: 시멘틱 마크업
- key: options.accessibility_features.aria_attributes
t: ARIA HTML 속성
# learning methods
- key: options.first_steps.na
t: 🚫 해당사항 없음
- 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: 팟캐스트
- key: options.first_steps.bootcamp
t: 코딩 부트캠프
- key: options.first_steps.on_the_job
t: 현장 교육
- key: options.first_steps.self_directed
t: 자기 주도 학습 (Google, Stack Overflow, etc.)
- key: options.first_steps.mentoring
t: 멘토링
- key: options.first_steps.documentation
t: 문서
- key: options.first_steps.blogs
t: 블로그
- key: options.first_steps.view_source
t: 페이지 소스 보기 (View Source)
- key: options.first_steps.trial_and_error
t: 체험판 & 시행착오
- key: options.first_steps.forums
t: 포럼
- key: options.first_steps.newsletters
t: 뉴스레터
- key: options.first_steps.events
t: 이벤트
# learning methods
- key: resources.learning_methods
t: 학습 방법
- 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
aliasFor: options.first_steps.blogs
- key: options.learning_methods.view_source
aliasFor: options.first_steps.view_source
- key: options.learning_methods.documentation
aliasFor: options.first_steps.documentation
- key: options.learning_methods.trial_and_error
aliasFor: options.first_steps.trial_and_error
- key: options.learning_methods.forums
aliasFor: options.first_steps.forums
- key: options.learning_methods.newsletters
aliasFor: options.first_steps.newsletters
- key: options.learning_methods.events
aliasFor: options.first_steps.events
# 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: 아니오