Skip to content

Commit 4a44093

Browse files
authored
chore(i18n,client): processed translations (freeCodeCamp#61492)
1 parent 3e1da8f commit 4a44093

File tree

10 files changed

+680
-70
lines changed

10 files changed

+680
-70
lines changed

client/i18n/locales/chinese-traditional/intro.json

Lines changed: 68 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3025,10 +3025,34 @@
30253025
"title": "JavaScript Strings Quiz",
30263026
"intro": ["Test your knowledge of JavaScript strings with this quiz."]
30273027
},
3028-
"lecture-working-with-numbers-booleans-and-the-math-object": {
3029-
"title": "Working with Numbers, Booleans, and the Math Object",
3028+
"lecture-working-with-numbers-and-arithmetic-operators": {
3029+
"title": "Working with Numbers and Arithmetic Operators",
30303030
"intro": [
3031-
"In these lecture videos, you will dive into the fundamentals of JavaScript. These include numbers, booleans, and the <code>Math</code> object. You will learn about different types of numbers, how arithmetic and comparison operators work, how JavaScript behaves when you combine strings and numbers in calculations, and much more."
3031+
"In these lectures you will learn about the number type, arithmetic operators, and using them with numbers and strings."
3032+
]
3033+
},
3034+
"lecture-working-with-operator-behavior": {
3035+
"title": "Working with Operator Behavior",
3036+
"intro": [
3037+
"In these lectures you will learn about operator precedence, the increment and decrement operators, and compound assignment operators."
3038+
]
3039+
},
3040+
"lecture-working-with-comparison-and-boolean-operators": {
3041+
"title": "Working with Comparison and Boolean Operators",
3042+
"intro": [
3043+
"In these lectures you will learn about booleans, and equality and inequality operators, and other comparison operators."
3044+
]
3045+
},
3046+
"lecture-working-with-unary-and-bitwise-operators": {
3047+
"title": "Working with Unary and Bitwise Operators",
3048+
"intro": [
3049+
"In these lectures you will learn about unary and bitwise operators."
3050+
]
3051+
},
3052+
"lecture-working-with-conditional-logic-and-math-methods": {
3053+
"title": "Working with Conditional Logic and Math Methods",
3054+
"intro": [
3055+
"In these lectures you will learn about conditional statements, binary logical operators, and the <code>Math</code> object."
30323056
]
30333057
},
30343058
"workshop-mathbot": {
@@ -3094,6 +3118,12 @@
30943118
"In this workshop, you will review your knowledge of functions by building a calculator."
30953119
]
30963120
},
3121+
"lab-boolean-check": {
3122+
"title": "Build a Boolean Check Function",
3123+
"intro": [
3124+
"In this lab, you'll implement a function that checks if a value is a boolean."
3125+
]
3126+
},
30973127
"lab-email-masker": {
30983128
"title": "Build an Email Masker",
30993129
"intro": [
@@ -3126,6 +3156,12 @@
31263156
"In this lab, you will practice truncating a string at a certain length."
31273157
]
31283158
},
3159+
"lab-string-ending-checker": {
3160+
"title": "Build a Confirm the Ending Tool",
3161+
"intro": [
3162+
"In this lab, you will implement a function that checks if a given string ends with a specified target string."
3163+
]
3164+
},
31293165
"review-javascript-functions": {
31303166
"title": "JavaScript Functions Review",
31313167
"intro": [
@@ -3221,6 +3257,12 @@
32213257
"In this workshop, you'll review how to work with JavaScript loops by building a sentence analyzer app."
32223258
]
32233259
},
3260+
"lab-longest-word-in-a-string": {
3261+
"title": "Build a Longest Word Finder App",
3262+
"intro": [
3263+
"In this lab, you will use JavaScript loops to find the length of the longest word in the given sentence."
3264+
]
3265+
},
32243266
"lab-factorial-calculator": {
32253267
"title": "Build a Factorial Calculator ",
32263268
"intro": [
@@ -3269,6 +3311,12 @@
32693311
"In this lab, you will use JavaScript fundamentals to create a function that finds the largest number in each sub-array of a given array."
32703312
]
32713313
},
3314+
"lab-first-element-finder": {
3315+
"title": "Build a First Element Finder",
3316+
"intro": [
3317+
"In this lab, you will create a function that looks through an array and returns the first element in it that passes a \"truth test\"."
3318+
]
3319+
},
32723320
"lab-slice-and-splice": {
32733321
"title": "Implement the Slice and Splice Algorithm",
32743322
"intro": [
@@ -3445,6 +3493,13 @@
34453493
"In this workshop, you will build a dynamic tabbed interface that showcases facts about the planets in the solar system."
34463494
]
34473495
},
3496+
"workshop-note-taking-app": {
3497+
"title": "Build a Note Taking App",
3498+
"intro": [
3499+
"In this workshop, you are going to build an accessible note taking app.",
3500+
"This will provide you with the opportunity to practice working with <code>aria-live</code> attribute."
3501+
]
3502+
},
34483503
"review-js-a11y": {
34493504
"title": "JavaScript and Accessibility Review",
34503505
"intro": [
@@ -4245,7 +4300,7 @@
42454300
"title": "Classes and Objects Review",
42464301
"intro": [
42474302
"Before you're quizzed on classes and objects, you should review what you've learned about them.",
4248-
"[Add more details]"
4303+
"Open up this page to review concepts like how classes work, what are objects, methods, attributes, special methods and more."
42494304
]
42504305
},
42514306
"quiz-classes-and-objects": {
@@ -4462,6 +4517,12 @@
44624517
"title": "Python Review",
44634518
"intro": ["Review Python concepts to prepare for the upcoming exam."]
44644519
},
4520+
"lecture-understanding-the-command-line-and-working-with-bash": {
4521+
"title": "Understanding the Command Line and Working with Bash",
4522+
"intro": [
4523+
"Learn about the Command Line and Working with Bash in these lectures."
4524+
]
4525+
},
44654526
"workshop-bash-boilerplate": {
44664527
"title": "Build a Boilerplate",
44674528
"intro": [
@@ -4508,9 +4569,9 @@
45084569
"Test what you've learned on relational databases with this quiz."
45094570
]
45104571
},
4511-
"pexz": {
4512-
"title": "311",
4513-
"intro": []
4572+
"lecture-understanding-bash-scripting": {
4573+
"title": "Understanding Bash Scripting",
4574+
"intro": ["Learn about Bash Scripting in these lectures."]
45144575
},
45154576
"workshop-bash-five-programs": {
45164577
"title": "Build Five Programs",

client/i18n/locales/chinese/intro.json

Lines changed: 68 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3025,10 +3025,34 @@
30253025
"title": "JavaScript Strings Quiz",
30263026
"intro": ["Test your knowledge of JavaScript strings with this quiz."]
30273027
},
3028-
"lecture-working-with-numbers-booleans-and-the-math-object": {
3029-
"title": "Working with Numbers, Booleans, and the Math Object",
3028+
"lecture-working-with-numbers-and-arithmetic-operators": {
3029+
"title": "Working with Numbers and Arithmetic Operators",
30303030
"intro": [
3031-
"In these lecture videos, you will dive into the fundamentals of JavaScript. These include numbers, booleans, and the <code>Math</code> object. You will learn about different types of numbers, how arithmetic and comparison operators work, how JavaScript behaves when you combine strings and numbers in calculations, and much more."
3031+
"In these lectures you will learn about the number type, arithmetic operators, and using them with numbers and strings."
3032+
]
3033+
},
3034+
"lecture-working-with-operator-behavior": {
3035+
"title": "Working with Operator Behavior",
3036+
"intro": [
3037+
"In these lectures you will learn about operator precedence, the increment and decrement operators, and compound assignment operators."
3038+
]
3039+
},
3040+
"lecture-working-with-comparison-and-boolean-operators": {
3041+
"title": "Working with Comparison and Boolean Operators",
3042+
"intro": [
3043+
"In these lectures you will learn about booleans, and equality and inequality operators, and other comparison operators."
3044+
]
3045+
},
3046+
"lecture-working-with-unary-and-bitwise-operators": {
3047+
"title": "Working with Unary and Bitwise Operators",
3048+
"intro": [
3049+
"In these lectures you will learn about unary and bitwise operators."
3050+
]
3051+
},
3052+
"lecture-working-with-conditional-logic-and-math-methods": {
3053+
"title": "Working with Conditional Logic and Math Methods",
3054+
"intro": [
3055+
"In these lectures you will learn about conditional statements, binary logical operators, and the <code>Math</code> object."
30323056
]
30333057
},
30343058
"workshop-mathbot": {
@@ -3094,6 +3118,12 @@
30943118
"In this workshop, you will review your knowledge of functions by building a calculator."
30953119
]
30963120
},
3121+
"lab-boolean-check": {
3122+
"title": "Build a Boolean Check Function",
3123+
"intro": [
3124+
"In this lab, you'll implement a function that checks if a value is a boolean."
3125+
]
3126+
},
30973127
"lab-email-masker": {
30983128
"title": "Build an Email Masker",
30993129
"intro": [
@@ -3126,6 +3156,12 @@
31263156
"In this lab, you will practice truncating a string at a certain length."
31273157
]
31283158
},
3159+
"lab-string-ending-checker": {
3160+
"title": "Build a Confirm the Ending Tool",
3161+
"intro": [
3162+
"In this lab, you will implement a function that checks if a given string ends with a specified target string."
3163+
]
3164+
},
31293165
"review-javascript-functions": {
31303166
"title": "JavaScript Functions Review",
31313167
"intro": [
@@ -3221,6 +3257,12 @@
32213257
"In this workshop, you'll review how to work with JavaScript loops by building a sentence analyzer app."
32223258
]
32233259
},
3260+
"lab-longest-word-in-a-string": {
3261+
"title": "Build a Longest Word Finder App",
3262+
"intro": [
3263+
"In this lab, you will use JavaScript loops to find the length of the longest word in the given sentence."
3264+
]
3265+
},
32243266
"lab-factorial-calculator": {
32253267
"title": "Build a Factorial Calculator ",
32263268
"intro": [
@@ -3269,6 +3311,12 @@
32693311
"In this lab, you will use JavaScript fundamentals to create a function that finds the largest number in each sub-array of a given array."
32703312
]
32713313
},
3314+
"lab-first-element-finder": {
3315+
"title": "Build a First Element Finder",
3316+
"intro": [
3317+
"In this lab, you will create a function that looks through an array and returns the first element in it that passes a \"truth test\"."
3318+
]
3319+
},
32723320
"lab-slice-and-splice": {
32733321
"title": "Implement the Slice and Splice Algorithm",
32743322
"intro": [
@@ -3445,6 +3493,13 @@
34453493
"In this workshop, you will build a dynamic tabbed interface that showcases facts about the planets in the solar system."
34463494
]
34473495
},
3496+
"workshop-note-taking-app": {
3497+
"title": "Build a Note Taking App",
3498+
"intro": [
3499+
"In this workshop, you are going to build an accessible note taking app.",
3500+
"This will provide you with the opportunity to practice working with <code>aria-live</code> attribute."
3501+
]
3502+
},
34483503
"review-js-a11y": {
34493504
"title": "JavaScript and Accessibility Review",
34503505
"intro": [
@@ -4245,7 +4300,7 @@
42454300
"title": "Classes and Objects Review",
42464301
"intro": [
42474302
"Before you're quizzed on classes and objects, you should review what you've learned about them.",
4248-
"[Add more details]"
4303+
"Open up this page to review concepts like how classes work, what are objects, methods, attributes, special methods and more."
42494304
]
42504305
},
42514306
"quiz-classes-and-objects": {
@@ -4462,6 +4517,12 @@
44624517
"title": "Python Review",
44634518
"intro": ["Review Python concepts to prepare for the upcoming exam."]
44644519
},
4520+
"lecture-understanding-the-command-line-and-working-with-bash": {
4521+
"title": "Understanding the Command Line and Working with Bash",
4522+
"intro": [
4523+
"Learn about the Command Line and Working with Bash in these lectures."
4524+
]
4525+
},
44654526
"workshop-bash-boilerplate": {
44664527
"title": "Build a Boilerplate",
44674528
"intro": [
@@ -4508,9 +4569,9 @@
45084569
"Test what you've learned on relational databases with this quiz."
45094570
]
45104571
},
4511-
"pexz": {
4512-
"title": "311",
4513-
"intro": []
4572+
"lecture-understanding-bash-scripting": {
4573+
"title": "Understanding Bash Scripting",
4574+
"intro": ["Learn about Bash Scripting in these lectures."]
45144575
},
45154576
"workshop-bash-five-programs": {
45164577
"title": "Build Five Programs",

0 commit comments

Comments
 (0)