外部脚本中的 Magento 翻译

发布于 2024-12-01 14:51:06 字数 110 浏览 1 评论 0原文

我希望能够在外部脚本中使用 $this->__('String to translate') 。我该怎么做? Magento 版本 1.5.1.0

I want to be able to use $this->__('String to translate') in an external script. How do I do this? Magento version 1.5.1.0.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

睫毛溺水了 2024-12-08 14:51:06

我认为设置区域设置的正确方法是:

Mage::getSingleton('core/translate')->setLocale('sv_SE')->init('frontend', true);

I think the right way to set locale is:

Mage::getSingleton('core/translate')->setLocale('sv_SE')->init('frontend', true);
抱着落日 2024-12-08 14:51:06

这应该有效:

require 'app/Mage.php'; // here you should use the correct path to Mage.php file

Mage::app();
Mage::getSingleton('core/translate')->init('sv_SE', true); // UPDATE
$to_translate = "String to translate";
$translated = Mage::helper('core')->__($to_translate);

This should work:

require 'app/Mage.php'; // here you should use the correct path to Mage.php file

Mage::app();
Mage::getSingleton('core/translate')->init('sv_SE', true); // UPDATE
$to_translate = "String to translate";
$translated = Mage::helper('core')->__($to_translate);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文