mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
0eb8d28c1b
Closes #194 on GitHub Signed-off-by: Aleksandras Kostarevas <aleks076@protonmail.com>
124 lines
4.3 KiB
XML
124 lines
4.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<!--
|
||
/*
|
||
**
|
||
** Copyright 2012, The Android Open Source Project
|
||
**
|
||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||
** you may not use this file except in compliance with the License.
|
||
** You may obtain a copy of the License at
|
||
**
|
||
** http://www.apache.org/licenses/LICENSE-2.0
|
||
**
|
||
** Unless required by applicable law or agreed to in writing, software
|
||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
** See the License for the specific language governing permissions and
|
||
** limitations under the License.
|
||
*/
|
||
-->
|
||
|
||
<merge xmlns:latin="http://schemas.android.com/apk/res-auto">
|
||
<switch>
|
||
<case
|
||
latin:keyboardLayoutSetElement="alphabet|alphabetAutomaticShifted|alphabetShiftLocked"
|
||
>
|
||
<!-- U+x0627: "ا" ARABIC LETTER ALF
|
||
U+x0622: "آ" ARABIC LETTER ALF WITH SHADA -->
|
||
|
||
<Key
|
||
latin:keySpec="ا"
|
||
latin:moreKeys="آ" />
|
||
<!-- U+0633: "س" ARABIC LETTER SEEN
|
||
U+0634: "ش" ARABIC LETTER SHA -->
|
||
<Key latin:keySpec="س"
|
||
latin:moreKeys="ش"
|
||
/>
|
||
<!-- U+062F: "د" ARABIC LETTER DAL
|
||
U+0630: "ذ" ARABIC LETTER THAL
|
||
-->
|
||
<Key
|
||
latin:keySpec="د"
|
||
latin:moreKeys="ذ" />
|
||
<!-- U+0641: "ف" ARABIC LETTER FAH
|
||
U+0625: "إ" ARABIC LETTER ALF WITH KASRA -->
|
||
<Key
|
||
latin:keySpec="ف"
|
||
latin:moreKeys="إ" />
|
||
<!-- U+06AF: "گ" KURDISH LETTER G
|
||
U+063A: "غ" ARABIC LETTER GH
|
||
-->
|
||
<Key
|
||
latin:keySpec="گ"
|
||
latin:moreKeys="غ" />
|
||
<!-- U+0627: "ه" KURDISH LETTER HA
|
||
U+200C: "" KURDISH LETTER NO SPACE BREAK -->
|
||
<Key
|
||
latin:keySpec="ه"
|
||
latin:moreKeys="‌" />
|
||
<!-- U+062A: "ژ" KURDISH LETTER ZH
|
||
U+0623: "أ" ARABIC LETTER ALF WITH HAMZA ABOVE
|
||
-->
|
||
<Key latin:keySpec="ژ"
|
||
latin:moreKeys="أ" />
|
||
<!-- U+06A9: "ک" ARABIC LETTER KAF
|
||
U+0643: "ك" ARABIC LETTER ISOLATE KAF
|
||
-->
|
||
<Key latin:keySpec="ک"
|
||
latin:moreKeys="ك" />
|
||
<!-- U+0644: "ل" ARABIC LETTER LAM
|
||
U+06B5: "ل" KURDISH LETTER LAA -->
|
||
<Key latin:keySpec="ل"
|
||
latin:moreKeys="ڵ" />
|
||
</case>
|
||
<default>
|
||
<!-- swap keyspec with morekeys -->
|
||
<!-- U+x0622: "آ" ARABIC LETTER ALF WITH SHADA
|
||
U+x0627: "ا" ARABIC LETTER ALF -->
|
||
<Key
|
||
latin:keySpec="آ"
|
||
latin:moreKeys="ا" />
|
||
<!-- U+0634: "ش" ARABIC LETTER SHA
|
||
U+0633: "س" ARABIC LETTER SEEN -->
|
||
<Key latin:keySpec="ش"
|
||
latin:moreKeys="س"
|
||
/>
|
||
<!-- U+0630: "ذ" ARABIC LETTER THAL
|
||
U+062F: "د" ARABIC LETTER DAL -->
|
||
<Key
|
||
latin:keySpec="ذ"
|
||
latin:moreKeys="د" />
|
||
<!-- U+0625: "إ" ARABIC LETTER ALF WITH KASRA
|
||
U+0641: "ف" ARABIC LETTER FAH -->
|
||
<Key
|
||
latin:keySpec="إ"
|
||
latin:moreKeys="ف" />
|
||
<!-- U+063A: "غ" ARABIC LETTER GH
|
||
U+06AF: "گ" KURDISH LETTER G -->
|
||
<Key
|
||
latin:keySpec="غ"
|
||
latin:moreKeys="گ" />
|
||
<!-- U+200C: "" KURDISH LETTER NO SPACE BREAK
|
||
U+0647: "ه" KURDISH LETTER HA -->
|
||
<Key
|
||
latin:keySpec="‌"
|
||
latin:moreKeys="ه" />
|
||
<!-- U+0623: "أ" ARABIC LETTER ALF WITH HAMZA ABOVE
|
||
U+0698: "ژ" KURDISH LETTER ZH -->
|
||
<Key latin:keySpec="أ"
|
||
latin:moreKeys="ژ" />
|
||
<!-- U+0643: "ك" ARABIC LETTER ISOLATE KAF
|
||
U+06A9: "ک" ARABIC LETTER KAF -->
|
||
<Key latin:keySpec="ك"
|
||
latin:moreKeys="ک" />
|
||
<!-- U+06B5: "ل" KURDISH LETTER LAA
|
||
U+0644: "ل" ARABIC LETTER LAM -->
|
||
<Key latin:keySpec="ڵ"
|
||
latin:moreKeys="ل" />
|
||
</default>
|
||
|
||
|
||
</switch>
|
||
|
||
</merge>
|