Adding Russian translation

Adding a Russian translation and fixing other language files to make them look the same.
This commit is contained in:
crim50n
2023-05-10 10:16:40 +03:00
parent 0ad91101a4
commit 71a546dd44
11 changed files with 266 additions and 10 deletions

View File

@@ -7,6 +7,7 @@ import TR from "./tr";
import JP from "./jp";
import DE from "./de";
import VI from "./vi";
import RU from "./ru";
export type { LocaleType } from "./cn";
@@ -20,6 +21,7 @@ export const AllLangs = [
"jp",
"de",
"vi",
"ru",
] as const;
export type Lang = (typeof AllLangs)[number];
@@ -82,4 +84,5 @@ export default {
jp: JP,
de: DE,
vi: VI,
ru: RU,
}[getLang()] as typeof CN;