mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
46 lines
1.0 KiB
JavaScript
46 lines
1.0 KiB
JavaScript
import Locale from '../../../src/locale';
|
|
import zhCN from '../../../src/locale/lang/zh-CN';
|
|
import enUS from '../../../src/locale/lang/en-US';
|
|
|
|
const langMap = {
|
|
'en-US': {
|
|
title: 'Vant - Mobile UI Components built on Vue',
|
|
messages: enUS
|
|
},
|
|
'zh-CN': {
|
|
title: 'Vant - 轻量、可靠的移动端 Vue 组件库',
|
|
messages: zhCN
|
|
}
|
|
};
|
|
|
|
let currentLang = '';
|
|
|
|
function getDefaultLang() {
|
|
const langs = Object.keys(langMap);
|
|
const { hash } = location;
|
|
|
|
for (let i = 0; i < langs.length; i++) {
|
|
if (hash.indexOf(langs[i]) !== -1) {
|
|
return langs[i];
|
|
}
|
|
}
|
|
|
|
const userLang = localStorage.getItem('VANT_LANGUAGE') || navigator.language || 'en-US';
|
|
return userLang.indexOf('zh-') !== -1 ? 'zh-CN' : 'en-US';
|
|
}
|
|
|
|
export function setLang(lang) {
|
|
if (currentLang === lang) {
|
|
return;
|
|
}
|
|
|
|
currentLang = lang;
|
|
if (window.localStorage) {
|
|
localStorage.setItem('VANT_LANGUAGE', lang);
|
|
}
|
|
Locale.use(lang, langMap[lang].messages);
|
|
document.title = langMap[lang].title;
|
|
}
|
|
|
|
setLang(getDefaultLang());
|