diff --git a/res/values-pl/strings.xml b/res/values-pl/strings.xml index 2412dd9..778ebb8 100644 --- a/res/values-pl/strings.xml +++ b/res/values-pl/strings.xml @@ -16,9 +16,9 @@ Nigdy Tylko w orientacji poziomej Zawsze - - - + Układ klawiatury numerycznej + Od największej cyfry + Od najmniejszej cyfry Automatyczne wielkie litery Naciśnij Shift na początku zdania Dodaj klawisze do klawiatury diff --git a/res/values/arrays.xml b/res/values/arrays.xml index a43772c..ffb4226 100644 --- a/res/values/arrays.xml +++ b/res/values/arrays.xml @@ -13,6 +13,7 @@ qwerty_sv_se qwerty_hu qwerty_tr + qwerty_pl ru_jcuken qwertz qwertz_cs @@ -41,6 +42,7 @@ QWERTY (Swedish) QWERTY (Hungarian) QWERTY (Türkçe) + QWERTY (Polski) ЙЦУКЕН (Русский) QWERTZ QWERTZ (Czech) diff --git a/res/xml/qwerty_pl.xml b/res/xml/qwerty_pl.xml new file mode 100644 index 0000000..4300b27 --- /dev/null +++ b/res/xml/qwerty_pl.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/srcs/juloo.keyboard2/Config.java b/srcs/juloo.keyboard2/Config.java index fbb690d..0ef5b67 100644 --- a/srcs/juloo.keyboard2/Config.java +++ b/srcs/juloo.keyboard2/Config.java @@ -297,6 +297,7 @@ final class Config case "qwerty_pt": id = R.xml.qwerty_pt; break; case "qwerty_sv_se": id = R.xml.qwerty_sv_se; break; case "qwerty_tr": id = R.xml.qwerty_tr; break; + case "qwerty_pl": id = R.xml.qwerty_pl; break; case "qwertz": id = R.xml.qwertz; break; case "qwertz_cs": id = R.xml.qwertz_cs; break; case "qwertz_de": id = R.xml.qwertz_de; break;