blob: 1d4b8ae892f8872ca11be263a4c9e7145203a2f1 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
<?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="alphabetManualShifted|alphabetShiftLocked|alphabetShiftLockShifted"
>
<Key
latin:keySpec="A" />
<!-- U+10E8: "შ" GEORGIAN LETTER SHIN -->
<Key
latin:keySpec="შ" />
<Key
latin:keySpec="D" />
<Key
latin:keySpec="F" />
<Key
latin:keySpec="G" />
<Key
latin:keySpec="H" />
<!-- U+10DF: "ჟ" GEORGIAN LETTER ZHAR -->
<Key
latin:keySpec="ჟ" />
<Key
latin:keySpec="K" />
<Key
latin:keySpec="L" />
</case>
<default>
<!-- U+10D0: "ა" GEORGIAN LETTER AN
U+10FA: "ჺ" GEORGIAN LETTER AIN -->
<Key
latin:keySpec="ა"
latin:moreKeys="ჺ" />
<!-- U+10E1: "ს" GEORGIAN LETTER SAN -->
<Key
latin:keySpec="ს" />
<!-- U+10D3: "დ" GEORGIAN LETTER DON -->
<Key
latin:keySpec="დ" />
<!-- U+10E4: "ფ" GEORGIAN LETTER PHAR
U+10F6: "ჶ" GEORGIAN LETTER FI -->
<Key
latin:keySpec="ფ"
latin:moreKeys="ჶ" />
<!-- U+10D2: "გ" GEORGIAN LETTER GAN
U+10F9: "ჹ" GEORGIAN LETTER TURNED GAN -->
<Key
latin:keySpec="გ"
latin:moreKeys="ჹ" />
<!-- U+10F0: "ჰ" GEORGIAN LETTER HAE
U+10F5: "ჵ" GEORGIAN LETTER HOE -->
<Key
latin:keySpec="ჰ"
latin:moreKeys="ჵ" />
<!-- U+10EF: "ჯ" GEORGIAN LETTER JHAN
U+10F7: "ჷ" GEORGIAN LETTER YN -->
<Key
latin:keySpec="ჯ"
latin:moreKeys="ჷ" />
<!-- U+10D9: "კ" GEORGIAN LETTER KAN -->
<Key
latin:keySpec="კ" />
<!-- U+10DA: "ლ" GEORGIAN LETTER LAS -->
<Key
latin:keySpec="ლ" />
</default>
</switch>
</merge>
|