function setLang(abbr) {
    jQuery.ajax({
        type: "get",
        url: "/index/set-lang/language/" + abbr,
        success: function (data) {
            window.location = window.location;
        }
    });
}
