One of the reasons why I have my website with these templates is the feature that allows you to change the language with a single click.
Recently discovered that there are still some things untranslated. I refer in this case to two situations related with the moon and its phases:
The first one is in the 'ajax-dashboard.php' in the Moon area, the "mouseover" is allways in English,like you can see in the image:

I've tried several solutions without success.
These are the lines of code:
Code: Select all
<td style="text-align: center;"><img src="<?php
echo $imagesDir . 'moon' . $moonagedays; ?>.gif"
alt="<?php $t1 = moonphase($moonage) . ", Moon at $moonagedays days in cycle";
echo $t1; ?>"
title="<?php echo $t1; ?>"
width="48" height="48" style="border: 0;" />
</td>
</tr>
And these are the lines of code for the above situation:
Code: Select all
<img src="moonicon.gif" width="104" height="72"
alt="<?php print $moonage; ?>" title="<?php print $moonage; ?>"/></td>
<?php } else { // ?>
<img src="<?php echo $imagesDir . 'moon' . $moonagedays; ?>.gif" width="45" height="45"
alt="<?php print langtrans($moonage); ?>" title="<?php print langtrans($moonage); ?>"/></td>
<?php } ?>