aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@digia.com>2014-02-21 11:38:17 +0200
committerRainer Keller <rainer.keller@digia.com>2014-02-25 10:17:48 +0200
commit650b4119740309b3d28eca65cc8da3b3af83fd01 (patch)
tree013970cb6de760c4eb31d7e0c1448247ca4790d5
parent85b4647e9a52abe89431391b6e644ca309406eaf (diff)
Fix arabic letter in button b
Button 'b' should produce an arabic ligature 'lam' which consists of two glyphs, so we cannot use Repeater to this. Change-Id: Ib29e0453becef4169f522860fd8132ea9a6bd0a6 Reviewed-by: Rainer Keller <rainer.keller@digia.com>
-rw-r--r--src/virtualkeyboard/content/layouts/ar_AR.qml36
1 files changed, 30 insertions, 6 deletions
diff --git a/src/virtualkeyboard/content/layouts/ar_AR.qml b/src/virtualkeyboard/content/layouts/ar_AR.qml
index 1c8458c2..56e01f7f 100644
--- a/src/virtualkeyboard/content/layouts/ar_AR.qml
+++ b/src/virtualkeyboard/content/layouts/ar_AR.qml
@@ -22,7 +22,7 @@ import "../components"
KeyboardLayout {
keyWeight: 160
- property var keys: ["ضصثقفغعهخحجد", "شسيبلاتنمكط", "ئءؤرلىةوزظ"]
+ property var keys: ["ضصثقفغعهخحجد", "شسيبلاتنمكط"]
KeyboardRow {
Repeater {
model: keys[0].length
@@ -49,11 +49,35 @@ KeyboardLayout {
KeyboardRow {
keyWeight: 156
FillerKey {}
- Repeater {
- model: keys[2].length
- Key {
- text: keys[2][index]
- }
+ Key {
+ text: "ئ"
+ }
+ Key {
+ text: "ء"
+ }
+ Key {
+ text: "ؤ"
+ }
+ Key {
+ text: "ر"
+ }
+ Key {
+ text: "لا"
+ }
+ Key {
+ text: "ى"
+ }
+ Key {
+ text: "ة"
+ }
+ Key {
+ text: "و"
+ }
+ Key {
+ text: "ز"
+ }
+ Key {
+ text: "ظ"
}
Key {
key: Qt.Key_Comma