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="symbols|symbolsShifted" 27 > 28 <!-- U+2039: "" SINGLE LEFT-POINTING ANGLE QUOTATION MARK 29 U+203A: "" SINGLE RIGHT-POINTING ANGLE QUOTATION MARK 30 U+2264: "" LESS-THAN OR EQUAL TO 31 U+2265: "" GREATER-THAN EQUAL TO 32 U+00AB: "" LEFT-POINTING DOUBLE ANGLE QUOTATION MARK 33 U+00BB: "" RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK --> 34 <Key 35 latin:keyLabel="," 36 latin:additionalMoreKeys="<" 37 latin:moreKeys="!fixedColumnOrder!4,‹,⁤,«" /> 38 <Key 39 latin:keyLabel="." 40 latin:additionalMoreKeys=">" 41 latin:moreKeys="!fixedColumnOrder!4,›,⁥,»" /> 42 <!-- U+00BF: "" INVERTED QUESTION MARK --> 43 <Key 44 latin:keyLabel="/" 45 latin:additionalMoreKeys="\?" 46 latin:moreKeys="¿" /> 47 </case> 48 <default> 49 <!-- U+2039: "" SINGLE LEFT-POINTING ANGLE QUOTATION MARK 50 U+203A: "" SINGLE RIGHT-POINTING ANGLE QUOTATION MARK 51 U+2264: "" LESS-THAN OR EQUAL TO 52 U+2265: "" GREATER-THAN EQUAL TO 53 U+00AB: "" LEFT-POINTING DOUBLE ANGLE QUOTATION MARK 54 U+00BB: "" RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK --> 55 <Key 56 latin:keyLabel="," 57 latin:keyHintLabel="<" 58 latin:additionalMoreKeys="<" 59 latin:moreKeys="!fixedColumnOrder!4,‹,≤,«" 60 latin:keyStyle="hasShiftedLetterHintStyle" /> 61 <Key 62 latin:keyLabel="." 63 latin:keyHintLabel=">" 64 latin:additionalMoreKeys=">" 65 latin:moreKeys="!fixedColumnOrder!4,›,≥,»" 66 latin:keyStyle="hasShiftedLetterHintStyle" /> 67 <!-- U+00BF: "" INVERTED QUESTION MARK --> 68 <Key 69 latin:keyLabel="/" 70 latin:keyHintLabel="\?" 71 latin:additionalMoreKeys="\?" 72 latin:moreKeys="¿" 73 latin:keyStyle="hasShiftedLetterHintStyle" /> 74 </default> 75 </switch> 76 </merge> 77