How can I change JQuery Validation plugin that gives error message at browser's language. I mean if I run it on a browser that has English language errors will be in English or if the browser's language is Turkish error messages will be Turkish too(of course I will define messages at that languages, also I should define a default language if I didn't define an error message list according to browser's language)
|
You could have a look at the jquery's localisation plugin: http://keith-wood.name/localisation.html
The jquery validation plugin comes with localisation files available at this adress: http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_##.js where ## is the loc code. What you can do is load the validation plugin with the default error messages and then use the localization plugin to load the language-specific error messages. You can even write your localized js file, syntax is pretty trivial:
|
|||
|
|
|
Jquery validation plugin works with an array variable. I defined different array variables as like:
I get browser's language as two character as like
and I call the variable of :
so it works for me. |
|||
|
|