feat: Add Russian Language (#697)

* Add Russian Language

* Add Russian support

* Minor update

* Update Russian translation
This commit is contained in:
Andrei Shevchuk
2023-08-03 03:07:58 +00:00
committed by GitHub
parent ca7bb50212
commit 4139360788
5 changed files with 115 additions and 1 deletions

View File

@@ -1,10 +1,12 @@
import i18n from "i18next";
import { initReactI18next } from "react-i18next";
import en from "@/locales/en.json";
import ru from "@/locales/ru.json";
import zh from "@/locales/zh.json";
const resources = {
en: { translation: en },
ru: { translation: ru },
zh: { translation: zh },
};