Comment 11 for bug 569365

Revision history for this message
Johan Kiviniemi (ion) wrote :

/etc/default/locale can set other relevant variables than just LANG and LANGUAGE; LC_MESSAGES for instance. Instead of

  . /etc/default/locale
  export LANG LANGUAGE

one could do

  set -a
  . /etc/default/locale
  set +a

in order to export all variables set in the file.