Language setting
This commit is contained in:
parent
ac542ebe9e
commit
c0479cffde
|
@ -1280,6 +1280,7 @@ function interactive_select_language {
|
||||||
esac
|
esac
|
||||||
save_configuration_values
|
save_configuration_values
|
||||||
|
|
||||||
|
locale-gen "${DEFAULT_LANGUAGE}"
|
||||||
update-locale LANG=${DEFAULT_LANGUAGE}
|
update-locale LANG=${DEFAULT_LANGUAGE}
|
||||||
update-locale LANGUAGE=${DEFAULT_LANGUAGE}
|
update-locale LANGUAGE=${DEFAULT_LANGUAGE}
|
||||||
update-locale LC_MESSAGES=${DEFAULT_LANGUAGE}
|
update-locale LC_MESSAGES=${DEFAULT_LANGUAGE}
|
||||||
|
|
|
@ -29,26 +29,27 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
function locale_setup {
|
function locale_setup {
|
||||||
if grep -Fxq "locale_setup" $COMPLETION_FILE; then
|
if grep -Fxq "locale_setup" $COMPLETION_FILE; then
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
apt-get -y install locales locales-all debconf
|
apt-get -y install locales locales-all debconf
|
||||||
|
|
||||||
if [ ! "$DEFAULT_LANGUAGE" ]; then
|
if [ ! "$DEFAULT_LANGUAGE" ]; then
|
||||||
DEFAULT_LANGUAGE='en_GB.UTF-8'
|
DEFAULT_LANGUAGE='en_GB.UTF-8'
|
||||||
fi
|
fi
|
||||||
if [ ${#DEFAULT_LANGUAGE} -lt 2 ]; then
|
if [ ${#DEFAULT_LANGUAGE} -lt 2 ]; then
|
||||||
DEFAULT_LANGUAGE='en_GB.UTF-8'
|
DEFAULT_LANGUAGE='en_GB.UTF-8'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
update-locale LANG=${DEFAULT_LANGUAGE}
|
locale-gen "${DEFAULT_LANGUAGE}"
|
||||||
update-locale LANGUAGE=${DEFAULT_LANGUAGE}
|
update-locale LANG=${DEFAULT_LANGUAGE}
|
||||||
update-locale LC_MESSAGES=${DEFAULT_LANGUAGE}
|
update-locale LANGUAGE=${DEFAULT_LANGUAGE}
|
||||||
update-locale LC_ALL=${DEFAULT_LANGUAGE}
|
update-locale LC_MESSAGES=${DEFAULT_LANGUAGE}
|
||||||
update-locale LC_CTYPE=${DEFAULT_LANGUAGE}
|
update-locale LC_ALL=${DEFAULT_LANGUAGE}
|
||||||
|
update-locale LC_CTYPE=${DEFAULT_LANGUAGE}
|
||||||
|
|
||||||
echo 'locale_setup' >> $COMPLETION_FILE
|
echo 'locale_setup' >> $COMPLETION_FILE
|
||||||
}
|
}
|
||||||
|
|
||||||
# NOTE: deliberately no exit 0
|
# NOTE: deliberately no exit 0
|
||||||
|
|
Loading…
Reference in New Issue