I'm trying to change the price format in Magento ver. 1.5.1.0 from €8.49 to EUR 8.49
I have been looking through lots of posts and forums but it didn't work out. I tried to follow the instructions but it didn't work out so far. Cache is deactivated.
/lib/Zend/Locale/Data/en.xml
<currency type="EUR">
<displayName>Euro</displayName>
<displayName count="one">euro</displayName>
<displayName count="other">euros</displayName>
//added <symbol>EUR</symbol> here
</currency>
/lib/Zend/Locale/Data/root.xml
<currency type="EUR">
<symbol>€</symbol> => changed to <symbol>EUR</symbol> didn't work
</currency>
And no, i don't want to change the core /Zend files or use str_replace.
Thanks for your help!