blob: 8dec7abec3e4036ccf6902a73d1354bf768c12db [file] [log] [blame]
The Android Open Source Project923bf412009-03-13 15:11:42 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/**
4 * Copyright (c) 2008, The Android Open Source Project
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18-->
19
20<!-- The attributes in this XML file provide configuration information -->
21<!-- for the Input Method Manager. -->
22
satok0b0c5222011-01-26 12:23:02 +090023<!-- Keyboard: en_US, en_GB, cs, da, de, es, es_US, fr, fr_CA, fr_CH, it, nb, nl, sr, sv -->
24<!-- Voice: af, cs, da, de, en, es, fr, it, ja, ko, nl, pl, pt, ru, tr, yue, zh, zu -->
satok22ac2442010-08-11 23:27:19 +090025<!-- TODO: use <lang>_keyboard icon instead of a common keyboard icon. -->
26<!-- TODO: use <lang>_mic icon instead of a common mic icon. -->
satok439f2db2011-01-20 01:51:28 +090027<!-- If IME doesn't have an applicable subtype, the first subtype will be used as a default
28 subtype.-->
The Android Open Source Project923bf412009-03-13 15:11:42 -070029<input-method xmlns:android="http://schemas.android.com/apk/res/android"
Tadashi G. Takaoka9502cc12010-12-09 21:06:26 +090030 android:settingsActivity="com.android.inputmethod.latin.Settings"
satok22ac2442010-08-11 23:27:19 +090031 android:isDefault="@bool/im_is_default">
satokf8ddd132011-01-25 14:35:31 +090032 <subtype android:icon="@drawable/ic_subtype_keyboard"
satok38976d52010-11-04 18:22:28 +090033 android:label="@string/subtype_mode_en_US_keyboard"
34 android:imeSubtypeLocale="en_US"
35 android:imeSubtypeMode="keyboard"
satok22ac2442010-08-11 23:27:19 +090036 />
satokf8ddd132011-01-25 14:35:31 +090037 <subtype android:icon="@drawable/ic_subtype_mic"
satok0b0c5222011-01-26 12:23:02 +090038 android:label="@string/subtype_mode_en_voice"
39 android:imeSubtypeLocale="en"
satok439f2db2011-01-20 01:51:28 +090040 android:imeSubtypeMode="voice"
Tadashi G. Takaoka5cd87e12011-01-25 12:13:35 +090041 android:imeSubtypeExtraValue="excludeFromLastInputMethod,requireNetworkConnectivity"
satok439f2db2011-01-20 01:51:28 +090042 />
satokf8ddd132011-01-25 14:35:31 +090043 <subtype android:icon="@drawable/ic_subtype_keyboard"
satok0b0c5222011-01-26 12:23:02 +090044 android:label="@string/subtype_mode_en_GB_keyboard"
45 android:imeSubtypeLocale="en_GB"
46 android:imeSubtypeMode="keyboard"
47 />
48 <subtype android:icon="@drawable/ic_subtype_keyboard"
satok38976d52010-11-04 18:22:28 +090049 android:label="@string/subtype_mode_cs_keyboard"
satok22ac2442010-08-11 23:27:19 +090050 android:imeSubtypeLocale="cs"
satok38976d52010-11-04 18:22:28 +090051 android:imeSubtypeMode="keyboard"
satok22ac2442010-08-11 23:27:19 +090052 />
satokf8ddd132011-01-25 14:35:31 +090053 <subtype android:icon="@drawable/ic_subtype_mic"
satok439f2db2011-01-20 01:51:28 +090054 android:label="@string/subtype_mode_cs_voice"
55 android:imeSubtypeLocale="cs"
56 android:imeSubtypeMode="voice"
Tadashi G. Takaoka5cd87e12011-01-25 12:13:35 +090057 android:imeSubtypeExtraValue="excludeFromLastInputMethod,requireNetworkConnectivity"
satok439f2db2011-01-20 01:51:28 +090058 />
satokf8ddd132011-01-25 14:35:31 +090059 <subtype android:icon="@drawable/ic_subtype_keyboard"
satok38976d52010-11-04 18:22:28 +090060 android:label="@string/subtype_mode_da_keyboard"
satok22ac2442010-08-11 23:27:19 +090061 android:imeSubtypeLocale="da"
satok38976d52010-11-04 18:22:28 +090062 android:imeSubtypeMode="keyboard"
satok22ac2442010-08-11 23:27:19 +090063 />
satokf8ddd132011-01-25 14:35:31 +090064 <subtype android:icon="@drawable/ic_subtype_keyboard"
satok38976d52010-11-04 18:22:28 +090065 android:label="@string/subtype_mode_de_keyboard"
satok22ac2442010-08-11 23:27:19 +090066 android:imeSubtypeLocale="de"
satok38976d52010-11-04 18:22:28 +090067 android:imeSubtypeMode="keyboard"
Jean Chalardc2bbc6a2011-02-25 17:56:53 +090068 android:imeSubtypeExtraValue="requiresGermanUmlautProcessing"
satok22ac2442010-08-11 23:27:19 +090069 />
satokf8ddd132011-01-25 14:35:31 +090070 <subtype android:icon="@drawable/ic_subtype_mic"
satok439f2db2011-01-20 01:51:28 +090071 android:label="@string/subtype_mode_de_voice"
72 android:imeSubtypeLocale="de"
73 android:imeSubtypeMode="voice"
Tadashi G. Takaoka5cd87e12011-01-25 12:13:35 +090074 android:imeSubtypeExtraValue="excludeFromLastInputMethod,requireNetworkConnectivity"
satok439f2db2011-01-20 01:51:28 +090075 />
satokf8ddd132011-01-25 14:35:31 +090076 <subtype android:icon="@drawable/ic_subtype_keyboard"
satok38976d52010-11-04 18:22:28 +090077 android:label="@string/subtype_mode_es_keyboard"
satok22ac2442010-08-11 23:27:19 +090078 android:imeSubtypeLocale="es"
satok38976d52010-11-04 18:22:28 +090079 android:imeSubtypeMode="keyboard"
satok22ac2442010-08-11 23:27:19 +090080 />
satokf8ddd132011-01-25 14:35:31 +090081 <subtype android:icon="@drawable/ic_subtype_mic"
satok439f2db2011-01-20 01:51:28 +090082 android:label="@string/subtype_mode_es_voice"
83 android:imeSubtypeLocale="es"
84 android:imeSubtypeMode="voice"
Tadashi G. Takaoka5cd87e12011-01-25 12:13:35 +090085 android:imeSubtypeExtraValue="excludeFromLastInputMethod,requireNetworkConnectivity"
satok439f2db2011-01-20 01:51:28 +090086 />
satokf8ddd132011-01-25 14:35:31 +090087 <subtype android:icon="@drawable/ic_subtype_keyboard"
satok38976d52010-11-04 18:22:28 +090088 android:label="@string/subtype_mode_fr_keyboard"
satok22ac2442010-08-11 23:27:19 +090089 android:imeSubtypeLocale="fr"
satok38976d52010-11-04 18:22:28 +090090 android:imeSubtypeMode="keyboard"
satok22ac2442010-08-11 23:27:19 +090091 />
satokf8ddd132011-01-25 14:35:31 +090092 <subtype android:icon="@drawable/ic_subtype_mic"
satok439f2db2011-01-20 01:51:28 +090093 android:label="@string/subtype_mode_fr_voice"
94 android:imeSubtypeLocale="fr"
95 android:imeSubtypeMode="voice"
Tadashi G. Takaoka5cd87e12011-01-25 12:13:35 +090096 android:imeSubtypeExtraValue="excludeFromLastInputMethod,requireNetworkConnectivity"
satok439f2db2011-01-20 01:51:28 +090097 />
satokf8ddd132011-01-25 14:35:31 +090098 <subtype android:icon="@drawable/ic_subtype_keyboard"
Tadashi G. Takaoka842b3d42010-11-23 11:54:33 -080099 android:label="@string/subtype_mode_fr_CA_keyboard"
100 android:imeSubtypeLocale="fr_CA"
satok38976d52010-11-04 18:22:28 +0900101 android:imeSubtypeMode="keyboard"
102 />
satokf8ddd132011-01-25 14:35:31 +0900103 <subtype android:icon="@drawable/ic_subtype_keyboard"
Tadashi G. Takaokae6f8bb02010-12-01 21:26:16 +0900104 android:label="@string/subtype_mode_fr_CH_keyboard"
105 android:imeSubtypeLocale="fr_CH"
106 android:imeSubtypeMode="keyboard"
107 />
satokf8ddd132011-01-25 14:35:31 +0900108 <subtype android:icon="@drawable/ic_subtype_keyboard"
satok38976d52010-11-04 18:22:28 +0900109 android:label="@string/subtype_mode_it_keyboard"
satok22ac2442010-08-11 23:27:19 +0900110 android:imeSubtypeLocale="it"
satok38976d52010-11-04 18:22:28 +0900111 android:imeSubtypeMode="keyboard"
satok22ac2442010-08-11 23:27:19 +0900112 />
satokf8ddd132011-01-25 14:35:31 +0900113 <subtype android:icon="@drawable/ic_subtype_mic"
satok439f2db2011-01-20 01:51:28 +0900114 android:label="@string/subtype_mode_it_voice"
115 android:imeSubtypeLocale="it"
116 android:imeSubtypeMode="voice"
Tadashi G. Takaoka5cd87e12011-01-25 12:13:35 +0900117 android:imeSubtypeExtraValue="excludeFromLastInputMethod,requireNetworkConnectivity"
satok439f2db2011-01-20 01:51:28 +0900118 />
satokf8ddd132011-01-25 14:35:31 +0900119 <subtype android:icon="@drawable/ic_subtype_keyboard"
satok38976d52010-11-04 18:22:28 +0900120 android:label="@string/subtype_mode_nb_keyboard"
satok22ac2442010-08-11 23:27:19 +0900121 android:imeSubtypeLocale="nb"
satok38976d52010-11-04 18:22:28 +0900122 android:imeSubtypeMode="keyboard"
satok22ac2442010-08-11 23:27:19 +0900123 />
satokf8ddd132011-01-25 14:35:31 +0900124 <subtype android:icon="@drawable/ic_subtype_keyboard"
satok38976d52010-11-04 18:22:28 +0900125 android:label="@string/subtype_mode_nl_keyboard"
satok22ac2442010-08-11 23:27:19 +0900126 android:imeSubtypeLocale="nl"
satok38976d52010-11-04 18:22:28 +0900127 android:imeSubtypeMode="keyboard"
satok22ac2442010-08-11 23:27:19 +0900128 />
satokf8ddd132011-01-25 14:35:31 +0900129 <subtype android:icon="@drawable/ic_subtype_mic"
satok439f2db2011-01-20 01:51:28 +0900130 android:label="@string/subtype_mode_nl_voice"
131 android:imeSubtypeLocale="nl"
132 android:imeSubtypeMode="voice"
Tadashi G. Takaoka5cd87e12011-01-25 12:13:35 +0900133 android:imeSubtypeExtraValue="excludeFromLastInputMethod,requireNetworkConnectivity"
satok439f2db2011-01-20 01:51:28 +0900134 />
satokf8ddd132011-01-25 14:35:31 +0900135 <subtype android:icon="@drawable/ic_subtype_keyboard"
satok38976d52010-11-04 18:22:28 +0900136 android:label="@string/subtype_mode_ru_keyboard"
satok22ac2442010-08-11 23:27:19 +0900137 android:imeSubtypeLocale="ru"
satok38976d52010-11-04 18:22:28 +0900138 android:imeSubtypeMode="keyboard"
satok22ac2442010-08-11 23:27:19 +0900139 />
satokf8ddd132011-01-25 14:35:31 +0900140 <subtype android:icon="@drawable/ic_subtype_keyboard"
satok38976d52010-11-04 18:22:28 +0900141 android:label="@string/subtype_mode_sr_keyboard"
satok22ac2442010-08-11 23:27:19 +0900142 android:imeSubtypeLocale="sr"
satok38976d52010-11-04 18:22:28 +0900143 android:imeSubtypeMode="keyboard"
144 />
satokf8ddd132011-01-25 14:35:31 +0900145 <subtype android:icon="@drawable/ic_subtype_keyboard"
satok38976d52010-11-04 18:22:28 +0900146 android:label="@string/subtype_mode_sv_keyboard"
147 android:imeSubtypeLocale="sv"
148 android:imeSubtypeMode="keyboard"
satok22ac2442010-08-11 23:27:19 +0900149 />
satokf8ddd132011-01-25 14:35:31 +0900150 <subtype android:icon="@drawable/ic_subtype_mic"
satok0b0c5222011-01-26 12:23:02 +0900151 android:label="@string/subtype_mode_af_voice"
152 android:imeSubtypeLocale="af"
satok38976d52010-11-04 18:22:28 +0900153 android:imeSubtypeMode="voice"
Tadashi G. Takaoka5cd87e12011-01-25 12:13:35 +0900154 android:imeSubtypeExtraValue="excludeFromLastInputMethod,requireNetworkConnectivity"
satok38976d52010-11-04 18:22:28 +0900155 />
satokf8ddd132011-01-25 14:35:31 +0900156 <subtype android:icon="@drawable/ic_subtype_mic"
satok38976d52010-11-04 18:22:28 +0900157 android:label="@string/subtype_mode_ja_voice"
158 android:imeSubtypeLocale="ja"
159 android:imeSubtypeMode="voice"
Tadashi G. Takaoka5cd87e12011-01-25 12:13:35 +0900160 android:imeSubtypeExtraValue="excludeFromLastInputMethod,requireNetworkConnectivity"
satok38976d52010-11-04 18:22:28 +0900161 />
satokf8ddd132011-01-25 14:35:31 +0900162 <subtype android:icon="@drawable/ic_subtype_mic"
satok0b0c5222011-01-26 12:23:02 +0900163 android:label="@string/subtype_mode_ko_voice"
164 android:imeSubtypeLocale="ko"
165 android:imeSubtypeMode="voice"
Tadashi G. Takaoka5cd87e12011-01-25 12:13:35 +0900166 android:imeSubtypeExtraValue="excludeFromLastInputMethod,requireNetworkConnectivity"
satok0b0c5222011-01-26 12:23:02 +0900167 />
168 <subtype android:icon="@drawable/ic_subtype_mic"
satok38976d52010-11-04 18:22:28 +0900169 android:label="@string/subtype_mode_pl_voice"
170 android:imeSubtypeLocale="pl"
171 android:imeSubtypeMode="voice"
Tadashi G. Takaoka5cd87e12011-01-25 12:13:35 +0900172 android:imeSubtypeExtraValue="excludeFromLastInputMethod,requireNetworkConnectivity"
satok38976d52010-11-04 18:22:28 +0900173 />
satokf8ddd132011-01-25 14:35:31 +0900174 <subtype android:icon="@drawable/ic_subtype_mic"
satok38976d52010-11-04 18:22:28 +0900175 android:label="@string/subtype_mode_pt_voice"
176 android:imeSubtypeLocale="pt"
177 android:imeSubtypeMode="voice"
Tadashi G. Takaoka5cd87e12011-01-25 12:13:35 +0900178 android:imeSubtypeExtraValue="excludeFromLastInputMethod,requireNetworkConnectivity"
satok38976d52010-11-04 18:22:28 +0900179 />
satokf8ddd132011-01-25 14:35:31 +0900180 <subtype android:icon="@drawable/ic_subtype_mic"
satok38976d52010-11-04 18:22:28 +0900181 android:label="@string/subtype_mode_ru_voice"
182 android:imeSubtypeLocale="ru"
183 android:imeSubtypeMode="voice"
Tadashi G. Takaoka5cd87e12011-01-25 12:13:35 +0900184 android:imeSubtypeExtraValue="excludeFromLastInputMethod,requireNetworkConnectivity"
satok38976d52010-11-04 18:22:28 +0900185 />
satokf8ddd132011-01-25 14:35:31 +0900186 <subtype android:icon="@drawable/ic_subtype_mic"
satok38976d52010-11-04 18:22:28 +0900187 android:label="@string/subtype_mode_tr_voice"
188 android:imeSubtypeLocale="tr"
189 android:imeSubtypeMode="voice"
Tadashi G. Takaoka5cd87e12011-01-25 12:13:35 +0900190 android:imeSubtypeExtraValue="excludeFromLastInputMethod,requireNetworkConnectivity"
satok38976d52010-11-04 18:22:28 +0900191 />
satokf8ddd132011-01-25 14:35:31 +0900192 <subtype android:icon="@drawable/ic_subtype_mic"
satok0b0c5222011-01-26 12:23:02 +0900193 android:label="@string/subtype_mode_yue_voice"
194 android:imeSubtypeLocale="yue"
satok38976d52010-11-04 18:22:28 +0900195 android:imeSubtypeMode="voice"
Tadashi G. Takaoka5cd87e12011-01-25 12:13:35 +0900196 android:imeSubtypeExtraValue="excludeFromLastInputMethod,requireNetworkConnectivity"
satok38976d52010-11-04 18:22:28 +0900197 />
satokf8ddd132011-01-25 14:35:31 +0900198 <subtype android:icon="@drawable/ic_subtype_mic"
satok0b0c5222011-01-26 12:23:02 +0900199 android:label="@string/subtype_mode_zh_voice"
200 android:imeSubtypeLocale="zh"
201 android:imeSubtypeMode="voice"
Tadashi G. Takaoka5cd87e12011-01-25 12:13:35 +0900202 android:imeSubtypeExtraValue="excludeFromLastInputMethod,requireNetworkConnectivity"
satok0b0c5222011-01-26 12:23:02 +0900203 />
204 <subtype android:icon="@drawable/ic_subtype_mic"
205 android:label="@string/subtype_mode_zu_voice"
206 android:imeSubtypeLocale="zu"
satok38976d52010-11-04 18:22:28 +0900207 android:imeSubtypeMode="voice"
Tadashi G. Takaoka5cd87e12011-01-25 12:13:35 +0900208 android:imeSubtypeExtraValue="excludeFromLastInputMethod,requireNetworkConnectivity"
satok22ac2442010-08-11 23:27:19 +0900209 />
210</input-method>