feat(note_language): add right-to-left languages

This commit is contained in:
Elian Doran 2025-03-04 20:31:51 +02:00
parent 42d3334c9d
commit c6b3c1bf88
No known key found for this signature in database

View File

@ -50,6 +50,28 @@ export function getLocales() {
{
id: "ro",
name: "Română"
},
/*
* Right to left languages
*
* Currently they are only for setting the language of text notes.
*/
{ // Arabic
id: "ar",
name: "اَلْعَرَبِيَّةُ"
},
{ // Hebrew
id: "he",
name: "עברית"
},
{ // Kurdish
id: "ku",
name: "کوردی"
},
{ // Persian
id: "fa",
name: "فارسی"
}
];
}