the best way to make codeigniter website multi-language. calling from lang arrays depends on lang session?

后端 未结 11 1102
情深已故
情深已故 2020-11-27 10:34

I\'m researching hours and hours, but I could not find any clear, efficient way to make it :/

I have a codeigniter base website in English and I have to add a Polish

11条回答
  •  臣服心动
    2020-11-27 11:25

    Friend, don't worry, if you have any application installed built in codeigniter and you wanna add some language pack just follow these steps:

    1. Add language files in folder application/language/arabic (i add arabic lang in sma2 built in ci)

    2. Go to the file named setting.php in application/modules/settings/views/setting.php. Here you find the array

     'English',
    
      'arabic' => 'Arabic',  // i add this here
    
      'spanish' => 'Español'
    

    Now save and run the application. It's worked fine.

提交回复
热议问题