Did you add in your fuel/application/config/MY_fuel.php multiple languages to the config similar to below? // Languages for pages. The key is saved to the page variables
$config['languages'] = array(
'english' => 'English',
'sp' => 'Spanish',
'de' => 'German',
);
The error seems to be related with the lang() function. This isn´t working with the selected language. Only if i do a native CI lang->load() starts to work fine.
Comments
// Languages for pages. The key is saved to the page variables $config['languages'] = array( 'english' => 'English', 'sp' => 'Spanish', 'de' => 'German', );
I am getting "Unable to load the requested language file: language/english/_lang.php"
Also, just confirming that the above was added to the MY_fuel.php file and not the fuel/application/config.php file.
Yes, added inside MY_fuel.php
Thanks!