-
Notifications
You must be signed in to change notification settings - Fork 2
/
common.yml
1774 lines (1609 loc) · 57.6 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: id-ID
translations:
###########################################################################
# General
###########################################################################
# homepage
- key: general.why_create_account
t: Mengapa saya perlu membuat akun?
- key: general.create_account_reasons
t: >
Kami meminta Anda membuat akun untuk:
- Menghindari tanggapan ganda
- Memberi Anda akses ke data Anda
- Menyimpan data sesi Anda
- Memberi tahu Anda saat hasilnya sudah diterbitkan
- key: general.survey_closed_detailed
t: >
Maaf, survei sudah ditutup! Anda masih dapat meninjau data Anda, namun Anda tidak dapat mengubahnya.
- key: general.survey_read_only
t: >
Anda sedang melihat survei ini dalam mode hanya baca.
- key: general.survey_preview
t: >
Survei ini dalam **mode peninjauan**. Semua pertanyaan dan subjek akan berubah, dan semua data masuk akan dihapus saat survei yang sebenarnya dimulai.
- key: general.survey_feedback
t: Tinggalkan saran
- key: general.survey_read_only_back
t: >
<a href="{link}">Kembali</a> ke halaman survei untuk memulai atau melanjutkan sesi.
- key: general.take_survey
t: Isi survei {name}
- key: options.na
t: Tidak ada
# surveys
- key: general.open_surveys
t: Survei yang terbuka
- key: general.no_open_surveys
t: Belum ada survei yang dibuka.
- key: general.closed_surveys
t: Survei yang ditutup
- key: general.no_closed_surveys
t: Belum ada survei yang ditutup.
- key: general.preview_surveys
t: Pratinjau Survei
- key: general.no_preview_surveys
t: Belum ada survei untuk dipratinjau.
- key: general.start_survey
t: Mulai Survei »
- key: general.continue_survey
t: Lanjutkan Survei »
- key: general.completion
t: "{completion}% selesai"
- key: general.started_on
t: Dimulai pada {createdAt}
- key: general.last_modified_on
t: Terakhir diubah pada {updatedAt}
- key: general.review_survey
t: Tinjau Survei »
- key: general.review_answers
t: Tinjau Jawaban »
- key: general.preview_survey
t: Pratinjau Survey »
- key: general.finish_survey
t: Selesaikan Survei
- key: general.next_section
t: Bagian selanjutnya
- key: general.previous_section
t: Bagian sebelumnya
- key: general.survey_closed
t: Survei ini telah ditutup.
- key: general.survey_closed_on
t: Survei ini telah ditutup pada {endedAt}.
- key: general.survey_results
t: Lihat hasil survei »
- key: general.surveys_available_languages
t: "Survei tersedia dalam bahasa:"
- key: general.help_us_translate
t: Bantu kami menerjemahkan survei »
- key: general.translators
t: Penerjemah
- key: general.translation_help
t: Bantuan Terjemahan
- key: general.newly_added
t: Baru ditambahkan tahun ini
- key: general.new
t: Baru
- key: general.devographics_banner
t: <a href="https://www.devographics.com/" target="_blank">Devographics</a> adalah nama baru dari kolektif yang mengurus survei State of JavaScript, CSS, dan GraphQL.
# credits
- key: credits.thanks
t: Terima kasih khusus
- key: credits.contributors
t: Kontributor
- key: credits.contributors.description
t: Terima kasih kepada mereka yang telah membantu kami mendesain survei ini.
- key: credits.accessibility
t: Konsultasi Aksesibilitas
- key: credits.survey_design
t: Desain Survei
- key: credits.logo_design
t: Desain Logo
- key: credits.mobile_testing
t: Uji coba perangkat ponsel
- key: credits.data_visualizations
t: Visualisasi Data
- key: credits.repo_architecture
t: Arsitektur Repo
- key: credits.code_refactoring
t: Kode Refaktor
- key: credits.data_processing
t: Pemrosesan Data
- key: credits.back_end_development
t: Pengembangan Back-End
- key: credits.survey_review
t: Ulasan Survei
# support
- key: general.support_from
t: Dengan dukungan dari
# footer
- key: general.privacy_policy
t: Kebijakan Privasi
- key: general.leave_issue
t: Pertanyaan? Menemukan bug? <a href="{link}" target="_blank">laporkan</a>.
- key: general.leave_issue2
aliasFor: homepage.leave_issue
- key: general.emoji_icons
t: Ikon emoji oleh <a target="_blank" rel="noreferrer" href="https://icons8.com">Icons8</a>
# navigation
- key: general.table_of_contents
t: >
{sectionCount} bagian ({completion}% selesai)
- key: general.all_questions_optional
t: >
Catatan: semua pertanyaan bersifat opsional, tidak perlu mengisi semua pertanyaan.
- key: general.data_is_saved
t: Data anda disimpan setiap kali anda melakukan navigasi
- key: general.close_nav
t: Tutup menu
- key: general.open_nav
t: Buka menu
- key: general.more_actions
t: Lebih banyak aksi
- key: general.skip_to_content
t: Lompat menuju konten
# thanks
- key: general.back
t: Kembali
- key: general.back_to_survey
t: Kembali ke survei
- key: general.thanks
t: >
Terima kasih telah mengisi survei! Data anda telah tersimpan.
Anda dapat membantu kami dengan membagikan survei ini. Setiap jawaban pengguna sangatlah berarti,
dan itu akan membantu membuat data jadi lebih representatif:
- key: general.thanks1
t: >
Terima kasih telah mengisi survey! Data anda telah tersimpan.
- key: general.thanks2
t: >
Bantu kami dengan membagikan survei ini! Setiap jawaban pengguna sangatlah berarti,
dan itu akan membantu membuat data jadi lebih representatif.
- key: thanks.learn_more_about
t: "Beberapa fitur yang mungkin ingin anda pelajari lebih lanjut:"
- key: thanks.knowledge_score
t: Skor Pengetahuan
- key: thanks.features_score
t: Skor Utama
- key: thanks.quiz_score
t: Skor kuis
- key: thanks.score_statistics
t: >
Dari {total} fitur yang disebutkan di survei,
anda telah memakai {usage_count} dan telah mendengar {awareness_count} lagi,
menempatkan anda dalam {knowledgeRankingFromTop} teratas semua responden.
Bagus sekali!
- key: thanks.score_noranking
t: >
Dari {total} fitur yang disebutkan di survei,
anda telah memakai {usage_count} dan telah mendengar {awareness_count} lagi,
Bagus sekali!
- key: thanks.points
t: >
poin
- key: thanks.score_awareness_explanation
t: >
Supaya adil, persentase ini dihitung hanya berdasarkan dari {awareness_total} fitur yang anda ketahui
- key: thanks.share_on_twitter
t: Bagikan di Twitter
- key: thanks.share_score_message
t: >
Saya mendapatkan skor pengetahuan {score}% pada survei #{hashtag} tahun ini! Ikuti survei di sini: {shareUrl}
Saya telah memakai {usage_count} fitur, dan mengetahui {awareness_count} lebih banyak,
menempatkan saya di {rank}% teratas dari semua responden.
Bisakah anda mengalahkan skor saya? {shareUrl}
# share
- key: general.share_subject
t: >
Survei {surveyName}
- key: general.share_text
t: >
Survei {surveyName} tahun ini telah dibuka! {link}
# forms
- key: forms.select_option
t: Pilih opsi
- key: forms.clear_field
t: Hapus jawaban
- key: forms.more_options
t: Lihat lebih banyak
- key: forms.less_options
t: Lihat lebih sedikit
# partners & sponsors
- key: sponsors.with_support_from
t: Dengan dukungan istimewa dari
- key: sponsors.our_partners
t: Mitra Kami
- key: sponsors.become_partner
t: Menjadi Mitra Kami
# 404
- key: notfound.title
t: 404 tidak ditemukan
- key: notfound.description
t: Maaf, kami tidak dapat menemukan apa yang Anda cari.
# other
- key: general.join_discord
t: Gabung dengan <a href="{link}">Discord</a> kami.
- key: general.translator_mode
t: Tekan option/alt untuk mengaktifkan mode terjemahan.
- key: general.charts_nivo
t: Bagan dibuat dengan <a href="{link}">Nivo</a>.
- key: general.made_by_devographics
t: Dibuat oleh <a href="{link}">Devographics</a>
- key: general.view_code_example
t: Lihat Contoh Kode
- key: general.feature_code_example
t: "Contoh kode **{featureName}**"
- key: general.code_example
t: Contoh kode
- key: general.language_code
t: |
Kode {language}
###########################################################################
# Nav
###########################################################################
- key: nav.surveys
t: Survei
- key: nav.account
t: Akun
###########################################################################
# Sections
###########################################################################
- key: sections.user_info.title
t: Tentang Anda
- key: sections.user_info.description
t: Mari mengenal lebih jauh tentang Anda.
- key: sections.features.title
t: Fitur
- key: sections.features.description
t: sintaks, kata kunci, dan fitur bahasa pemrograman lainnya.
- key: sections.resources.title
t: Sumber
- key: sections.resources.description
t: Sumber {topic} apa yang Anda gunakan?
- key: sections.opinions.title
t: Opini
- key: sections.opinions.description
t: Bagaimana pendapat Anda tentang state of {topic}?
- key: sections.other_tools.title
t: Alat Lainnya
- key: sections.other_tools.description
t: Cukup pilih alat dan teknologi yang sering anda gunakan.
- 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: Laporan trend
- key: sections.usage.title
t: Pemakaian
- key: sections.finish.title
t: Selesaikan
- key: sections.finish.description
t: Selesaikan survei
###########################################################################
# Options
###########################################################################
- key: options.experience.title
t: Pengalaman
# other answer
- key: options.other
t: Lainnya…
- key: options.other.placeholder
t: Pilihan yang tidak disebutkan di atas, ( Dipisahkan dengan koma )
# features
- key: options.features.never_heard
t: <span aria-hidden="true">🤷</span> Belum pernah mendengarnya/Tidak yakin itu apa
- key: options.features.heard
t: <span aria-hidden="true">✅</span> Tahu, tapi belum pernah menggunakannya
- key: options.features.used
t: <span aria-hidden="true">👍</span> Sudah pakai
# features v2
- key: options.features2.never_heard
t: <span class="option-chip option-main option-main-never_heard">Belum pernah mendengarnya/Tidak yakin itu apa</option>
- key: options.features2.interested
t: |
<span class="option-chip option-main option-main-heard">Pernah dengar</span> » <span class="option-chip option-positive">Tertarik</span>
- key: options.features2.not_interested
t: |
<span class="option-chip option-main option-main-heard">Pernah dengar</span> » <span class="option-chip option-negative">Tidak tertarik</span>
- key: options.features2.used_positive
t: |
<span class="option-chip option-main option-main-used">Sudah pakai</span> » <span class="option-chip option-positive">Pengalaman positif</span>
- key: options.features2.used_negative
t: |
<span class="option-chip option-main option-main-used">Sudah pakai</span> » <span class="option-chip option-negative">Pengalaman negatif</span>
- key: options.features.na
t: Tidak ada
# features (short)
- key: options.features.never_heard.short
t: <span aria-hidden="true">🤷</span> Belum pernah dengar
- key: options.features.heard.short
t: <span aria-hidden="true">👀</span> Pernah dengar
- key: options.features.used.short
t: <span aria-hidden="true">🤓</span> Sudah pakai
- 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: Belum pernah mendengarnya/Tidak yakin itu apa
- key: options.features.heard.label
t: Tahu, tapi belum pernah pakai
- key: options.features.used.label
t: Sudah pakai
# features (no emoji, short versions)
- key: options.features.never_heard.short
t: Belum pernah mendengarnya
- key: options.features.heard.short
t: Tahu tentang itu
- key: options.features.used.short
t: Sudah pakai
# 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: Responden yang belum pernah dengar.
- key: options.experience.heard.description
t: Responden yang sudah dengar, tetapi belum pernah pakai.
- key: options.experience.used.description
t: Responden yang sudah pakai.
# sentiments
- key: options.sentiment.title
t: Sentimen
- key: options.sentiment.positive.label
t: Sentimen Positif
- key: options.sentiment.neutral.label
t: Sentimen Netral
- key: options.sentiment.negative.label
t: Sentimen Negatif
- 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: Positif
- key: options.sentiment.neutral.label.short
t: Netral
- key: options.sentiment.negative.label.short
t: Negatif
- 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: Responden yang tertarik untuk belajar tentang sebuah teknologi; atau yang ingin menggunakannya lagi.
- key: options.sentiment.neutral.description
t: Responden yang tidak memiliki sentimen akan sebuah teknologi.
- key: options.sentiment.negative.description
t: Responden yang tidak tertarik untuk belajar tentang sebuah teknologi; atau yang sudah pernah pakai dan memiliki pengalaman negatif.
# patterns
- key: options.patterns.use_never
t: Hampir tidak digunakan sama sekali
- key: options.patterns.use_sparingly
t: Sedikit digunakan
- key: optionspatterns..use_neutral
t: Netral
- key: options.patterns.use_frequently
t: Sering digunakan
- key: options.patterns.use_always
t: Selalu digunakan
# tools experience
- key: options.tools.never_heard
t: <span aria-hidden="true"> 🤷 </span> Saya tidak pernah mendengarnya/Tidak yakin itu apa
- key: options.tools.interested
t: <span aria-hidden="true"> ✅ </span> Pernah mendengarnya > Tertarik untuk mempelajarinya
- key: options.tools.not_interested
t: <span aria-hidden="true"> 🚫 </span> Mengetahuinya > Tidak tertarik
- key: options.tools.would_use
t: <span aria-hidden="true"> 👍 </span> Digunakan > Akan digunakan lagi
- key: options.tools.would_not_use
t: <span aria-hidden="true"> 👎 </span> Digunakan > Tidak akan digunakan lagi
# tools experience (no emoji)
- key: options.tools.never_heard.legend
t: Saya tidak pernah mendengarnya/Tidak yakin itu apa
- key: options.tools.interested.legend
t: Pernah mendengarnya > Tertarik untuk mempelajarinya
- key: options.tools.not_interested.legend
t: Mengetahuinya > Tidak tertarik
- key: options.tools.would_use.legend
t: Digunakan > Akan digunakan lagi
- key: options.tools.would_not_use.legend
t: Digunakan > Tidak akan digunakan lagi
# tools experience (short versions)
- key: options.tools.never_heard.short
t: Tidak pernah mendengarnya
- key: options.tools.interested.short
t: Tertarik
- key: options.tools.not_interested.short
t: Tidak tertarik
- key: options.tools.would_use.short
t: Akan digunakan lagi
- key: options.tools.would_not_use.short
t: Tidak akan digunakan lagi
# happiness
- key: options.happiness.0
t: Sangat Tidak Senang
- key: options.happiness.1
t: Tidak Senang
- key: options.happiness.2
t: Netral
- key: options.happiness.3
t: Senang
- key: options.happiness.4
t: Sangat Senang
# happiness (short version)
- key: options.happiness.0.short
t: Sangat Tidak Senang
- key: options.happiness.1.short
t: Tidak Senang
- key: options.happiness.2.short
t: Netral
- key: options.happiness.3.short
t: Senang
- key: options.happiness.4.short
t: Sangat Senang
# opinions
- key: options.opinions.0
t: Sangat Tidak Setuju
- key: options.opinions.1
t: Tidak Setuju
- key: options.opinions.2
t: Netral
- key: options.opinions.3
t: Setuju
- key: options.opinions.4
t: Sangat Setuju
# age
- key: options.age.range_less_than_10
t: Dibawah 11 tahun
- key: options.age.range_10_18
t: 11-18 tahun
- key: options.age.range_18_24
t: 19-24 tahun
- key: options.age.range_25_34
t: 25-34 tahun
- key: options.age.range_35_44
t: 35-44 tahun
- key: options.age.range_45_54
t: 45-54 tahun
- key: options.age.range_55_64
t: 55-64 tahun
- key: options.age.range_more_than_65
t: Diatas 64 tahun
# 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"
# age 2
- key: options.age.range_under_20
t: 20 tahun atau kurang
- key: options.age.range_20_29
t: 20-29 tahun
- key: options.age.range_30_39
t: 30-39 tahun
- key: options.age.range_40_49
t: 40-49 tahun
- key: options.age.range_50_59
t: 50-59 tahun
- key: options.age.range_over_60
t: 60 tahun atau lebih
- 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: Kurang dari 1 tahun
- key: options.years_of_experience.range_1_2
t: 1 sampai 2 tahun
- key: options.years_of_experience.range_2_5
t: 3 sampai 5 tahun
- key: options.years_of_experience.range_5_10
t: 6 sampai 10 tahun
- key: options.years_of_experience.range_10_20
t: 11 sampai 20 tahun
- key: options.years_of_experience.range_more_than_20
t: Lebih dari 20 tahun
# years of experience (short versions)
- key: options.years_of_experience.range_less_than_1.short
t: "<1 tahun"
- key: options.years_of_experience.range_1_2.short
t: 1-2 tahun
- key: options.years_of_experience.range_2_5.short
t: 3-5 tahun
- key: options.years_of_experience.range_5_10.short
t: 6-10 tahun
- key: options.years_of_experience.range_10_20.short
t: 11-20 tahun
- key: options.years_of_experience.range_more_than_20.short
t: ">20 tahun"
# years of experience v2
- key: options.years_of_experience.range_under_1
t: Kurang dari satu tahun
- key: options.years_of_experience.range_1_3
t: 1 sampai 3 tahun
- key: options.years_of_experience.range_4_6
t: 4 sampai 6 tahun
- key: options.years_of_experience.range_7_9
t: 7 sampai 9 tahun
- key: options.years_of_experience.range_10_12
t: 10 sampai 12 tahun
- key: options.years_of_experience.range_13_15
t: 13 sampai 15 tahun
- key: options.years_of_experience.range_16_20
t: 16 sampai 20 tahun
- key: options.years_of_experience.range_over_20
t: Lebih dari 20 tahun
# years of experience v2 (short versions)
- key: options.years_of_experience.range_under_1.short
t: "<1 tahun"
- key: options.years_of_experience.range_1_3.short
t: 1-3 tahun
- key: options.years_of_experience.range_4_6.short
t: 4-6 tahun
- key: options.years_of_experience.range_7_9.short
t: 7-9 tahun
- key: options.years_of_experience.range_10_12.short
t: 10-12 tahun
- key: options.years_of_experience.range_13_15.short
t: 13-15 tahun
- key: options.years_of_experience.range_16_20.short
t: 16-20 tahun
- key: options.years_of_experience.range_over_20.short
t: ">20 tahun"
# company size
- key: options.company_size.na
t: 🚫 Tidak berlaku
- key: options.company_size.range_1
t: Hanya saya
- key: options.company_size.range_1_5
t: 1 sampai 5 karyawan
- key: options.company_size.range_5_10
t: 5 sampai 10 karyawan
- key: options.company_size.range_10_20
t: 10 sampai 20 karyawan
- key: options.company_size.range_20_50
t: 20 sampai 50 karyawan
- key: options.company_size.range_50_100
t: 50 sampai 100 karyawan
- key: options.company_size.range_100_1000
t: 100 sampai 1000 karyawan
- key: options.company_size.range_more_than_1000
t: Lebih dari 1000 karyawan
# 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: N/A
- key: options.yearly_salary.range_work_for_free
t: Saya bekerja secara gratis
- 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: Lebih dari $200k
- key: options.yearly_salary.range_0_20
t: $0k-$20k
- key: options.yearly_salary.range_20_40
t: $20k-$40k
- key: options.yearly_salary.range_40_60
t: $40k-$60k
- key: options.yearly_salary.range_60_80
t: $60k-$80k
- key: options.yearly_salary.range_80_100
t: $80k-$100k
- key: options.yearly_salary.range_100_150
t: $100k-$150k
- key: options.yearly_salary.range_150_200
t: $150k-$200k
# salary (short versions)
- key: options.yearly_salary.na.short
t: N/A
- key: options.yearly_salary.range_work_for_free.short
t: $0
- key: options.yearly_salary.range_0_10.short
t: $0k-$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: Tidak ada
- key: options.proficiency.1
t: Pemula
- key: options.proficiency.2
t: Menengah
- key: options.proficiency.3
t: Tingkat lanjut
- key: options.proficiency.4
t: Ahli
# Gender
- key: options.gender.female
t: Perempuan
- key: options.gender.male
t: Laki-laki
- key: options.gender.non_binary
t: Non-Binary atau Gender Non-Conforming
- key: options.gender.questioning
t: Mempertanyakan
- key: options.gender.prefer_not_to_say
t: Memilih untuk tidak memberitahu
- key: options.gender.not_listed
t: Tidak tercantum
# Gender (short)
- key: options.gender.female.short
t: Perempuan
- key: options.gender.male.short
t: Laki-laki
- key: options.gender.non_binary.short
t: Non-Binary atau GNC
- key: options.gender.questioning.short
t: Mempertanyakan
- key: options.gender.prefer_not_to_say.short
t: Memilih untuk tidak memberitahu
- key: options.gender.not_listed.short
t: Tidak tercantum
# Race & Ethnicity
- key: options.race_ethnicity.white_european
t: Berkulit Putih
- key: options.race_ethnicity.south_asian
t: Asia Selatan
- key: options.race_ethnicity.south_east_asian
t: Asia Tenggara
- key: options.race_ethnicity.hispanic_latin
t: Hispanik atau Latino/Latina/Latinx
- key: options.race_ethnicity.east_asian
t: Asia Timur
- key: options.race_ethnicity.middle_eastern
t: Timur Tengah
- key: options.race_ethnicity.black_african
t: Hitam atau Keturunan Afrika
- key: options.race_ethnicity.multiracial
t: Multiras
- key: options.race_ethnicity.biracial
t: Biracial
- key: options.race_ethnicity.native_american_islander_australian
t: Penduduk Asli Amerika, Penduduk Kepulauan Pasifik, atau Penduduk Asli Australia
- key: options.race_ethnicity.not_listed
t: Tidak disebutkan
- key: options.race_ethnicity.european
t: Keturunan Eropa
- key: options.race_ethnicity.indian
t: Keturunan India
- key: options.race_ethnicity.human
t: Manusia
- key: options.race_ethnicity.slav
t: Bangsa Slavia
- key: options.race_ethnicity.north_african
t: Keturunan Afrika Utara
- key: options.race_ethnicity.jewish
t: Yahudi
# Race & Ethnicity (short)
- key: options.race_ethnicity.white_european.short
t: Berkulit Putih
- key: options.race_ethnicity.south_asian.short
t: Asia Selatan
- key: options.race_ethnicity.south_east_asian.short
t: Asia Tenggara
- key: options.race_ethnicity.hispanic_latin.short
t: Hispanik/Latin
- key: options.race_ethnicity.east_asian.short
t: Asia Timur
- key: options.race_ethnicity.middle_eastern.short
t: Timur Tengah
- key: options.race_ethnicity.black_african.short
t: Berkulit Hitam/Keturunan Afrika
- key: options.race_ethnicity.multiracial.short
t: Multirasial
- key: options.race_ethnicity.biracial.short
t: Biracial
- key: options.race_ethnicity.native_american_islander_australian.short
t: Asli Amerika/Penduduk Pasifik/Asli Australia
- key: options.race_ethnicity.not_listed.short
t: Tidak disebutkan
# Disability Status
- key: options.disability_status.na
t: 🚫 Tidak ada
- key: options.disability_status.visual_impairments
t: >
'Gangguan Penglihatan (Seperti: kebutaan, buta warna, DLL.)'
- key: options.disability_status.hearing_impairments
t: >
'Gangguan Pendengaran (Seperti: tuli, Tinnitus, DLL.)'
- key: options.disability_status.mobility_impairments
t: >
'Gangguan Mobilitas (Seperti: Artritis, carpal tunnel, DLL.)'
- key: options.disability_status.cognitive_impairments
t: >
'Gangguan Kognitif (Seperti: cemas, Disleksia, DLL.)'
- key: options.disability_status.not_listed
t: >
Tidak disebutkan
# Disability Status (short)
- key: options.disability_status.visual_impairments.short
t: >
Gangguan Penglihatan
- key: options.disability_status.hearing_impairments.short
t: >
Gangguan Pendengaran
- key: options.disability_status.mobility_impairments.short
t: >
Gangguan Mobilitas
- key: options.disability_status.cognitive_impairments.short
t: >
Gangguan Kognitif
- key: options.disability_status.not_listed.short
t: >
Tidak disebutkan
# Form Factors
- key: options.form_factors.desktop
t: Desktop
- key: options.form_factors.keyboard_only
t: Desktop dengan hanya menggunakan keyboard
- key: options.form_factors.smartphone
t: Gawai
- key: options.form_factors.feature_phone
t: Ponsel
- key: options.form_factors.tablet
t: Tablet
- key: options.form_factors.smart_watch
t: Jam Tangan Pintar
- key: options.form_factors.tv
t: TV
- key: options.form_factors.gaming_console
t: Konsol Gim
- key: options.form_factors.screen_reader
t: Pembaca Layar
- key: options.form_factors.print
t: Print
- key: options.form_factors.testing_tools
t: Alat Pengujian (Axe, Lighthouse, DLL.)
- key: options.form_factors.vision_simulator
t: Simulator Pengubah Penglihatan (Buta Warna, DLL.)
# Industry Sector
- key: options.industry_sector.ecommerce
t: Toko Online & Ritel
- key: options.industry_sector.news_media
t: Berita, Media Massa, & Menulis Blog
- key: options.industry_sector.healthcare
t: Kesehatan
- key: options.industry_sector.finance
t: Keuangan
- key: options.industry_sector.programming_tools
t: Pemrograman & Peralatan Teknis
- key: options.industry_sector.socialmedia
t: Media Sosial
- key: options.industry_sector.marketing_tools
t: Pemasaran/Penjualan/Alat Analisa
- key: options.industry_sector.education
t: Edukasi
- key: options.industry_sector.real_estate
t: Perumahan
- key: options.industry_sector.government
t: Pemerintahan
- key: options.industry_sector.entertainment
t: Dunia Hiburan
- key: options.industry_sector.consulting
t: Konsultan & Jasa
- key: options.industry_sector.travel
t: Perjalanan
- key: options.industry_sector.tourism
t: Pariwisata
- key: options.industry_sector.insurance
t: Asuransi
- key: options.industry_sector.logistics
t: Logistik
- key: options.industry_sector.energy
t: Energi
- key: options.industry_sector.telecommunications
t: Telekomunikasi
- key: options.industry_sector.student
t: Pendidikan
- key: options.industry_sector.hospitality
t: Hospitality
- key: options.industry_sector.cyber_security
t: Keamanan Siber
- key: options.industry_sector.construction
t: Konstruksi
- key: options.industry_sector.automotive
t: Otomotif
- key: options.industry_sector.agriculture
t: Pertanian
- key: options.industry_sector.transport
t: Transportasi
- key: options.industry_sector.manufacturing
t: Manufaktur
- key: options.industry_sector.tech_it
t: Teknologi & IT
- key: options.industry_sector.human_resources
t: Sumber Daya Manusia
- key: options.industry_sector.sports
t: Olahraga
- key: options.industry_sector.gaming