1<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4**
5** Copyright 2012, The Android Open Source Project
6**
7** Licensed under the Apache License, Version 2.0 (the "License");
8** you may not use this file except in compliance with the License.
9** You may obtain a copy of the License at
10**
11**     http://www.apache.org/licenses/LICENSE-2.0
12**
13** Unless required by applicable law or agreed to in writing, software
14** distributed under the License is distributed on an "AS IS" BASIS,
15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16** See the License for the specific language governing permissions and
17** limitations under the License.
18*/
19-->
20
21<merge
22    xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin"
23>
24    <switch>
25        <case
26            latin:keyboardLayoutSetElement="alphabet|alphabetAutomaticShifted|alphabetShiftLocked"
27        >
28            <Key
29                latin:keySpec="`"
30                latin:additionalMoreKeys="~" />
31            <Key
32                latin:keySpec="1"
33                latin:additionalMoreKeys="!,!text/morekeys_exclamation"
34                latin:moreKeys="!text/morekeys_symbols_1" />
35            <Key
36                latin:keySpec="2"
37                latin:additionalMoreKeys="\@"
38                latin:moreKeys="!text/morekeys_symbols_2" />
39            <Key
40                latin:keySpec="3"
41                latin:additionalMoreKeys="\#"
42                latin:moreKeys="!text/morekeys_symbols_3" />
43            <Key
44                latin:keySpec="4"
45                latin:additionalMoreKeys="$"
46                latin:moreKeys="!text/morekeys_symbols_4" />
47            <Key
48                latin:keySpec="5"
49                latin:additionalMoreKeys="\\%"
50                latin:moreKeys="!text/morekeys_symbols_5" />
51            <Key
52                latin:keySpec="6"
53                latin:additionalMoreKeys="^"
54                latin:moreKeys="!text/morekeys_symbols_6" />
55            <Key
56                latin:keySpec="7"
57                latin:additionalMoreKeys="&amp;"
58                latin:moreKeys="!text/morekeys_symbols_7" />
59            <Key
60                latin:keySpec="8"
61                latin:additionalMoreKeys="*"
62                latin:moreKeys="!text/morekeys_symbols_8" />
63            <Key
64                latin:keySpec="9"
65                latin:additionalMoreKeys="("
66                latin:moreKeys="!text/morekeys_symbols_9" />
67            <Key
68                latin:keySpec="0"
69                latin:additionalMoreKeys=")"
70                latin:moreKeys="!text/morekeys_symbols_0" />
71            <!-- U+2013: "–" EN DASH
72                 U+2014: "—" EM DASH
73                 U+00B7: "·" MIDDLE DOT -->
74            <Key
75                latin:keySpec="-"
76                latin:additionalMoreKeys="_"
77                latin:moreKeys="&#x2013;,&#x2014;,&#x00B7;" />
78            <!-- U+221E: "∞" INFINITY
79                 U+2260: "≠" NOT EQUAL TO
80                 U+2248: "≈" ALMOST EQUAL TO -->
81            <Key
82                latin:keySpec="="
83                latin:additionalMoreKeys="+"
84                latin:moreKeys="!fixedColumnOrder!4,&#x221E;,&#x2260;,&#x2248;,%" />
85        </case>
86        <!-- keyboardLayoutSetElement="alphabetManualShifted|alphabetShiftLockShifted" -->
87        <default>
88            <include
89                 latin:keyboardLayout="@xml/rowkeys_pcqwerty1_shift" />
90        </default>
91    </switch>
92</merge>
93