You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
426 B

function initTranslate() {
try{
translate.listener.start();
translate.language.setLocal('chinese_simplified');
translate.setAutoDiscriminateLocalLanguage();
translate.language.setUrlParamControl();
}
catch(e){console.log(e);}
translate.setUseVersion2();
translate.ignore.class.push('notTranslate');
translate.execute();
}
window.addEventListener('load', initTranslate);