abouttreesummaryrefslogcommitdiff
path: root/res/xml
diff options
context:
space:
mode:
authorJules Aguillon2021-05-09 00:35:26 +0200
committerJules Aguillon2021-05-09 00:35:26 +0200
commit5e01198500e92650fb9fb5e73a4a86e9808e14d2 (patch)
treeac666dc6c653ba4f2612545ae7a7435efb269fad /res/xml
parent7a3312fd01ef2bf48b146677766f7ea4b036b7df (diff)
downloadunexpected-keyboard-5e01198500e92650fb9fb5e73a4a86e9808e14d2.tar.gz
unexpected-keyboard-5e01198500e92650fb9fb5e73a4a86e9808e14d2.zip
Add support for Spanish and Italian
Both using the qwerty layout. Removes the tilde from French.
Diffstat (limited to 'res/xml')
-rw-r--r--res/xml/method.xml20
1 files changed, 17 insertions, 3 deletions
diff --git a/res/xml/method.xml b/res/xml/method.xml
index a84df7c..c5f1092 100644
--- a/res/xml/method.xml
+++ b/res/xml/method.xml
@@ -2,18 +2,32 @@
<input-method xmlns:android="http://schemas.android.com/apk/res/android"
android:settingsActivity="juloo.keyboard2.SettingsActivity"
android:supportsSwitchingToNextInputMethod="true">
- <subtype android:label="@string/subtype_label_qwerty"
+ <subtype android:label="@string/subtype_label"
android:languageTag="en"
android:imeSubtypeLocale="en_US"
android:imeSubtypeMode="keyboard"
android:isAsciiCapable="true"
android:imeSubtypeExtraValue="default_layout=qwerty"
/>
- <subtype android:label="@string/subtype_label_azerty"
+ <subtype android:label="@string/subtype_label"
android:languageTag="fr"
android:imeSubtypeLocale="fr_FR"
android:imeSubtypeMode="keyboard"
android:isAsciiCapable="true"
- android:imeSubtypeExtraValue="default_layout=azerty,accents=grave|aigu|circonflexe|tilde|cedille|trema"
+ android:imeSubtypeExtraValue="default_layout=azerty,accents=grave|aigu|circonflexe|cedille|trema"
+ />
+ <subtype android:label="@string/subtype_label"
+ android:languageTag="es"
+ android:imeSubtypeLocale="es_ES"
+ android:imeSubtypeMode="keyboard"
+ android:isAsciiCapable="true"
+ android:imeSubtypeExtraValue="default_layout=qwerty,accents=aigu|tilde|trema"
+ />
+ <subtype android:label="@string/subtype_label"
+ android:languageTag="it"
+ android:imeSubtypeLocale="it_IT"
+ android:imeSubtypeMode="keyboard"
+ android:isAsciiCapable="true"
+ android:imeSubtypeExtraValue="default_layout=qwerty,accents=grave|aigu"
/>
</input-method>