chore(i18n,client): processed translations (#61860)

This commit is contained in:
freeCodeCamp's Camper Bot
2025-08-19 01:19:33 +05:30
committed by GitHub
parent 27f23eafd4
commit a0429f7101
20 changed files with 248 additions and 78 deletions
@@ -3014,10 +3014,28 @@
"You will learn how to work with template literals, and the <code>indexOf</code> 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 <code>charCodeAt()</code> and <code>fromCharCode()</code> 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 <code>includes()</code> method and how to extract portions of strings using the <code>slice()</code> 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 <code>toUpperCase()</code> and <code>toLowerCase()</code> methods, and how to remove whitespace using <code>trim()</code>, <code>trimStart()</code>, and <code>trimEnd()</code> 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 <code>replace()</code> method and how to repeat strings multiple times using the <code>repeat()</code> 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": {
@@ -466,7 +466,6 @@
"answered-mcq": "你有未回答的問題和/或錯誤的答案。",
"explanation": "解釋",
"transcript": "文字記錄",
"video": "視頻",
"solution-link": "解決方案鏈接",
"source-code-link": "源代碼鏈接",
"ms-link": "微軟的鏈接",
+22 -4
View File
@@ -3014,10 +3014,28 @@
"You will learn how to work with template literals, and the <code>indexOf</code> 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 <code>charCodeAt()</code> and <code>fromCharCode()</code> 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 <code>includes()</code> method and how to extract portions of strings using the <code>slice()</code> 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 <code>toUpperCase()</code> and <code>toLowerCase()</code> methods, and how to remove whitespace using <code>trim()</code>, <code>trimStart()</code>, and <code>trimEnd()</code> 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 <code>replace()</code> method and how to repeat strings multiple times using the <code>repeat()</code> 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": {
@@ -466,7 +466,6 @@
"answered-mcq": "你有未回答的问题和/或错误的答案。",
"explanation": "解释",
"transcript": "文字记录",
"video": "视频",
"solution-link": "解决方案链接",
"source-code-link": "源代码链接",
"ms-link": "微软的链接",
+22 -4
View File
@@ -3028,10 +3028,28 @@
"You will learn how to work with template literals, and the <code>indexOf</code> 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 <code>charCodeAt()</code> and <code>fromCharCode()</code> 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 <code>includes()</code> method and how to extract portions of strings using the <code>slice()</code> 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 <code>toUpperCase()</code> and <code>toLowerCase()</code> methods, and how to remove whitespace using <code>trim()</code>, <code>trimStart()</code>, and <code>trimEnd()</code> 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 <code>replace()</code> method and how to repeat strings multiple times using the <code>repeat()</code> 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": {
@@ -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",
+22 -4
View File
@@ -3028,10 +3028,28 @@
"You will learn how to work with template literals, and the <code>indexOf</code> 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 <code>charCodeAt()</code> and <code>fromCharCode()</code> 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 <code>includes()</code> method and how to extract portions of strings using the <code>slice()</code> 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 <code>toUpperCase()</code> and <code>toLowerCase()</code> methods, and how to remove whitespace using <code>trim()</code>, <code>trimStart()</code>, and <code>trimEnd()</code> 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 <code>replace()</code> method and how to repeat strings multiple times using the <code>repeat()</code> 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": {
@@ -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",
+22 -4
View File
@@ -3028,10 +3028,28 @@
"You will learn how to work with template literals, and the <code>indexOf</code> 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 <code>charCodeAt()</code> and <code>fromCharCode()</code> 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 <code>includes()</code> method and how to extract portions of strings using the <code>slice()</code> 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 <code>toUpperCase()</code> and <code>toLowerCase()</code> methods, and how to remove whitespace using <code>trim()</code>, <code>trimStart()</code>, and <code>trimEnd()</code> 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 <code>replace()</code> method and how to repeat strings multiple times using the <code>repeat()</code> 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": {
@@ -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",
+22 -4
View File
@@ -3028,10 +3028,28 @@
"You will learn how to work with template literals, and the <code>indexOf</code> 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 <code>charCodeAt()</code> and <code>fromCharCode()</code> 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 <code>includes()</code> method and how to extract portions of strings using the <code>slice()</code> 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 <code>toUpperCase()</code> and <code>toLowerCase()</code> methods, and how to remove whitespace using <code>trim()</code>, <code>trimStart()</code>, and <code>trimEnd()</code> 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 <code>replace()</code> method and how to repeat strings multiple times using the <code>repeat()</code> 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": {
@@ -466,7 +466,6 @@
"answered-mcq": "未回答または不正解の質問があります。",
"explanation": "解説",
"transcript": "文字起こし",
"video": "Video",
"solution-link": "回答のリンク",
"source-code-link": "ソースコードのリンク",
"ms-link": "Microsoft のリンク",
+22 -4
View File
@@ -3028,10 +3028,28 @@
"You will learn how to work with template literals, and the <code>indexOf</code> 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 <code>charCodeAt()</code> and <code>fromCharCode()</code> 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 <code>includes()</code> method and how to extract portions of strings using the <code>slice()</code> 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 <code>toUpperCase()</code> and <code>toLowerCase()</code> methods, and how to remove whitespace using <code>trim()</code>, <code>trimStart()</code>, and <code>trimEnd()</code> 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 <code>replace()</code> method and how to repeat strings multiple times using the <code>repeat()</code> 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": {
@@ -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",
+22 -4
View File
@@ -3028,10 +3028,28 @@
"You will learn how to work with template literals, and the <code>indexOf</code> 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 <code>charCodeAt()</code> and <code>fromCharCode()</code> 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 <code>includes()</code> method and how to extract portions of strings using the <code>slice()</code> 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 <code>toUpperCase()</code> and <code>toLowerCase()</code> methods, and how to remove whitespace using <code>trim()</code>, <code>trimStart()</code>, and <code>trimEnd()</code> 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 <code>replace()</code> method and how to repeat strings multiple times using the <code>repeat()</code> 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": {
@@ -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",
+22 -4
View File
@@ -3028,10 +3028,28 @@
"You will learn how to work with template literals, and the <code>indexOf</code> 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 <code>charCodeAt()</code> and <code>fromCharCode()</code> 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 <code>includes()</code> method and how to extract portions of strings using the <code>slice()</code> 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 <code>toUpperCase()</code> and <code>toLowerCase()</code> methods, and how to remove whitespace using <code>trim()</code>, <code>trimStart()</code>, and <code>trimEnd()</code> 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 <code>replace()</code> method and how to repeat strings multiple times using the <code>repeat()</code> 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": {
@@ -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",
+22 -4
View File
@@ -3016,10 +3016,28 @@
"Ви навчитеся працювати з шаблонними літерами та методом <code>indexOf</code>."
]
},
"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 <code>charCodeAt()</code> and <code>fromCharCode()</code> 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 <code>includes()</code> method and how to extract portions of strings using the <code>slice()</code> 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 <code>toUpperCase()</code> and <code>toLowerCase()</code> methods, and how to remove whitespace using <code>trim()</code>, <code>trimStart()</code>, and <code>trimEnd()</code> 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 <code>replace()</code> method and how to repeat strings multiple times using the <code>repeat()</code> 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": {
+28 -29
View File
@@ -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 (стара версія)",