CodeIgniter Forums
Multilanguage - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=11)
+--- Thread: Multilanguage (/showthread.php?tid=72656)



Multilanguage - pippuccio76 - 01-19-2019

Hi ,sorry for english ,  i see this tutorial to implement multilanguage :

https://www.codexworld.com/multi-language-implementation-in-codeigniter/

I have some question :

can i call directly on view  ?


Code:
<?=lang('message_to_show')?>

or must i create a variabile in controller ?

Code:
$data['message_to_show'] = lang('message_to_show') ;
and in view :

Code:
<?=$message_to_show) ?>


Another question :

If i create several file for language (in every subfolder of language) , How can i import only the file that i need ?

Last question:

how can i change the form_validation error ?can i do this :

Code:
'min_length'=>lang('min_lenght_field')



RE: Multilanguage - InsiteFX - 01-19-2019

Maybe this will help you out.

CodeIgniter Multilanguage Site


RE: Multilanguage - pippuccio76 - 01-20-2019

(01-19-2019, 09:41 AM)InsiteFX Wrote: Maybe this will help you out.

CodeIgniter Multilanguage Site

Sorry but i have made a website in my language , i must add the other...


RE: Multilanguage - InsiteFX - 01-20-2019

No Problem, you can do it like you mentioned above.