在magento的货币符号

Aja*_*tel 5 php magento magento-1.7

我用两种不同的语言创建了两个Magento商店视图:

  1. 英语
  2. 荷兰人

英语(EURO)货币符号以适当的方式出现,如€20.00,但对于荷兰语语言,它显示我20,00欧元.我想为两个视图设置默认符号€,因为EURO是相同的.我怎样才能在Magento实现它.

liy*_*kat 4

您可以更改您的区域设置

\n\n

这是英语的例子。为此,您必须对语言文件进行细微更改。以下是文件的目录结构。

\n\n
=> root/lib/Zend/Locale/Data/en.xml (For English Language)\n\n=> around line 2611 you can see following code.\n <currencyFormat>\n      <pattern>\xc2\xa4#,##0.00;(\xc2\xa4#,##0.00)</pattern>\n </currencyFormat>\n\n=> Now Change above code with Following code.\n\n  <currencyFormat>\n       <pattern>#,##0.00 \xc2\xa4;(#,##0.00 \xc2\xa4)</pattern>\n </currencyFormat>\n
Run Code Online (Sandbox Code Playgroud)\n\n

您可以将其设置为 for Dutch

\n