WIP arabic

This commit is contained in:
Nikita Karamov 2024-01-28 18:34:57 +01:00
parent 77c17fb0e8
commit e93cdd9c21
No known key found for this signature in database
GPG Key ID: 41D6F71EE78E77CD
1 changed files with 3 additions and 0 deletions

View File

@ -6,6 +6,7 @@
* SPDX-License-Identifier: AGPL-3.0-only
*/
import ar from "./translations/ar.json";
import de from "./translations/de.json";
import en from "./translations/en.json";
import es from "./translations/es.json";
@ -14,6 +15,7 @@ import nl from "./translations/nl.json";
import ru from "./translations/ru.json";
export const languages = {
ar: { autonym: "العربية", dir: "rtl" },
en: { autonym: "English", dir: "ltr" },
de: { autonym: "Deutsch", dir: "ltr" },
es: { autonym: "Español", dir: "ltr" },
@ -23,6 +25,7 @@ export const languages = {
};
export const strings: Record<keyof typeof languages, Record<string, string>> = {
ar,
en,
de,
es,