Jump to content

problem with CI languages


keevitaja

Recommended Posts

now i have problem with languages.

 

<?php
class Subtest extends Controller {
  function index() {
    echo $this->config->item('language').'<br>'; //prints estonian, set in config file, default
    $this->config->set_item('language', 'english');
    echo $this->config->item('language').'<br>'; //prints english
    echo $this->lang->line('site_select_language'); //still prints out the estonian version
  }
}

 

i have both estonian and english versions in language folder

isn't it possible to change the language like that?

 

however if i change the config file and set $config['language']    = "english"; it will print out the english version!

Link to comment
https://forums.phpfreaks.com/topic/212072-problem-with-ci-languages/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.