'Homepage','pripage'=>' Previous page','nextpage'=>..."; just save it finally."/> 'Homepage','pripage'=>' Previous page','nextpage'=>..."; just save it finally.">
Home > Article > CMS Tutorial > How to change the English navigation in Empire CMS
How to change the English navigation in Empire cms?
The example of this article describes the method of changing the newsnav tag to English navigation using Imperial CMS. Share it with everyone for your reference. The specific implementation method is as follows:
Empire CMS changes "Home Page" to "Home". This will be used when building an English website. The simplest method is to modify the Empire CMS language pack. Of course, there are other methods.
Modification method:
Open \e\data\language\gb\pub\fun.php
The code is as follows:
'index'=>'首页', 'navfh'=>'>', 'pripage'=>'上一页', 'nextpage'=>'下一页', 'lastpage'=>'尾页', 'startpage'=>'首页', 'gotos'=>'第 ', 'gotol'=>' 页', 'goto'=>'转到:', 'forpage'=>'页次:', 'evpage'=>'每页', 'trecord'=>'总数', 'textprepage'=>'上一页', 'textnextpage'=>'下一页', 'admintrecord'=>'总数', 'adminpripage'=>'上一页', 'adminnextpage'=>'下一页', 'adminlastpage'=>'尾页', 'adminstartpage'=>'首页',
Change the homepage to HOME:
The code is as follows:
'index'=>'HOME', 'navfh'=>'>', 'pripage'=>'上一页', 'nextpage'=>'下一页', 'lastpage'=>'尾页', 'startpage'=>'首页', 'gotos'=>'第 ', 'gotol'=>' 页', 'goto'=>'转到:', 'forpage'=>'页次:', 'evpage'=>'每页', 'trecord'=>'总数', 'textprepage'=>'上一页', 'textnextpage'=>'下一页', 'admintrecord'=>'总数', 'adminpripage'=>'上一页', 'adminnextpage'=>'下一页', 'adminlastpage'=>'尾页', 'adminstartpage'=>'首页',
The same applies to other English modifications.
The above is the detailed content of How to change the English navigation in Empire CMS. For more information, please follow other related articles on the PHP Chinese website!