Ali
Ali

Reputation: 154

I can't get localization to work in cakephp 2.3

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

Answers (1)

ADmad
ADmad

Reputation: 8100

In 2.3 the lang code for french was changed from fre to fra as mentioned in the migration guide.

Upvotes: 2

Related Questions