Codeigniter language

前端 未结 3 377
别那么骄傲
别那么骄傲 2020-12-14 05:02

I wanna make a multilanguage website, but I do not want that the language appear in URI like example.com/fr/about (I do not want this). I just want to change the text langua

3条回答
  •  粉色の甜心
    2020-12-14 05:37

    Read the developer guide, there are some things to consider:

    • "Language files must be named with _lang.php as the file extension." - your file is just called "message"
    • Use different files for different languages
    • Simply doing $this->lang->load("messages"); without second argument will load the default language
    • Show translated texts with $this->lang->line('some_key');

提交回复
热议问题