Default_lang doesn't do anything
Posted: Thu Jun 04, 2009 8:46 am
Ok, in my config_lang.php I have:
But everytime I access the page without hl / locale parameter, locale / language is set to en_US by default. It works fine after I click 'suomeksi'. So how can the locale to be set to fi_FI by default?
Code: Select all
define('DEFAULT_LANG', 'fi_FI');
$force_mle_default = true;
$hls = array(
'fi_FI' => array(
'block'=>'fi',
'flag'=>'suomeksi',
'text'=>'suomeksi',
'locale'=>'fi_FI.utf8@euro',
),
'en_US' => array(
'block'=>'en',
'flag'=>'in english',
'text'=>'in english',
),
);