Add new langs

This commit is contained in:
Kieran 2023-09-12 16:02:10 +01:00
parent e8f412381a
commit 4927e0c4f8
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
2 changed files with 8 additions and 0 deletions

View File

@ -65,6 +65,12 @@ const getMessages = (locale: string) => {
case "sw-KE":
case "sw":
return (await import("translations/sw_KE.json")).default;
case "nl-NL":
case "nl":
return (await import("translations/nl_NL.json")).default;
case "fi-FI":
case "fi":
return (await import("translations/fi_FI.json")).default;
case DefaultLocale:
case "en":
return enMessages;

View File

@ -30,6 +30,8 @@ export const AllLanguageCodes = [
"th",
"pt-BR",
"sw",
"nl",
"fi",
];
const PreferencesPage = () => {