Home > Article > CMS Tutorial > How to implement the English navigation of newsnav tags in Imperial CMS
The example of this article describes the method of changing the newsnav tag to English navigation in 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'=>'首页',
Recommend learning《Empire cms tutorial》
The homepage is changed 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 modifying other English.
Hope this article The above will be helpful to everyone’s Imperial CMS website building.
The above is the detailed content of How to implement the English navigation of newsnav tags in Imperial CMS. For more information, please follow other related articles on the PHP Chinese website!