-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcommon.yml
More file actions
1532 lines (1396 loc) · 50.7 KB
/
common.yml
File metadata and controls
1532 lines (1396 loc) · 50.7 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: ro-RO
translations:
###########################################################################
# General
###########################################################################
# homepage
- key: general.why_create_account
t: De ce am nevoie de cont?
- key: general.create_account_reasons
t: >
Îți cerem să-ți creezi cont pentru:
- A evita răspunsurile duplicate
- A-ți oferi acces la răspunsurile tale
- A salva sesiunea pe măsură ce completezi
- A te notifica atunci când publicăm rezultatele
- key: general.survey_closed_detailed
t: >
Ne pare rău, sondajul a luat sfârșit! Poți în continuare să verifici răspunsurile tale, dar nu vei putea să le modifici.
- key: general.survey_read_only
t: >
Vizualizezi acest sondaj în mod read-only.
- key: general.survey_preview
t: >
Acest sondaj este în **modul previzualizare**. Întrebările pot suferi modificări și orice date introduse acum **vor fi șterse** atunci când sondajul propriu-zis începe.
- key: general.survey_feedback
t: Lasă feedback
- key: general.survey_read_only_back
t: >
<a href="{link}">Înapoi</a> la pagina principală a sondajului pentru a începe sau pentru a continua să răspunzi.
- key: general.take_survey
t: Completează sondajul {name}
- key: options.na
t: 🚫 Niciuna
# surveys
- key: general.open_surveys
t: Sondaje deschise
- key: general.no_open_surveys
t: Niciun sondaj nu este momentan deschis.
- key: general.closed_surveys
t: Sondaje închise
- key: general.no_closed_surveys
t: Niciun sondaj nu este momentan închis.
- key: general.preview_surveys
t: Previzualizare sondaje
- key: general.no_preview_surveys
t: Niciun sondaj disponibil pentru previzualizare.
- key: general.start_survey
t: Începe sondaj »
- key: general.continue_survey
t: Continuă sondaj »
- key: general.completion
t: "{completion}% completat"
- key: general.started_on
t: Început pe {createdAt}
- key: general.last_modified_on
t: Ultima dată modificat pe {updatedAt}
- key: general.review_survey
t: Revizuiește sondaj »
- key: general.review_answers
t: Revizuiește răspunsuri »
- key: general.preview_survey
t: Previzualizează sondaj »
- key: general.finish_survey
t: Finalizează sondaj
- key: general.next_section
t: Secțiunea următoare
- key: general.previous_section
t: Secțiunea anterioară
- key: general.survey_closed
t: Acest sondaj s-a încheiat.
- key: general.survey_closed_on
t: Acest sondaj a fost închis pe {endedAt}.
- key: general.survey_results
t: Vezi rezultate sondaj »
- key: general.surveys_available_languages
t: "Sondajele sunt disponibile în:"
- key: general.help_us_translate
t: Ajută-ne să traducem sondajele »
- key: general.translators
t: Traducători
- key: general.translation_help
t: Suport pentru traducere
- key: general.newly_added
t: Nou adăugat anul acesta
- key: general.new
t: Nou
- key: general.devographics_banner
t: <a href="https://www.devographics.com/" target="_blank">Devographics</a> este noul nume al colectivului care organizează sondajele State of JavaScript, CSS și GraphQL.
# credits
- key: credits.thanks
t: Mulțumiri speciale
- key: credits.contributors
t: Contributori
- key: credits.contributors.description
t: Mulțumiri speciale următoarelor persoane pentru că ne-au ajutat să concepem sondajul.
- key: credits.accessibility
t: Consultanță accesibilitate
- key: credits.survey_design
t: Design sondaj
- key: credits.logo_design
t: Design logo
- key: credits.mobile_testing
t: Testare pe mobil
- key: credits.data_visualizations
t: Vizualizare date
- key: credits.repo_architecture
t: Arhitectură repo
- key: credits.code_refactoring
t: Refactorizare cod
- key: credits.data_processing
t: Procesare date
- key: credits.back_end_development
t: Dezvoltare back-end
- key: credits.survey_review
t: Revizuirea sondajului
# support
- key: general.support_from
t: Cu susținerea
# footer
- key: general.privacy_policy
t: Politica de confidențialitate
- key: general.leave_issue
t: Ai întrebări? Ai găsit o eroare? <a href="{link}" target="_blank">Deschide un issue</a>.
- key: general.leave_issue2
aliasFor: homepage.leave_issue
- key: general.emoji_icons
t: Emoji icons by <a target="_blank" rel="noreferrer" href="https://icons8.com">Icons8</a>
# navigation
- key: general.table_of_contents
t: >
{sectionCount} secțiuni ({completion}% grad de completare)
- key: general.all_questions_optional
t: >
Notă: întrebările sunt opționale, completarea în totalitate nu este necesară.
- key: general.data_is_saved
t: Răspunsurile tale sunt salvate atunci când navighezi între secțiuni.
- key: general.close_nav
t: Închide meniu
- key: general.open_nav
t: Deschide meniu
- key: general.more_actions
t: Mai multe acțiuni
- key: general.skip_to_content
t: Salt la conținut
# thanks
- key: general.back
t: Înapoi
- key: general.thanks
t: >
Îți mulțumim pentru completarea sondajului! Răspunsurile tale au fost salvate.
Ne poți ajuta să ducem vestea mai departe împărtășind sondajul. Orice răspuns contează și contribuie ca datele
noastre să fie cât mai reprezentative:
- key: general.thanks1
t: >
Îți mulțumim pentru completarea sondajului! Răspunsurile tale au fost salvate.
- key: general.thanks2
t: >
Ajută-ne să ducem vestea mai departe împărtășind sondajul! Orice răspuns contează și contribuie ca datele
noastre să fie cât mai reprezentative.
- key: thanks.learn_more_about
t: "Câteva dintre funcționalitățile despre care ai vrea să afli mai multe:"
- key: thanks.knowledge_score
t: Scor de familiaritate
- key: thanks.features_score
t: Scorul funcționalităților
- key: thanks.quiz_score
t: Scorul testului
- key: thanks.score_statistics
t: >
Dintre cele {total} funcționalități menționate în sondaj,
ai folosit {usage_count} și ai auzit de alte {awareness_count},
fapt ce te plasează în top {knowledgeRankingFromTop} dintre toți respondenții.
Felicitări!
- key: thanks.score_statistics_noranking
t: >
Dintre cele {total} funcționalități menționate în sondaj,
ai folosit {usage_count} și ai auzit de alte {awareness_count}.
Felicitări!
- key: thanks.points
t: >
puncte
- key: thanks.score_awareness_explanation
t: >
Din rațiuni de corectitudine, acest procent este calculat numai pentru {awareness_total} funcționalități pe care ai putea spune că le ști
- key: thanks.share_on_twitter
t: Distribuie pe Twitter
- key: thanks.share_score_message
t: >
Am obținut un scor de familiaritate de {score} puncte la sondajul #{hashtag} din acest an!
Am folosit {usage_count} funcționalități și am știut de alte {awareness_count},
fapt ce mă plasează în top {rank}% printre toți respondenții.
Poți obține un scor mai mare? {shareUrl}
# share
- key: general.share_subject
t: >
Sondajul {surveyName}
- key: general.share_text
t: >
Sondajul {surveyName} din acest an este acum disponibil! {link}
# forms
- key: forms.select_option
t: Selectează opțiune
- key: forms.clear_field
t: Golește câmpul
- key: forms.more_options
t: Arată mai mult...
- key: forms.less_options
t: Arată mai puțin
# partners & sponsors
- key: sponsors.with_support_from
t: Cu sprijin special oferit de
- key: sponsors.our_partners
t: Partenerii noștri
- key: sponsors.become_partner
t: Devino partener
# 404
- key: notfound.title
t: 404 Pagina nu a fost găsită
- key: notfound.description
t: Ne pare rău, nu am putut găsi ceea ce căutai.
# other
- key: general.join_discord
t: Alătură-te pe <a href="{link}">Discord</a>.
- key: general.translator_mode
t: Apasă option/alt pentru a activa modul traducere.
- key: general.charts_nivo
t: Grafice realizate cu <a href="{link}">Nivo</a>.
- key: general.made_by_devographics
t: Creat de <a href="{link}">Devographics</a>
- key: general.view_code_example
t: Vezi exemplu de cod
- key: general.feature_code_example
t: "Exemplu de cod pentru **{featureName}**"
- key: general.code_example
t: Exemplu de cod
- key: general.language_code
t: |
Cod pentru {language}
###########################################################################
# Nav
###########################################################################
- key: nav.surveys
t: Sondaje
- key: nav.account
t: Cont
###########################################################################
# Sections
###########################################################################
- key: sections.user_info.title
t: Despre tine
- key: sections.user_info.description
t: Să te cunoaștem mai bine.
- key: sections.features.title
t: Funcționalități
- key: sections.features.description
t: Sintaxă, cuvinte cheie și alte funcționalități ale limbajului.
- key: sections.resources.title
t: Resurse
- key: sections.resources.description
t: Ce resurse consulți?
- key: sections.opinions.title
t: Opinii
- key: sections.opinions.description
t: Ce părere ai despre starea lucrurilor?
- key: sections.other_tools.title
t: Alte instrumente
- key: sections.other_tools.description
t: În cazul acestor instrumente și tehnologii, bifează-le doar pe cele pe care le folosești în mod frecvent.
- 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: Raport de tendințe
- key: sections.usage.title
t: Utilizare
- key: sections.finish.title
t: Încheie sondajul
- key: sections.finish.description
t: Încheie sondajul
###########################################################################
# Options
###########################################################################
# other answer
- key: options.other
t: Altele…
- key: options.other.placeholder
t: Alte elemente care nu au fost menționate anterior, separate prin virgulă
# features
- key: options.features.never_heard
t: 🤷 N-am auzit niciodată despre asta/Nu sunt sigur(ă) ce este
- key: options.features.heard
t: ✅ Știu ce este, dar nu am folosit niciodată
- key: options.features.used
t: 👍 Am folosit
# features v2
- key: options.features2.never_heard
t: <span class="option-chip option-main option-main-never_heard">N-am auzit niciodată despre asta/Nu sunt sigur(ă) ce este</option>
- key: options.features2.interested
t: |
<span class="option-chip option-main option-main-heard">Am auzit despre</span> » <span class="option-chip option-positive">Interesat(ă)</span>
- key: options.features2.not_interested
t: |
<span class="option-chip option-main option-main-heard">Am auzit despre</span> » <span class="option-chip option-negative">Nu sunt interesat(ă)</span>
- key: options.features2.used_positive
t: |
<span class="option-chip option-main option-main-used">Am folosit</span> » <span class="option-chip option-positive">Experiență pozitivă</span>
- key: options.features2.used_negative
t: |
<span class="option-chip option-main option-main-used">Am folosit</span> » <span class="option-chip option-negative">Experiență negativă</span>
# features (short)
- key: options.features.never_heard.short
t: <span aria-hidden="true">🤷</span> N-am auzit niciodată despre asta
- key: options.features.heard.short
t: <span aria-hidden="true">👀</span> Am auzit despre
- key: options.features.used.short
t: <span aria-hidden="true">🤓</span> Am folosit
# features (no emoji)
- key: options.features.never_heard.label
t: N-am auzit niciodată despre asta/Nu sunt sigur(ă) ce este
- key: options.features.heard.label
t: Știu ce este, dar nu am folosit niciodată
- key: options.features.used.label
t: Am folosit
# features (no emoji, short versions)
- key: options.features.never_heard.label.short
t: N-am auzit niciodată despre asta
- key: options.features.heard.label.short
t: Am auzit despre
- key: options.features.used.label.short
t: Am folosit
# patterns
- key: options.patterns.use_never
t: Evit aproape întotdeauna
- key: options.patterns.use_sparingly
t: Folosesc rar
- key: options.patterns.use_neutral
t: Neutru
- key: options.patterns.use_frequently
t: Folosesc frecvent
- key: options.patterns.use_always
t: Folosesc cât de des
# tools experience
- key: options.tools.never_heard
t: 🤷 N-am auzit niciodată despre asta/Nu sunt sigur(ă) ce este
- key: options.tools.interested
t: ✅ Am auzit despre > Mi-ar plăcea să învăț
- key: options.tools.not_interested
t: 🚫 Am auzit despre > Nu sunt interesat(ă)
- key: options.tools.would_use
t: 👍 Am folosit > Aș folosi din nou
- key: options.tools.would_not_use
t: 👎 Am folosit > Nu aș mai folosi
# tools experience (no emoji)
- key: options.tools.never_heard.legend
t: N-am auzit niciodată despre asta/Nu sunt sigur(ă) ce este
- key: options.tools.interested.legend
t: Am auzit despre > Mi-ar plăcea să învăț
- key: options.tools.not_interested.legend
t: Am auzit despre > Nu sunt interesat(ă)
- key: options.tools.would_use.legend
t: Am folosit > Aș folosi din nou
- key: options.tools.would_not_use.legend
t: Am folosit > Nu aș mai folosi
# tools experience (short versions)
- key: options.tools.never_heard.short
t: N-am auzit niciodată despre asta
- key: options.tools.interested.short
t: Sunt interesat(ă)
- key: options.tools.not_interested.short
t: Nu sunt interesat(ă)
- key: options.tools.would_use.short
t: Aș folosi din nou
- key: options.tools.would_not_use.short
t: Nu aș mai folosi
# happiness
- key: options.happiness.0
t: Foarte nemulțumit(ă)
- key: options.happiness.1
t: Nemulțumit(ă)
- key: options.happiness.2
t: Neutru
- key: options.happiness.3
t: Mulțumit(ă)
- key: options.happiness.4
t: Foarte mulțumit(ă)
# happiness (short version)
- key: options.happiness.0.short
t: Foarte nemulțumit(ă)
- key: options.happiness.1.short
t: Nemulțumit(ă)
- key: options.happiness.2.short
t: Neutru
- key: options.happiness.3.short
t: Mulțumit(ă)
- key: options.happiness.4.short
t: Foarte mulțumit(ă)
# opinions
- key: options.opinions.0
t: Dezacord total
- key: options.opinions.1
t: Dezacord
- key: options.opinions.2
t: Neutru
- key: options.opinions.3
t: Acord
- key: options.opinions.4
t: Acord total
# age
- key: options.age.range_less_than_10
t: 10 ani sau mai puțin
- key: options.age.range_10_18
t: 11-18 ani
- key: options.age.range_18_24
t: 19-24 ani
- key: options.age.range_25_34
t: 25-34 ani
- key: options.age.range_35_44
t: 35-44 ani
- key: options.age.range_45_54
t: 45-54 ani
- key: options.age.range_55_64
t: 55-64 ani
- key: options.age.range_more_than_65
t: 65 de ani sau mai mult
# 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: Mai puțin de un an
- key: options.years_of_experience.range_1_2
t: Între 1 și 2 ani
- key: options.years_of_experience.range_2_5
t: Între 3 și 5 ani
- key: options.years_of_experience.range_5_10
t: Între 6 și 10 ani
- key: options.years_of_experience.range_10_20
t: Între 11 și 20 de ani
- key: options.years_of_experience.range_more_than_20
t: Mai mult de 20 de ani
# years of experience (short versions)
- key: options.years_of_experience.range_less_than_1.short
t: "<1 an"
- key: options.years_of_experience.range_1_2.short
t: 1-2 ani
- key: options.years_of_experience.range_2_5.short
t: 3-5 ani
- key: options.years_of_experience.range_5_10.short
t: 6-10 ani
- key: options.years_of_experience.range_10_20.short
t: 11-20 ani
- key: options.years_of_experience.range_more_than_20.short
t: ">20 ani"
# company size
- key: options.company_size.na
t: 🚫 Nu se aplică
- key: options.company_size.range_1
t: Doar eu
- key: options.company_size.range_1_5
t: Între 2 și 5 persoane
- key: options.company_size.range_5_10
t: Între 6 și 10 persoane
- key: options.company_size.range_10_20
t: Între 11 și 20 de persoane
- key: options.company_size.range_20_50
t: Între 21 și 50 de persoane
- key: options.company_size.range_50_100
t: Între 51 și 100 de persoane
- key: options.company_size.range_100_1000
t: Între 101 și 1.000 de persoane
- key: options.company_size.range_more_than_1000
t: Mai mult de 1.000 de persoane
# 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-1.000
- key: options.company_size.range_more_than_1000.short
t: "+1.000"
# salary
- key: options.yearly_salary.na
t: 🚫 Nu se aplică
- key: options.yearly_salary.range_work_for_free
t: Lucrez pro bono
- 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: Mai mult de $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: $0~10k
- key: options.yearly_salary.range_10_30.short
t: $10~30k
- key: options.yearly_salary.range_30_50.short
t: $30~50k
- key: options.yearly_salary.range_50_100.short
t: $50~100k
- key: options.yearly_salary.range_100_200.short
t: $100~200k
- key: options.yearly_salary.range_more_than_200.short
t: ">$200k"
# Proficiency (generic versions)
- key: options.proficiency.0
t: Niciuna
- key: options.proficiency.1
t: Începător
- key: options.proficiency.2
t: Intermediar
- key: options.proficiency.3
t: Avansat
- key: options.proficiency.4
t: Expert
# Gender
- key: options.gender.female
t: Feminin
- key: options.gender.male
t: Masculin
- key: options.gender.non_binary
t: Non-binar sau non-conform
- key: options.gender.questioning
t: Questioning
- key: options.gender.prefer_not_to_say
t: Prefer să nu răspund
- key: options.gender.not_listed
t: Altul
# Gender (short)
- key: options.gender.female.short
t: Feminin
- key: options.gender.male.short
t: Masculin
- key: options.gender.non_binary.short
t: Non-binar sau non-conform
- key: options.gender.questioning.short
t: Questioning
- key: options.gender.prefer_not_to_say.short
t: Prefer să nu răspund
- key: options.gender.not_listed.short
t: Altul
# Race & Ethnicity
- key: options.race_ethnicity.white_european
t: Alb
- key: options.race_ethnicity.south_asian
t: Din Asia de sud
- key: options.race_ethnicity.south_east_asian
t: Din Asia de sud-est
- key: options.race_ethnicity.hispanic_latin
t: Hispanic sau latin
- key: options.race_ethnicity.east_asian
t: Din Asia de est
- key: options.race_ethnicity.middle_eastern
t: Din Orientul Mijlociu
- key: options.race_ethnicity.black_african
t: Negru sau din descendenți africani
- key: options.race_ethnicity.multiracial
t: Multirasial
- key: options.race_ethnicity.biracial
t: Birasial
- key: options.race_ethnicity.native_american_islander_australian
t: American nativ, din Insulele Pacificului sau indigen australian
- key: options.race_ethnicity.not_listed
t: Alta
- key: options.race_ethnicity.european
t: European
- key: options.race_ethnicity.indian
t: Indian
- key: options.race_ethnicity.human
t: Human
- key: options.race_ethnicity.slav
t: Slav
- key: options.race_ethnicity.north_african
t: Nord african
- key: options.race_ethnicity.jewish
t: Evreu
# Race & Ethnicity (short)
- key: options.race_ethnicity.white_european.short
t: Alb
- key: options.race_ethnicity.south_asian.short
t: Din sudul Asiei
- key: options.race_ethnicity.south_east_asian.short
t: Din sud-estul Asiei
- key: options.race_ethnicity.hispanic_latin.short
t: Hispanic/latin
- key: options.race_ethnicity.east_asian.short
t: Din estul Asiei
- key: options.race_ethnicity.middle_eastern.short
t: Din Orientul Mijlociu
- key: options.race_ethnicity.black_african.short
t: Negru/din descendenți africani
- key: options.race_ethnicity.multiracial.short
t: Multirasial
- key: options.race_ethnicity.biracial.short
t: Birasial
- key: options.race_ethnicity.native_american_islander_australian.short
t: American nativ/din Insulele Pacificului/indigen australian
- key: options.race_ethnicity.not_listed.short
t: Alta
# Disability Status
- key: options.disability_status.na
t: 🚫 Niciuna
- key: options.disability_status.visual_impairments
t: >
Deficiențe de vedere (cum ar fi: orbire, daltonism etc.)
- key: options.disability_status.hearing_impairments
t: >
Deficiențe de auz (cum ar fi: surditate, tinitus etc.)
- key: options.disability_status.mobility_impairments
t: >
Deficiențe locomotorii (cum ar fi: artrită, sindrom de tunel carpian etc.)
- key: options.disability_status.cognitive_impairments
t: >
Deficiențe cognitive (cum ar fi: anxietate, dislexie, ADHD etc.)
- key: options.disability_status.not_listed
t: >
Altele
# Disability Status (short)
- key: options.disability_status.visual_impairments.short
t: >
Deficiențe de vedere
- key: options.disability_status.hearing_impairments.short
t: >
Deficiențe de auz
- key: options.disability_status.mobility_impairments.short
t: >
Deficiențe locomotorii
- key: options.disability_status.cognitive_impairments.short
t: >
Deficiențe cognitive
- key: options.disability_status.not_listed.short
t: >
Altele
# Form Factors
- key: options.form_factors.desktop
t: Desktop
- key: options.form_factors.keyboard_only
t: Desktop doar cu tastatură
- key: options.form_factors.smartphone
t: Smartphone
- key: options.form_factors.feature_phone
t: Telefon mobil (non smartphone)
- key: options.form_factors.tablet
t: Tabletă
- key: options.form_factors.smart_watch
t: Smartwatch
- key: options.form_factors.tv
t: TV
- key: options.form_factors.gaming_console
t: Consolă de jocuri
- key: options.form_factors.screen_reader
t: Soft de citire a ecranului
- key: options.form_factors.print
t: Versiune tipărită
- key: options.form_factors.testing_tools
t: Tool-uri de testare (Axe, Lighthouse etc.)
- key: options.form_factors.vision_simulator
t: Simulator pentru vedere scăzută (daltonism etc.)
# Industry Sector
- key: options.industry_sector.ecommerce
t: Ecommerce & Retail
- key: options.industry_sector.news_media
t: Știri, mass-media & blog-uri
- key: options.industry_sector.healthcare
t: Sănătate
- key: options.industry_sector.finance
t: Finanțe
- key: options.industry_sector.programming_tools
t: Programare și instrumente tehnice
- key: options.industry_sector.socialmedia
t: Social Media
- key: options.industry_sector.marketing_tools
t: Marketing/Vânzări/Instrumente de analiză
- key: options.industry_sector.education
t: Educație
- key: options.industry_sector.real_estate
t: Imobiliare
- key: options.industry_sector.government
t: Guvern
- key: options.industry_sector.entertainment
t: Divertisment
- key: options.industry_sector.consulting
t: Consultanță și servicii
- key: options.industry_sector.travel
t: Călătorii
- key: options.industry_sector.tourism
t: Turism
- key: options.industry_sector.insurance
t: Asigurări
- key: options.industry_sector.logistics
t: Logistică
- key: options.industry_sector.energy
t: Energie
- key: options.industry_sector.telecommunications
t: Telecommunicații
- key: options.industry_sector.student
t: Student
- key: options.industry_sector.hospitality
t: HoReCa
- key: options.industry_sector.cyber_security
t: Securitate cibernetică
- key: options.industry_sector.construction
t: Construcții
- key: options.industry_sector.automotive
t: Automotive
- key: options.industry_sector.agriculture
t: Agricultură
- key: options.industry_sector.transport
t: Transporturi
- key: options.industry_sector.manufacturing
t: Manufactură
- key: options.industry_sector.tech_it
t: Tech & IT
- key: options.industry_sector.human_resources
t: Resurse umane
- key: options.industry_sector.sports
t: Sport
- key: options.industry_sector.gaming
t: Jocuri
- key: options.industry_sector.research
t: Cercetare
- key: options.industry_sector.law
t: Drept
- key: options.industry_sector.non_profit
t: Non-Profit
- key: options.industry_sector.art
t: Arte
- key: options.industry_sector.crypto
t: Crypto
- key: options.industry_sector.aerospace
t: Industria aerospațială
- key: options.industry_sector.web3
t: Web3
- key: options.industry_sector.iot
t: IOT
- key: options.industry_sector.gambling
t: Pariuri
- key: options.industry_sector.blockchain
t: Blockchain
- key: options.industry_sector.design
t: Design
- key: options.industry_sector.unemployed
t: Neangajat
- key: options.industry_sector.recruiting
t: Recrutare
- key: options.industry_sector.agency
t: Agenție
- key: options.industry_sector.business
t: Business
- key: options.industry_sector.communication
t: Comunicare
- key: options.industry_sector.security
t: Securitate
# tool evaluation
- key: options.tool_evaluation.learning_curve_documentation
t: Documentare
- key: options.tool_evaluation.learning_curve_documentation.description
t: Este ușor de învățat și/sau este bine documentat?
- key: options.tool_evaluation.momentum_popularity
t: Vizibilitate și popularitate
- key: options.tool_evaluation.momentum_popularity.description
t: Se vorbește mult despre el în prezent?
- key: options.tool_evaluation.user_base_size
t: Dimensiunea comunității de utilizatori
- key: options.tool_evaluation.user_base_size.description
t: Este o opțiune stabilă, cu un istoric îndelungat?
- key: options.tool_evaluation.developer_experience_tooling
t: Experiența developer-ului
- key: options.tool_evaluation.developer_experience_tooling.description
t: Oferă instrumente de dezvoltare bune, un ecosistem mare de plugin-uri etc.?
- key: options.tool_evaluation.performance_user_experience
t: User Experience
- key: options.tool_evaluation.performance_user_experience.description
t: Te ajută să creezi experiențe fluide și performante?
- key: options.tool_evaluation.creator_team
t: Autor & echipă
- key: options.tool_evaluation.creator_team.description
t: Este susținut de o echipă renumită, bine finanțată sau experimentată?
- key: options.tool_evaluation.accessibility_features
t: Funcționalități de accesibilitate
- key: options.tool_evaluation.accessibility_features.description
t: Este potrivit pentru a crea experiențe accesibile tuturor utilizatorilor?
- key: options.tool_evaluation.community_inclusivity
t: Comunitate & inclusivitate
- key: options.tool_evaluation.community_inclusivity.description
t: Are o comunitate primitoare și vibrantă construită în jurul său?
# accessibility features
- key: options.accessibility_features.keyboard_navigation
t: Navigare prin intermediul tastaturii
- key: options.accessibility_features.compliant_contrast
t: Contrast conform WCAG
- key: options.accessibility_features.focus_indicators
t: Indicatori de focalizare
- key: options.accessibility_features.skip_to_content_link
t: Link de „Salt la conținut”
- key: options.accessibility_features.color_themes
t: Teme de culoare (mod întunecat, mod contrast ridicat etc.)
- key: options.accessibility_features.prefers_reduced_motion
t: Prefers-reduced-motion
- key: options.accessibility_features.alt_text
t: Texte alternative
- key: options.accessibility_features.semantic_markup
t: Etichete semantice
- key: options.accessibility_features.aria_attributes
t: Atribute ARIA HTML
# learning methods
- key: options.first_steps.na
t: 🚫 Niciuna
- key: options.first_steps.books
t: Cărți
- key: options.first_steps.videos
t: Video-uri & screencast-uri
- key: options.first_steps.school
t: Școală și învățământ superior
- key: options.first_steps.courses_free
t: Cursuri online (gratuite)
- key: options.first_steps.courses_paid
t: Cursuri online (contra-cost)
- key: options.first_steps.podcasts
t: Podcast-uri
- key: options.first_steps.bootcamp
t: Bootcamp de programare
- key: options.first_steps.on_the_job
t: Training la locul de muncă
- key: options.first_steps.self_directed
t: Învățare autodidactă (Google, Stack Overflow etc.)
- key: options.first_steps.mentoring
t: Mentorat
- key: options.first_steps.blogs
t: Blog-uri
- key: options.first_steps.view_source
t: Vezi sursa
- key: options.first_steps.documentation
t: Documentație
- key: options.first_steps.trial_and_error
t: Încercare & Eroare
- key: options.first_steps.forums
t: Forumuri
- key: options.first_steps.newsletters
t: Newslettere
- key: options.first_steps.events
t: Evenimente
# learning methods
- key: resources.learning_methods
t: Metode de învățare
- 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