gpt4 book ai didi

magento - 如何在 phtml 文件中添加文本内容进行翻译

转载 作者:行者123 更新时间:2023-12-02 05:50:26 28 4
gpt4 key购买 nike

我需要在 .phtml 文件中添加文本内容,以便将其翻译成多语言网站。

文件位置在这里:app > design > frontend > default > (my-theme) > template > catalog > category > left_nav.phtml

最佳答案

选项 1。

<?php echo Mage::helper('catalog')->__('Text here');?>

然后在app/locale/{lang_ISO}/Mage_Catalog.csv中添加文字

"Text here","Translation here"

选项 2。

<?php echo $this->__('Text here');?>

然后在app/design/frontend/{interface}/{theme}/locale/{lang_ISO}/translate.csv中添加文字像这样:

"Text here","Translation here"

[编辑]
要在文本中包含链接,请遵循以下模式:

<?php echo $this->__('some <a href="%s">text here</a>', Mage::getUrl('some/url/here'));

然后将这一行添加到您的 csv 文件中:

"some <a href=""%s"">text here</a>","translated <a href=""%s"">text here</a>"

%s是一个占位符,将被 __ 的第二个参数替换方法。
此外,将其添加到 csv 文件时,请确保将文本中的引号加倍,以便 <a href="%s"></a>应该添加到 csv 文件中,如 <a href=""%s""></a>

关于magento - 如何在 phtml 文件中添加文本内容进行翻译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18567795/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com