3

我使用此代码获取国家/地区名称,

Mage::getModel('directory/country')->loadByCode('DE')->getName();

在这个示例中,我得到“德国”。如何获得国家名称的翻译以显示例如德语的“Deutschland”?

注意:我不使用前端模块中的代码(它必须独立于客户的前端语言)。

非常感谢您的帮助。

4

1 回答 1

5

当然 Magento 翻译引擎可以在你的外部脚本中使用:

Mage::getSingleton('core/translate')->init('de_DE', true);
$country_name = Mage::getModel('directory/country')->loadByCode('DE')->getName();
echo Mage::helper('core')->__($country_name);

或者您可以使用Zend_Localeclass ar 替代方案:

$locale = new Zend_Locale('de_DE');
$countries = $locale->getTranslationList('Territory', $locale->getLanguage(), 2);
echo $countries['DE'];
于 2012-11-09T11:20:21.080 回答