Enable Thai language

This commit is contained in:
Kieran 2023-08-25 17:09:52 +01:00
parent 807b8207ba
commit 8973536e01
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
2 changed files with 4 additions and 0 deletions

View File

@ -56,6 +56,9 @@ const getMessages = (locale: string) => {
case "fa-IR": case "fa-IR":
case "fa": case "fa":
return (await import("translations/fa_IR.json")).default; return (await import("translations/fa_IR.json")).default;
case "th-TH":
case "th":
return (await import("translations/th_TH.json")).default;
case DefaultLocale: case DefaultLocale:
case "en": case "en":
return enMessages; return enMessages;

View File

@ -27,6 +27,7 @@ export const AllLanguageCodes = [
"hr", "hr",
"ta-IN", "ta-IN",
"fa-IR", "fa-IR",
"th",
]; ];
const PreferencesPage = () => { const PreferencesPage = () => {