I am trying to figure out the translation in the magento. Ok, so I understand how it works but here is the problem.
For instance this is part of the source code in one of the PHTML files:
<p class="hello"><strong><?php echo $this->__('Hello, %s!', $this->htmlEscape($this->getCustomerName())) ?></strong></p>
How am i supposed to translate the word "Hello," in this case? Theres tons of this type of parsend strings on the page and please dont tell me that i will have to re-write all this examples to get the translator working?
Is there any other way?