Magento 1.9 – Translate String with Variable and HTML

localisationmagento-1.9

I am trying to translate a string by using translate.csv located in theme but translation is not working.

Here is my string

"To check your Gift card information, please click <a href="%s">here</a>.","klik <a href="%s">her</a> for at tjekke din gavekortskode."

Best Answer

you need to double the double quotes for it to work.
So if you want the text printed as To check your Gift card information, please click <a href="%s">here</a>. you have to add this in the translate file

"To check your Gift card information, please click <a href=""%s"">here</a>.","klik <a href=""%s"">her</a> for at tjekke din gavekortskode."
Related Topic