summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Dahl <post@lespocky.de>2012-12-14 15:06:46 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2012-12-16 14:53:00 +0100
commitfc6829392066c5947660d6c496e20b645717d75b (patch)
tree73dbeb02a02bcd16532f96502cde0bb94707cc3d
parentdf377d339ba16d3a9ec55e20d1a558b770a3860f (diff)
downloadptxdist-fc6829392066c5947660d6c496e20b645717d75b.tar.gz
ptxdist-fc6829392066c5947660d6c496e20b645717d75b.tar.xz
add en_US locale with utf8 encoding and add missing creation of en_GB@euro
Signed-off-by: Alexander Dahl <post@lespocky.de> [mol: change the locale name to en_GB@euro] Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/locales.in6
-rw-r--r--rules/locales.make6
2 files changed, 12 insertions, 0 deletions
diff --git a/rules/locales.in b/rules/locales.in
index f6241c73b..292a602a6 100644
--- a/rules/locales.in
+++ b/rules/locales.in
@@ -20,6 +20,12 @@ config LOCALES_EN_US
help
American English language support.
+config LOCALES_EN_US_UTF8
+ bool
+ prompt "en_US (UTF-8)"
+ help
+ American English language support with utf-8.
+
config LOCALES_EN_GB
bool
prompt "en.GB (ISO8859-1)"
diff --git a/rules/locales.make b/rules/locales.make
index 030e47869..ce4955d8a 100644
--- a/rules/locales.make
+++ b/rules/locales.make
@@ -33,9 +33,15 @@ $(STATEDIR)/locales.install:
ifdef PTXCONF_LOCALES_EN_US
@$(call add_locale, en_US, en_US, ISO-8859-1, $(LOCALES_PKGDIR))
endif
+ifdef PTXCONF_LOCALES_EN_US_UTF8
+ @$(call add_locale, en_US.UTF-8, en_US, UTF-8, $(LOCALES_PKGDIR))
+endif
ifdef PTXCONF_LOCALES_EN_GB
@$(call add_locale, en_GB, en_GB, ISO-8859-1, $(LOCALES_PKGDIR))
endif
+ifdef PTXCONF_LOCALES_EN_GB_EURO
+ @$(call add_locale, en_GB@euro, en_GB, ISO-8859-15, $(LOCALES_PKGDIR))
+endif
ifdef PTXCONF_LOCALES_DE_DE
@$(call add_locale, de_DE, de_DE, ISO-8859-1, $(LOCALES_PKGDIR))
endif