-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstate_of_devs.yml
More file actions
1606 lines (1376 loc) · 62.4 KB
/
state_of_devs.yml
File metadata and controls
1606 lines (1376 loc) · 62.4 KB
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: ua-UA
translations:
###########################################################################
# General
###########################################################################
- key: general.state_of_devs.description
t: Опитування розробників про все інше
- key: general.state_of_devs.intro
t: |
Знову і знову запитувати про вашу улюблену JavaScript-бібліотеку — це чудесно, але час від часу варто звертатися до глибших життєвих питань: хто ви, чим займаєтеся окрім програмування, у що вірите та на що сподіваєтеся.
Ось про що це опитування "Стан розробників". Цього разу ми запитуємо про все, що *не* стосується коду.
###########################################################################
# Sections
###########################################################################
- key: tools.tools_intro.ai2025
t: |
Ця перша частина опитування про те, якими ШІ-інструментами ви користуєтеся та про які з них чули.
- key: sections.career.title
t: Кар'єра
- key: sections.career.prompt
t: Ваша кар'єра та досвід роботи до сьогодні.
- key: sections.workplace.title
t: Місце роботи
- key: sections.workplace.prompt
t: Ваше поточне місце роботи.
- key: sections.technology.title
t: Технології
- key: sections.technology.prompt
t: Застосунки, мови та платформи, які ви використовуєте.
- key: sections.health.title
t: Здоров'я
- key: sections.health.prompt
t: Здоров'я та фізична форма.
- key: sections.worldview.title
t: Світогляд
- key: sections.worldview.prompt
t: Світогляд, політика та поточні події.
- key: sections.hobbies.title
t: Хобі
- key: sections.hobbies.prompt
t: Інші ваші захоплення.
# employment_status
- key: career.employment_status
aliasFor: user_info.employment_status
- key: career.employment_status.question
aliasFor: user_info.employment_status.question
# how_many_jobs
- key: career.how_many_jobs
t: Кількість роботодавців
- key: career.how_many_jobs.question
t: У скількох роботодавців ви працювали до сьогодні?
- key: career.how_many_jobs.prompt
t: Враховуються тільки посади розроблення з доходом.
- key: options.how_many_jobs.range_1
t: 1
- key: options.how_many_jobs.range_2
t: 2
- key: options.how_many_jobs.range_3
t: 3
- key: options.how_many_jobs.range_4
t: 4
- key: options.how_many_jobs.range_5
t: 5
- key: options.how_many_jobs.range_6_10
t: 6-10
- key: options.how_many_jobs.range_11_20
t: 11-20
- key: options.how_many_jobs.range_over_20
t: Понад 20
# career_issues
- key: career.career_issues
t: Проблеми на роботі
- key: career.career_issues.question
t: З якими проблемами на робочому місці ви стикалися протягом професійної кар'єри?
- key: career.career_issues.commentPrompt
t: |
На бажання розкажіть нам більше про конкретні проблеми, з якими ви зіткнулися.
⚠️ Попередження: ваш коментар **буде опублікованим**, тому не вказуйте, будь ласка,
жодної інформації, за якою можна ідентифікувати вас або вашу компанію.
- key: options.career_issues.harassment
t: Домагання
- key: options.career_issues.harassment.description
t: Небажана поведінка, яка створює вороже робоче середовище.
- key: options.career_issues.sexual_harassment
t: Сексуальне домагання
- key: options.career_issues.sexual_harassment.description
t: Небажана поведінка сексуального характеру, яка створює вороже робоче середовище.
- key: options.career_issues.non_sexual_harassment
t: Несексуальне домагання
- key: options.career_issues.non_sexual_harassment.description
t: Інші цільові форми цькувань чи залякувань, які створюють вороже робоче середовище.
- key: options.career_issues.gender_discrimination
t: Гендерна дискримінація
- key: options.career_issues.gender_discrimination.description
t: Дискримінація за гендерною ознакою.
- key: options.career_issues.race_discrimination
t: Расова дискримінація
- key: options.career_issues.race_discrimination.description
t: Дискримінація за расовою ознакою.
- key: options.career_issues.discrimination
t: Дискримінація
- key: options.career_issues.discrimination.description
t: Зазнавання дискримінації через особисті риси.
- key: options.career_issues.mental_health_issues
t: Проблеми з психічним здоров'ям
- key: options.career_issues.mental_health_issues.description
t: Психічні проблеми, завдані роботою, як-от стрес або тривожність.
- key: options.career_issues.excessive_overtime
t: Проблеми балансу роботи і життя
- key: options.career_issues.excessive_overtime.description
t: Надмірна понаднормова робота, проблеми балансу роботи і життя тощо.
- key: options.career_issues.underpaid_work
t: Недостатня плата
- key: options.career_issues.underpaid_work.description
t: Недостатня зарплата або дохід.
- key: options.career_issues.burnout
t: Вигорання
- key: options.career_issues.burnout.description
t: Почуття перевантаженості роботою, що призводить до браку мотивації або депресії.
- key: options.career_issues.job_insecurity
t: Нестабільність роботи
- key: options.career_issues.job_insecurity.description
t: Страх втратити роботу або труднощі з пошуком нової.
- key: options.career_issues.bad_management
t: Поганий менеджмент
- key: options.career_issues.bad_management.description
t: Загалом погане робоче середовище через погане управління.
- key: options.career_issues.boredom
t: Нудьга
# discrimination_issues
- key: career.discrimination_issues
t: Дискримінація
- key: career.discrimination_issues.question
t: Чи ви коли-небудь пережили дискримінацію на робочому місці через будь-який із наведених нижче факторів?
- key: options.discrimination_issues.gender
t: Гендер чи гендерна ідентичність
- key: options.discrimination_issues.sexual_orientation
t: Сексуальна орієнтація
- key: options.discrimination_issues.race
t: Раса
- key: options.discrimination_issues.religion
t: Релігія або духовні переконання
- key: options.discrimination_issues.age
t: Вік
- key: options.discrimination_issues.political_views
t: Політичні переконання або належність
- key: options.discrimination_issues.caregiving_status
t: Обов'язки догляду
- key: options.discrimination_issues.caregiving_status.description
t: Як-от вагітність, батьківство, догляд за літніми тощо.
- key: options.discrimination_issues.disability
t: Порушення здоров'я
- key: options.discrimination_issues.disability.description
t: Включно з фізичними, психічними чи нейронетиповими.
- key: options.discrimination_issues.country_citizenship
t: Походження/громадянство
- key: options.discrimination_issues.appearance_body
t: Зовнішність чи риси
- key: career.discrimination_issues.commentPrompt
aliasFor: career.career_issues.commentPrompt
# negative_impacts
- key: career.negative_impacts
t: Негативні наслідки
- key: career.negative_impacts.question
t: Чи ви щось із цього зробили внаслідок проблем на робочому місці?
- key: options.negative_impacts.changing_appearance
t: Змінили зовнішність чи одяг
- key: options.negative_impacts.changing_appearance.short
t: Змінили зовнішність
- key: options.negative_impacts.changing_behavior
t: Змінили спосіб говорити, поводитися чи виражати себе
- key: options.negative_impacts.changing_behavior.short
t: Змінили поведінку
- key: options.negative_impacts.reported_someone
t: Поскаржилися на проблему керівництву чи відділу кадрів
- key: options.negative_impacts.reported_someone.short
t: Поскаржилися на проблему до HR
- key: options.negative_impacts.isolating_yourself
t: Уникали чи дистанціювалися від колег
- key: options.negative_impacts.isolating_yourself.short
t: Уникали колег
- key: options.negative_impacts.internal_transfer
t: Прохали про перехід в іншу команду чи відділ
- key: options.negative_impacts.internal_transfer.short
t: Прохали про перехід
- key: options.negative_impacts.time_off
t: Взяли коротку чи довгу відпустку
- key: options.negative_impacts.time_off.short
t: Взяли відпустку
- key: options.negative_impacts.quitting_job
t: Звільнилися з робити
- key: options.negative_impacts.quitting_job.short
t: Звільнилися
- key: options.negative_impacts.shifting_careers
t: Змінили кар'єру чи сферу діяльності
- key: options.negative_impacts.shifting_careers.short
t: Змінили кар'єру
- key: options.negative_impacts.seeking_counseling
t: Звернулися до терапії, консультацій чи підтримки психічного здоров'я
- key: options.negative_impacts.seeking_counseling.short
t: Звернулися до терапії
- key: options.negative_impacts.engaging_legal_counsel
t: Звернулися до юридичної допомоги
- key: options.negative_impacts.engaging_legal_counsel.short
t: Юридична допомога
- key: options.negative_impacts.scaling_back
t: Скоротили робочий день або перейшли на менш вимогливу посаду
- key: options.negative_impacts.scaling_back.short
t: Скоротили робочий день
- key: options.negative_impacts.taking_medicine
t: Приймали ліки від стресу, тривожності, депресії тощо
- key: options.negative_impacts.taking_medicine.short
t: Приймали ліки
- key: career.negative_impacts.commentPrompt
aliasFor: career.career_issues.commentPrompt
# past_year_conferences
- key: career.past_year_conferences
t: Конференції
- key: career.past_year_conferences.question
t: Скільки конференцій ви відвідали за минулий рік?
- key: career.past_year_meetups_events
t: Зустрічі та події
- key: career.past_year_meetups_events.question
t: Скільки зустрічей чи місцевих заходів ви відвідали за минулий рік?
- key: options.past_year_conferences.range_0
t: Нічого
aliases:
- options.past_year_meetups_events.range_0
- key: options.past_year_conferences.range_1
t: 1
aliases:
- options.past_year_meetups_events.range_1
- key: options.past_year_conferences.range_2_5
t: 2-5
aliases:
- options.past_year_meetups_events.range_2_5
- key: options.past_year_conferences.range_6_10
t: 6-10
aliases:
- options.past_year_meetups_events.range_6_10
- key: options.past_year_conferences.range_11_15
t: 11-15
aliases:
- options.past_year_meetups_events.range_11_15
- key: options.past_year_conferences.range_more_than_15
t: Понад 15
aliases:
- options.past_year_meetups_events.range_more_than_15
# laid_off
- key: career.laid_off
t: Скорочення (Layoffs)
- key: career.laid_off.question
t: Чи вас коли-небудь звільняли унаслідок скорочення працівників?
- key: options.laid_off.yes_past_year
t: Так, протягом останніх 12 місяців
- key: options.laid_off.yes_before
t: Так, понад рік тому
- key: options.laid_off.no
t: Ні, ніколи
# WORKPLACE
- key: workplace.company_size
aliasFor: user_info.company_size
- key: workplace.company_size.question
aliasFor: user_info.company_size.question
- key: workplace.job_title
aliasFor: user_info.job_title
- key: workplace.job_title.question
aliasFor: user_info.job_title.question
- key: workplace.income_evolution
aliasFor: user_info.income_evolution
- key: workplace.income_evolution.question
aliasFor: user_info.income_evolution.question
- key: workplace.remote_work_policy
t: Віддалена робота
- key: workplace.remote_work_policy.question
t: Що з наведеного найкраще описує політику вашого роботодавця щодо віддаленої роботи?
- key: options.remote_work_policy.no_remote_work
t: Немає віддаленої роботи
- key: options.remote_work_policy.no_remote_work.description
t: Всі працівники повинні відвідувати офіс.
- key: options.remote_work_policy.hybrid
t: Гібридна робота
- key: options.remote_work_policy.hybrid.description
t: Частково можна працювати віддалено, але потрібно регулярно відвідувати офіс.
- key: options.remote_work_policy.up_to_employee
t: За вибором працівника
- key: options.remote_work_policy.up_to_employee.description
t: Працівники самі вибирають, працювати віддалено чи в офісі.
- key: options.remote_work_policy.fully_remote
t: Лише віддалена робота
- key: options.remote_work_policy.fully_remote.description
t: Всі працівники працюють віддалено.
- key: options.remote_work_policy.na
t: 🚫 Не застосовується
- key: options.remote_work_policy.na.description
t: Один працівник
- key: options.remote_work_policy.depends_on_role
t: Залежно від ролі
- key: options.remote_work_policy.mostly_remote
t: Переважно віддалено
- key: options.remote_work_policy.hybrid_remote_work
t: Гібридно
- key: options.remote_work_policy.freelance_self_employed
t: Фриланс/самозайнятість
- key: options.remote_work_policy.remote_based_on_distance
t: Залежно від відстані до компанії
- key: workplace.work_hours_per_week
t: Робочі години
- key: workplace.work_hours_per_week.question
t: Скільки годин на тиждень ви зазвичай працюєте?
- key: options.work_hours_per_week.range_under_30
t: Менше 30
- key: options.work_hours_per_week.range_31_35
t: 31-35
- key: options.work_hours_per_week.range_36_40
t: 36-40
- key: options.work_hours_per_week.range_41_45
t: 41-45
- key: options.work_hours_per_week.range_46_50
t: 46-50
- key: options.work_hours_per_week.range_over_50
t: Понад 50
- key: workplace.job_happiness
t: Задоволеність роботою
- key: workplace.job_happiness.question
t: Наскільки ви задоволені своєю поточною роботою?
- key: options.job_happiness.0
aliasFor: options.happiness.0
- key: options.job_happiness.1
aliasFor: options.happiness.1
- key: options.job_happiness.2
aliasFor: options.happiness.2
- key: options.job_happiness.3
aliasFor: options.happiness.3
- key: options.job_happiness.4
aliasFor: options.happiness.4
# - key: workplace.job_ai_threat
# t: a
# workplace_difficulties
- key: workplace.workplace_difficulties
t: Труднощі на роботі
- key: workplace.workplace_difficulties.question
t: Які негативні аспекти робочого середовища у вашого поточного роботодавця?
- key: options.workplace_difficulties.coworker_relations
t: Взаємовідносини з колегами
- key: options.workplace_difficulties.coworker_relations.description
t: Домагання, погана комунікація тощо.
- key: options.workplace_difficulties.company_culture
t: Корпоративна культура
- key: options.workplace_difficulties.company_culture.description
t: Токсична атмосфера, погані робочі практики тощо.
- key: options.workplace_difficulties.working_conditions
t: Умови роботи
- key: options.workplace_difficulties.working_conditions.description
t: Застаріле обладнання, тісний простір тощо.
- key: options.workplace_difficulties.job_security
t: Гарантії зайнятості
- key: options.workplace_difficulties.job_security.description
t: Брак гарантій зайнятості, короткострокові контракти тощо.
- key: options.workplace_difficulties.work_content
t: Зміст роботи
- key: options.workplace_difficulties.work_content.description
t: Нецікаві завдання, завдання не збігаються з описом роботи, надмірна бездіяльність тощо.
- key: options.workplace_difficulties.work_life_balance
t: Баланс роботи та життя
- key: options.workplace_difficulties.work_life_balance.description
t: Вигорання, надмірні понаднормові, примусові корпоративні заходи тощо.
- key: options.workplace_difficulties.compensation
t: Оплата
- key: options.workplace_difficulties.compensation.description
t: Недостатня плата
- key: options.workplace_difficulties.training
t: Навчання і професійний розвиток
- key: options.workplace_difficulties.training.description
t: Брак навчання та розвитку
- key: options.workplace_difficulties.bad_management
t: Поганий менеджмент
- key: options.workplace_difficulties.in_person_work
t: Вимоги відвідування робочого місця
- key: options.workplace_difficulties.lack_of_human_contact
t: Нестача контакту з людьми
- key: options.workplace_difficulties.bureaucracy
t: Надмірна бюрократія
# workplace_perks
- key: workplace.workplace_perks
t: Вигоди на роботі
- key: workplace.workplace_perks.question
t: Що вам подобається в поточному робочому місці?
- key: options.workplace_perks.coworker_relations
aliasFor: options.workplace_difficulties.coworker_relations
- key: options.workplace_perks.coworker_relations.description
t: Гарні відносини з колегами
- key: options.workplace_perks.company_culture
aliasFor: options.workplace_difficulties.company_culture
- key: options.workplace_perks.company_culture.description
t: Позитивна корпоративна культура, увага до якості тощо.
- key: options.workplace_perks.working_conditions
aliasFor: options.workplace_difficulties.working_conditions
- key: options.workplace_perks.working_conditions.description
t: Комфортне робоче середовище, сучасне обладнання тощо.
- key: options.workplace_perks.job_security
aliasFor: options.workplace_difficulties.job_security
- key: options.workplace_perks.job_security.description
t: Стабільна робота, довгострокові контракти тощо.
- key: options.workplace_perks.work_content
aliasFor: options.workplace_difficulties.work_content
- key: options.workplace_perks.work_content.description
t: Цікаві завдання, задоволення від роботи тощо.
- key: options.workplace_perks.work_life_balance
aliasFor: options.workplace_difficulties.work_life_balance
- key: options.workplace_perks.work_life_balance.description
t: Відсутність понаднормових, гнучкий графік тощо.
- key: options.workplace_perks.compensation
aliasFor: options.workplace_difficulties.compensation
- key: options.workplace_perks.compensation.description
t: Гідна оплата
- key: options.workplace_perks.training
aliasFor: options.workplace_difficulties.training
- key: options.workplace_perks.training.description
t: Навчання та розвиток коштом компанії
- key: options.workplace_perks.remote_work_benefit
t: Переваги віддаленої роботи
# job_finding_application_count
- key: workplace.job_finding_application_count
t: Кількість заяв на работу
- key: workplace.job_finding_application_count.question
t: На скільки вакансій ви подалися, перш ніж отримати поточну роботу?
- key: options.job_finding_application_count.range_0
t: Ніскільки (Не застосовується)
- key: options.job_finding_application_count.range_1
t: 1
- key: options.job_finding_application_count.range_2_5
t: 2-5
- key: options.job_finding_application_count.range_5_10
t: 5-10
- key: options.job_finding_application_count.range_10_50
t: 10-50
- key: options.job_finding_application_count.range_50_100
t: 50-100
- key: options.job_finding_application_count.range_over_100
t: 100+
# job_finding_methods
- key: workplace.job_finding_methods
t: Пошук роботи
- key: workplace.job_finding_methods.question
t: Як ви знайшли свою поточну роботу?
- key: options.job_finding_methods.job_board
t: Дошка вакансій
- key: options.job_finding_methods.direct_application
t: Пряма заява в компанію
- key: options.job_finding_methods.recruiter
t: Рекрутер
- key: options.job_finding_methods.personal_network
t: Особиста мережа (контактів)
- key: options.job_finding_methods.referral
t: Рекомендація (Referral)
- key: options.job_finding_methods.linkedin
t: LinkedIn
- key: options.job_finding_methods.social_media
t: Інші соціальні медіа (Facebook, X тощо)
- key: options.job_finding_methods.internal_transfer
t: Підвищення або перехід всередині компанії
- key: options.job_finding_methods.open_source_community
t: Причетність до відкритого коду чи спільноти
- key: options.job_finding_methods.company_founder
t: Заснування власної компанії, самозайнятість
- key: options.job_finding_methods.contacted_by_company
t: Власна компанія/самозайнятість
- key: options.job_finding_methods.internship
t: Інтернатура
- key: options.job_finding_methods.through_university
t: Через університет
- key: options.job_finding_methods.merger_acquisition
t: Злиття або придбання компаній (Acquisition)
- key: options.job_finding_methods.career_fair
t: Ярмарок вакансій
# - key: workplace.how_much_can_you_be_yourself_at_work
# t:
# technology
# mobile_os
- key: technology.mobile_os
t: Мобільна ОС
- key: technology.mobile_os.question
t: Які мобільні операційні системи ви використовуєте найчастіше?
# - key: technology.mobile_os.prompt
# t: Including work use and personal use.
- key: options.mobile_os.ios
t: iOS
- key: options.mobile_os.android
t: Android
- key: options.mobile_os.no_smartphone
t: Не маю смартфона
# desktop_os
- key: technology.desktop_os
t: Настільна ОС
- key: technology.desktop_os.question
t: Які настільні операційні системи ви використовуєте найчастіше?
# - key: technology.desktop_os.question
# aliasFor: technology.mobile_os.prompt
- key: options.desktop_os.mac_os
t: macOS
- key: options.desktop_os.windows
t: Windows
- key: options.desktop_os.linux
t: Linux
# programming_languages
- key: technology.programming_languages
t: Мови програмування
- key: technology.programming_languages.question
t: Якими мовами ви програмуєте?
# ai_tools
- key: technology.ai_tools
t: ШІ-інструменти
- key: technology.ai_tools.question
t: Які ШІ-інструменти ви регулярно використовуєте?
# productivity_apps
- key: technology.productivity_apps
t: Застосунки для продуктивності
- key: technology.productivity_apps.question
t: Які застосунки для продуктивності ви регулярно використовуєте?
# chat_apps
- key: technology.chat_apps
t: Месенджери
- key: technology.chat_apps.question
t: Які месенджери ви регулярно використовуєте?
# social_media
- key: technology.social_media
t: Соціальні мережі
- key: technology.social_media.question
t: Які соціальні мережі ви регулярно використовуєте?
# community_involvement
- key: technology.community_involvement
t: Залученість до спільноти
- key: technology.community_involvement.question
t: Який із цих методів ви використовуєте, щоб залишатися залученими до спільноти розробників?
- key: options.community_involvement.meetups
t: Локальні зустрічі (meetups)
- key: options.community_involvement.conferences
t: Конференції
- key: options.community_involvement.forums
t: Онлайн-платформи (GitHub, Stack Overflow тощо)
- key: options.community_involvement.chatrooms
t: Онлайн-чати (Discord, Slack тощо)
- key: options.community_involvement.social_media
t: Соціальні медіа
- key: options.community_involvement.newsletters
t: Розсилки
- key: options.community_involvement.videos
t: Відео (YouTube тощо)
- key: options.community_involvement.streaming
t: Стримінг (Twitch тощо)
- key: options.community_involvement.podcasts
t: Подкасти
- key: options.community_involvement.blogs_websites
t: Блоги, вебсайти
- key: options.community_involvement.rss_feeds
t: RSS-стрічки
# community_contributions
- key: technology.community_contributions
t: Внесок у спільноту
- key: technology.community_contributions.question
t: Який із цих методів ви використовували протягом останніх 12 місяців, щоб зробити внесок у спільноту?
- key: options.community_contributions.conference
t: Відвідали зустріч чи конференцію
- key: options.community_contributions.talk
t: Виступили з доповіддю
- key: options.community_contributions.blog_post
t: Написали публікацію у блозі
- key: options.community_contributions.answer_question
t: Відповіли на запитання чи проблему (issue)
- key: options.community_contributions.financial_support
t: Фінансово підтримали розробників або проєкт
- key: options.community_contributions.event_organization
t: Організували захід
- key: options.community_contributions.open_source_contribution
t: Зробили внесок у ПЗ із відкритим кодом
- key: options.community_contributions.mentoring
t: Наставництво
# open_source_involvement
- key: technology.open_source_involvement
t: Проєкти з відкритим кодом
- key: technology.open_source_involvement.question
t: Як ви долучалися до ПЗ із відкритим кодом протягом вашої кар'єри?
- key: options.open_source_involvement.regular_use
t: Використовували відкрите ПЗ
- key: options.open_source_involvement.code_contribution
t: Додавали код до відкритих проєктів
- key: options.open_source_involvement.documentation
t: Додавали документацію чи інші некодові елементи
- key: options.open_source_involvement.submit_issues
t: Надсилали проблеми (issues) чи повідомляли про помилки
- key: options.open_source_involvement.created_projects
t: Створювали або підтримували відкриті проєкти
- key: options.open_source_involvement.documentation
t: Фінансово підтримували відкриті проєкти
- key: options.open_source_involvement.na
t: Не долучалися
# health
- key: health.health_issues
t: Проблеми зі здоров'ям
- key: health.health_issues.question
t: Які хронічні чи постійні проблеми зі здоров'ям ви маєте?
- key: options.health_issues.poor_sleep
t: Поганий сон
- key: options.health_issues.weight_issues
t: Проблеми з вагою
- key: options.health_issues.respiratory_issues
t: Респіраторні захворювання
- key: options.health_issues.diabetes
t: Діабет
- key: options.health_issues.chronic_fatigue
t: Хронічна втома
- key: options.health_issues.heart_disease
t: Серцеві захворювання
- key: options.health_issues.cancer
t: Рак
- key: options.health_issues.mental_health_issues
t: Психічні розлади
- key: options.health_issues.substance_abuse_issues
t: Зловживання психоактивними речовинами
- key: options.health_issues.back_pain
t: Біль у спині
- key: options.health_issues.wrist_hand_pain
t: Біль у зап'ясті/руці
- key: options.health_issues.other_joint_pain
t: Інші болі в суглобах
- key: options.health_issues.skin_issues
t: Проблеми зі шкірою
- key: options.health_issues.headaches
t: Головні болі та мігрені
- key: options.health_issues.gastrointestinal_issues
t: Проблеми із ШКТ
- key: options.health_issues.high_blood_pressure
t: Високий кров'яний тиск
# sleep_quantity
- key: health.sleep_quantity
t: Тривалість сну
- key: health.sleep_quantity.question
t: Скільки годин ви спите щоночі в середньому?
- key: options.sleep_quantity.range_5_or_less
t: 5 чи менше
- key: options.sleep_quantity.range_6
t: 6
- key: options.sleep_quantity.range_7
t: 7
- key: options.sleep_quantity.range_8
t: 8
- key: options.sleep_quantity.range_9
t: 9
- key: options.sleep_quantity.range_10
t: 10
- key: options.sleep_quantity.more_than_10
t: Понад 10
# sleep_bedtime
- key: health.sleep_bedtime
t: Час засинання
- key: health.sleep_bedtime.question
t: О котрій годині ви зазвичай лягаєте спати?
- key: health.sleep_wakeuptime
t: Час пробудження
- key: health.sleep_wakeuptime.question
t: О котрій годині ви зазвичай прокидаєтеся?
- key: health.sleep_measures
t: Стратегії покращення сну
- key: health.sleep_measures.question
t: Які методи ви пробували для покращення сну?
- key: options.sleep_measures.consistent_bedtime
t: Дотримання постійного часу сну
- key: options.sleep_measures.darkened_curtains
t: Затемнені штори
- key: options.sleep_measures.sleep_mask
t: Маска для сну
- key: options.sleep_measures.avoid_screens
t: Уникання екранів перед сном
- key: options.sleep_measures.screen_dimming
t: Затемнення екранів перед сном
- key: options.sleep_measures.earplugs
t: Вушні затички/беруші
- key: options.sleep_measures.sleeping_pills
t: Снодійні препарати
- key: options.sleep_measures.supplements
t: Добавки (supplements)
- key: options.sleep_measures.exercise
t: Вправи
- key: options.sleep_measures.meditation_relaxation
t: Медитація або релаксація
- key: options.sleep_measures.sleep_environment
t: Гарні умови для сну
- key: options.sleep_measures.noise_machine
t: Апарати генерації шуму
- key: options.sleep_measures.cpap_machine
t: Апарат СДТП (CPAP)
- key: options.sleep_measures.cannabis_cbd
t: Канабіс, КБД
- key: options.sleep_measures.reading_books
t: Читання
- key: options.sleep_measures.sound_therapy
t: Звукова терапія
- key: options.sleep_measures.better_sleep_schedule
t: Кращий графік сну
- key: options.sleep_measures.audiobooks_podcasts
t: Аудіокниги, подкасти
- key: options.sleep_measures.music
t: Музика
- key: options.sleep_measures.controlling_light_exposure
t: Контроль світла/освітленості
# worldview
- key: worldview.left_right
t: Ліві та праві
- key: worldview.left_right.question
t: Де ви себе розміщуєте на шкалі лівих і правих економічних поглядів?
- key: options.left_right.0
t: Крайні ліві
- key: options.left_right.4
t: Центр
- key: options.left_right.8
t: Крайні праві
# policies
# - key: worldview.policies
# t: Policies
# - key: worldview.policies.question
# t: How strongly do you agree or disagree about implementing these policy proposals?
# - key: options.policies.ubi
# t: Universal basic income
# - key: options.policies.ubi.description
# t: Government-provided minimum income for all citizens
# - key: options.policies.free_trade
# t: Free trade
# - key: options.policies.free_trade.description
# t: Free trade across countries with minimal restrictions.
# - key: options.policies.universal_health_care
# t: Universal health care
# - key: options.policies.universal_health_care.description
# t: Free access to health care regardless of personal wealth.
# - key: options.policies.open_borders
# t: Open borders
# - key: options.policies.open_borders.description
# t: Free movement of people between countries.
# - key: options.policies.drug_legalization
# t: Drug decriminalization
# - key: options.policies.drug_legalization.description
# t: Reduced or eliminated control or penalties for most drugs.
# - key: options.policies.hate_speech_regulations
# t: Hate speech regulations
# - key: options.policies.hate_speech_regulations.description
# t: Criminal penalties for some forms of offensive speech.
# - key: options.policies.affirmative_action
# t: Affirmative action
# - key: options.policies.affirmative_action.description
# t: Increased opportunities for specific disadvantaged groups.
# - key: options.policies.separation_church_state
# t: Separation of church and state
# - key: options.policies.separation_church_state.description
# t: Ensuring government does not favor one religion over another.
# - key: options.policies.progressive_taxation
# t: High marginal tax rates
# - key: options.policies.progressive_taxation.description
# t: Taxing the top income earners at higher rates.
# - key: options.policies.lgbtq_equality
# t: Pro-LGBTQ policies
# - key: options.policies.lgbtq_equality.description
# t: Policies aimed at improving the lives of LGBTQ individuals (same-sex marriage, etc.).
# - key: options.policies.reduced_government_size
# t: Reduced government size
# - key: options.policies.reduced_government_size.description
# t: Reducing the size of the government and expanding the private sector.
# - key: options.policies.dei_initiatives
# t: DEI initiatives
# - key: options.policies.dei_initiatives.description
# t: Initiatives aimed at increasing an organization's diversity and inclusivity.
# - key: options.policies.business_regulation
# t: Business regulation
# - key: options.policies.business_regulation.description
# t: Policies aimed at regulating how companies operate.
# - key: options.policies.interventionism
# t: Foreign interventionism
# - key: options.policies.interventionism.description
# t: Becoming involved in the internal affairs of other countries.
# - key: options.policies.climate_action
# t: Climate action
# - key: options.policies.climate_action.description
# t: Policies aimed at reducing global warming (driving bans, restrictions on cars, etc.).
# - key: options.policies.politics_free_workplace
# t: Politics-free workplace
# - key: options.policies.politics_free_workplace.description
# t: Banning political topics in the workplace.
# - key: worldview.policies_statements
# t: Political Viewpoints
# - key: worldview.policies_statements.question
# t: How strongly do you agree or disagree with the following statements?
# - key: options.policies_statements.ubi
# t: All citizens should receive a government-provided universal basic income.
# - key: options.policies_statements.free_trade
# t: There should be minimal restrictions to trade between countries.
# - key: options.policies_statements.universal_health_care
# t: Everybody should have access to free access to health care regardless of wealth.
# - key: options.policies_statements.open_borders
# t: Borders should be open to people fleeing war or poverty.
# - key: options.policies_statements.drug_legalization
# t: Most drugs should be legal for personal usage.
# - key: options.policies_statements.hate_speech_regulations
# t: Some forms of hate speech should be against the law.
# - key: options.policies_statements.affirmative_action
# t: Historically disadvantaged groups should receive special opportunities.
# - key: options.policies_statements.separation_church_state
# t: Government should not favor one religion over another.
# - key: options.policies_statements.progressive_taxation
# t: Top income earners should be taxed at very high rates.
# - key: options.policies_statements.lgbtq_equality
# t: Same-sex couples should be able to get married.
# - key: options.policies_statements.reduced_government_size
# t: Government size should generally be reduced in favor of the private sector.
# - key: options.policies_statements.dei_initiatives
# t: Increasing diversity and inclusivity in organizations is important.
# - key: options.policies_statements.business_regulation
# t: Companies should be able to operate with minimal regulations.
# - key: options.policies_statements.interventionism
# t: Becoming involved in the internal affairs of other countries is sometimes necessary.
# - key: options.policies_statements.climate_action
# t: Strong action (car bans, driving restrictions, etc.) is needed to combat climate change.
# - key: options.policies_statements.politics_free_workplace
# t: Workplaces should ban the discussion of political topics.
# - key: options.policies_statements.gender_spectrum
# t: Children should be taught that gender is a spectrum.
# - key: options.policies_statements.cultural_diversity
# t: Cultural and racial diversity is overall a net positive for a country.
# - key: options.policies_statements.individual_rights
# t: It's sometimes necessary to sacrifice indivdual rights to preserve law and order.