1
0
forked from Kieran/snort

feat: Add Persian lang

This commit is contained in:
Kieran 2023-05-23 22:58:51 +01:00
parent d2f6b5b75b
commit 78bfa57628
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
2 changed files with 4 additions and 0 deletions

View File

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

View File

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