I have an application I'd like to localise. However, the strings to be localised occasionally contain parts I'd like to provide at runtime, such as action links.
For example, I have a string like this: Please <a href="/help">click here</a> for help.
I can't just split it into two resources since in different languages it'll be in a different location.
Is there any way to do this or should I stick to hard-coding the link to the controller/action in the resource itself?