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>
112 lines
3.4 KiB
XML
112 lines
3.4 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+0632: "ز" ARABIC LETTER Z
|
|
U+0636: "ض" ARABIC LETTER THAD -->
|
|
<Key latin:keySpec="ز"
|
|
latin:moreKeys="ض"
|
|
/>
|
|
<!-- U+0624: "خ" ARABIC LETTER XA
|
|
U+0635: "ص" ARABIC LETTER THAD
|
|
-->
|
|
<Key latin:keySpec="خ"
|
|
latin:moreKeys="ص"
|
|
/>
|
|
<!-- U+0631: "ج" ARABIC LETTER JIM
|
|
U+0686: "چ" KURDISH LETTER CH -->
|
|
<Key latin:keySpec="ج"
|
|
latin:moreKeys="چ" />
|
|
|
|
<!-- U+0649: "ڤ" KURDISH LETTER V
|
|
U+0638: "ظ" ARABIC LETTER THA -->
|
|
<Key
|
|
latin:keySpec="ڤ"
|
|
latin:moreKeys="ظ" />
|
|
<!-- U+0629: "ب" ARABIC LETTER BA
|
|
U+0649: "ى" ARABIC LETTER YA
|
|
-->
|
|
<Key latin:keySpec="ب"
|
|
latin:moreKeys="ى"/>
|
|
<!-- U+0648: "ن" ARABIC LETTER NUN
|
|
U+0648: "ة" ARABIC LETTER TA
|
|
-->
|
|
<Key latin:keySpec="ن"
|
|
latin:moreKeys="و"/>
|
|
<!-- U+0632: "م" ARABIC LETTER MEEM
|
|
U+0698: "-" SYMBOL Dash -->
|
|
<Key
|
|
latin:keySpec="م"
|
|
latin:moreKeys="ـ" />
|
|
</case>
|
|
<default>
|
|
<!-- swap keyspec with morekeys -->
|
|
<!-- U+0636: "ض" ARABIC LETTER THAD
|
|
U+0632: "ز" ARABIC LETTER Z -->
|
|
<Key latin:keySpec="ض"
|
|
latin:moreKeys="ز"
|
|
/>
|
|
<!-- U+0635: "ص" ARABIC LETTER THAD
|
|
U+062E: "خ" ARABIC LETTER XA
|
|
-->
|
|
<Key latin:keySpec="ص"
|
|
latin:moreKeys="خ"
|
|
/>
|
|
<!-- U+0686: "چ" KURDISH LETTER CH
|
|
U+062C: "ج" ARABIC LETTER JIM -->
|
|
<Key latin:keySpec="چ"
|
|
latin:moreKeys="ج" />
|
|
|
|
<!-- U+0638: "ظ" ARABIC LETTER THA
|
|
U+06A4: "ڤ" KURDISH LETTER V -->
|
|
<Key
|
|
latin:keySpec="ظ"
|
|
latin:moreKeys="ڤ"
|
|
/>
|
|
<!-- U+0649: "ى" ARABIC LETTER YA
|
|
U+0628: "ب" ARABIC LETTER BA
|
|
-->
|
|
<Key latin:keySpec="ى"
|
|
latin:moreKeys="ب"/>
|
|
<!-- U+0648: "ة" ARABIC LETTER TA
|
|
U+0646: "ن" ARABIC LETTER NUN
|
|
-->
|
|
<Key latin:keySpec="و"
|
|
latin:moreKeys="ن"/>
|
|
<!-- U+0640: "-" SYMBOL Dash
|
|
U+0645: "م" ARABIC LETTER MEEM -->
|
|
<Key
|
|
latin:keySpec="ـ"
|
|
latin:moreKeys="م"
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
</default>
|
|
</switch>
|
|
|
|
</merge>
|