If there is one thing i like about magento is the way the use translations. English is the default language, offcourse. If you have a sentence like "Thank you for shopping" you will put this in your template like
Code: Select all
<?php echo $this->__('Thank you for shopping') ?>
The system then tries to translate this using the translate files. If one is found, the translation will be made. So far, the translation system in CMS MS is the same. However, when no translation has been found, it will just print "Thank you for Shopping". If a translation is not found in CMS MS it will say something like
Code: Select all
--Add Me - module:Cardsell string:Thank you for shopping--
Is it an idea to rewrite the translate system in this way? I don't think it will be that hard to copy this feature?