|
Don’t know if it’s relevant, but I figured out that the phrase “Double click on above image to view full picture” on line 32
app/design/frontend/default/modern/template/catalog/product/view/media.phtml
is hardcoded, so you have to add:
<p class="a-center"><?php echo $this->__('Double click on above image to view full picture') ?></p>
instead of
<p class="a-center">Double click on above image to view full picture</p>
and add the translation to your localization
|