From 6118e72de18c8b15365165f113668e834666a1d5 Mon Sep 17 00:00:00 2001 From: Booker DeWitt Date: Sun, 18 Aug 2024 23:45:38 +0200 Subject: [PATCH] feature/ukr-localization-quick-start: Added Ukrainian localization for Quick Start page --- src/components/MDX/MDXComponents.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/MDX/MDXComponents.tsx b/src/components/MDX/MDXComponents.tsx index 6f99121f7..2c1c67d1d 100644 --- a/src/components/MDX/MDXComponents.tsx +++ b/src/components/MDX/MDXComponents.tsx @@ -197,7 +197,7 @@ function YouWillLearn({ children: any; isChapter?: boolean; }) { - let title = isChapter ? 'In this chapter' : 'You will learn'; + let title = isChapter ? 'У цьому розділі' : 'Ви дізнаєтесь'; return {children}; }