In my autoload function I am trying to autoload a language, but I get this error:
Unable to load the requested language file: language/english/russian_lang.php
I have an english
and a russian
folder in my application
folder.
My autoload is:
$autoload['language'] = array('russian');
Calling this does yield the appropriate result:
$this->lang->load('russian', 'russian');
goodPrintOverlap($this->lang->line('hello')); //goodPrintOverlap is custom function
Does codeigniter look into the english folder by default? Because that what the error says.
Any help?