简体   繁体   中英

I want to translate boostrap validation message according to different locales.(not using browser language)

$(document).ready(function () {
var url=window.location.pathname;
  if(url.match("(/content/de/)(.*)")) {
          $("#btnContactUs").click(function(){
           $.getScript('/clientlib-site/js/de_DE.js', function() {
              alert("success");  
          });
    }
});

Here I am trying to add bootstrap-validators language pack(de_DE.js) if selected locale is de else if selected locale is en then add(en_US.js).already tried using different language packages

If you are using AEM, it provides a I18N object for JavaScript where you could use your Dictionary entries for translation. Please have a look at the documentation: https://helpx.adobe.com/experience-manager/6-4/sites/developing/using/i18n-dev.html

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM