I have a web site working in English. I want to localize the code such that the html text (currently hardcoded in english) can be changed according to system language.
For example:
<section id="myInfo" data-bind="with: My.ViewModel.Testing">
<header>
<h1>Test Case 1</h1>
</header>
....
</section>
The text "Test Case 1" needs to change to the system specific language. Any hints on how I could achieve that?