Enable Thai language

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

View File

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