Skip to content

Commit 5b7345a

Browse files
authored
chore(i18n,client): processed translations (freeCodeCamp#66502)
1 parent 9356588 commit 5b7345a

20 files changed

Lines changed: 1338 additions & 110 deletions

File tree

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

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1064,6 +1064,97 @@
10641064
}
10651065
}
10661066
},
1067+
"learn-rag-mcp-fundamentals": {
1068+
"title": "Learn RAG and MCP Fundamentals",
1069+
"summary": [
1070+
"Learn the fundamentals of RAG and MCP in this comprehensive video course."
1071+
],
1072+
"intro": [
1073+
"RAG stands for Retrieval-Augmented Generation. MCP stands for Model Context Protocol. These are powerful frameworks for building AI agents that can retrieve information from a knowledge base, generate responses based on that information, and plan their actions accordingly.",
1074+
"In this course, you'll learn the fundamentals of RAG and MCP and how to implement them in your own projects. You'll explore the components of RAG and MCP, including retrieval, generation, memory, context, and planning. By the end of this course, you'll have a solid understanding of how RAG and MCP work and how to use them to build intelligent agents."
1075+
],
1076+
"note": "",
1077+
"blocks": {
1078+
"understanding-rag": {
1079+
"title": "Understanding RAG",
1080+
"intro": [
1081+
"Learn the fundamentals of Retrieval-Augmented Generation (RAG), including what it is, when to use it, and core concepts."
1082+
]
1083+
},
1084+
"retrieval-engine-internals": {
1085+
"title": "Retrieval Engine Internals",
1086+
"intro": [
1087+
"Dive into semantic search, embedding models, vector databases, and chunking to understand how retrieval works under the hood."
1088+
]
1089+
},
1090+
"designing-reliable-rag-systems": {
1091+
"title": "Designing Reliable RAG Systems",
1092+
"intro": [
1093+
"Explore RAG architecture, monitoring, error handling, and how to deploy RAG systems in production."
1094+
]
1095+
},
1096+
"mcp-ecosystem-and-tooling": {
1097+
"title": "MCP Ecosystem & Tooling",
1098+
"intro": [
1099+
"Learn why MCP exists, its architecture, JSON-RPC, and how to build and use MCP servers and clients effectively."
1100+
]
1101+
}
1102+
}
1103+
},
1104+
"introduction-to-precalculus": {
1105+
"title": "Introduction to Precalculus",
1106+
"summary": [
1107+
"Learn the fundamentals of precalculus, including functions, and trigonometry."
1108+
],
1109+
"intro": [
1110+
"Precalculus is a branch of mathematics that prepares you for calculus. It covers a wide range of topics including functions, and trigonometry."
1111+
],
1112+
"note": "",
1113+
"blocks": {
1114+
"function-basics": {
1115+
"title": "Function Basics",
1116+
"intro": [
1117+
"In these videos, you will learn about functions and how to work with them."
1118+
]
1119+
},
1120+
"angles-and-circular-motion": {
1121+
"title": "Angles and Circular Motion",
1122+
"intro": [
1123+
"In these videos, you will learn about angles and circular motion."
1124+
]
1125+
},
1126+
"right-triangle-trigonometry": {
1127+
"title": "Right Triangle Trigonometry",
1128+
"intro": [
1129+
"In these videos, you will learn about right triangle trigonometry and how to work with it."
1130+
]
1131+
},
1132+
"trig-graphs-inverses": {
1133+
"title": "Trigonometric Graphs and Inverses",
1134+
"intro": [
1135+
"In these videos, you will learn about trigonometric graphs and inverse functions."
1136+
]
1137+
},
1138+
"solving-trig-equations": {
1139+
"title": "Solving Trigonometric Equations",
1140+
"intro": [
1141+
"In these videos, you will learn how to solve trigonometric equations."
1142+
]
1143+
},
1144+
"trig-identities-formulas": {
1145+
"title": "Trigonometric Identities and Formulas",
1146+
"intro": [
1147+
"In these videos, you will learn about trigonometric identities and formulas."
1148+
]
1149+
},
1150+
"advanced-trig-conics": {
1151+
"title": "Advanced Trigonometry and Conics",
1152+
"intro": [
1153+
"In these videos, you will learn about advanced trigonometry and conic sections."
1154+
]
1155+
}
1156+
}
1157+
},
10671158
"introduction-to-bash": {
10681159
"title": "Introduction to Bash",
10691160
"summary": [
@@ -2750,6 +2841,12 @@
27502841
"在本工作坊中,你將通過構建一個句子分析應用來複習如何使用 JavaScript 循環。"
27512842
]
27522843
},
2844+
"workshop-space-mission-roster": {
2845+
"title": "Build a Space Mission Roster",
2846+
"intro": [
2847+
"In this workshop, you'll leverage JavaScript loops to build a space mission roster."
2848+
]
2849+
},
27532850
"lab-longest-word-in-a-string": {
27542851
"title": "創建一個最長單詞查找應用",
27552852
"intro": [
@@ -3506,6 +3603,12 @@
35063603
"In this lab you will implement the quicksort algorithm to sort an array of integers."
35073604
]
35083605
},
3606+
"review-searching-and-sorting-algorithms-js": {
3607+
"title": "Searching and Sorting Algorithms Review",
3608+
"intro": [
3609+
"Before you are quizzed on Algorithms, you should review what you've learned about searching and sorting algorithms."
3610+
]
3611+
},
35093612
"lecture-understanding-graphs-and-trees-js": {
35103613
"title": "Understanding Graphs and Trees",
35113614
"intro": [
@@ -3518,12 +3621,25 @@
35183621
"In this lab, you will implement a function that converts an adjacency list representation of a graph into an adjacency matrix representation."
35193622
]
35203623
},
3624+
"lab-depth-first-search-js": {
3625+
"title": "Implement the Depth-First Search Algorithm",
3626+
"intro": [
3627+
"In this lab, you will implement a solution for the depth-first search algorithm."
3628+
]
3629+
},
35213630
"lab-n-queens-problem-js": {
35223631
"title": "Implement the N-Queens Problem",
35233632
"intro": [
35243633
"In this lab, you will implement a solution for the N-Queens problem."
35253634
]
35263635
},
3636+
"review-graphs-and-trees-js": {
3637+
"title": "Graphs and Trees Review",
3638+
"intro": [
3639+
"Graphs and Trees Review",
3640+
"Before you are quizzed on graphs and trees, you should review what you've learned."
3641+
]
3642+
},
35273643
"lecture-understanding-dynamic-programming-js": {
35283644
"title": "Understanding Dynamic Programming",
35293645
"intro": [
@@ -4876,6 +4992,10 @@
48764992
"Learn about npm scripts, publishing packages to the npm registry, and working with CommonJS and ES modules. These lessons cover essential Node.js development tools and module systems."
48774993
]
48784994
},
4995+
"quiz-npm": {
4996+
"title": "NPM Quiz",
4997+
"intro": ["Test what you have learned about npm in this quiz."]
4998+
},
48794999
"lecture-understanding-how-http-dns-tcpip-work": {
48805000
"title": "Understanding how HTTP, DNS and TCP/IP work",
48815001
"intro": [

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1276,6 +1276,8 @@
12761276
"foundational-c-sharp-with-microsoft-cert": "微軟基礎 C# 認證",
12771277
"learn-python-for-beginners": "學習 Python 基礎",
12781278
"introduction-to-algorithms-and-data-structures": "算法和數據結構",
1279+
"learn-rag-mcp-fundamentals": "Learn RAG and MCP Fundamentals",
1280+
"introduction-to-precalculus": "Introduction to Precalculus",
12791281
"learn-prompting-fundamentals": "Learn Prompting Fundamentals",
12801282
"a2-english-for-developers": "開發者 A2 英語",
12811283
"a2-english-for-developers-cert": "A2 開發者英語認證(測試版)",
@@ -1471,6 +1473,7 @@
14711473
"information-security": "信息安全",
14721474
"computer-fundamentals": "計算機基礎",
14731475
"computer-science": "計算機科學",
1476+
"math": "Math",
14741477
"databases": "Databases",
14751478
"bash": "Bash",
14761479
"git": "Git",

client/i18n/locales/chinese/intro.json

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1064,6 +1064,97 @@
10641064
}
10651065
}
10661066
},
1067+
"learn-rag-mcp-fundamentals": {
1068+
"title": "Learn RAG and MCP Fundamentals",
1069+
"summary": [
1070+
"Learn the fundamentals of RAG and MCP in this comprehensive video course."
1071+
],
1072+
"intro": [
1073+
"RAG stands for Retrieval-Augmented Generation. MCP stands for Model Context Protocol. These are powerful frameworks for building AI agents that can retrieve information from a knowledge base, generate responses based on that information, and plan their actions accordingly.",
1074+
"In this course, you'll learn the fundamentals of RAG and MCP and how to implement them in your own projects. You'll explore the components of RAG and MCP, including retrieval, generation, memory, context, and planning. By the end of this course, you'll have a solid understanding of how RAG and MCP work and how to use them to build intelligent agents."
1075+
],
1076+
"note": "",
1077+
"blocks": {
1078+
"understanding-rag": {
1079+
"title": "Understanding RAG",
1080+
"intro": [
1081+
"Learn the fundamentals of Retrieval-Augmented Generation (RAG), including what it is, when to use it, and core concepts."
1082+
]
1083+
},
1084+
"retrieval-engine-internals": {
1085+
"title": "Retrieval Engine Internals",
1086+
"intro": [
1087+
"Dive into semantic search, embedding models, vector databases, and chunking to understand how retrieval works under the hood."
1088+
]
1089+
},
1090+
"designing-reliable-rag-systems": {
1091+
"title": "Designing Reliable RAG Systems",
1092+
"intro": [
1093+
"Explore RAG architecture, monitoring, error handling, and how to deploy RAG systems in production."
1094+
]
1095+
},
1096+
"mcp-ecosystem-and-tooling": {
1097+
"title": "MCP Ecosystem & Tooling",
1098+
"intro": [
1099+
"Learn why MCP exists, its architecture, JSON-RPC, and how to build and use MCP servers and clients effectively."
1100+
]
1101+
}
1102+
}
1103+
},
1104+
"introduction-to-precalculus": {
1105+
"title": "Introduction to Precalculus",
1106+
"summary": [
1107+
"Learn the fundamentals of precalculus, including functions, and trigonometry."
1108+
],
1109+
"intro": [
1110+
"Precalculus is a branch of mathematics that prepares you for calculus. It covers a wide range of topics including functions, and trigonometry."
1111+
],
1112+
"note": "",
1113+
"blocks": {
1114+
"function-basics": {
1115+
"title": "Function Basics",
1116+
"intro": [
1117+
"In these videos, you will learn about functions and how to work with them."
1118+
]
1119+
},
1120+
"angles-and-circular-motion": {
1121+
"title": "Angles and Circular Motion",
1122+
"intro": [
1123+
"In these videos, you will learn about angles and circular motion."
1124+
]
1125+
},
1126+
"right-triangle-trigonometry": {
1127+
"title": "Right Triangle Trigonometry",
1128+
"intro": [
1129+
"In these videos, you will learn about right triangle trigonometry and how to work with it."
1130+
]
1131+
},
1132+
"trig-graphs-inverses": {
1133+
"title": "Trigonometric Graphs and Inverses",
1134+
"intro": [
1135+
"In these videos, you will learn about trigonometric graphs and inverse functions."
1136+
]
1137+
},
1138+
"solving-trig-equations": {
1139+
"title": "Solving Trigonometric Equations",
1140+
"intro": [
1141+
"In these videos, you will learn how to solve trigonometric equations."
1142+
]
1143+
},
1144+
"trig-identities-formulas": {
1145+
"title": "Trigonometric Identities and Formulas",
1146+
"intro": [
1147+
"In these videos, you will learn about trigonometric identities and formulas."
1148+
]
1149+
},
1150+
"advanced-trig-conics": {
1151+
"title": "Advanced Trigonometry and Conics",
1152+
"intro": [
1153+
"In these videos, you will learn about advanced trigonometry and conic sections."
1154+
]
1155+
}
1156+
}
1157+
},
10671158
"introduction-to-bash": {
10681159
"title": "Introduction to Bash",
10691160
"summary": [
@@ -2750,6 +2841,12 @@
27502841
"在本工作坊中,你将通过构建一个句子分析应用来复习如何使用 JavaScript 循环。"
27512842
]
27522843
},
2844+
"workshop-space-mission-roster": {
2845+
"title": "Build a Space Mission Roster",
2846+
"intro": [
2847+
"In this workshop, you'll leverage JavaScript loops to build a space mission roster."
2848+
]
2849+
},
27532850
"lab-longest-word-in-a-string": {
27542851
"title": "创建一个最长单词查找应用",
27552852
"intro": [
@@ -3506,6 +3603,12 @@
35063603
"In this lab you will implement the quicksort algorithm to sort an array of integers."
35073604
]
35083605
},
3606+
"review-searching-and-sorting-algorithms-js": {
3607+
"title": "Searching and Sorting Algorithms Review",
3608+
"intro": [
3609+
"Before you are quizzed on Algorithms, you should review what you've learned about searching and sorting algorithms."
3610+
]
3611+
},
35093612
"lecture-understanding-graphs-and-trees-js": {
35103613
"title": "Understanding Graphs and Trees",
35113614
"intro": [
@@ -3518,12 +3621,25 @@
35183621
"In this lab, you will implement a function that converts an adjacency list representation of a graph into an adjacency matrix representation."
35193622
]
35203623
},
3624+
"lab-depth-first-search-js": {
3625+
"title": "Implement the Depth-First Search Algorithm",
3626+
"intro": [
3627+
"In this lab, you will implement a solution for the depth-first search algorithm."
3628+
]
3629+
},
35213630
"lab-n-queens-problem-js": {
35223631
"title": "Implement the N-Queens Problem",
35233632
"intro": [
35243633
"In this lab, you will implement a solution for the N-Queens problem."
35253634
]
35263635
},
3636+
"review-graphs-and-trees-js": {
3637+
"title": "Graphs and Trees Review",
3638+
"intro": [
3639+
"Graphs and Trees Review",
3640+
"Before you are quizzed on graphs and trees, you should review what you've learned."
3641+
]
3642+
},
35273643
"lecture-understanding-dynamic-programming-js": {
35283644
"title": "Understanding Dynamic Programming",
35293645
"intro": [
@@ -4876,6 +4992,10 @@
48764992
"Learn about npm scripts, publishing packages to the npm registry, and working with CommonJS and ES modules. These lessons cover essential Node.js development tools and module systems."
48774993
]
48784994
},
4995+
"quiz-npm": {
4996+
"title": "NPM Quiz",
4997+
"intro": ["Test what you have learned about npm in this quiz."]
4998+
},
48794999
"lecture-understanding-how-http-dns-tcpip-work": {
48805000
"title": "Understanding how HTTP, DNS and TCP/IP work",
48815001
"intro": [

client/i18n/locales/chinese/translations.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1276,6 +1276,8 @@
12761276
"foundational-c-sharp-with-microsoft-cert": "微软基础 C# 认证",
12771277
"learn-python-for-beginners": "学习 Python 基础",
12781278
"introduction-to-algorithms-and-data-structures": "算法和数据结构",
1279+
"learn-rag-mcp-fundamentals": "Learn RAG and MCP Fundamentals",
1280+
"introduction-to-precalculus": "Introduction to Precalculus",
12791281
"learn-prompting-fundamentals": "Learn Prompting Fundamentals",
12801282
"a2-english-for-developers": "开发者 A2 英语",
12811283
"a2-english-for-developers-cert": "A2 开发者英语认证(测试版)",
@@ -1471,6 +1473,7 @@
14711473
"information-security": "信息安全",
14721474
"computer-fundamentals": "计算机基础",
14731475
"computer-science": "计算机科学",
1476+
"math": "Math",
14741477
"databases": "Databases",
14751478
"bash": "Bash",
14761479
"git": "Git",

0 commit comments

Comments
 (0)