0
我在Magento中有一個包含文本"All Categories"
的公共函數,我如何在Magento中翻譯這個文本。例如,我想如果你的方法是模塊在Mage_Catalog在Mage_Catalog.csv
文件Magento在php中的翻譯文本
public function getCatNameCustom($category){
$level = $category->getLevel();
$html = '';
for($i = 0;$i < $level;$i++){
$html .= '';
}
if($level == 1) return $html.' '.$this->__("All Categories");
else return $html.' '.$category->getName();
}