Thursday 03 August 2006 7:18:46 am
Hi George, No, there are no language parameters in override/*.ini.append.php files nor in settings/*.ini. The new_site_admin/site.ini.append.php file is same than plain_site_admin/site.ini.append.php In fact, I found the table I need to modify: ezcontent_language In the data base of the default plain_site siteaccess, this table contains:
disabled id locale name
0 2 fre-FR Français (France)
0 4 eng-GB English (United Kingdom)
But for my new siteaccess it contains:
disabled id locale name
0 4 eng-GB English (United Kingdom)
0 2 fre-FR Français (France)
This modification can be done with:
UPDATE `ezcontent_language` SET `locale` = 'fre-FR',`name` = 'Français (France)' WHERE `id` =2 LIMIT 1;
and:
UPDATE `ezcontent_language` SET `locale` = 'eng-GB',`name` = 'English (United Kingdom)' WHERE `id` =4 LIMIT 1;
Regards
Pascal
Ce qui embellit le désert c'est qu'il cache un puits... quelque part... (A. de Saint-Exupéry) - http://luxpopuli.fr/eZ-Publish
|