Localize/Translate words on page load

Viewed 145

I am working on a Web site already developed in ASP.Net MVC 4,

Currently I am working on a task to Translate the site in different languages using Resources Files through Localization/Globalization techniques.

I have to call Resource file each time the word is used (as mentioned below) and it is working fine.

@***.******.UI.LocalResources.Resource.Change_Address

I want some technique to translate all words used in a web page automatically.

I've tried jQuery's document.ready() method (by getting list of all words in JS from Resource file) but invain, please guide me regarding any technique so that if a word is used at any place in a web page, it should be translated

1 Answers
Related