Reputation: 1
I am trying to translate a single line on a product page.
"Special Price" needs to be changed.
I found the Mage_Catalog.csv in the app/locale/[language] folder and changed the translation.
I used (translating to Dutch):
After saving & uploading, I cleared all caches:
Host cache, Magento cache & browser cache.
No result, it works on all other lines, save for this one.
So my next step was to change it on the generated product page, but I can't find the file I need.
Does any of you know?
Upvotes: 0
Views: 371
Reputation: 570
price.phtml line 389 +/-
remove variable
<span class="price-label">$variable</span>
and use
<?php echo $this->__('Special Price:') ?>
is bug magento, dont translate correct special price =(
Upvotes: 1