|
Hi,
I had similar issue with Canadian device. First, it’s not something managed by Mage’s file, it’s a Zend class.
In your case, Magento display no currency because there’s no config file en_NZ in /lib/Zend/Locale/Data
Go there and copy en_AU.xml to en_NZ.xml
Then, go to line #75 and change the currency AUS for NZD :
<currencies> <currency type="NZD"> <symbol>CHANGE ME $</symbol> </currency> <currency type="USD"> <symbol>US$</symbol> </currency> </currencies>
Although, Zend’s core config files could end up being overwrite at every Magento update. To avoid this, I created a symbolic link from /app/locale/Zend_Locale_local/Data linking to /lib/Zend/Locale/Data, I’m sure there’s a better way to handle this though…
Be sure to Refresh cache… even if it’s off!
|