![]() |
problem Language Selection 2 - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: problem Language Selection 2 (/showthread.php?tid=29050) Pages:
1
2
|
problem Language Selection 2 - El Forum - 03-29-2010 [eluser]momen[/eluser] hello when used libraries Language Selection 2 to change language show this error Unable to load the requested language file: language/de-at/db_lang.php problem Language Selection 2 - El Forum - 03-29-2010 [eluser]eoinmcg[/eluser] from the error it expects you to have a file in db_lang.php in language/de-at so, in your controller you must've typed: Code: $this->lang->load('db'); but didn't create the corresponding file problem Language Selection 2 - El Forum - 03-29-2010 [eluser]momen[/eluser] this file db_lang.php not found the language/de-at when add this $this->lang->load('db'); to controllers the same problem thanks problem Language Selection 2 - El Forum - 03-29-2010 [eluser]eoinmcg[/eluser] you should create the file 'db_lang.php' in language/de-at problem Language Selection 2 - El Forum - 03-29-2010 [eluser]momen[/eluser] the same problem problem Language Selection 2 - El Forum - 03-29-2010 [eluser]momen[/eluser] the error has hidden and return empty page problem Language Selection 2 - El Forum - 03-29-2010 [eluser]eoinmcg[/eluser] post your controller code together with a brief description with what you're trying to achieve problem Language Selection 2 - El Forum - 03-29-2010 [eluser]momen[/eluser] I do not understand problem Language Selection 2 - El Forum - 03-29-2010 [eluser]rogierb[/eluser] db_lang is used by the database class. It's a system language file When you create a language like de-at or mickey_mouse for all I care, you need alll the system language files to be translated aswell. So make a copy off all system languaes files and copy then to your de-at folder. problem Language Selection 2 - El Forum - 03-29-2010 [eluser]momen[/eluser] i make it but not work |