I have defined the default language in application/config.php file as$config['language'] = 'english' ;
But in some cases I want to switch to other language, I tried using
$this->config->set_item('language', 'japanese');
and in my system/language folder I have both english and japanese folders and relevent files inside them, but when switch in controller using
$this->config->set_item('language', 'japanese');
didn't work. So how can I switch between these languages