WIP arabic
This commit is contained in:
parent
77c17fb0e8
commit
e93cdd9c21
1 changed files with 3 additions and 0 deletions
|
@ -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,
|
||||
|
|
Reference in a new issue