From 632a9ac590b92a52afe57f1f0aaaa919f9dcebdc Mon Sep 17 00:00:00 2001 From: Jules Aguillon Date: Sat, 19 Feb 2022 21:48:48 +0100 Subject: Localize € and £ Show these characters only for users that have the corresponding locale installed (a supported eu language for €, en-GB for £). Add these characters to most layouts. --- srcs/juloo.keyboard2/Config.java | 2 ++ 1 file changed, 2 insertions(+) (limited to 'srcs/juloo.keyboard2/Config.java') diff --git a/srcs/juloo.keyboard2/Config.java b/srcs/juloo.keyboard2/Config.java index 2a2be30..3e3d349 100644 --- a/srcs/juloo.keyboard2/Config.java +++ b/srcs/juloo.keyboard2/Config.java @@ -173,6 +173,8 @@ final class Config case "macron": return KeyValue.FLAG_ACCENT_MACRON; case "ring": return KeyValue.FLAG_ACCENT_RING; case "szlig": return KeyValue.FLAG_LANG_SZLIG; + case "euro": return KeyValue.FLAG_LANG_EURO; + case "pound": return KeyValue.FLAG_LANG_POUND; case "tilde": return KeyValue.FLAG_ACCENT4; case "trema": return KeyValue.FLAG_ACCENT6; default: throw new RuntimeException(name); -- cgit v1.2.3