我正在使用jquery-i18n-properties来实现我的网站的国际化。我的问题是当我从组合框中更改语言时,翻译页面需要太多时间。 这是我的配置:
jQuery.i18n.properties({
name:'Messages',
path:'prop/',
mode:'both',
language: lang,
cache:true,
callback: function() {
jQuery('#welcome_title').html(jQuery.i18n.prop("welcome.title"));
});
当我在本地测试时需要1秒。在EC2上翻译页面需要2秒。我怎样才能克服这个问题?