Skip to content

Commit

Permalink
Merge pull request #204 from VampireChicken12/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
VampireChicken12 authored Dec 18, 2023
2 parents 9fae857 + 0ad270d commit fd1c057
Showing 1 changed file with 34 additions and 34 deletions.
68 changes: 34 additions & 34 deletions src/i18n/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,42 +2,42 @@ import { type Resource, createInstance } from "i18next";

import { waitForSpecificMessage } from "../utils/utilities";
export const availableLocales = [
"ca-ES",
"cs-CZ",
"de-DE",
"en-US",
"es-ES",
"fa-IR",
"fr-FR",
"he-IL",
"hi-IN",
"it-IT",
"ja-JP",
"pl-PL",
"pt-BR",
"ru-RU",
"tr-TR",
"zh-CN",
"zh-TW"
"ca-ES",
"cs-CZ",
"de-DE",
"en-US",
"es-ES",
"fa-IR",
"fr-FR",
"he-IL",
"hi-IN",
"it-IT",
"ja-JP",
"pl-PL",
"pt-BR",
"ru-RU",
"tr-TR",
"zh-CN",
"zh-TW"
] as const;
export const localePercentages: Record<AvailableLocales, number> = {
"en-US": 100,
"ca-ES": 0,
"cs-CZ": 0,
"de-DE": 89,
"es-ES": 89,
"fa-IR": 0,
"fr-FR": 0,
"he-IL": 0,
"hi-IN": 0,
"it-IT": 0,
"ja-JP": 100,
"pl-PL": 1,
"pt-BR": 0,
"ru-RU": 92,
"tr-TR": 45,
"zh-CN": 2,
"zh-TW": 0
"en-US": 100,
"ca-ES": 0,
"cs-CZ": 0,
"de-DE": 89,
"es-ES": 89,
"fa-IR": 0,
"fr-FR": 0,
"he-IL": 0,
"hi-IN": 0,
"it-IT": 0,
"ja-JP": 100,
"pl-PL": 1,
"pt-BR": 45,
"ru-RU": 100,
"tr-TR": 45,
"zh-CN": 2,
"zh-TW": 100
};
export const localeDirection: Record<AvailableLocales, "ltr" | "rtl"> = {
"ca-ES": "ltr",
Expand Down

0 comments on commit fd1c057

Please sign in to comment.