abouttreesummaryrefslogcommitdiff
path: root/srcs/juloo.keyboard2/Config.java
diff options
context:
space:
mode:
authorJules Aguillon2022-11-01 21:24:54 +0100
committerJules Aguillon2022-11-01 21:29:18 +0100
commit4f3fcfe64bfdf85d52fea0e179dc8b647b237d07 (patch)
treed10b2ad0db12fb0f413747730b833ab25283ad44 /srcs/juloo.keyboard2/Config.java
parent2e598a4d476fde86484cb551c4be77dc5298e7b0 (diff)
downloadunexpected-keyboard-4f3fcfe64bfdf85d52fea0e179dc8b647b237d07.tar.gz
unexpected-keyboard-4f3fcfe64bfdf85d52fea0e179dc8b647b237d07.zip
Add the 'qwertz_de' layout
Similar to 'qwertz' but is wider to show äöü on dedicated keys. Some punctuations are rebalanced to use the space better. The default layout for de_DE is changed.
Diffstat (limited to 'srcs/juloo.keyboard2/Config.java')
-rw-r--r--srcs/juloo.keyboard2/Config.java17
1 files changed, 9 insertions, 8 deletions
diff --git a/srcs/juloo.keyboard2/Config.java b/srcs/juloo.keyboard2/Config.java
index ad79920..a016fb1 100644
--- a/srcs/juloo.keyboard2/Config.java
+++ b/srcs/juloo.keyboard2/Config.java
@@ -254,27 +254,28 @@ final class Config
{
case "azerty": return R.xml.azerty;
case "bangla": return R.xml.bangla;
- case "hindi": return R.xml.hindi;
case "bgph1": return R.xml.local_bgph1;
case "bone": return R.xml.bone;
case "colemak": return R.xml.colemak;
case "dvorak": return R.xml.dvorak;
+ case "hindi": return R.xml.hindi;
+ case "jcuken_ua": return R.xml.jcuken_ua;
case "neo2": return R.xml.neo2;
- case "qwerty_es": return R.xml.qwerty_es;
+ case "qwerty": return R.xml.qwerty;
case "qwerty_el": return R.xml.qwerty_el;
+ case "qwerty_es": return R.xml.qwerty_es;
case "qwerty_hu": return R.xml.qwerty_hu;
case "qwerty_ko": return R.xml.qwerty_ko;
case "qwerty_lv": return R.xml.qwerty_lv;
- case "qwerty_pt": return R.xml.qwerty_pt;
- case "qwerty_tr": return R.xml.qwerty_tr;
- case "qwerty": return R.xml.qwerty;
case "qwerty_no": return R.xml.qwerty_no;
+ case "qwerty_pt": return R.xml.qwerty_pt;
case "qwerty_sv_se": return R.xml.qwerty_sv_se;
- case "qwertz_hu": return R.xml.qwertz_hu;
- case "qwertz_cs": return R.xml.qwertz_cs;
+ case "qwerty_tr": return R.xml.qwerty_tr;
case "qwertz": return R.xml.qwertz;
+ case "qwertz_cs": return R.xml.qwertz_cs;
+ case "qwertz_de": return R.xml.qwertz_de;
+ case "qwertz_hu": return R.xml.qwertz_hu;
case "ru_jcuken": return R.xml.local_ru_jcuken;
- case "jcuken_ua": return R.xml.jcuken_ua;
default: return R.xml.qwerty; // The config might store an invalid layout, don't crash
}
}