IRC国际化替换
continuous-integration/drone/push Build is passing Details

uat
wangxiaoshuang 2025-05-22 17:49:43 +08:00
parent 83bf082c43
commit e27705eb22
1 changed files with 5 additions and 0 deletions

View File

@ -310,6 +310,11 @@ async function VueInit() {
text = text.replace(test, item.TrialName)
})
}
let CompanyInfo = JSON.parse(localStorage.getItem('CompanyInfo'))
if(CompanyInfo&&CompanyInfo.SystemShortName){
let test = new RegExp('IRC', 'ig')
text = text.replace(test, 'LILI')
}
// return i18n.t(key)
return text;
}