[eluser]ELRafael[/eluser]
i didn't put in different views folders....
just did that:
application/views/hello_view.php
Code:
<h1><?=$this->lang->line('hello_title');?></h1>
<p><?=$this->lang->line('hello_text');?></p>
application/language/pt-br/app_lang.php
Code:
$lang['hello_title'] = 'Olá Mundo';
$lang['hello_title'] = 'Esta é uma aplicação padrão, só pra teste';
application/language/en/app_lang.php
Code:
$lang['hello_title'] = 'Hello World';
$lang['hello_title'] = 'Just testing application, don t worry!';
and this is working... but change dynamic don't >