[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
ojs
/
248
/
lib
/
pkp
/
js
/
functions
/
[
Home
]
File: jqueryValidatorI18n.js
/** * jqueryValidatorI18n.js * * Copyright (c) 2013-2019 Simon Fraser University * Copyright (c) 2000-2019 John Willinsky * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * short function to map PKP localization strings to the jquery validation plugin localization */ /** * need a mapping of PKP locale strings to the ones used by the jquery validation plugin */ function jqueryValidatorI18n(baseUrl, locale) { var scriptPrefix; scriptPrefix = baseUrl + "/lib/pkp/js/lib/jquery/plugins/validate/localization/messages_"; switch(locale) { //TODO: add all other PKP supported locales // French case 'fr_FR': case 'ca_FR': eval($.getScript(scriptPrefix + "fr.js")); break; // Portuguese case 'pt_BR': eval($.getScript(scriptPrefix + "ptbr.js")); break; case 'pt_PT': eval($.getScript(scriptPrefix + "ptpt.js")); break; // Spanish case 'es_AR': case 'es_ES': eval($.getScript(scriptPrefix + "es.js")); break; default: // default to no localization } }