This looks like it works. If someone knows how to template the file please advise.
Edit the /etc/sysconfig/i18n change LANG and add a line SUPPORTED
LANG="en_US.UTF-8"
SUPPORTED="en_US.UTF-8:en_US:en"
Changing the db config sysconfig Language was changed back with either post-upgrade or console-save. Looking at the template fragments for i18n file they do not appear to be reading the db.
Template-begin code
{
{
%settings = ();
%order = ();
$OUT = "";
if (open(I18N, "/etc/sysconfig/i18n"))
{
my $l = 1;
while (<I18N>)
{
chomp;
my ($key, $value) = split(/=/, $_, 2);
$settings{$key} = $value;
$order{$l} = $key;
$l++
}
}
}
So it reads the file and not the db to set variables? Do we still template-custom this or just edit the i18n file?
At least my inbox has stopped filling!!