am cc8f4491: Merge "Add Malayalam keyboard"
* commit 'cc8f4491e3f1cc956002397f8e04ed023fb20c5c': Add Malayalam keyboardmain
commit
cad342c128
|
@ -0,0 +1,49 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
/*
|
||||||
|
**
|
||||||
|
** Copyright 2014, 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/com.android.inputmethod.latin">
|
||||||
|
<include latin:keyboardLayout="@xml/key_styles_common" />
|
||||||
|
<Row
|
||||||
|
latin:keyWidth="8.182%p"
|
||||||
|
latin:keyLabelFlags="fontNormal|autoXScale"
|
||||||
|
>
|
||||||
|
<include latin:keyboardLayout="@xml/rowkeys_malayalam1" />
|
||||||
|
<Key
|
||||||
|
latin:keyStyle="deleteKeyStyle"
|
||||||
|
latin:keyWidth="fillRight" />
|
||||||
|
</Row>
|
||||||
|
<Row
|
||||||
|
latin:keyWidth="8.182%p"
|
||||||
|
latin:keyLabelFlags="fontNormal|autoXScale"
|
||||||
|
>
|
||||||
|
<include latin:keyboardLayout="@xml/rowkeys_malayalam2" />
|
||||||
|
<Key
|
||||||
|
latin:keyStyle="enterKeyStyle"
|
||||||
|
latin:keyWidth="fillRight" />
|
||||||
|
</Row>
|
||||||
|
<Row
|
||||||
|
latin:keyWidth="8.182%p"
|
||||||
|
latin:keyLabelFlags="fontNormal|autoXScale"
|
||||||
|
>
|
||||||
|
<include latin:keyboardLayout="@xml/rowkeys_malayalam3" />
|
||||||
|
<include latin:keyboardLayout="@xml/keys_exclamation_question" />
|
||||||
|
</Row>
|
||||||
|
<include latin:keyboardLayout="@xml/row_qwerty4" />
|
||||||
|
</merge>
|
|
@ -0,0 +1,26 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
/*
|
||||||
|
**
|
||||||
|
** Copyright 2014, 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.
|
||||||
|
*/
|
||||||
|
-->
|
||||||
|
|
||||||
|
<Keyboard
|
||||||
|
xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin"
|
||||||
|
>
|
||||||
|
<include
|
||||||
|
latin:keyboardLayout="@xml/rows_malayalam" />
|
||||||
|
</Keyboard>
|
|
@ -0,0 +1,42 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
/*
|
||||||
|
**
|
||||||
|
** Copyright 2014, 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.
|
||||||
|
*/
|
||||||
|
-->
|
||||||
|
|
||||||
|
<KeyboardLayoutSet
|
||||||
|
xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin">
|
||||||
|
<Element
|
||||||
|
latin:elementName="alphabet"
|
||||||
|
latin:elementKeyboard="@xml/kbd_malayalam"
|
||||||
|
latin:enableProximityCharsCorrection="true" />
|
||||||
|
<Element
|
||||||
|
latin:elementName="symbols"
|
||||||
|
latin:elementKeyboard="@xml/kbd_symbols" />
|
||||||
|
<Element
|
||||||
|
latin:elementName="symbolsShifted"
|
||||||
|
latin:elementKeyboard="@xml/kbd_symbols_shift" />
|
||||||
|
<Element
|
||||||
|
latin:elementName="phone"
|
||||||
|
latin:elementKeyboard="@xml/kbd_phone" />
|
||||||
|
<Element
|
||||||
|
latin:elementName="phoneSymbols"
|
||||||
|
latin:elementKeyboard="@xml/kbd_phone_symbols" />
|
||||||
|
<Element
|
||||||
|
latin:elementName="number"
|
||||||
|
latin:elementKeyboard="@xml/kbd_number" />
|
||||||
|
</KeyboardLayoutSet>
|
|
@ -68,6 +68,7 @@
|
||||||
lt: Lithuanian/qwerty
|
lt: Lithuanian/qwerty
|
||||||
lv: Latvian/qwerty
|
lv: Latvian/qwerty
|
||||||
mk: Macedonian/south_slavic
|
mk: Macedonian/south_slavic
|
||||||
|
(ml_IN: Malayalam (India)/malayalam) # This is a preliminary keyboard layout.
|
||||||
mn_MN: Mongolian (Mongolia)/mongolian
|
mn_MN: Mongolian (Mongolia)/mongolian
|
||||||
(mr_IN: Marathi (India)/marathi) # This is a preliminary keyboard layout.
|
(mr_IN: Marathi (India)/marathi) # This is a preliminary keyboard layout.
|
||||||
ms_MY: Malay (Malaysia)/qwerty
|
ms_MY: Malay (Malaysia)/qwerty
|
||||||
|
@ -483,6 +484,16 @@
|
||||||
android:imeSubtypeExtraValue="KeyboardLayoutSet=south_slavic,EmojiCapable"
|
android:imeSubtypeExtraValue="KeyboardLayoutSet=south_slavic,EmojiCapable"
|
||||||
android:isAsciiCapable="false"
|
android:isAsciiCapable="false"
|
||||||
/>
|
/>
|
||||||
|
<!-- TODO: This malayalam keyboard is a preliminary layout.
|
||||||
|
This isn't based on the final specification. -->
|
||||||
|
<subtype android:icon="@drawable/ic_ime_switcher_dark"
|
||||||
|
android:label="@string/subtype_generic"
|
||||||
|
android:subtypeId="0xc182ebd4"
|
||||||
|
android:imeSubtypeLocale="ml_IN"
|
||||||
|
android:imeSubtypeMode="keyboard"
|
||||||
|
android:imeSubtypeExtraValue="KeyboardLayoutSet=malayalam,EmojiCapable"
|
||||||
|
android:isAsciiCapable="false"
|
||||||
|
/>
|
||||||
<subtype android:icon="@drawable/ic_ime_switcher_dark"
|
<subtype android:icon="@drawable/ic_ime_switcher_dark"
|
||||||
android:label="@string/subtype_generic"
|
android:label="@string/subtype_generic"
|
||||||
android:subtypeId="0xcdcfc3ab"
|
android:subtypeId="0xcdcfc3ab"
|
||||||
|
|
|
@ -0,0 +1,100 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
/*
|
||||||
|
**
|
||||||
|
** Copyright 2014, 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/com.android.inputmethod.latin" >
|
||||||
|
<!-- U+0D4D: "്" MALAYALAM SIGN VIRAMA
|
||||||
|
U+0D05: "അ" MALAYALAM LETTER A -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="്"
|
||||||
|
latin:moreKeys="അ,%"
|
||||||
|
latin:keyHintLabel="1"
|
||||||
|
latin:additionalMoreKeys="1" />
|
||||||
|
<!-- U+0D3E: "ാ" MALAYALAM VOWEL SIGN AA
|
||||||
|
U+0D06: "ആ" MALAYALAM LETTER AA -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ാ"
|
||||||
|
latin:moreKeys="ആ,%"
|
||||||
|
latin:keyHintLabel="2"
|
||||||
|
latin:additionalMoreKeys="2" />
|
||||||
|
<!-- U+0D3F: "ി" MALAYALAM VOWEL SIGN I
|
||||||
|
U+0D07: "ഇ" MALAYALAM LETTER I -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ി"
|
||||||
|
latin:moreKeys="ഇ,%"
|
||||||
|
latin:keyHintLabel="3"
|
||||||
|
latin:additionalMoreKeys="3" />
|
||||||
|
<!-- U+0D40: "ീ" MALAYALAM VOWEL SIGN II
|
||||||
|
U+0D08: "ഈ" MALAYALAM LETTER II -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ീ"
|
||||||
|
latin:moreKeys="ഈ,%"
|
||||||
|
latin:keyHintLabel="4"
|
||||||
|
latin:additionalMoreKeys="4" />
|
||||||
|
<!-- U+0D41: "ു" MALAYALAM VOWEL SIGN U
|
||||||
|
U+0D09: "ഉ" MALAYALAM LETTER U -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ു"
|
||||||
|
latin:moreKeys="ഉ,%"
|
||||||
|
latin:keyHintLabel="5"
|
||||||
|
latin:additionalMoreKeys="5" />
|
||||||
|
<!-- U+0D42: "ൂ" MALAYALAM VOWEL SIGN UU
|
||||||
|
U+0D0A: "ഊ" MALAYALAM LETTER UU -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ൂ"
|
||||||
|
latin:moreKeys="ഊ,%"
|
||||||
|
latin:keyHintLabel="6"
|
||||||
|
latin:additionalMoreKeys="6" />
|
||||||
|
<!-- U+0D43: "ൃ" MALAYALAM VOWEL SIGN VOCALIC R
|
||||||
|
U+0D0B: "ഋ" MALAYALAM LETTER VOCALIC R -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ൃ"
|
||||||
|
latin:moreKeys="ഋ,%"
|
||||||
|
latin:keyHintLabel="7"
|
||||||
|
latin:additionalMoreKeys="7" />
|
||||||
|
<!-- U+0D46: "െ" MALAYALAM VOWEL SIGN E
|
||||||
|
U+0D0E: "എ" MALAYALAM LETTER E
|
||||||
|
U+0D10: "ഐ" MALAYALAM LETTER AI
|
||||||
|
U+0D48: "ൈ" MALAYALAM VOWEL SIGN AI -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="െ"
|
||||||
|
latin:moreKeys="എ,ഐ,ൈ,%"
|
||||||
|
latin:keyHintLabel="8"
|
||||||
|
latin:additionalMoreKeys="8" />
|
||||||
|
<!-- U+0D47: "േ" MALAYALAM VOWEL SIGN EE
|
||||||
|
U+0D0F: "ഏ" MALAYALAM LETTER EE -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="േ"
|
||||||
|
latin:moreKeys="ഏ,%"
|
||||||
|
latin:keyHintLabel="9"
|
||||||
|
latin:additionalMoreKeys="9" />
|
||||||
|
<!-- U+0D4A: "ൊ" MALAYALAM VOWEL SIGN O
|
||||||
|
U+0D12: "ഒ" MALAYALAM LETTER O -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ൊ"
|
||||||
|
latin:moreKeys="ഒ,%"
|
||||||
|
latin:keyHintLabel="0"
|
||||||
|
latin:additionalMoreKeys="0" />
|
||||||
|
<!-- U+0D4B: "ോ" MALAYALAM VOWEL SIGN OO
|
||||||
|
U+0D13: "ഓ" MALAYALAM LETTER OO
|
||||||
|
U+0D14: "ഔ" MALAYALAM LETTER AU
|
||||||
|
U+0D57: "ൗ" MALAYALAM AU LENGTH MARK -->
|
||||||
|
<Key latin:keySpec="ോ"
|
||||||
|
latin:moreKeys="ഓ,ഔ,ൗ" />
|
||||||
|
</merge>
|
|
@ -0,0 +1,77 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
/*
|
||||||
|
**
|
||||||
|
** Copyright 2014, 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/com.android.inputmethod.latin">
|
||||||
|
<!-- U+0D15: "ക" MALAYALAM LETTER KA
|
||||||
|
U+0D16: "ഖ" MALAYALAM LETTER KHA -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ക"
|
||||||
|
latin:moreKeys="ഖ" />
|
||||||
|
<!-- U+0D17: "ഗ" MALAYALAM LETTER GA
|
||||||
|
U+0D18: "ഘ" MALAYALAM LETTER GHA -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ഗ"
|
||||||
|
latin:moreKeys="ഘ" />
|
||||||
|
<!-- U+0D19: "ങ" MALAYALAM LETTER NGA
|
||||||
|
U+0D1E: "ഞ" MALAYALAM LETTER NYA -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ങ"
|
||||||
|
latin:moreKeys="ഞ" />
|
||||||
|
<!-- U+0D1A: "ച" MALAYALAM LETTER CA
|
||||||
|
U+0D1B: "ഛ" MALAYALAM LETTER CHA -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ച"
|
||||||
|
latin:moreKeys="ഛ" />
|
||||||
|
<!-- U+0D1C: "ജ" MALAYALAM LETTER JA
|
||||||
|
U+0D1D: "ഝ" MALAYALAM LETTER JHA -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ജ"
|
||||||
|
latin:moreKeys="ഝ" />
|
||||||
|
<!-- U+0D1F: "ട" MALAYALAM LETTER TTA
|
||||||
|
U+0D20: "ഠ" MALAYALAM LETTER TTHA -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ട"
|
||||||
|
latin:moreKeys="ഠ" />
|
||||||
|
<!-- U+0D21: "ഡ" MALAYALAM LETTER DDA
|
||||||
|
U+0D22: "ഢ" MALAYALAM LETTER DDHA -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ഡ"
|
||||||
|
latin:moreKeys="ഢ" />
|
||||||
|
<!-- U+0D23: "ണ" MALAYALAM LETTER NNA
|
||||||
|
U+0D7A: "ൺ" MALAYALAM LETTER CHILLU NN -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ണ"
|
||||||
|
latin:moreKeys="ൺ" />
|
||||||
|
<!-- U+0D24: "ത" MALAYALAM LETTER TA
|
||||||
|
U+0D25: "ഥ" MALAYALAM LETTER THA -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ത"
|
||||||
|
latin:moreKeys="ഥ" />
|
||||||
|
<!-- U+0D26: "ദ" MALAYALAM LETTER DA
|
||||||
|
U+0D27: "ധ" MALAYALAM LETTER DHA -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ദ"
|
||||||
|
latin:moreKeys="ധ" />
|
||||||
|
<!-- U+0D28: "ഗന" MALAYALAM LETTER NA
|
||||||
|
U+0D7B: "ൻ" MALAYALAM LETTER CHILLU N -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ന"
|
||||||
|
latin:moreKeys="ൻ" />
|
||||||
|
</merge>
|
|
@ -0,0 +1,76 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
/*
|
||||||
|
**
|
||||||
|
** Copyright 2014, 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/com.android.inputmethod.latin">
|
||||||
|
<!-- U+0D2A: "പ" MALAYALAM LETTER PA
|
||||||
|
U+0D2B: "ഫ" MALAYALAM LETTER PHA -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="പ"
|
||||||
|
latin:moreKeys="ഫ" />
|
||||||
|
<!-- U+0D2C: "ബ" MALAYALAM LETTER BA
|
||||||
|
U+0D2D: "ഭ" MALAYALAM LETTER BHA -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ബ"
|
||||||
|
latin:moreKeys="ഭ" />
|
||||||
|
<!-- U+0D2E: "മ" MALAYALAM LETTER MA
|
||||||
|
U+0D02: "ം" MALAYALAM SIGN ANUSVARA -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="മ"
|
||||||
|
latin:moreKeys="ം" />
|
||||||
|
<!-- U+0D2F: "യ" MALAYALAM LETTER YA
|
||||||
|
U+0D4D/U+0D2F: "്യ" MALAYALAM SIGN VIRAMA/MALAYALAM LETTER YA -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="യ"
|
||||||
|
latin:moreKeys="്യ" />
|
||||||
|
<!-- U+0D30: "ര" MALAYALAM LETTER RA
|
||||||
|
U+0D4D/U+0D30: "്ര" MALAYALAM SIGN VIRAMA/MALAYALAM LETTER RA
|
||||||
|
U+0D7C: "ർ" MALAYALAM LETTER CHILLU RR
|
||||||
|
U+0D31: "റ" MALAYALAM LETTER RRA -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ര"
|
||||||
|
latin:moreKeys="്ര,ർ,റ" />
|
||||||
|
<!-- U+0D32: "ല" MALAYALAM LETTER LA
|
||||||
|
U+0D7D: "ൽ" MALAYALAM LETTER CHILLU L -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ല"
|
||||||
|
latin:moreKeys="ൽ" />
|
||||||
|
<!-- U+0D35: "വ" MALAYALAM LETTER VA
|
||||||
|
U+0D4D/U+0D35: "്വ" MALAYALAM SIGN VIRAMA/MALAYALAM LETTER VA -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="വ"
|
||||||
|
latin:moreKeys="്വ" />
|
||||||
|
<!-- U+0D36: "ശ" MALAYALAM LETTER SHA
|
||||||
|
U+0D37: "ഷ" MALAYALAM LETTER SSA
|
||||||
|
U+0D38: "സ" MALAYALAM LETTER SA -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ശ"
|
||||||
|
latin:moreKeys="ഷ,സ" />
|
||||||
|
<!-- U+0D39: "ഹ" MALAYALAM LETTER HA
|
||||||
|
U+0D03: "ഃ" MALAYALAM SIGN VISARGA -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ഹ"
|
||||||
|
latin:moreKeys="ഃ" />
|
||||||
|
<!-- U+0D33: "ള" MALAYALAM LETTER LLA
|
||||||
|
U+0D7E: "ൾ" MALAYALAM LETTER CHILLU LL
|
||||||
|
U+0D34: "ഴ" MALAYALAM LETTER LLLA -->
|
||||||
|
<Key
|
||||||
|
latin:keySpec="ള"
|
||||||
|
latin:moreKeys="ൾ,ഴ" />
|
||||||
|
</merge>
|
|
@ -0,0 +1,45 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
/*
|
||||||
|
**
|
||||||
|
** Copyright 2014, 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/com.android.inputmethod.latin">
|
||||||
|
<include latin:keyboardLayout="@xml/key_styles_common" />
|
||||||
|
<Row
|
||||||
|
latin:keyWidth="9.091%p"
|
||||||
|
latin:keyLabelFlags="fontNormal|autoXScale"
|
||||||
|
>
|
||||||
|
<include latin:keyboardLayout="@xml/rowkeys_malayalam1" />
|
||||||
|
</Row>
|
||||||
|
<Row
|
||||||
|
latin:keyWidth="9.091%p"
|
||||||
|
latin:keyLabelFlags="fontNormal|autoXScale"
|
||||||
|
>
|
||||||
|
<include latin:keyboardLayout="@xml/rowkeys_malayalam2" />
|
||||||
|
</Row>
|
||||||
|
<Row
|
||||||
|
latin:keyWidth="9.091%p"
|
||||||
|
latin:keyLabelFlags="fontNormal|autoXScale"
|
||||||
|
>
|
||||||
|
<include latin:keyboardLayout="@xml/rowkeys_malayalam3" />
|
||||||
|
<Key
|
||||||
|
latin:keyStyle="deleteKeyStyle"
|
||||||
|
latin:keyWidth="fillRight" />
|
||||||
|
</Row>
|
||||||
|
<include latin:keyboardLayout="@xml/row_qwerty4" />
|
||||||
|
</merge>
|
|
@ -88,7 +88,7 @@ public final class KeyboardTextsTable {
|
||||||
/* 2:30 */ "morekeys_u",
|
/* 2:30 */ "morekeys_u",
|
||||||
/* 3:29 */ "morekeys_e",
|
/* 3:29 */ "morekeys_e",
|
||||||
/* 4:28 */ "morekeys_i",
|
/* 4:28 */ "morekeys_i",
|
||||||
/* 5:25 */ "keylabel_to_alpha",
|
/* 5:26 */ "keylabel_to_alpha",
|
||||||
/* 6:23 */ "morekeys_c",
|
/* 6:23 */ "morekeys_c",
|
||||||
/* 7:23 */ "double_quotes",
|
/* 7:23 */ "double_quotes",
|
||||||
/* 8:22 */ "morekeys_n",
|
/* 8:22 */ "morekeys_n",
|
||||||
|
@ -96,8 +96,8 @@ public final class KeyboardTextsTable {
|
||||||
/* 10:20 */ "morekeys_s",
|
/* 10:20 */ "morekeys_s",
|
||||||
/* 11:14 */ "morekeys_y",
|
/* 11:14 */ "morekeys_y",
|
||||||
/* 12:13 */ "morekeys_d",
|
/* 12:13 */ "morekeys_d",
|
||||||
/* 13:12 */ "morekeys_z",
|
/* 13:13 */ "keyspec_currency",
|
||||||
/* 14:12 */ "keyspec_currency",
|
/* 14:12 */ "morekeys_z",
|
||||||
/* 15:10 */ "morekeys_t",
|
/* 15:10 */ "morekeys_t",
|
||||||
/* 16:10 */ "morekeys_l",
|
/* 16:10 */ "morekeys_l",
|
||||||
/* 17: 9 */ "morekeys_g",
|
/* 17: 9 */ "morekeys_g",
|
||||||
|
@ -267,11 +267,11 @@ public final class KeyboardTextsTable {
|
||||||
/* morekeys_n */ EMPTY,
|
/* morekeys_n */ EMPTY,
|
||||||
/* single_quotes */ "!text/single_lqm_rqm",
|
/* single_quotes */ "!text/single_lqm_rqm",
|
||||||
/* morekeys_s ~ */
|
/* morekeys_s ~ */
|
||||||
EMPTY, EMPTY, EMPTY, EMPTY,
|
|
||||||
/* ~ morekeys_z */
|
|
||||||
/* keyspec_currency */ "$",
|
|
||||||
/* morekeys_t ~ */
|
|
||||||
EMPTY, EMPTY, EMPTY,
|
EMPTY, EMPTY, EMPTY,
|
||||||
|
/* ~ morekeys_d */
|
||||||
|
/* keyspec_currency */ "$",
|
||||||
|
/* morekeys_z ~ */
|
||||||
|
EMPTY, EMPTY, EMPTY, EMPTY,
|
||||||
/* ~ morekeys_g */
|
/* ~ morekeys_g */
|
||||||
/* single_angle_quotes */ "!text/single_laqm_raqm",
|
/* single_angle_quotes */ "!text/single_laqm_raqm",
|
||||||
/* double_angle_quotes */ "!text/double_laqm_raqm",
|
/* double_angle_quotes */ "!text/double_laqm_raqm",
|
||||||
|
@ -764,8 +764,8 @@ public final class KeyboardTextsTable {
|
||||||
// U+0997: "ग" BENGALI LETTER GA
|
// U+0997: "ग" BENGALI LETTER GA
|
||||||
/* keylabel_to_alpha */ "\u0995\u0996\u0997",
|
/* keylabel_to_alpha */ "\u0995\u0996\u0997",
|
||||||
/* morekeys_c ~ */
|
/* morekeys_c ~ */
|
||||||
null, null, null, null, null, null, null, null,
|
null, null, null, null, null, null, null,
|
||||||
/* ~ morekeys_z */
|
/* ~ morekeys_d */
|
||||||
// U+09F3: "৳" BENGALI RUPEE SIGN
|
// U+09F3: "৳" BENGALI RUPEE SIGN
|
||||||
/* keyspec_currency */ "\u09F3",
|
/* keyspec_currency */ "\u09F3",
|
||||||
};
|
};
|
||||||
|
@ -909,11 +909,11 @@ public final class KeyboardTextsTable {
|
||||||
/* morekeys_y */ "\u00FD,\u00FF",
|
/* morekeys_y */ "\u00FD,\u00FF",
|
||||||
// U+010F: "ď" LATIN SMALL LETTER D WITH CARON
|
// U+010F: "ď" LATIN SMALL LETTER D WITH CARON
|
||||||
/* morekeys_d */ "\u010F",
|
/* morekeys_d */ "\u010F",
|
||||||
|
/* keyspec_currency */ null,
|
||||||
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
||||||
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
||||||
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
||||||
/* morekeys_z */ "\u017E,\u017A,\u017C",
|
/* morekeys_z */ "\u017E,\u017A,\u017C",
|
||||||
/* keyspec_currency */ null,
|
|
||||||
// U+0165: "ť" LATIN SMALL LETTER T WITH CARON
|
// U+0165: "ť" LATIN SMALL LETTER T WITH CARON
|
||||||
/* morekeys_t */ "\u0165",
|
/* morekeys_t */ "\u0165",
|
||||||
/* morekeys_l */ null,
|
/* morekeys_l */ null,
|
||||||
|
@ -968,7 +968,7 @@ public final class KeyboardTextsTable {
|
||||||
/* morekeys_y */ "\u00FD,\u00FF",
|
/* morekeys_y */ "\u00FD,\u00FF",
|
||||||
// U+00F0: "ð" LATIN SMALL LETTER ETH
|
// U+00F0: "ð" LATIN SMALL LETTER ETH
|
||||||
/* morekeys_d */ "\u00F0",
|
/* morekeys_d */ "\u00F0",
|
||||||
/* morekeys_z ~ */
|
/* keyspec_currency ~ */
|
||||||
null, null, null,
|
null, null, null,
|
||||||
/* ~ morekeys_t */
|
/* ~ morekeys_t */
|
||||||
// U+0142: "ł" LATIN SMALL LETTER L WITH STROKE
|
// U+0142: "ł" LATIN SMALL LETTER L WITH STROKE
|
||||||
|
@ -1209,11 +1209,11 @@ public final class KeyboardTextsTable {
|
||||||
// U+010F: "ď" LATIN SMALL LETTER D WITH CARON
|
// U+010F: "ď" LATIN SMALL LETTER D WITH CARON
|
||||||
// U+0111: "đ" LATIN SMALL LETTER D WITH STROKE
|
// U+0111: "đ" LATIN SMALL LETTER D WITH STROKE
|
||||||
/* morekeys_d */ "\u00F0,\u010F,\u0111",
|
/* morekeys_d */ "\u00F0,\u010F,\u0111",
|
||||||
|
/* keyspec_currency */ null,
|
||||||
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
||||||
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
||||||
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
||||||
/* morekeys_z */ "\u017A,\u017C,\u017E",
|
/* morekeys_z */ "\u017A,\u017C,\u017E",
|
||||||
/* keyspec_currency */ null,
|
|
||||||
// U+0165: "ť" LATIN SMALL LETTER T WITH CARON
|
// U+0165: "ť" LATIN SMALL LETTER T WITH CARON
|
||||||
// U+021B: "ț" LATIN SMALL LETTER T WITH COMMA BELOW
|
// U+021B: "ț" LATIN SMALL LETTER T WITH COMMA BELOW
|
||||||
// U+0163: "ţ" LATIN SMALL LETTER T WITH CEDILLA
|
// U+0163: "ţ" LATIN SMALL LETTER T WITH CEDILLA
|
||||||
|
@ -1403,11 +1403,11 @@ public final class KeyboardTextsTable {
|
||||||
/* morekeys_y */ "\u00FD,\u00FF",
|
/* morekeys_y */ "\u00FD,\u00FF",
|
||||||
// U+010F: "ď" LATIN SMALL LETTER D WITH CARON
|
// U+010F: "ď" LATIN SMALL LETTER D WITH CARON
|
||||||
/* morekeys_d */ "\u010F",
|
/* morekeys_d */ "\u010F",
|
||||||
|
/* keyspec_currency */ null,
|
||||||
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
||||||
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
||||||
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
||||||
/* morekeys_z */ "\u017E,\u017C,\u017A",
|
/* morekeys_z */ "\u017E,\u017C,\u017A",
|
||||||
/* keyspec_currency */ null,
|
|
||||||
// U+0163: "ţ" LATIN SMALL LETTER T WITH CEDILLA
|
// U+0163: "ţ" LATIN SMALL LETTER T WITH CEDILLA
|
||||||
// U+0165: "ť" LATIN SMALL LETTER T WITH CARON
|
// U+0165: "ť" LATIN SMALL LETTER T WITH CARON
|
||||||
/* morekeys_t */ "\u0163,\u0165",
|
/* morekeys_t */ "\u0163,\u0165",
|
||||||
|
@ -1505,13 +1505,13 @@ public final class KeyboardTextsTable {
|
||||||
// U+067E: "پ" ARABIC LETTER PEH
|
// U+067E: "پ" ARABIC LETTER PEH
|
||||||
/* keylabel_to_alpha */ "\u0627\u200C\u0628\u200C\u067E",
|
/* keylabel_to_alpha */ "\u0627\u200C\u0628\u200C\u067E",
|
||||||
/* morekeys_c ~ */
|
/* morekeys_c ~ */
|
||||||
null, null, null, null, null, null, null, null,
|
null, null, null, null, null, null, null,
|
||||||
/* ~ morekeys_z */
|
/* ~ morekeys_d */
|
||||||
// U+FDFC: "﷼" RIAL SIGN
|
// U+FDFC: "﷼" RIAL SIGN
|
||||||
/* keyspec_currency */ "\uFDFC",
|
/* keyspec_currency */ "\uFDFC",
|
||||||
/* morekeys_t ~ */
|
/* morekeys_z ~ */
|
||||||
null, null, null, null, null, null, null, null, null, null, null, null, null, null, null,
|
null, null, null, null, null, null, null, null, null, null, null, null, null, null, null,
|
||||||
null, null,
|
null, null, null,
|
||||||
/* ~ morekeys_cyrillic_soft_sign */
|
/* ~ morekeys_cyrillic_soft_sign */
|
||||||
// U+06F1: "۱" EXTENDED ARABIC-INDIC DIGIT ONE
|
// U+06F1: "۱" EXTENDED ARABIC-INDIC DIGIT ONE
|
||||||
/* keyspec_symbols_1 */ "\u06F1",
|
/* keyspec_symbols_1 */ "\u06F1",
|
||||||
|
@ -1663,14 +1663,15 @@ public final class KeyboardTextsTable {
|
||||||
// U+00DF: "ß" LATIN SMALL LETTER SHARP S
|
// U+00DF: "ß" LATIN SMALL LETTER SHARP S
|
||||||
// U+015B: "ś" LATIN SMALL LETTER S WITH ACUTE
|
// U+015B: "ś" LATIN SMALL LETTER S WITH ACUTE
|
||||||
/* morekeys_s */ "\u0161,\u00DF,\u015B",
|
/* morekeys_s */ "\u0161,\u00DF,\u015B",
|
||||||
/* morekeys_y */ null,
|
/* morekeys_y ~ */
|
||||||
/* morekeys_d */ null,
|
null, null, null,
|
||||||
|
/* ~ keyspec_currency */
|
||||||
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
||||||
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
||||||
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
||||||
/* morekeys_z */ "\u017E,\u017A,\u017C",
|
/* morekeys_z */ "\u017E,\u017A,\u017C",
|
||||||
/* keyspec_currency ~ */
|
/* morekeys_t ~ */
|
||||||
null, null, null, null, null, null, null, null, null,
|
null, null, null, null, null, null, null, null,
|
||||||
/* ~ morekeys_cyrillic_ie */
|
/* ~ morekeys_cyrillic_ie */
|
||||||
// U+00E5: "å" LATIN SMALL LETTER A WITH RING ABOVE
|
// U+00E5: "å" LATIN SMALL LETTER A WITH RING ABOVE
|
||||||
/* keyspec_nordic_row1_11 */ "\u00E5",
|
/* keyspec_nordic_row1_11 */ "\u00E5",
|
||||||
|
@ -1826,13 +1827,13 @@ public final class KeyboardTextsTable {
|
||||||
// U+0917: "ग" DEVANAGARI LETTER GA
|
// U+0917: "ग" DEVANAGARI LETTER GA
|
||||||
/* keylabel_to_alpha */ "\u0915\u0916\u0917",
|
/* keylabel_to_alpha */ "\u0915\u0916\u0917",
|
||||||
/* morekeys_c ~ */
|
/* morekeys_c ~ */
|
||||||
null, null, null, null, null, null, null, null,
|
null, null, null, null, null, null, null,
|
||||||
/* ~ morekeys_z */
|
/* ~ morekeys_d */
|
||||||
// U+20B9: "₹" INDIAN RUPEE SIGN
|
// U+20B9: "₹" INDIAN RUPEE SIGN
|
||||||
/* keyspec_currency */ "\u20B9",
|
/* keyspec_currency */ "\u20B9",
|
||||||
/* morekeys_t ~ */
|
/* morekeys_z ~ */
|
||||||
null, null, null, null, null, null, null, null, null, null, null, null, null, null, null,
|
null, null, null, null, null, null, null, null, null, null, null, null, null, null, null,
|
||||||
null, null,
|
null, null, null,
|
||||||
/* ~ morekeys_cyrillic_soft_sign */
|
/* ~ morekeys_cyrillic_soft_sign */
|
||||||
// U+0967: "१" DEVANAGARI DIGIT ONE
|
// U+0967: "१" DEVANAGARI DIGIT ONE
|
||||||
/* keyspec_symbols_1 */ "\u0967",
|
/* keyspec_symbols_1 */ "\u0967",
|
||||||
|
@ -1889,12 +1890,13 @@ public final class KeyboardTextsTable {
|
||||||
/* morekeys_y */ null,
|
/* morekeys_y */ null,
|
||||||
// U+0111: "đ" LATIN SMALL LETTER D WITH STROKE
|
// U+0111: "đ" LATIN SMALL LETTER D WITH STROKE
|
||||||
/* morekeys_d */ "\u0111",
|
/* morekeys_d */ "\u0111",
|
||||||
|
/* keyspec_currency */ null,
|
||||||
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
||||||
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
||||||
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
||||||
/* morekeys_z */ "\u017E,\u017A,\u017C",
|
/* morekeys_z */ "\u017E,\u017A,\u017C",
|
||||||
/* keyspec_currency ~ */
|
/* morekeys_t ~ */
|
||||||
null, null, null, null,
|
null, null, null,
|
||||||
/* ~ morekeys_g */
|
/* ~ morekeys_g */
|
||||||
/* single_angle_quotes */ "!text/single_raqm_laqm",
|
/* single_angle_quotes */ "!text/single_raqm_laqm",
|
||||||
/* double_angle_quotes */ "!text/double_raqm_laqm",
|
/* double_angle_quotes */ "!text/double_raqm_laqm",
|
||||||
|
@ -2068,8 +2070,8 @@ public final class KeyboardTextsTable {
|
||||||
/* morekeys_y */ "\u00FD,\u00FF",
|
/* morekeys_y */ "\u00FD,\u00FF",
|
||||||
// U+00F0: "ð" LATIN SMALL LETTER ETH
|
// U+00F0: "ð" LATIN SMALL LETTER ETH
|
||||||
/* morekeys_d */ "\u00F0",
|
/* morekeys_d */ "\u00F0",
|
||||||
/* morekeys_z */ null,
|
|
||||||
/* keyspec_currency */ null,
|
/* keyspec_currency */ null,
|
||||||
|
/* morekeys_z */ null,
|
||||||
// U+00FE: "þ" LATIN SMALL LETTER THORN
|
// U+00FE: "þ" LATIN SMALL LETTER THORN
|
||||||
/* morekeys_t */ "\u00FE",
|
/* morekeys_t */ "\u00FE",
|
||||||
};
|
};
|
||||||
|
@ -2152,15 +2154,15 @@ public final class KeyboardTextsTable {
|
||||||
/* morekeys_n */ null,
|
/* morekeys_n */ null,
|
||||||
/* single_quotes */ "!text/single_rqm_9qm",
|
/* single_quotes */ "!text/single_rqm_9qm",
|
||||||
/* morekeys_s ~ */
|
/* morekeys_s ~ */
|
||||||
null, null, null, null,
|
null, null, null,
|
||||||
/* ~ morekeys_z */
|
/* ~ morekeys_d */
|
||||||
// U+20AA: "₪" NEW SHEQEL SIGN
|
// U+20AA: "₪" NEW SHEQEL SIGN
|
||||||
/* keyspec_currency */ "\u20AA",
|
/* keyspec_currency */ "\u20AA",
|
||||||
/* morekeys_t ~ */
|
/* morekeys_z ~ */
|
||||||
null, null, null, null, null, null, null, null, null, null, null, null, null, null, null,
|
null, null, null, null, null, null, null, null, null, null, null, null, null, null, null,
|
||||||
null, null, null, null, null, null, null, null, null, null, null, null, null, null, null,
|
null, null, null, null, null, null, null, null, null, null, null, null, null, null, null,
|
||||||
null, null, null, null, null, null, null, null, null, null, null, null, null, null, null,
|
null, null, null, null, null, null, null, null, null, null, null, null, null, null, null,
|
||||||
null, null,
|
null, null, null,
|
||||||
/* ~ morekeys_swiss_row2_11 */
|
/* ~ morekeys_swiss_row2_11 */
|
||||||
// U+2605: "★" BLACK STAR
|
// U+2605: "★" BLACK STAR
|
||||||
/* morekeys_star */ "\u2605",
|
/* morekeys_star */ "\u2605",
|
||||||
|
@ -2349,8 +2351,8 @@ public final class KeyboardTextsTable {
|
||||||
// U+0E84: "ຄ" LAO LETTER KHO TAM
|
// U+0E84: "ຄ" LAO LETTER KHO TAM
|
||||||
/* keylabel_to_alpha */ "\u0E81\u0E82\u0E84",
|
/* keylabel_to_alpha */ "\u0E81\u0E82\u0E84",
|
||||||
/* morekeys_c ~ */
|
/* morekeys_c ~ */
|
||||||
null, null, null, null, null, null, null, null,
|
null, null, null, null, null, null, null,
|
||||||
/* ~ morekeys_z */
|
/* ~ morekeys_d */
|
||||||
// U+20AD: "₭" KIP SIGN
|
// U+20AD: "₭" KIP SIGN
|
||||||
/* keyspec_currency */ "\u20AD",
|
/* keyspec_currency */ "\u20AD",
|
||||||
};
|
};
|
||||||
|
@ -2424,11 +2426,11 @@ public final class KeyboardTextsTable {
|
||||||
/* morekeys_y */ "\u00FD,\u00FF",
|
/* morekeys_y */ "\u00FD,\u00FF",
|
||||||
// U+010F: "ď" LATIN SMALL LETTER D WITH CARON
|
// U+010F: "ď" LATIN SMALL LETTER D WITH CARON
|
||||||
/* morekeys_d */ "\u010F",
|
/* morekeys_d */ "\u010F",
|
||||||
|
/* keyspec_currency */ null,
|
||||||
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
||||||
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
||||||
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
||||||
/* morekeys_z */ "\u017E,\u017C,\u017A",
|
/* morekeys_z */ "\u017E,\u017C,\u017A",
|
||||||
/* keyspec_currency */ null,
|
|
||||||
// U+0163: "ţ" LATIN SMALL LETTER T WITH CEDILLA
|
// U+0163: "ţ" LATIN SMALL LETTER T WITH CEDILLA
|
||||||
// U+0165: "ť" LATIN SMALL LETTER T WITH CARON
|
// U+0165: "ť" LATIN SMALL LETTER T WITH CARON
|
||||||
/* morekeys_t */ "\u0163,\u0165",
|
/* morekeys_t */ "\u0163,\u0165",
|
||||||
|
@ -2518,11 +2520,11 @@ public final class KeyboardTextsTable {
|
||||||
/* morekeys_y */ "\u00FD,\u00FF",
|
/* morekeys_y */ "\u00FD,\u00FF",
|
||||||
// U+010F: "ď" LATIN SMALL LETTER D WITH CARON
|
// U+010F: "ď" LATIN SMALL LETTER D WITH CARON
|
||||||
/* morekeys_d */ "\u010F",
|
/* morekeys_d */ "\u010F",
|
||||||
|
/* keyspec_currency */ null,
|
||||||
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
||||||
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
||||||
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
||||||
/* morekeys_z */ "\u017E,\u017C,\u017A",
|
/* morekeys_z */ "\u017E,\u017C,\u017A",
|
||||||
/* keyspec_currency */ null,
|
|
||||||
// U+0163: "ţ" LATIN SMALL LETTER T WITH CEDILLA
|
// U+0163: "ţ" LATIN SMALL LETTER T WITH CEDILLA
|
||||||
// U+0165: "ť" LATIN SMALL LETTER T WITH CARON
|
// U+0165: "ť" LATIN SMALL LETTER T WITH CARON
|
||||||
/* morekeys_t */ "\u0163,\u0165",
|
/* morekeys_t */ "\u0163,\u0165",
|
||||||
|
@ -2582,6 +2584,21 @@ public final class KeyboardTextsTable {
|
||||||
/* keyspec_south_slavic_row3_8 */ "\u0453",
|
/* keyspec_south_slavic_row3_8 */ "\u0453",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* Locale ml_IN: Malayalam (India) */
|
||||||
|
private static final String[] TEXTS_ml_IN = {
|
||||||
|
/* morekeys_a ~ */
|
||||||
|
null, null, null, null, null,
|
||||||
|
/* ~ morekeys_i */
|
||||||
|
// Label for "switch to alphabetic" key.
|
||||||
|
// U+0D05: "അ" MALAYALAM LETTER A
|
||||||
|
/* keylabel_to_alpha */ "\u0D05",
|
||||||
|
/* morekeys_c ~ */
|
||||||
|
null, null, null, null, null, null, null,
|
||||||
|
/* ~ morekeys_d */
|
||||||
|
// U+20B9: "₹" INDIAN RUPEE SIGN
|
||||||
|
/* keyspec_currency */ "\u20B9",
|
||||||
|
};
|
||||||
|
|
||||||
/* Locale mn_MN: Mongolian (Mongolia) */
|
/* Locale mn_MN: Mongolian (Mongolia) */
|
||||||
private static final String[] TEXTS_mn_MN = {
|
private static final String[] TEXTS_mn_MN = {
|
||||||
/* morekeys_a ~ */
|
/* morekeys_a ~ */
|
||||||
|
@ -2593,8 +2610,8 @@ public final class KeyboardTextsTable {
|
||||||
// U+0412: "В" CYRILLIC CAPITAL LETTER VE
|
// U+0412: "В" CYRILLIC CAPITAL LETTER VE
|
||||||
/* keylabel_to_alpha */ "\u0410\u0411\u0412",
|
/* keylabel_to_alpha */ "\u0410\u0411\u0412",
|
||||||
/* morekeys_c ~ */
|
/* morekeys_c ~ */
|
||||||
null, null, null, null, null, null, null, null,
|
null, null, null, null, null, null, null,
|
||||||
/* ~ morekeys_z */
|
/* ~ morekeys_d */
|
||||||
// U+20AE: "₮" TUGRIK SIGN
|
// U+20AE: "₮" TUGRIK SIGN
|
||||||
/* keyspec_currency */ "\u20AE",
|
/* keyspec_currency */ "\u20AE",
|
||||||
};
|
};
|
||||||
|
@ -2610,13 +2627,13 @@ public final class KeyboardTextsTable {
|
||||||
// U+0917: "ग" DEVANAGARI LETTER GA
|
// U+0917: "ग" DEVANAGARI LETTER GA
|
||||||
/* keylabel_to_alpha */ "\u0915\u0916\u0917",
|
/* keylabel_to_alpha */ "\u0915\u0916\u0917",
|
||||||
/* morekeys_c ~ */
|
/* morekeys_c ~ */
|
||||||
null, null, null, null, null, null, null, null,
|
null, null, null, null, null, null, null,
|
||||||
/* ~ morekeys_z */
|
/* ~ morekeys_d */
|
||||||
// U+20B9: "₹" INDIAN RUPEE SIGN
|
// U+20B9: "₹" INDIAN RUPEE SIGN
|
||||||
/* keyspec_currency */ "\u20B9",
|
/* keyspec_currency */ "\u20B9",
|
||||||
/* morekeys_t ~ */
|
/* morekeys_z ~ */
|
||||||
null, null, null, null, null, null, null, null, null, null, null, null, null, null, null,
|
null, null, null, null, null, null, null, null, null, null, null, null, null, null, null,
|
||||||
null, null,
|
null, null, null,
|
||||||
/* ~ morekeys_cyrillic_soft_sign */
|
/* ~ morekeys_cyrillic_soft_sign */
|
||||||
// U+0967: "१" DEVANAGARI DIGIT ONE
|
// U+0967: "१" DEVANAGARI DIGIT ONE
|
||||||
/* keyspec_symbols_1 */ "\u0967",
|
/* keyspec_symbols_1 */ "\u0967",
|
||||||
|
@ -2757,13 +2774,13 @@ public final class KeyboardTextsTable {
|
||||||
// U+0917: "ग" DEVANAGARI LETTER GA
|
// U+0917: "ग" DEVANAGARI LETTER GA
|
||||||
/* keylabel_to_alpha */ "\u0915\u0916\u0917",
|
/* keylabel_to_alpha */ "\u0915\u0916\u0917",
|
||||||
/* morekeys_c ~ */
|
/* morekeys_c ~ */
|
||||||
null, null, null, null, null, null, null, null,
|
null, null, null, null, null, null, null,
|
||||||
/* ~ morekeys_z */
|
/* ~ morekeys_d */
|
||||||
// U+0930/U+0941/U+002E "रु." NEPALESE RUPEE SIGN
|
// U+0930/U+0941/U+002E "रु." NEPALESE RUPEE SIGN
|
||||||
/* keyspec_currency */ "\u0930\u0941.",
|
/* keyspec_currency */ "\u0930\u0941.",
|
||||||
/* morekeys_t ~ */
|
/* morekeys_z ~ */
|
||||||
null, null, null, null, null, null, null, null, null, null, null, null, null, null, null,
|
null, null, null, null, null, null, null, null, null, null, null, null, null, null, null,
|
||||||
null, null,
|
null, null, null,
|
||||||
/* ~ morekeys_cyrillic_soft_sign */
|
/* ~ morekeys_cyrillic_soft_sign */
|
||||||
// U+0967: "१" DEVANAGARI DIGIT ONE
|
// U+0967: "१" DEVANAGARI DIGIT ONE
|
||||||
/* keyspec_symbols_1 */ "\u0967",
|
/* keyspec_symbols_1 */ "\u0967",
|
||||||
|
@ -2898,13 +2915,13 @@ public final class KeyboardTextsTable {
|
||||||
// U+00DF: "ß" LATIN SMALL LETTER SHARP S
|
// U+00DF: "ß" LATIN SMALL LETTER SHARP S
|
||||||
// U+0161: "š" LATIN SMALL LETTER S WITH CARON
|
// U+0161: "š" LATIN SMALL LETTER S WITH CARON
|
||||||
/* morekeys_s */ "\u015B,\u00DF,\u0161",
|
/* morekeys_s */ "\u015B,\u00DF,\u0161",
|
||||||
/* morekeys_y */ null,
|
/* morekeys_y ~ */
|
||||||
/* morekeys_d */ null,
|
null, null, null,
|
||||||
|
/* ~ keyspec_currency */
|
||||||
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
||||||
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
||||||
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
||||||
/* morekeys_z */ "\u017C,\u017A,\u017E",
|
/* morekeys_z */ "\u017C,\u017A,\u017E",
|
||||||
/* keyspec_currency */ null,
|
|
||||||
/* morekeys_t */ null,
|
/* morekeys_t */ null,
|
||||||
// U+0142: "ł" LATIN SMALL LETTER L WITH STROKE
|
// U+0142: "ł" LATIN SMALL LETTER L WITH STROKE
|
||||||
/* morekeys_l */ "\u0142",
|
/* morekeys_l */ "\u0142",
|
||||||
|
@ -3006,7 +3023,7 @@ public final class KeyboardTextsTable {
|
||||||
/* morekeys_s */ "\u0219,\u00DF,\u015B,\u0161",
|
/* morekeys_s */ "\u0219,\u00DF,\u015B,\u0161",
|
||||||
/* morekeys_y ~ */
|
/* morekeys_y ~ */
|
||||||
null, null, null, null,
|
null, null, null, null,
|
||||||
/* ~ keyspec_currency */
|
/* ~ morekeys_z */
|
||||||
// U+021B: "ț" LATIN SMALL LETTER T WITH COMMA BELOW
|
// U+021B: "ț" LATIN SMALL LETTER T WITH COMMA BELOW
|
||||||
/* morekeys_t */ "\u021B",
|
/* morekeys_t */ "\u021B",
|
||||||
};
|
};
|
||||||
|
@ -3125,11 +3142,11 @@ public final class KeyboardTextsTable {
|
||||||
/* morekeys_y */ "\u00FD,\u00FF",
|
/* morekeys_y */ "\u00FD,\u00FF",
|
||||||
// U+010F: "ď" LATIN SMALL LETTER D WITH CARON
|
// U+010F: "ď" LATIN SMALL LETTER D WITH CARON
|
||||||
/* morekeys_d */ "\u010F",
|
/* morekeys_d */ "\u010F",
|
||||||
|
/* keyspec_currency */ null,
|
||||||
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
||||||
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
||||||
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
||||||
/* morekeys_z */ "\u017E,\u017C,\u017A",
|
/* morekeys_z */ "\u017E,\u017C,\u017A",
|
||||||
/* keyspec_currency */ null,
|
|
||||||
// U+0165: "ť" LATIN SMALL LETTER T WITH CARON
|
// U+0165: "ť" LATIN SMALL LETTER T WITH CARON
|
||||||
// U+0163: "ţ" LATIN SMALL LETTER T WITH CEDILLA
|
// U+0163: "ţ" LATIN SMALL LETTER T WITH CEDILLA
|
||||||
/* morekeys_t */ "\u0165,\u0163",
|
/* morekeys_t */ "\u0165,\u0163",
|
||||||
|
@ -3167,10 +3184,11 @@ public final class KeyboardTextsTable {
|
||||||
/* morekeys_y */ null,
|
/* morekeys_y */ null,
|
||||||
// U+0111: "đ" LATIN SMALL LETTER D WITH STROKE
|
// U+0111: "đ" LATIN SMALL LETTER D WITH STROKE
|
||||||
/* morekeys_d */ "\u0111",
|
/* morekeys_d */ "\u0111",
|
||||||
|
/* keyspec_currency */ null,
|
||||||
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
||||||
/* morekeys_z */ "\u017E",
|
/* morekeys_z */ "\u017E",
|
||||||
/* keyspec_currency ~ */
|
/* morekeys_t ~ */
|
||||||
null, null, null, null,
|
null, null, null,
|
||||||
/* ~ morekeys_g */
|
/* ~ morekeys_g */
|
||||||
/* single_angle_quotes */ "!text/single_raqm_laqm",
|
/* single_angle_quotes */ "!text/single_raqm_laqm",
|
||||||
/* double_angle_quotes */ "!text/double_raqm_laqm",
|
/* double_angle_quotes */ "!text/double_raqm_laqm",
|
||||||
|
@ -3290,11 +3308,11 @@ public final class KeyboardTextsTable {
|
||||||
// U+00F0: "ð" LATIN SMALL LETTER ETH
|
// U+00F0: "ð" LATIN SMALL LETTER ETH
|
||||||
// U+010F: "ď" LATIN SMALL LETTER D WITH CARON
|
// U+010F: "ď" LATIN SMALL LETTER D WITH CARON
|
||||||
/* morekeys_d */ "\u00F0,\u010F",
|
/* morekeys_d */ "\u00F0,\u010F",
|
||||||
|
/* keyspec_currency */ null,
|
||||||
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
||||||
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
||||||
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
||||||
/* morekeys_z */ "\u017A,\u017E,\u017C",
|
/* morekeys_z */ "\u017A,\u017E,\u017C",
|
||||||
/* keyspec_currency */ null,
|
|
||||||
// U+0165: "ť" LATIN SMALL LETTER T WITH CARON
|
// U+0165: "ť" LATIN SMALL LETTER T WITH CARON
|
||||||
// U+00FE: "þ" LATIN SMALL LETTER THORN
|
// U+00FE: "þ" LATIN SMALL LETTER THORN
|
||||||
/* morekeys_t */ "\u0165,\u00FE",
|
/* morekeys_t */ "\u0165,\u00FE",
|
||||||
|
@ -3389,8 +3407,8 @@ public final class KeyboardTextsTable {
|
||||||
// U+0BB4/U+0BCD: "ழ்" TAMIL LETTER LLLA/TAMIL SIGN VIRAMA
|
// U+0BB4/U+0BCD: "ழ்" TAMIL LETTER LLLA/TAMIL SIGN VIRAMA
|
||||||
/* keylabel_to_alpha */ "\u0BA4\u0BAE\u0BBF\u0BB4\u0BCD",
|
/* keylabel_to_alpha */ "\u0BA4\u0BAE\u0BBF\u0BB4\u0BCD",
|
||||||
/* morekeys_c ~ */
|
/* morekeys_c ~ */
|
||||||
null, null, null, null, null, null, null, null,
|
null, null, null, null, null, null, null,
|
||||||
/* ~ morekeys_z */
|
/* ~ morekeys_d */
|
||||||
// U+0BF9: "௹" TAMIL RUPEE SIGN
|
// U+0BF9: "௹" TAMIL RUPEE SIGN
|
||||||
/* keyspec_currency */ "\u0BF9",
|
/* keyspec_currency */ "\u0BF9",
|
||||||
};
|
};
|
||||||
|
@ -3406,8 +3424,8 @@ public final class KeyboardTextsTable {
|
||||||
// U+0E04: "ค" THAI CHARACTER KHO KHWAI
|
// U+0E04: "ค" THAI CHARACTER KHO KHWAI
|
||||||
/* keylabel_to_alpha */ "\u0E01\u0E02\u0E04",
|
/* keylabel_to_alpha */ "\u0E01\u0E02\u0E04",
|
||||||
/* morekeys_c ~ */
|
/* morekeys_c ~ */
|
||||||
null, null, null, null, null, null, null, null,
|
null, null, null, null, null, null, null,
|
||||||
/* ~ morekeys_z */
|
/* ~ morekeys_d */
|
||||||
// U+0E3F: "฿" THAI CURRENCY SYMBOL BAHT
|
// U+0E3F: "฿" THAI CURRENCY SYMBOL BAHT
|
||||||
/* keyspec_currency */ "\u0E3F",
|
/* keyspec_currency */ "\u0E3F",
|
||||||
};
|
};
|
||||||
|
@ -3530,12 +3548,12 @@ public final class KeyboardTextsTable {
|
||||||
/* morekeys_n */ null,
|
/* morekeys_n */ null,
|
||||||
/* single_quotes */ "!text/single_9qm_lqm",
|
/* single_quotes */ "!text/single_9qm_lqm",
|
||||||
/* morekeys_s ~ */
|
/* morekeys_s ~ */
|
||||||
null, null, null, null,
|
null, null, null,
|
||||||
/* ~ morekeys_z */
|
/* ~ morekeys_d */
|
||||||
// U+20B4: "₴" HRYVNIA SIGN
|
// U+20B4: "₴" HRYVNIA SIGN
|
||||||
/* keyspec_currency */ "\u20B4",
|
/* keyspec_currency */ "\u20B4",
|
||||||
/* morekeys_t ~ */
|
/* morekeys_z ~ */
|
||||||
null, null, null, null, null, null, null, null, null, null, null, null,
|
null, null, null, null, null, null, null, null, null, null, null, null, null,
|
||||||
/* ~ morekeys_nordic_row2_10 */
|
/* ~ morekeys_nordic_row2_10 */
|
||||||
// U+0449: "щ" CYRILLIC SMALL LETTER SHCHA
|
// U+0449: "щ" CYRILLIC SMALL LETTER SHCHA
|
||||||
/* keyspec_east_slavic_row1_9 */ "\u0449",
|
/* keyspec_east_slavic_row1_9 */ "\u0449",
|
||||||
|
@ -3640,7 +3658,6 @@ public final class KeyboardTextsTable {
|
||||||
/* morekeys_y */ "\u1EF3,\u00FD,\u1EF7,\u1EF9,\u1EF5",
|
/* morekeys_y */ "\u1EF3,\u00FD,\u1EF7,\u1EF9,\u1EF5",
|
||||||
// U+0111: "đ" LATIN SMALL LETTER D WITH STROKE
|
// U+0111: "đ" LATIN SMALL LETTER D WITH STROKE
|
||||||
/* morekeys_d */ "\u0111",
|
/* morekeys_d */ "\u0111",
|
||||||
/* morekeys_z */ null,
|
|
||||||
// U+20AB: "₫" DONG SIGN
|
// U+20AB: "₫" DONG SIGN
|
||||||
/* keyspec_currency */ "\u20AB",
|
/* keyspec_currency */ "\u20AB",
|
||||||
};
|
};
|
||||||
|
@ -3785,11 +3802,11 @@ public final class KeyboardTextsTable {
|
||||||
// U+0111: "đ" LATIN SMALL LETTER D WITH STROKE
|
// U+0111: "đ" LATIN SMALL LETTER D WITH STROKE
|
||||||
// U+00F0: "ð" LATIN SMALL LETTER ETH
|
// U+00F0: "ð" LATIN SMALL LETTER ETH
|
||||||
/* morekeys_d */ "\u010F,\u0111,\u00F0",
|
/* morekeys_d */ "\u010F,\u0111,\u00F0",
|
||||||
|
/* keyspec_currency */ null,
|
||||||
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
// U+017A: "ź" LATIN SMALL LETTER Z WITH ACUTE
|
||||||
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
// U+017C: "ż" LATIN SMALL LETTER Z WITH DOT ABOVE
|
||||||
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
// U+017E: "ž" LATIN SMALL LETTER Z WITH CARON
|
||||||
/* morekeys_z */ "\u017A,\u017C,\u017E",
|
/* morekeys_z */ "\u017A,\u017C,\u017E",
|
||||||
/* keyspec_currency */ null,
|
|
||||||
// U+00FE: "þ" LATIN SMALL LETTER THORN
|
// U+00FE: "þ" LATIN SMALL LETTER THORN
|
||||||
// U+0163: "ţ" LATIN SMALL LETTER T WITH CEDILLA
|
// U+0163: "ţ" LATIN SMALL LETTER T WITH CEDILLA
|
||||||
// U+0165: "ť" LATIN SMALL LETTER T WITH CARON
|
// U+0165: "ť" LATIN SMALL LETTER T WITH CARON
|
||||||
|
@ -3841,7 +3858,7 @@ public final class KeyboardTextsTable {
|
||||||
"az_AZ" , TEXTS_az_AZ, /* 8/ 18 Azerbaijani (Azerbaijan) */
|
"az_AZ" , TEXTS_az_AZ, /* 8/ 18 Azerbaijani (Azerbaijan) */
|
||||||
"be_BY" , TEXTS_be_BY, /* 9/ 32 Belarusian (Belarus) */
|
"be_BY" , TEXTS_be_BY, /* 9/ 32 Belarusian (Belarus) */
|
||||||
"bg" , TEXTS_bg, /* 2/ 8 Bulgarian */
|
"bg" , TEXTS_bg, /* 2/ 8 Bulgarian */
|
||||||
"bn_IN" , TEXTS_bn_IN, /* 2/ 15 Bengali (India) */
|
"bn_IN" , TEXTS_bn_IN, /* 2/ 14 Bengali (India) */
|
||||||
"ca" , TEXTS_ca, /* 11/ 96 Catalan */
|
"ca" , TEXTS_ca, /* 11/ 96 Catalan */
|
||||||
"cs" , TEXTS_cs, /* 17/ 21 Czech */
|
"cs" , TEXTS_cs, /* 17/ 21 Czech */
|
||||||
"da" , TEXTS_da, /* 19/ 54 Danish */
|
"da" , TEXTS_da, /* 19/ 54 Danish */
|
||||||
|
@ -3867,11 +3884,12 @@ public final class KeyboardTextsTable {
|
||||||
"kk" , TEXTS_kk, /* 15/121 Kazakh */
|
"kk" , TEXTS_kk, /* 15/121 Kazakh */
|
||||||
"km_KH" , TEXTS_km_KH, /* 2/122 Khmer (Cambodia) */
|
"km_KH" , TEXTS_km_KH, /* 2/122 Khmer (Cambodia) */
|
||||||
"ky" , TEXTS_ky, /* 10/ 89 Kirghiz */
|
"ky" , TEXTS_ky, /* 10/ 89 Kirghiz */
|
||||||
"lo_LA" , TEXTS_lo_LA, /* 2/ 15 Lao (Laos) */
|
"lo_LA" , TEXTS_lo_LA, /* 2/ 14 Lao (Laos) */
|
||||||
"lt" , TEXTS_lt, /* 18/ 22 Lithuanian */
|
"lt" , TEXTS_lt, /* 18/ 22 Lithuanian */
|
||||||
"lv" , TEXTS_lv, /* 18/ 22 Latvian */
|
"lv" , TEXTS_lv, /* 18/ 22 Latvian */
|
||||||
"mk" , TEXTS_mk, /* 9/ 94 Macedonian */
|
"mk" , TEXTS_mk, /* 9/ 94 Macedonian */
|
||||||
"mn_MN" , TEXTS_mn_MN, /* 2/ 15 Mongolian (Mongolia) */
|
"ml_IN" , TEXTS_ml_IN, /* 2/ 14 Malayalam (India) */
|
||||||
|
"mn_MN" , TEXTS_mn_MN, /* 2/ 14 Mongolian (Mongolia) */
|
||||||
"mr_IN" , TEXTS_mr_IN, /* 23/ 53 Marathi (India) */
|
"mr_IN" , TEXTS_mr_IN, /* 23/ 53 Marathi (India) */
|
||||||
"my_MM" , TEXTS_my_MM, /* 8/104 Burmese (Myanmar) */
|
"my_MM" , TEXTS_my_MM, /* 8/104 Burmese (Myanmar) */
|
||||||
"nb" , TEXTS_nb, /* 11/ 54 Norwegian Bokmål */
|
"nb" , TEXTS_nb, /* 11/ 54 Norwegian Bokmål */
|
||||||
|
@ -3888,12 +3906,12 @@ public final class KeyboardTextsTable {
|
||||||
"sr" , TEXTS_sr, /* 11/ 94 Serbian */
|
"sr" , TEXTS_sr, /* 11/ 94 Serbian */
|
||||||
"sv" , TEXTS_sv, /* 21/ 54 Swedish */
|
"sv" , TEXTS_sv, /* 21/ 54 Swedish */
|
||||||
"sw" , TEXTS_sw, /* 9/ 18 Swahili */
|
"sw" , TEXTS_sw, /* 9/ 18 Swahili */
|
||||||
"ta_IN" , TEXTS_ta_IN, /* 2/ 15 Tamil (India) */
|
"ta_IN" , TEXTS_ta_IN, /* 2/ 14 Tamil (India) */
|
||||||
"th" , TEXTS_th, /* 2/ 15 Thai */
|
"th" , TEXTS_th, /* 2/ 14 Thai */
|
||||||
"tl" , TEXTS_tl, /* 7/ 9 Tagalog */
|
"tl" , TEXTS_tl, /* 7/ 9 Tagalog */
|
||||||
"tr" , TEXTS_tr, /* 7/ 18 Turkish */
|
"tr" , TEXTS_tr, /* 7/ 18 Turkish */
|
||||||
"uk" , TEXTS_uk, /* 11/ 88 Ukrainian */
|
"uk" , TEXTS_uk, /* 11/ 88 Ukrainian */
|
||||||
"vi" , TEXTS_vi, /* 8/ 15 Vietnamese */
|
"vi" , TEXTS_vi, /* 8/ 14 Vietnamese */
|
||||||
"zu" , TEXTS_zu, /* 8/ 11 Zulu */
|
"zu" , TEXTS_zu, /* 8/ 11 Zulu */
|
||||||
"zz" , TEXTS_zz, /* 19/112 Alphabet */
|
"zz" , TEXTS_zz, /* 19/112 Alphabet */
|
||||||
};
|
};
|
||||||
|
|
|
@ -25,7 +25,7 @@ import java.util.ArrayList;
|
||||||
|
|
||||||
@SmallTest
|
@SmallTest
|
||||||
public class KeyboardLayoutSetSubtypesCountTests extends KeyboardLayoutSetTestsBase {
|
public class KeyboardLayoutSetSubtypesCountTests extends KeyboardLayoutSetTestsBase {
|
||||||
private static final int NUMBER_OF_SUBTYPES = 74;
|
private static final int NUMBER_OF_SUBTYPES = 75;
|
||||||
private static final int NUMBER_OF_ASCII_CAPABLE_SUBTYPES = 45;
|
private static final int NUMBER_OF_ASCII_CAPABLE_SUBTYPES = 45;
|
||||||
private static final int NUMBER_OF_PREDEFINED_ADDITIONAL_SUBTYPES = 2;
|
private static final int NUMBER_OF_PREDEFINED_ADDITIONAL_SUBTYPES = 2;
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,188 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2014 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.android.inputmethod.keyboard.layout;
|
||||||
|
|
||||||
|
import com.android.inputmethod.keyboard.layout.expected.ExpectedKey;
|
||||||
|
import com.android.inputmethod.keyboard.layout.expected.ExpectedKeyboardBuilder;
|
||||||
|
import com.android.inputmethod.latin.Constants;
|
||||||
|
|
||||||
|
import java.util.Locale;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The Malayalam keyboard.
|
||||||
|
*/
|
||||||
|
public final class Malayalam extends LayoutBase {
|
||||||
|
private static final String LAYOUT_NAME = "malayalam";
|
||||||
|
|
||||||
|
public Malayalam(final LayoutCustomizer customizer) {
|
||||||
|
super(customizer, Symbols.class, SymbolsShifted.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getName() { return LAYOUT_NAME; }
|
||||||
|
|
||||||
|
public static class MalayalamCustomizer extends LayoutCustomizer {
|
||||||
|
public MalayalamCustomizer(final Locale locale) { super(locale); }
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ExpectedKey getAlphabetKey() { return MALAYALAM_ALPHABET_KEY; }
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ExpectedKey getCurrencyKey() { return CURRENCY_RUPEE; }
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ExpectedKey[] getOtherCurrencyKeys() {
|
||||||
|
return SymbolsShifted.CURRENCIES_OTHER_GENERIC;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ExpectedKey[] getLeftShiftKeys(final boolean isPhone) {
|
||||||
|
return EMPTY_KEYS;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ExpectedKey[] getRightShiftKeys(final boolean isPhone) {
|
||||||
|
return isPhone ? EMPTY_KEYS : EXCLAMATION_AND_QUESTION_MARKS;
|
||||||
|
}
|
||||||
|
|
||||||
|
// U+0D05: "അ" MALAYALAM LETTER A
|
||||||
|
private static final ExpectedKey MALAYALAM_ALPHABET_KEY = key(
|
||||||
|
"\u0D05", Constants.CODE_SWITCH_ALPHA_SYMBOL);
|
||||||
|
|
||||||
|
// U+20B9: "₹" INDIAN RUPEE SIGN
|
||||||
|
private static final ExpectedKey CURRENCY_RUPEE = key("\u20B9",
|
||||||
|
Symbols.CURRENCY_GENERIC_MORE_KEYS);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
ExpectedKey[][] getCommonAlphabetLayout(boolean isPhone) { return ALPHABET_COMMON; }
|
||||||
|
|
||||||
|
@Override
|
||||||
|
ExpectedKey[][] getCommonAlphabetShiftLayout(boolean isPhone, final int elementId) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static final ExpectedKey[][] ALPHABET_COMMON = new ExpectedKeyboardBuilder()
|
||||||
|
.setKeysOfRow(1,
|
||||||
|
// U+0D4D: "്" MALAYALAM SIGN VIRAMA
|
||||||
|
// U+0D05: "അ" MALAYALAM LETTER A
|
||||||
|
key("\u0D4D", joinMoreKeys("\u0D05", "1")),
|
||||||
|
// U+0D3E: "ാ" MALAYALAM VOWEL SIGN AA
|
||||||
|
// U+0D06: "ആ" MALAYALAM LETTER AA
|
||||||
|
key("\u0D3E", joinMoreKeys("\u0D06", "2")),
|
||||||
|
// U+0D3F: "ി" MALAYALAM VOWEL SIGN I
|
||||||
|
// U+0D07: "ഇ" MALAYALAM LETTER I
|
||||||
|
key("\u0D3F", joinMoreKeys("\u0D07", "3")),
|
||||||
|
// U+0D40: "ീ" MALAYALAM VOWEL SIGN II
|
||||||
|
// U+0D08: "ഈ" MALAYALAM LETTER II
|
||||||
|
key("\u0D40", joinMoreKeys("\u0D08", "4")),
|
||||||
|
// U+0D41: "ു" MALAYALAM VOWEL SIGN U
|
||||||
|
// U+0D09: "ഉ" MALAYALAM LETTER U
|
||||||
|
key("\u0D41", joinMoreKeys("\u0D09", "5")),
|
||||||
|
// U+0D42: "ൂ" MALAYALAM VOWEL SIGN UU
|
||||||
|
// U+0D0A: "ഊ" MALAYALAM LETTER UU
|
||||||
|
key("\u0D42", joinMoreKeys("\u0D0A", "6")),
|
||||||
|
// U+0D43: "ൃ" MALAYALAM VOWEL SIGN VOCALIC R
|
||||||
|
// U+0D0B: "ഋ" MALAYALAM LETTER VOCALIC R
|
||||||
|
key("\u0D43", joinMoreKeys("\u0D0B", "7")),
|
||||||
|
// U+0D46: "െ" MALAYALAM VOWEL SIGN E
|
||||||
|
// U+0D0E: "എ" MALAYALAM LETTER E
|
||||||
|
// U+0D10: "ഐ" MALAYALAM LETTER AI
|
||||||
|
// U+0D48: "ൈ" MALAYALAM VOWEL SIGN AI
|
||||||
|
key("\u0D46", joinMoreKeys("\u0D0E", "\u0D10", "\u0D48", "8")),
|
||||||
|
// U+0D47: "േ" MALAYALAM VOWEL SIGN EE
|
||||||
|
// U+0D0F: "ഏ" MALAYALAM LETTER EE
|
||||||
|
key("\u0D47", joinMoreKeys("\u0D0F", "9")),
|
||||||
|
// U+0D4A: "ൊ" MALAYALAM VOWEL SIGN O
|
||||||
|
// U+0D12: "ഒ" MALAYALAM LETTER O
|
||||||
|
key("\u0D4A", joinMoreKeys("\u0D12", "0")),
|
||||||
|
// U+0D4B: "ോ" MALAYALAM VOWEL SIGN OO
|
||||||
|
// U+0D13: "ഓ" MALAYALAM LETTER OO
|
||||||
|
// U+0D14: "ഔ" MALAYALAM LETTER AU
|
||||||
|
// U+0D57: "ൗ" MALAYALAM AU LENGTH MARK
|
||||||
|
key("\u0D4B", joinMoreKeys("\u0D13", "\u0D14", "\u0D57")))
|
||||||
|
.setKeysOfRow(2,
|
||||||
|
// U+0D15: "ക" MALAYALAM LETTER KA
|
||||||
|
// U+0D16: "ഖ" MALAYALAM LETTER KHA
|
||||||
|
key("\u0D15", moreKey("\u0D16")),
|
||||||
|
// U+0D17: "ഗ" MALAYALAM LETTER GA
|
||||||
|
// U+0D18: "ഘ" MALAYALAM LETTER GHA
|
||||||
|
key("\u0D17", moreKey("\u0D18")),
|
||||||
|
// U+0D19: "ങ" MALAYALAM LETTER NGA
|
||||||
|
// U+0D1E: "ഞ" MALAYALAM LETTER NYA
|
||||||
|
key("\u0D19", moreKey("\u0D1E")),
|
||||||
|
// U+0D1A: "ച" MALAYALAM LETTER CA
|
||||||
|
// U+0D1B: "ഛ" MALAYALAM LETTER CHA
|
||||||
|
key("\u0D1A", moreKey("\u0D1B")),
|
||||||
|
// U+0D1C: "ജ" MALAYALAM LETTER JA
|
||||||
|
// U+0D1D: "ഝ" MALAYALAM LETTER JHA
|
||||||
|
key("\u0D1C", moreKey("\u0D1D")),
|
||||||
|
// U+0D1F: "ട" MALAYALAM LETTER TTA
|
||||||
|
// U+0D20: "ഠ" MALAYALAM LETTER TTHA
|
||||||
|
key("\u0D1F", moreKey("\u0D20")),
|
||||||
|
// U+0D21: "ഡ" MALAYALAM LETTER DDA
|
||||||
|
// U+0D22: "ഢ" MALAYALAM LETTER DDHA
|
||||||
|
key("\u0D21", moreKey("\u0D22")),
|
||||||
|
// U+0D23: "ണ" MALAYALAM LETTER NNA
|
||||||
|
// U+0D7A: "ൺ" MALAYALAM LETTER CHILLU NN
|
||||||
|
key("\u0D23", moreKey("\u0D7A")),
|
||||||
|
// U+0D24: "ത" MALAYALAM LETTER TA
|
||||||
|
// U+0D25: "ഥ" MALAYALAM LETTER THA
|
||||||
|
key("\u0D24", moreKey("\u0D25")),
|
||||||
|
// U+0D26: "ദ" MALAYALAM LETTER DA
|
||||||
|
// U+0D27: "ധ" MALAYALAM LETTER DHA
|
||||||
|
key("\u0D26", moreKey("\u0D27")),
|
||||||
|
// U+0D28: "ഗന" MALAYALAM LETTER NA
|
||||||
|
// U+0D7B: "ൻ" MALAYALAM LETTER CHILLU N
|
||||||
|
key("\u0D28", moreKey("\u0D7B")))
|
||||||
|
.setKeysOfRow(3,
|
||||||
|
// U+0D2A: "പ" MALAYALAM LETTER PA
|
||||||
|
// U+0D2B: "ഫ" MALAYALAM LETTER PHA
|
||||||
|
key("\u0D2A", moreKey("\u0D2B")),
|
||||||
|
// U+0D2C: "ബ" MALAYALAM LETTER BA
|
||||||
|
// U+0D2D: "ഭ" MALAYALAM LETTER BHA
|
||||||
|
key("\u0D2C", moreKey("\u0D2D")),
|
||||||
|
// U+0D2E: "മ" MALAYALAM LETTER MA
|
||||||
|
// U+0D02: "ം" MALAYALAM SIGN ANUSVARA
|
||||||
|
key("\u0D2E", moreKey("\u0D02")),
|
||||||
|
// U+0D2F: "യ" MALAYALAM LETTER YA
|
||||||
|
// U+0D4D/U+0D2F: "്യ" MALAYALAM SIGN VIRAMA/MALAYALAM LETTER YA
|
||||||
|
key("\u0D2F", moreKey("\u0D4D\u0D2F")),
|
||||||
|
// U+0D30: "ര" MALAYALAM LETTER RA
|
||||||
|
// U+0D4D/U+0D30: "്ര" MALAYALAM SIGN VIRAMA/MALAYALAM LETTER RA
|
||||||
|
// U+0D7C: "ർ" MALAYALAM LETTER CHILLU RR
|
||||||
|
// U+0D31: "റ" MALAYALAM LETTER RRA
|
||||||
|
key("\u0D30", joinMoreKeys("\u0D4D\u0D30", "\u0D7C", "\u0D31")),
|
||||||
|
// U+0D32: "ല" MALAYALAM LETTER LA
|
||||||
|
// U+0D7D: "ൽ" MALAYALAM LETTER CHILLU L
|
||||||
|
key("\u0D32", moreKey("\u0D7D")),
|
||||||
|
// U+0D35: "വ" MALAYALAM LETTER VA
|
||||||
|
// U+0D4D/U+0D35: "്വ" MALAYALAM SIGN VIRAMA/MALAYALAM LETTER VA
|
||||||
|
key("\u0D35", moreKey("\u0D4D\u0D35")),
|
||||||
|
// U+0D36: "ശ" MALAYALAM LETTER SHA
|
||||||
|
// U+0D37: "ഷ" MALAYALAM LETTER SSA
|
||||||
|
// U+0D38: "സ" MALAYALAM LETTER SA
|
||||||
|
key("\u0D36", joinMoreKeys("\u0D37", "\u0D38")),
|
||||||
|
// U+0D39: "ഹ" MALAYALAM LETTER HA
|
||||||
|
// U+0D03: "ഃ" MALAYALAM SIGN VISARGA
|
||||||
|
key("\u0D39", moreKey("\u0D03")),
|
||||||
|
// U+0D33: "ള" MALAYALAM LETTER LLA
|
||||||
|
// U+0D7E: "ൾ" MALAYALAM LETTER CHILLU LL
|
||||||
|
// U+0D34: "ഴ" MALAYALAM LETTER LLLA
|
||||||
|
key("\u0D33", joinMoreKeys("\u0D7E", "\u0D34")))
|
||||||
|
.build();
|
||||||
|
}
|
|
@ -0,0 +1,37 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2014 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.android.inputmethod.keyboard.layout.tests;
|
||||||
|
|
||||||
|
import android.test.suitebuilder.annotation.SmallTest;
|
||||||
|
|
||||||
|
import com.android.inputmethod.keyboard.layout.LayoutBase;
|
||||||
|
import com.android.inputmethod.keyboard.layout.Malayalam;
|
||||||
|
import com.android.inputmethod.keyboard.layout.Malayalam.MalayalamCustomizer;
|
||||||
|
|
||||||
|
import java.util.Locale;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ta_IN: Malayalam (India)/malayalam
|
||||||
|
*/
|
||||||
|
@SmallTest
|
||||||
|
public final class TestsMalayalamIN extends LayoutTestsBase {
|
||||||
|
private static final Locale LOCALE = new Locale("ml", "IN");
|
||||||
|
private static final LayoutBase LAYOUT = new Malayalam(new MalayalamCustomizer(LOCALE));
|
||||||
|
|
||||||
|
@Override
|
||||||
|
LayoutBase getLayout() { return LAYOUT; }
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
/*
|
||||||
|
**
|
||||||
|
** Copyright 2014, 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.
|
||||||
|
*/
|
||||||
|
-->
|
||||||
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
|
<!-- Label for "switch to alphabetic" key.
|
||||||
|
U+0D05: "അ" MALAYALAM LETTER A -->
|
||||||
|
<string name="keylabel_to_alpha">അ</string>
|
||||||
|
<!-- U+20B9: "₹" INDIAN RUPEE SIGN -->
|
||||||
|
<string name="keyspec_currency">₹</string>
|
||||||
|
</resources>
|
Loading…
Reference in New Issue