diff options
| author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-08-08 19:48:46 +0100 |
|---|---|---|
| committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 17:48:01 +0100 |
| commit | 8af37a4799e7319e0b27571fad82b23d57ef2cc3 (patch) | |
| tree | fef297aae1bc26389afaf3c98eb7af02c60244b5 | |
| parent | 5a8c6778fe784c4a0a9f0d5ff84b95b4ed18d26e (diff) | |
| download | live-boot-8af37a4799e7319e0b27571fad82b23d57ef2cc3.tar.gz live-boot-8af37a4799e7319e0b27571fad82b23d57ef2cc3.zip | |
Rework locale handling
* Support all codepages, not just UTF-8 ones.
* Although UTF-8 variants are still preferred, specifying an invalid
codepage as an extension to a known language will not necessarily result
in en_US.UTF-8 being chosen - it will try and use an alternate.
* Fixes an issue whereby an unknown locale would end up as a blank
"language" in /etc/kde3/kdm/kdmrc instead of en_US.
* General tidying of the code.
| -rwxr-xr-x | scripts/live-bottom/14locales | 38 |
1 files changed, 24 insertions, 14 deletions
diff --git a/scripts/live-bottom/14locales b/scripts/live-bottom/14locales index b7ea704..aa75369 100755 --- a/scripts/live-bottom/14locales +++ b/scripts/live-bottom/14locales @@ -75,34 +75,44 @@ then locale="${locale}_${uploc}.UTF-8" fi - LANG=$(grep "^${locale}" /root/usr/share/i18n/SUPPORTED | grep UTF-8 | sed -e 's, .*,,' -e q) + LANG= + language="$(echo ${locale} | cut -d. -f1)" + eval $(awk '/^'"${locale}"'/ { print "LANG=" $1 " codepage=" $2; exit; }' /root/usr/share/i18n/SUPPORTED) - language="${LANG%%.UTF-8*}" - if [ -d /root/etc/default/kdm.d/ ] + if [ -z "${LANG}" ] then + # Try and fallback to another codepage for this language. + eval $(awk '/^'"${language}"'/ { print "LANG=" $1 " codepage=" $2; exit; }' /root/usr/share/i18n/SUPPORTED) -cat > /root/etc/default/kdm.d/live-autologin << EOF -LANGUAGE=${language} -EOF + if [ -n "${LANG}" ] + then + log_warning_msg "Choosing locale '${LANG}' as '${locale}' is unsupported." + fi + fi - elif [ -f /root/etc/kde3/kdm/kdmrc ] + if [ -z "${LANG}" ] then - sed -i -r -e "s/#Language=.*/Language=${language}/" \ - /root/etc/kde3/kdm/kdmrc + log_warning_msg "Locale '${locale}' is unsupported." + codepage="UTF-8" + language="en_US" + locale="${language}.${codepage}" + LANG="${language}.${codepage}" fi - if [ -z "${LANG}" ] + if [ -d /root/etc/default/kdm.d/ ] then - log_warning_msg "Locale ${locale} is unsupported." - locale="en_US.UTF-8" - LANG="${locale}" + printf 'LANGUAGE=%s\n' "${LANG}" >> /root/etc/default/kdm.d/live-autologin + elif [ -f /root/etc/kde3/kdm/kdmrc ] + then + sed -i -r -e "s/#Language=.*/Language=${language}/" \ + /root/etc/kde3/kdm/kdmrc fi really_export LANG printf 'LANG="%s"\n' "${LANG}" >> /root/etc/default/locale printf 'LANG="%s"\n' "${LANG}" >> /root/etc/environment - printf '%s UTF-8\n' "${LANG}" > /root/etc/locale.gen + printf '%s %s\n' "${LANG}" "${codepage}" > /root/etc/locale.gen chroot /root /usr/sbin/locale-gen fi |
