diff options
| author | Mostafa Ayesh | 2023-03-11 10:54:20 -0500 |
|---|---|---|
| committer | GitHub | 2023-03-11 16:54:20 +0100 |
| commit | ce51df6f5a8da4b86e4ee92fd78803c5b264ffc9 (patch) | |
| tree | b125a3fa39267d406e14cee505dc6ff56935a7be /srcs | |
| parent | 6aaa4973935659e40b3300e9326b888cf381545d (diff) | |
| download | unexpected-keyboard-ce51df6f5a8da4b86e4ee92fd78803c5b264ffc9.tar.gz unexpected-keyboard-ce51df6f5a8da4b86e4ee92fd78803c5b264ffc9.zip | |
Add Arabic layout (#314)
* add arabic keyboard
* use unicode values for special characters
* add alternate layout
* use arabic numbers
Diffstat (limited to 'srcs')
| -rw-r--r-- | srcs/juloo.keyboard2/Config.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/srcs/juloo.keyboard2/Config.java b/srcs/juloo.keyboard2/Config.java index a596f09..4ad0893 100644 --- a/srcs/juloo.keyboard2/Config.java +++ b/srcs/juloo.keyboard2/Config.java @@ -372,6 +372,8 @@ final class Config case "ru_jcuken": id = R.xml.local_ru_jcuken; break; case "he_il_1452_1": id = R.xml.he_il_1452_1; break; case "he_il_1452_2": id = R.xml.he_il_1452_2; break; + case "ar_pc": id = R.xml.ar_pc; break; + case "ar_alt": id = R.xml.ar_alt; break; } return KeyboardData.load(res, id); } |
