opencart提速,magento后台汉化
2022-11-02 14:35:25 - 米境通
方法一:
打开/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main.php文件,
找到几个用来显示的代码,替换成如下所示:
1.将这行代码:
$item['text']=$node->getAttributeGroupName();
替换成:
$item['text']=$this->__($node->getAttributeGroupName());
2.
'text'=>$child->getAttributeCode(),
替换成:
'text'=>$this->__($child->getAttributeCode()),
3.
'text'=>$child->getAttributeCode(),
替换成:
'text'=>$this->__($child->getAttributeCode()),
$child->getFrontendLabel()即获取该属性的标签值,而不是原来的code值
这是将后台部分的英文转化成中文的方法。
相关问答: