Add Japanese, Brazilian Portuguese, Tamil, and Thai locales to i18n.ts

This commit is contained in:
Donkie
2025-03-18 20:32:43 +01:00
parent e538f06483
commit dde468ed69

View File

@@ -119,6 +119,26 @@ export const languages: { [key: string]: Language } = {
fullCode: "ro-RO", fullCode: "ro-RO",
djs: () => import("dayjs/locale/ro"), djs: () => import("dayjs/locale/ro"),
}, },
["ja"]: {
name: "日本語",
fullCode: "ja-JP",
djs: () => import("dayjs/locale/ja"),
},
["pt-BR"]: {
name: "Português (Brasil)",
fullCode: "pt-BR",
djs: () => import("dayjs/locale/pt-br"),
},
["ta"]: {
name: "தமிழ்",
fullCode: "ta-IN",
djs: () => import("dayjs/locale/ta"),
},
["th"]: {
name: "ไทย",
fullCode: "th-TH",
djs: () => import("dayjs/locale/th"),
},
}; };
i18n i18n