I have an MVC app, in which to translate I am storing all the text fields in a .resx file and then retrieving them with:
Resources.Resource.FirstName}
I have a JavaScript file which I need to do the same for two strings. I have checked Google and saw the JQuery.Globalization library (which doesn't seem to be available anymore) but that is way overkill for just two strings. I need to translate the two "Please wait..." strings in the following. How doo I do this easily?
$("#the_button").lockSubmit({
submitText: "Please wait..."
});
$(".the_button").lockSubmit({
submitText: "Please wait..."
});