abouttreesummaryrefslogcommitdiff
path: root/srcs/juloo.keyboard2
diff options
context:
space:
mode:
authorJacob Strömgren2022-03-14 22:43:19 +0100
committerJules Aguillon2022-03-15 18:42:29 +0100
commitfadedfd58f1bc62aea8e913662984f84f20631bf (patch)
treeaa487a4a642074a0bc525fff3b8c4b509a9f61d7 /srcs/juloo.keyboard2
parentf9cd4ca2d8c46679d1f00517ea0f1ae9dfb8d75a (diff)
downloadunexpected-keyboard-fadedfd58f1bc62aea8e913662984f84f20631bf.tar.gz
unexpected-keyboard-fadedfd58f1bc62aea8e913662984f84f20631bf.zip
Add Swedish layout
Diffstat (limited to 'srcs/juloo.keyboard2')
-rw-r--r--srcs/juloo.keyboard2/Config.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/srcs/juloo.keyboard2/Config.java b/srcs/juloo.keyboard2/Config.java
index 0c92c76..e78a45a 100644
--- a/srcs/juloo.keyboard2/Config.java
+++ b/srcs/juloo.keyboard2/Config.java
@@ -201,13 +201,14 @@ final class Config
switch (name)
{
case "azerty": return R.xml.azerty;
- case "qwerty": return R.xml.qwerty;
- case "qwerty_lv": return R.xml.qwerty_lv;
- case "qwerty_es": return R.xml.qwerty_es;
- case "ru_jcuken": return R.xml.local_ru_jcuken;
- case "qwertz": return R.xml.qwertz;
case "bgph1": return R.xml.local_bgph1;
case "dvorak": return R.xml.dvorak;
+ case "qwerty_es": return R.xml.qwerty_es;
+ case "qwerty_lv": return R.xml.qwerty_lv;
+ case "qwerty": return R.xml.qwerty;
+ case "qwerty_sv_se": return R.xml.qwerty_sv_se;
+ case "qwertz": return R.xml.qwertz;
+ case "ru_jcuken": return R.xml.local_ru_jcuken;
case "system": default: return -1;
}
}