I have some tables to display amounts of money in dollars, currency symbol position. The thing is that I want to show different representations of currency based on the language selection, French or English. So, I want to be able to substitute html content without rewriting the entire content or having different files. For instance:
$50 English
50$ French
In a simplified HTML version, I can have values like that
<div>50</div>
<div>150</div>
<div>250</div>
Then, I will end up to needing two different views for either English or French. I am aware that there are many libraries or string substitution techniques to handle such a scenario, but I need here to do it from a single html view.