feat(lang): Add Urdu Locale (#6444)

This commit is contained in:
DevMirza
2023-09-23 06:16:51 +05:00
committed by GitHub
parent 020f280458
commit 5428442628
2 changed files with 18 additions and 0 deletions

View File

@@ -2,7 +2,9 @@ import i18next, { init } from "i18next"
import * as en from "./locales/en.json"
import * as ja from "./locales/ja.json"
import * as th from "./locales/th.json"
import * as ur from "./locales/ur.json"
import * as zhCn from "./locales/zh-cn.json"
init({
lng: "en",
fallbackLng: "en", // language to use if translations in user language are not available.
@@ -22,6 +24,9 @@ init({
ja: {
translation: ja,
},
ur: {
translation: ur,
},
},
})