From 2d101561f864e473c7c9b1441a2a26115b9f4a6c Mon Sep 17 00:00:00 2001 From: EVGENY M <168018528+rjohny55@users.noreply.github.com> Date: Thu, 28 Aug 2025 09:42:42 +0600 Subject: [PATCH] Add Russian language Update app.tsx (#9772) Fix Add Russian language. ### What problem does this PR solve? _Briefly describe what this PR aims to solve. Include background context that will help reviewers understand the purpose of the PR._ ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) - [x] New Feature (non-breaking change which adds functionality) --- web/src/app.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/src/app.tsx b/web/src/app.tsx index 238661c27..daa345c72 100644 --- a/web/src/app.tsx +++ b/web/src/app.tsx @@ -6,6 +6,7 @@ import { App, ConfigProvider, ConfigProviderProps, theme } from 'antd'; import pt_BR from 'antd/lib/locale/pt_BR'; import deDE from 'antd/locale/de_DE'; import enUS from 'antd/locale/en_US'; +import ru_RU from 'antd/locale/ru_RU'; import vi_VN from 'antd/locale/vi_VN'; import zhCN from 'antd/locale/zh_CN'; import zh_HK from 'antd/locale/zh_HK'; @@ -34,6 +35,7 @@ const AntLanguageMap = { en: enUS, zh: zhCN, 'zh-TRADITIONAL': zh_HK, + ru: ru_RU, vi: vi_VN, 'pt-BR': pt_BR, de: deDE,