问问题
2267 次
1 回答
0
如果您的系统没有被核心更改,或者没有代码池覆盖,或者现有的重写会更改消息,那么这就是添加该消息的代码行
Mage::getSingleton('customer/session')
->addSuccess(
Mage::helper('contacts')->__('Your inquiry was submitted and will be responded to as soon as possible. Thank you for contacting us.')
);
字符串
'Your inquiry was submitted and will be responded to as soon as possible. Thank you for contacting us.'
通过__
translate/localize 函数传递,这意味着文本可以通过 Magento 的 CSV 和内联翻译功能进行更改。
这个关于翻译功能的 Magento Stack Exchange 问题可以帮助您调试当前系统,并解释为什么翻译不能按您认为的方式工作。(因为你的问题没有提到,我猜是缓存)
于 2013-08-29T20:24:18.503 回答