Skip to content

Commit 6633f57

Browse files
author
Sacha Greif
committed
add strings
1 parent ea6b7e7 commit 6633f57

File tree

2 files changed

+67
-4
lines changed

2 files changed

+67
-4
lines changed

common.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1902,7 +1902,7 @@ translations:
19021902
- key: resources.courses
19031903
t: Courses & Training Material
19041904
- key: resources.courses.question
1905-
t: Which course or other material (videos, books, etc.) have you used?
1905+
t: Which courses or training material (videos, books, etc.) have you used to learn JavaScript?
19061906
- key: options.courses.na
19071907
t: 🚫 None
19081908
- key: resources.courses.placeholder

state_of_js.yml

Lines changed: 66 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,6 @@ translations:
131131
aliasFor: sections.meta_frameworks.title
132132
- key: tools.testing
133133
aliasFor: sections.testing.title
134-
- key: tools.mobile_desktop
135-
aliasFor: sections.mobile_desktop.title
136134
- key: tools.build_tools
137135
aliasFor: sections.build_tools.title
138136
- key: tools.monorepo_tools
@@ -997,7 +995,7 @@ translations:
997995
- key: tools.graphics_animation
998996
t: Graphics & Animations
999997
- key: tools.graphics_animation.question
1000-
t: Which graphics & animation libraries do you use?
998+
t: Which graphics & animation libraries do you regularly use?
1001999
- key: tools.graphics_animation.prompt
10021000
t: Libraries dedicated to graphics and animation.
10031001
- key: tools.graphics_animation.others
@@ -1165,6 +1163,16 @@ translations:
11651163
aliases:
11661164
- other_tools.hosting.question
11671165

1166+
- key: tools.mobile_desktop
1167+
aliasFor: sections.mobile_desktop.title
1168+
- key: tools.mobile_desktop.question
1169+
t: Which of these mobile or desktop app frameworks do you regularly use?
1170+
1171+
- key: tools.monorepo_tools
1172+
aliasFor: sections.monorepo_tools.title
1173+
- key: tools.monorepo_tools.question
1174+
t: Which of these monorepo tools do you regularly use?
1175+
11681176
###########################################################################
11691177
# Usage
11701178
###########################################################################
@@ -1286,6 +1294,61 @@ translations:
12861294
- key: options.compiled_code_balance.8
12871295
t: 100% Compiled
12881296

1297+
# build_step_advantages
1298+
- key: usage.build_step_advantages
1299+
t: Build Step Advantages
1300+
- key: usage.build_step_advantages.question
1301+
t: What do you feel are the main advantages resulting from using a build step?
1302+
- key: usage.build_step_advantages.prompt
1303+
t: Any code bundling, minifying, etc., as opposed to code directly executed by the browser.
1304+
1305+
- key: options.build_step_advantages.types
1306+
t: Static typing
1307+
- key: options.build_step_advantages.types.description
1308+
t: TypeScript, etc.
1309+
1310+
- key: options.build_step_advantages.developer_experience
1311+
t: Better development experience
1312+
- key: options.build_step_advantages.developer_experience.description
1313+
t: Hot Module Reloading, etc.
1314+
1315+
- key: options.build_step_advantages.transpilation
1316+
t: Template/component transpilation
1317+
- key: options.build_step_advantages.transpilation.description
1318+
t: JSX, Vue components, Svelte components, etc.
1319+
1320+
- key: options.build_step_advantages.bundling
1321+
t: Bundling
1322+
- key: options.build_step_advantages.bundling.description
1323+
t: Bundling multiple files into a single payload.
1324+
1325+
- key: options.build_step_advantages.optimization
1326+
t: Code optimization
1327+
- key: options.build_step_advantages.optimization.description
1328+
t: Minification, tree-shaking, code splitting, etc.
1329+
1330+
- key: options.build_step_advantages.compatibility
1331+
t: Browser compatibility
1332+
- key: options.build_step_advantages.compatibility.description
1333+
t: Polyfills, shims, etc.
1334+
1335+
- key: options.build_step_advantages.assets
1336+
t: Asset processing
1337+
- key: options.build_step_advantages.assets.description
1338+
t: Handling non-JS assets such as CSS, images, etc.
1339+
1340+
- key: options.build_step_advantages.linting
1341+
t: Linting
1342+
- key: options.build_step_advantages.linting.description
1343+
t: Enforcing linters, formatters, etc.
1344+
1345+
- key: options.build_step_advantages.environment_support
1346+
t: Environment management
1347+
- key: options.build_step_advantages.environment_support.description
1348+
t: Support for environment variables, different configurations, etc.
1349+
1350+
# edge_runtimes
1351+
12891352
- key: tools.edge_runtimes
12901353
t: JavaScript Edge/Serverless Runtimes
12911354
aliases:

0 commit comments

Comments
 (0)