mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
32 lines
647 B
TypeScript
32 lines
647 B
TypeScript
import defaultLang from './lang/en'
|
|
|
|
let lang = defaultLang
|
|
|
|
function template(str: string, option) {
|
|
if(!str || !option) return str
|
|
|
|
return str.replace(/\{(\w+)\}/g, (match, key) => {
|
|
return option[key]
|
|
})
|
|
}
|
|
|
|
export const t = (path:string, option?): string => {
|
|
let value
|
|
const array = path.split('.')
|
|
let current = lang
|
|
for (let i = 0, j = array.length; i < j; i++) {
|
|
const property = array[i]
|
|
value = current[property]
|
|
if (i === j - 1) return template(value, option)
|
|
if (!value) return ''
|
|
current = value
|
|
}
|
|
return ''
|
|
}
|
|
|
|
export const use = (l): void => {
|
|
lang = l || lang
|
|
}
|
|
|
|
export default { use, t }
|