From a0429f71017861727626ab81c51db34c0ef830ba Mon Sep 17 00:00:00 2001 From: freeCodeCamp's Camper Bot Date: Tue, 19 Aug 2025 01:19:33 +0530 Subject: [PATCH] chore(i18n,client): processed translations (#61860) --- .../locales/chinese-traditional/intro.json | 26 +++++++-- .../chinese-traditional/translations.json | 1 - client/i18n/locales/chinese/intro.json | 26 +++++++-- client/i18n/locales/chinese/translations.json | 1 - client/i18n/locales/espanol/intro.json | 26 +++++++-- client/i18n/locales/espanol/translations.json | 1 - client/i18n/locales/german/intro.json | 26 +++++++-- client/i18n/locales/german/translations.json | 1 - client/i18n/locales/italian/intro.json | 26 +++++++-- client/i18n/locales/italian/translations.json | 1 - client/i18n/locales/japanese/intro.json | 26 +++++++-- .../i18n/locales/japanese/translations.json | 1 - client/i18n/locales/korean/intro.json | 26 +++++++-- client/i18n/locales/korean/translations.json | 1 - client/i18n/locales/portuguese/intro.json | 26 +++++++-- .../i18n/locales/portuguese/translations.json | 1 - client/i18n/locales/swahili/intro.json | 26 +++++++-- client/i18n/locales/swahili/translations.json | 1 - client/i18n/locales/ukrainian/intro.json | 26 +++++++-- .../i18n/locales/ukrainian/translations.json | 57 +++++++++---------- 20 files changed, 248 insertions(+), 78 deletions(-) diff --git a/client/i18n/locales/chinese-traditional/intro.json b/client/i18n/locales/chinese-traditional/intro.json index 71ad668affd..a507e14e84e 100644 --- a/client/i18n/locales/chinese-traditional/intro.json +++ b/client/i18n/locales/chinese-traditional/intro.json @@ -3014,10 +3014,28 @@ "You will learn how to work with template literals, and the indexOf method." ] }, - "lecture-working-with-common-string-methods": { - "title": "Working with Common String Methods", + "lecture-working-with-string-character-methods": { + "title": "Working with String Character Methods", "intro": [ - "In these lectures, you will learn about the common string methods available in JavaScript. The string methods will let you do things like extracting a part of a string, changing the casing for a string, replacing a part of a string, trimming whitespace from a string, and much more." + "In this lecture you will learn about ASCII character encoding and how to use JavaScript's charCodeAt() and fromCharCode() methods to convert between characters and their numerical ASCII values." + ] + }, + "lecture-working-with-string-search-and-slice-methods": { + "title": "Working with String Search and Slice Methods", + "intro": [ + "In this lecture you will learn how to search for substrings using the includes() method and how to extract portions of strings using the slice() method." + ] + }, + "lecture-working-with-string-formatting-methods": { + "title": "Working with String Formatting Methods", + "intro": [ + "In this lecture you will learn how to format strings by changing their case using toUpperCase() and toLowerCase() methods, and how to remove whitespace using trim(), trimStart(), and trimEnd() methods." + ] + }, + "lecture-working-with-string-modification-methods": { + "title": "Working with String Modification Methods", + "intro": [ + "In this lecture you will learn how to modify strings by replacing parts of them using the replace() method and how to repeat strings multiple times using the repeat() method." ] }, "review-javascript-strings": { @@ -4433,7 +4451,7 @@ "title": "Data Structures Review", "intro": [ "Before you're quizzed on data structures, you should review what you've learned about them.", - "[Add more details]" + "Open up this page to review concepts like the different data structures, algorithms, time and space complexity, and big O notation." ] }, "quiz-data-structures": { diff --git a/client/i18n/locales/chinese-traditional/translations.json b/client/i18n/locales/chinese-traditional/translations.json index 409bf4b01f1..06a45cff3e1 100644 --- a/client/i18n/locales/chinese-traditional/translations.json +++ b/client/i18n/locales/chinese-traditional/translations.json @@ -466,7 +466,6 @@ "answered-mcq": "你有未回答的問題和/或錯誤的答案。", "explanation": "解釋", "transcript": "文字記錄", - "video": "視頻", "solution-link": "解決方案鏈接", "source-code-link": "源代碼鏈接", "ms-link": "微軟的鏈接", diff --git a/client/i18n/locales/chinese/intro.json b/client/i18n/locales/chinese/intro.json index fb03b7279d8..8660eaddecf 100644 --- a/client/i18n/locales/chinese/intro.json +++ b/client/i18n/locales/chinese/intro.json @@ -3014,10 +3014,28 @@ "You will learn how to work with template literals, and the indexOf method." ] }, - "lecture-working-with-common-string-methods": { - "title": "Working with Common String Methods", + "lecture-working-with-string-character-methods": { + "title": "Working with String Character Methods", "intro": [ - "In these lectures, you will learn about the common string methods available in JavaScript. The string methods will let you do things like extracting a part of a string, changing the casing for a string, replacing a part of a string, trimming whitespace from a string, and much more." + "In this lecture you will learn about ASCII character encoding and how to use JavaScript's charCodeAt() and fromCharCode() methods to convert between characters and their numerical ASCII values." + ] + }, + "lecture-working-with-string-search-and-slice-methods": { + "title": "Working with String Search and Slice Methods", + "intro": [ + "In this lecture you will learn how to search for substrings using the includes() method and how to extract portions of strings using the slice() method." + ] + }, + "lecture-working-with-string-formatting-methods": { + "title": "Working with String Formatting Methods", + "intro": [ + "In this lecture you will learn how to format strings by changing their case using toUpperCase() and toLowerCase() methods, and how to remove whitespace using trim(), trimStart(), and trimEnd() methods." + ] + }, + "lecture-working-with-string-modification-methods": { + "title": "Working with String Modification Methods", + "intro": [ + "In this lecture you will learn how to modify strings by replacing parts of them using the replace() method and how to repeat strings multiple times using the repeat() method." ] }, "review-javascript-strings": { @@ -4433,7 +4451,7 @@ "title": "Data Structures Review", "intro": [ "Before you're quizzed on data structures, you should review what you've learned about them.", - "[Add more details]" + "Open up this page to review concepts like the different data structures, algorithms, time and space complexity, and big O notation." ] }, "quiz-data-structures": { diff --git a/client/i18n/locales/chinese/translations.json b/client/i18n/locales/chinese/translations.json index 70e77bfd870..68f0b49d9d5 100644 --- a/client/i18n/locales/chinese/translations.json +++ b/client/i18n/locales/chinese/translations.json @@ -466,7 +466,6 @@ "answered-mcq": "你有未回答的问题和/或错误的答案。", "explanation": "解释", "transcript": "文字记录", - "video": "视频", "solution-link": "解决方案链接", "source-code-link": "源代码链接", "ms-link": "微软的链接", diff --git a/client/i18n/locales/espanol/intro.json b/client/i18n/locales/espanol/intro.json index 1fdaf457f1f..d06fc2acfc6 100644 --- a/client/i18n/locales/espanol/intro.json +++ b/client/i18n/locales/espanol/intro.json @@ -3028,10 +3028,28 @@ "You will learn how to work with template literals, and the indexOf method." ] }, - "lecture-working-with-common-string-methods": { - "title": "Working with Common String Methods", + "lecture-working-with-string-character-methods": { + "title": "Working with String Character Methods", "intro": [ - "In these lectures, you will learn about the common string methods available in JavaScript. The string methods will let you do things like extracting a part of a string, changing the casing for a string, replacing a part of a string, trimming whitespace from a string, and much more." + "In this lecture you will learn about ASCII character encoding and how to use JavaScript's charCodeAt() and fromCharCode() methods to convert between characters and their numerical ASCII values." + ] + }, + "lecture-working-with-string-search-and-slice-methods": { + "title": "Working with String Search and Slice Methods", + "intro": [ + "In this lecture you will learn how to search for substrings using the includes() method and how to extract portions of strings using the slice() method." + ] + }, + "lecture-working-with-string-formatting-methods": { + "title": "Working with String Formatting Methods", + "intro": [ + "In this lecture you will learn how to format strings by changing their case using toUpperCase() and toLowerCase() methods, and how to remove whitespace using trim(), trimStart(), and trimEnd() methods." + ] + }, + "lecture-working-with-string-modification-methods": { + "title": "Working with String Modification Methods", + "intro": [ + "In this lecture you will learn how to modify strings by replacing parts of them using the replace() method and how to repeat strings multiple times using the repeat() method." ] }, "review-javascript-strings": { @@ -4447,7 +4465,7 @@ "title": "Data Structures Review", "intro": [ "Before you're quizzed on data structures, you should review what you've learned about them.", - "[Add more details]" + "Open up this page to review concepts like the different data structures, algorithms, time and space complexity, and big O notation." ] }, "quiz-data-structures": { diff --git a/client/i18n/locales/espanol/translations.json b/client/i18n/locales/espanol/translations.json index d2019f839bc..ac752652288 100644 --- a/client/i18n/locales/espanol/translations.json +++ b/client/i18n/locales/espanol/translations.json @@ -466,7 +466,6 @@ "answered-mcq": "You have unanswered questions and/or incorrect answers.", "explanation": "Explanation", "transcript": "Transcript", - "video": "Video", "solution-link": "Enlace a la solución", "source-code-link": "Enlace al código fuente", "ms-link": "Link de Microsoft", diff --git a/client/i18n/locales/german/intro.json b/client/i18n/locales/german/intro.json index de825750d95..9ae7a71df93 100644 --- a/client/i18n/locales/german/intro.json +++ b/client/i18n/locales/german/intro.json @@ -3028,10 +3028,28 @@ "You will learn how to work with template literals, and the indexOf method." ] }, - "lecture-working-with-common-string-methods": { - "title": "Working with Common String Methods", + "lecture-working-with-string-character-methods": { + "title": "Working with String Character Methods", "intro": [ - "In these lectures, you will learn about the common string methods available in JavaScript. The string methods will let you do things like extracting a part of a string, changing the casing for a string, replacing a part of a string, trimming whitespace from a string, and much more." + "In this lecture you will learn about ASCII character encoding and how to use JavaScript's charCodeAt() and fromCharCode() methods to convert between characters and their numerical ASCII values." + ] + }, + "lecture-working-with-string-search-and-slice-methods": { + "title": "Working with String Search and Slice Methods", + "intro": [ + "In this lecture you will learn how to search for substrings using the includes() method and how to extract portions of strings using the slice() method." + ] + }, + "lecture-working-with-string-formatting-methods": { + "title": "Working with String Formatting Methods", + "intro": [ + "In this lecture you will learn how to format strings by changing their case using toUpperCase() and toLowerCase() methods, and how to remove whitespace using trim(), trimStart(), and trimEnd() methods." + ] + }, + "lecture-working-with-string-modification-methods": { + "title": "Working with String Modification Methods", + "intro": [ + "In this lecture you will learn how to modify strings by replacing parts of them using the replace() method and how to repeat strings multiple times using the repeat() method." ] }, "review-javascript-strings": { @@ -4447,7 +4465,7 @@ "title": "Data Structures Review", "intro": [ "Before you're quizzed on data structures, you should review what you've learned about them.", - "[Add more details]" + "Open up this page to review concepts like the different data structures, algorithms, time and space complexity, and big O notation." ] }, "quiz-data-structures": { diff --git a/client/i18n/locales/german/translations.json b/client/i18n/locales/german/translations.json index 9e1f634846f..6c73b544c25 100644 --- a/client/i18n/locales/german/translations.json +++ b/client/i18n/locales/german/translations.json @@ -466,7 +466,6 @@ "answered-mcq": "You have unanswered questions and/or incorrect answers.", "explanation": "Explanation", "transcript": "Transcript", - "video": "Video", "solution-link": "Lösungs-Link", "source-code-link": "Source Code Link", "ms-link": "Microsoft Link", diff --git a/client/i18n/locales/italian/intro.json b/client/i18n/locales/italian/intro.json index 3c4303d5903..d9b9c189c4a 100644 --- a/client/i18n/locales/italian/intro.json +++ b/client/i18n/locales/italian/intro.json @@ -3028,10 +3028,28 @@ "You will learn how to work with template literals, and the indexOf method." ] }, - "lecture-working-with-common-string-methods": { - "title": "Working with Common String Methods", + "lecture-working-with-string-character-methods": { + "title": "Working with String Character Methods", "intro": [ - "In these lectures, you will learn about the common string methods available in JavaScript. The string methods will let you do things like extracting a part of a string, changing the casing for a string, replacing a part of a string, trimming whitespace from a string, and much more." + "In this lecture you will learn about ASCII character encoding and how to use JavaScript's charCodeAt() and fromCharCode() methods to convert between characters and their numerical ASCII values." + ] + }, + "lecture-working-with-string-search-and-slice-methods": { + "title": "Working with String Search and Slice Methods", + "intro": [ + "In this lecture you will learn how to search for substrings using the includes() method and how to extract portions of strings using the slice() method." + ] + }, + "lecture-working-with-string-formatting-methods": { + "title": "Working with String Formatting Methods", + "intro": [ + "In this lecture you will learn how to format strings by changing their case using toUpperCase() and toLowerCase() methods, and how to remove whitespace using trim(), trimStart(), and trimEnd() methods." + ] + }, + "lecture-working-with-string-modification-methods": { + "title": "Working with String Modification Methods", + "intro": [ + "In this lecture you will learn how to modify strings by replacing parts of them using the replace() method and how to repeat strings multiple times using the repeat() method." ] }, "review-javascript-strings": { @@ -4447,7 +4465,7 @@ "title": "Data Structures Review", "intro": [ "Before you're quizzed on data structures, you should review what you've learned about them.", - "[Add more details]" + "Open up this page to review concepts like the different data structures, algorithms, time and space complexity, and big O notation." ] }, "quiz-data-structures": { diff --git a/client/i18n/locales/italian/translations.json b/client/i18n/locales/italian/translations.json index d1d351d5a0e..4f415a909f2 100644 --- a/client/i18n/locales/italian/translations.json +++ b/client/i18n/locales/italian/translations.json @@ -466,7 +466,6 @@ "answered-mcq": "You have unanswered questions and/or incorrect answers.", "explanation": "Explanation", "transcript": "Transcript", - "video": "Video", "solution-link": "Link alla soluzione", "source-code-link": "Source Code Link", "ms-link": "Microsoft Link", diff --git a/client/i18n/locales/japanese/intro.json b/client/i18n/locales/japanese/intro.json index 10320f073cb..f416cf2353c 100644 --- a/client/i18n/locales/japanese/intro.json +++ b/client/i18n/locales/japanese/intro.json @@ -3028,10 +3028,28 @@ "You will learn how to work with template literals, and the indexOf method." ] }, - "lecture-working-with-common-string-methods": { - "title": "Working with Common String Methods", + "lecture-working-with-string-character-methods": { + "title": "Working with String Character Methods", "intro": [ - "In these lectures, you will learn about the common string methods available in JavaScript. The string methods will let you do things like extracting a part of a string, changing the casing for a string, replacing a part of a string, trimming whitespace from a string, and much more." + "In this lecture you will learn about ASCII character encoding and how to use JavaScript's charCodeAt() and fromCharCode() methods to convert between characters and their numerical ASCII values." + ] + }, + "lecture-working-with-string-search-and-slice-methods": { + "title": "Working with String Search and Slice Methods", + "intro": [ + "In this lecture you will learn how to search for substrings using the includes() method and how to extract portions of strings using the slice() method." + ] + }, + "lecture-working-with-string-formatting-methods": { + "title": "Working with String Formatting Methods", + "intro": [ + "In this lecture you will learn how to format strings by changing their case using toUpperCase() and toLowerCase() methods, and how to remove whitespace using trim(), trimStart(), and trimEnd() methods." + ] + }, + "lecture-working-with-string-modification-methods": { + "title": "Working with String Modification Methods", + "intro": [ + "In this lecture you will learn how to modify strings by replacing parts of them using the replace() method and how to repeat strings multiple times using the repeat() method." ] }, "review-javascript-strings": { @@ -4447,7 +4465,7 @@ "title": "Data Structures Review", "intro": [ "Before you're quizzed on data structures, you should review what you've learned about them.", - "[Add more details]" + "Open up this page to review concepts like the different data structures, algorithms, time and space complexity, and big O notation." ] }, "quiz-data-structures": { diff --git a/client/i18n/locales/japanese/translations.json b/client/i18n/locales/japanese/translations.json index 9d344a68e17..e6767652535 100644 --- a/client/i18n/locales/japanese/translations.json +++ b/client/i18n/locales/japanese/translations.json @@ -466,7 +466,6 @@ "answered-mcq": "未回答または不正解の質問があります。", "explanation": "解説", "transcript": "文字起こし", - "video": "Video", "solution-link": "回答のリンク", "source-code-link": "ソースコードのリンク", "ms-link": "Microsoft のリンク", diff --git a/client/i18n/locales/korean/intro.json b/client/i18n/locales/korean/intro.json index 3841af1965b..23a76073dbe 100644 --- a/client/i18n/locales/korean/intro.json +++ b/client/i18n/locales/korean/intro.json @@ -3028,10 +3028,28 @@ "You will learn how to work with template literals, and the indexOf method." ] }, - "lecture-working-with-common-string-methods": { - "title": "Working with Common String Methods", + "lecture-working-with-string-character-methods": { + "title": "Working with String Character Methods", "intro": [ - "In these lectures, you will learn about the common string methods available in JavaScript. The string methods will let you do things like extracting a part of a string, changing the casing for a string, replacing a part of a string, trimming whitespace from a string, and much more." + "In this lecture you will learn about ASCII character encoding and how to use JavaScript's charCodeAt() and fromCharCode() methods to convert between characters and their numerical ASCII values." + ] + }, + "lecture-working-with-string-search-and-slice-methods": { + "title": "Working with String Search and Slice Methods", + "intro": [ + "In this lecture you will learn how to search for substrings using the includes() method and how to extract portions of strings using the slice() method." + ] + }, + "lecture-working-with-string-formatting-methods": { + "title": "Working with String Formatting Methods", + "intro": [ + "In this lecture you will learn how to format strings by changing their case using toUpperCase() and toLowerCase() methods, and how to remove whitespace using trim(), trimStart(), and trimEnd() methods." + ] + }, + "lecture-working-with-string-modification-methods": { + "title": "Working with String Modification Methods", + "intro": [ + "In this lecture you will learn how to modify strings by replacing parts of them using the replace() method and how to repeat strings multiple times using the repeat() method." ] }, "review-javascript-strings": { @@ -4447,7 +4465,7 @@ "title": "Data Structures Review", "intro": [ "Before you're quizzed on data structures, you should review what you've learned about them.", - "[Add more details]" + "Open up this page to review concepts like the different data structures, algorithms, time and space complexity, and big O notation." ] }, "quiz-data-structures": { diff --git a/client/i18n/locales/korean/translations.json b/client/i18n/locales/korean/translations.json index c7c86f03188..4de5cae413d 100644 --- a/client/i18n/locales/korean/translations.json +++ b/client/i18n/locales/korean/translations.json @@ -466,7 +466,6 @@ "answered-mcq": "You have unanswered questions and/or incorrect answers.", "explanation": "Explanation", "transcript": "Transcript", - "video": "Video", "solution-link": "Solution Link", "source-code-link": "Source Code Link", "ms-link": "Microsoft Link", diff --git a/client/i18n/locales/portuguese/intro.json b/client/i18n/locales/portuguese/intro.json index 361f32f44a5..bb06f7f67ad 100644 --- a/client/i18n/locales/portuguese/intro.json +++ b/client/i18n/locales/portuguese/intro.json @@ -3028,10 +3028,28 @@ "You will learn how to work with template literals, and the indexOf method." ] }, - "lecture-working-with-common-string-methods": { - "title": "Working with Common String Methods", + "lecture-working-with-string-character-methods": { + "title": "Working with String Character Methods", "intro": [ - "In these lectures, you will learn about the common string methods available in JavaScript. The string methods will let you do things like extracting a part of a string, changing the casing for a string, replacing a part of a string, trimming whitespace from a string, and much more." + "In this lecture you will learn about ASCII character encoding and how to use JavaScript's charCodeAt() and fromCharCode() methods to convert between characters and their numerical ASCII values." + ] + }, + "lecture-working-with-string-search-and-slice-methods": { + "title": "Working with String Search and Slice Methods", + "intro": [ + "In this lecture you will learn how to search for substrings using the includes() method and how to extract portions of strings using the slice() method." + ] + }, + "lecture-working-with-string-formatting-methods": { + "title": "Working with String Formatting Methods", + "intro": [ + "In this lecture you will learn how to format strings by changing their case using toUpperCase() and toLowerCase() methods, and how to remove whitespace using trim(), trimStart(), and trimEnd() methods." + ] + }, + "lecture-working-with-string-modification-methods": { + "title": "Working with String Modification Methods", + "intro": [ + "In this lecture you will learn how to modify strings by replacing parts of them using the replace() method and how to repeat strings multiple times using the repeat() method." ] }, "review-javascript-strings": { @@ -4447,7 +4465,7 @@ "title": "Data Structures Review", "intro": [ "Before you're quizzed on data structures, you should review what you've learned about them.", - "[Add more details]" + "Open up this page to review concepts like the different data structures, algorithms, time and space complexity, and big O notation." ] }, "quiz-data-structures": { diff --git a/client/i18n/locales/portuguese/translations.json b/client/i18n/locales/portuguese/translations.json index 42fe83f9ad6..b3af0b51bb9 100644 --- a/client/i18n/locales/portuguese/translations.json +++ b/client/i18n/locales/portuguese/translations.json @@ -466,7 +466,6 @@ "answered-mcq": "You have unanswered questions and/or incorrect answers.", "explanation": "Explicação", "transcript": "Transcript", - "video": "Video", "solution-link": "Link da solução", "source-code-link": "Link do código-fonte", "ms-link": "Link da Microsoft", diff --git a/client/i18n/locales/swahili/intro.json b/client/i18n/locales/swahili/intro.json index 29f70c7f82f..04db3fd8459 100644 --- a/client/i18n/locales/swahili/intro.json +++ b/client/i18n/locales/swahili/intro.json @@ -3028,10 +3028,28 @@ "You will learn how to work with template literals, and the indexOf method." ] }, - "lecture-working-with-common-string-methods": { - "title": "Working with Common String Methods", + "lecture-working-with-string-character-methods": { + "title": "Working with String Character Methods", "intro": [ - "In these lectures, you will learn about the common string methods available in JavaScript. The string methods will let you do things like extracting a part of a string, changing the casing for a string, replacing a part of a string, trimming whitespace from a string, and much more." + "In this lecture you will learn about ASCII character encoding and how to use JavaScript's charCodeAt() and fromCharCode() methods to convert between characters and their numerical ASCII values." + ] + }, + "lecture-working-with-string-search-and-slice-methods": { + "title": "Working with String Search and Slice Methods", + "intro": [ + "In this lecture you will learn how to search for substrings using the includes() method and how to extract portions of strings using the slice() method." + ] + }, + "lecture-working-with-string-formatting-methods": { + "title": "Working with String Formatting Methods", + "intro": [ + "In this lecture you will learn how to format strings by changing their case using toUpperCase() and toLowerCase() methods, and how to remove whitespace using trim(), trimStart(), and trimEnd() methods." + ] + }, + "lecture-working-with-string-modification-methods": { + "title": "Working with String Modification Methods", + "intro": [ + "In this lecture you will learn how to modify strings by replacing parts of them using the replace() method and how to repeat strings multiple times using the repeat() method." ] }, "review-javascript-strings": { @@ -4447,7 +4465,7 @@ "title": "Data Structures Review", "intro": [ "Before you're quizzed on data structures, you should review what you've learned about them.", - "[Add more details]" + "Open up this page to review concepts like the different data structures, algorithms, time and space complexity, and big O notation." ] }, "quiz-data-structures": { diff --git a/client/i18n/locales/swahili/translations.json b/client/i18n/locales/swahili/translations.json index 7c03664f189..c598a9da197 100644 --- a/client/i18n/locales/swahili/translations.json +++ b/client/i18n/locales/swahili/translations.json @@ -466,7 +466,6 @@ "answered-mcq": "You have unanswered questions and/or incorrect answers.", "explanation": "Explanation", "transcript": "Transcript", - "video": "Video", "solution-link": "Kiungo cha Suluhisho", "source-code-link": "Source Code Link", "ms-link": "Kiungo cha Microsoft", diff --git a/client/i18n/locales/ukrainian/intro.json b/client/i18n/locales/ukrainian/intro.json index b09f7a38ede..984725a8aff 100644 --- a/client/i18n/locales/ukrainian/intro.json +++ b/client/i18n/locales/ukrainian/intro.json @@ -3016,10 +3016,28 @@ "Ви навчитеся працювати з шаблонними літерами та методом indexOf." ] }, - "lecture-working-with-common-string-methods": { - "title": "Поширені методи роботи з рядками", + "lecture-working-with-string-character-methods": { + "title": "Working with String Character Methods", "intro": [ - "In these lectures, you will learn about the common string methods available in JavaScript. The string methods will let you do things like extracting a part of a string, changing the casing for a string, replacing a part of a string, trimming whitespace from a string, and much more." + "In this lecture you will learn about ASCII character encoding and how to use JavaScript's charCodeAt() and fromCharCode() methods to convert between characters and their numerical ASCII values." + ] + }, + "lecture-working-with-string-search-and-slice-methods": { + "title": "Working with String Search and Slice Methods", + "intro": [ + "In this lecture you will learn how to search for substrings using the includes() method and how to extract portions of strings using the slice() method." + ] + }, + "lecture-working-with-string-formatting-methods": { + "title": "Working with String Formatting Methods", + "intro": [ + "In this lecture you will learn how to format strings by changing their case using toUpperCase() and toLowerCase() methods, and how to remove whitespace using trim(), trimStart(), and trimEnd() methods." + ] + }, + "lecture-working-with-string-modification-methods": { + "title": "Working with String Modification Methods", + "intro": [ + "In this lecture you will learn how to modify strings by replacing parts of them using the replace() method and how to repeat strings multiple times using the repeat() method." ] }, "review-javascript-strings": { @@ -4431,7 +4449,7 @@ "title": "Повторення структур даних", "intro": [ "Перш ніж перейти до тесту «Структури даних», повторіть основні поняття.", - "[Add more details]" + "Open up this page to review concepts like the different data structures, algorithms, time and space complexity, and big O notation." ] }, "quiz-data-structures": { diff --git a/client/i18n/locales/ukrainian/translations.json b/client/i18n/locales/ukrainian/translations.json index 2912afcf008..0b4106c64c0 100644 --- a/client/i18n/locales/ukrainian/translations.json +++ b/client/i18n/locales/ukrainian/translations.json @@ -118,36 +118,36 @@ "share-on-threads": "Поділитись на Threads", "play-scene": "Натисніть «Відтворити»", "download-latest-version": "Завантажити найновішу версію", - "start": "Start", - "go-to-today": "Go to Today's Challenge", - "go-to-today-long": "Go to Today's Coding Challenge", - "go-to-archive": "Go to Archive", - "go-to-archive-long": "Go to Daily Coding Challenge Archive" + "start": "Розпочати", + "go-to-today": "Перейти до сьогоднішнього завдання", + "go-to-today-long": "Перейти до сьогоднішнього завдання з програмування", + "go-to-archive": "Перейти до архіву", + "go-to-archive-long": "Перейти до архіву завдань з програмування" }, "daily-coding-challenges": { - "title": "Daily Coding Challenges", - "map-title": "Try the coding challenge of the day:", - "not-found": "Daily Coding Challenge Not Found.", - "release-note": "New challenges are released at midnight US Central time." + "title": "Щоденні завдання з програмування", + "map-title": "Спробуйте щоденне завдання з програмування:", + "not-found": "Щоденне завдання з програмування не знайдено.", + "release-note": "Нові завдання будуть доступними о 9:00 за київським часом." }, "weekdays": { "short": { - "sunday": "S", - "monday": "M", - "tuesday": "T", - "wednesday": "W", - "thursday": "T", - "friday": "F", - "saturday": "S" + "sunday": "Нд", + "monday": "Пн", + "tuesday": "Вт", + "wednesday": "Ср", + "thursday": "Чт", + "friday": "Пт", + "saturday": "Сб" }, "long": { - "sunday": "Sunday", - "monday": "Monday", - "tuesday": "Tuesday", - "wednesday": "Wednesday", - "thursday": "Thursday", - "friday": "Friday", - "saturday": "Saturday" + "sunday": "Неділя", + "monday": "Понеділок", + "tuesday": "Вівторок", + "wednesday": "Середа", + "thursday": "Четвер", + "friday": "П’ятниця", + "saturday": "Субота" } }, "landing": { @@ -466,7 +466,6 @@ "answered-mcq": "Ви не відповіли на всі запитання та/або допустились помилок.", "explanation": "Пояснення", "transcript": "Текстова версія", - "video": "Відео", "solution-link": "Посилання на розв’язок", "source-code-link": "Посилання на вихідний код", "ms-link": "Посилання Microsoft", @@ -882,8 +881,8 @@ "github": "Посилання на сторінку GitHub {{username}}", "website": "Посилання на вебсайт {{username}}", "twitter": "Посилання на сторінку Twitter {{username}}", - "next-month": "Go to next month", - "previous-month": "Go to previous month", + "next-month": "Наступний місяць", + "previous-month": "Попередній місяць", "first-page": "Перейти на першу сторінку", "previous-page": "Перейти на попередню сторінку", "next-page": "Перейти на наступну сторінку", @@ -914,7 +913,7 @@ "editor-a11y-on-macos": "Вміст редактора {{editorName}}. Ввімкнено режим доступності. Натисніть Command+E, щоб вимкнути його, або Option+F1, щоб переглянути більше функцій.", "editor-a11y-on-non-macos": "Вміст редактора {{editorName}}. Ввімкнено режим доступності. Натисніть Ctrl+E, щоб вимкнути його, або Alt+F1, щоб переглянути більше функцій.", "terminal-output": "Вивід терміналу", - "not-available": "Not available" + "not-available": "Недоступно" }, "flash": { "no-email-in-userinfo": "Не вдалось отримати електронну пошту від вказаного провайдера. Спробуйте іншого провайдера або виберіть опцію «Continue with Email».", @@ -1184,8 +1183,8 @@ "a2-professional-spanish-cert": "Сертифікація «Іспанська мова A2 для роботи»", "a2-professional-chinese": "Китайська мова A2 для роботи", "a2-professional-chinese-cert": "Сертифікація «Китайська мова A2 для роботи»", - "a1-professional-chinese": "A1 Professional Chinese", - "a1-professional-chinese-cert": "A1 Professional Chinese Certification", + "a1-professional-chinese": "Китайська мова A1 для роботи", + "a1-professional-chinese-cert": "Сертифікація «Китайська мова A1 для роботи»", "legacy-front-end": "Front End (стара версія)", "legacy-front-end-cert": "Сертифікація «Front End» (стара версія)", "legacy-back-end": "Back End (стара версія)",