How to dynamically change language using jquery-i18n-properties and JavaScript?

后端 未结 1 930
终归单人心
终归单人心 2020-12-21 12:36

I\'m providing i18n to my website using jquery-i18n-properties plugin. I have already changed my HTML and do the following in order to load the .properties that is required:

相关标签:
1条回答
  • 2020-12-21 13:33

    Yeah it's easy. In fact, there's example that does just that on jQuery.i18n.properties site (http://codingwithcoffee.com/files/trunk/index.html).

    Trick is, to simply reinitialize plugin with new language. Abstract your current code into another function, that accepts lang as parameter. Initialize with some default language, and once user changes the current language, pass it to that function.

    function changeLang(lang) {
        jQuery.i18n.properties({
            name: 'Messages', 
            path: 'bundle/', 
            mode: 'both',
            language: lang, 
            callback: function() {
                $("#msg_welcome").text(jQuery.i18n.prop('msg_welcome'));
                ...
            }
        });
    }
    
    // somewhere else in your code
    // change to english
    changeLang('en_EN');
    // change to other
    changeLang('pt_PT');
    
    0 讨论(0)
提交回复
热议问题