Skip to content

Commit e6bc364

Browse files
author
Sacha Greif
committed
add strings
1 parent d0bafc5 commit e6bc364

File tree

2 files changed

+63
-18
lines changed

2 files changed

+63
-18
lines changed

common.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1813,6 +1813,25 @@ translations:
18131813
- key: user_info.how_can_we_improve.question
18141814
t: How else could we improve this survey?
18151815

1816+
# why_did_you_take_the_survey
1817+
- key: user_info.why_did_you_take_the_survey
1818+
t: Survey Motivation
1819+
- key: user_info.why_did_you_take_the_survey.question
1820+
t: Why did you take this survey?
1821+
1822+
- key: options.why_did_you_take_the_survey.stay_informed
1823+
t: To stay informed and keep up with the ecosystem.
1824+
- key: options.why_did_you_take_the_survey.interested_in_data
1825+
t: I'm interested in the resulting data and trends.
1826+
- key: options.why_did_you_take_the_survey.help_with_representation
1827+
t: To help make the dataset more representative.
1828+
- key: options.why_did_you_take_the_survey.for_fun
1829+
t: Out of curiosity or just for fun.
1830+
- key: options.why_did_you_take_the_survey.affect_change
1831+
t: To make my voice heard and influence the developer ecosystem.
1832+
- key: options.why_did_you_take_the_survey.gauge_my_knowledge
1833+
t: To gauge my own current knowledge.
1834+
18161835
###########################################################################
18171836
# Usage
18181837
###########################################################################

state_of_js.yml

Lines changed: 44 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -950,13 +950,17 @@ translations:
950950
- key: tools.data_visualization
951951
t: Data Visualization
952952
- key: tools.data_visualization.question
953+
t: Which data visualization libraries do you use?
954+
- key: tools.data_visualization.prompt
953955
t: Libraries that help with charts and other data visualizations.
954956
- key: tools.data_visualization.others
955957
t: Other Data Visualization Libraries
956958

957959
- key: tools.graphics_animation
958960
t: Graphics & Animations
959961
- key: tools.graphics_animation.question
962+
t: Which graphics & animation libraries do you use?
963+
- key: tools.graphics_animation.prompt
960964
t: Libraries dedicated to graphics and animation.
961965
- key: tools.graphics_animation.others
962966
t: Other Graphics & Animations Libraries
@@ -1033,6 +1037,8 @@ translations:
10331037

10341038
- key: tools.backend_frameworks
10351039
aliasFor: sections.back_end_frameworks.title
1040+
- key: tools.backend_frameworks.question
1041+
t: Which back-end frameworks do you use?
10361042
- key: tools.backend_frameworks.description
10371043
t: Frameworks for generating APIs and managing back-ends
10381044
- key: tools.backend_frameworks.others
@@ -1165,24 +1171,24 @@ translations:
11651171
- key: options.js_ts_balance.8
11661172
t: 100% TS
11671173

1168-
- key: options.js_ts_balance.0.description
1169-
aliasFor: options.slider.0.description
1170-
- key: options.js_ts_balance.1.description
1171-
aliasFor: options.slider.1.description
1172-
- key: options.js_ts_balance.2.description
1173-
aliasFor: options.slider.2.description
1174-
- key: options.js_ts_balance.3.description
1175-
aliasFor: options.slider.3.description
1176-
- key: options.js_ts_balance.4.description
1177-
aliasFor: options.slider.4.description
1178-
- key: options.js_ts_balance.5.description
1179-
aliasFor: options.slider.5.description
1180-
- key: options.js_ts_balance.6.description
1181-
aliasFor: options.slider.6.description
1182-
- key: options.js_ts_balance.7.description
1183-
aliasFor: options.slider.7.description
1184-
- key: options.js_ts_balance.8.description
1185-
aliasFor: options.slider.8.description
1174+
# - key: options.js_ts_balance.0.description
1175+
# aliasFor: options.slider.0.description
1176+
# - key: options.js_ts_balance.1.description
1177+
# aliasFor: options.slider.1.description
1178+
# - key: options.js_ts_balance.2.description
1179+
# aliasFor: options.slider.2.description
1180+
# - key: options.js_ts_balance.3.description
1181+
# aliasFor: options.slider.3.description
1182+
# - key: options.js_ts_balance.4.description
1183+
# aliasFor: options.slider.4.description
1184+
# - key: options.js_ts_balance.5.description
1185+
# aliasFor: options.slider.5.description
1186+
# - key: options.js_ts_balance.6.description
1187+
# aliasFor: options.slider.6.description
1188+
# - key: options.js_ts_balance.7.description
1189+
# aliasFor: options.slider.7.description
1190+
# - key: options.js_ts_balance.8.description
1191+
# aliasFor: options.slider.8.description
11861192

11871193
# ai_generated_code_balance
11881194

@@ -1302,6 +1308,19 @@ translations:
13021308
- key: options.native_types_proposal.no_types
13031309
t: I would not like to see them implemented
13041310

1311+
- key: options.native_types_proposal.runtime_types
1312+
t: Runtime types
1313+
- key: options.native_types_proposal.runtime_types.description
1314+
t: Types that are parsed at runtime by the browser.
1315+
- key: options.native_types_proposal.type_annotations
1316+
t: Type annotations
1317+
- key: options.native_types_proposal.type_annotations.description
1318+
t: Compiler-level TypeScript-like type annotations that get stripped during bundling.
1319+
- key: options.native_types_proposal.jsdoc_types
1320+
t: JSDoc-like types
1321+
- key: options.native_types_proposal.jsdoc_types.description
1322+
t: JSDoc-like types written as code comments.
1323+
13051324
- key: usage.js_new_features
13061325
t: New Proposals
13071326
- key: usage.js_new_features.question
@@ -1334,8 +1353,15 @@ translations:
13341353
t: I would like JavaScript to be my main programming language
13351354

13361355
- key: opinions.js_ecosystem_changing_to_fast
1356+
t: Pace of Change
1357+
- key: opinions.js_ecosystem_changing_to_fast.question
13371358
t: The JavaScript ecosystem is changing too fast
13381359

1360+
- key: opinions.prefer_no_build_step
1361+
t: Build Step
1362+
- key: opinions.prefer_no_build_step.question
1363+
t: I would prefer using JavaScript with no build step
1364+
13391365
- key: opinions_others.missing_from_js.others
13401366
t: What do you feel is currently missing from JavaScript?
13411367
- key: opinions_others.missing_from_js.others.description

0 commit comments

Comments
 (0)