Reputation: 154
Localization on my website was working until one day, my website went down. The host did some changes and after that, my website is in english. I set the default language to French but everything is in english. If I display the language
echo Configure::read('Config.language');
The result is "fre"
I have set Configure::write('Config.language', 'fre');
in bootstrap.php
Thanks
Upvotes: 0
Views: 436
Reputation: 8100
In 2.3 the lang code for french was changed from fre
to fra
as mentioned in the migration guide.
Upvotes: 2