Enable swahili

This commit is contained in:
Kieran 2023-08-29 16:41:18 +01:00
parent 0f610257aa
commit c6d41badab
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
2 changed files with 4 additions and 0 deletions

View File

@ -62,6 +62,9 @@ const getMessages = (locale: string) => {
case "pt-BR":
case "pt":
return (await import("translations/pt_BR.json")).default;
case "sw-KE":
case "sw":
return (await import("translations/sw_KE.json")).default;
case DefaultLocale:
case "en":
return enMessages;

View File

@ -29,6 +29,7 @@ export const AllLanguageCodes = [
"fa-IR",
"th",
"pt-BR",
"sw"
];
const PreferencesPage = () => {