12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- import { createI18n } from 'vue-i18n'
- import en from './en.json'
- import zhHans from './zh-Hans.json'
- const messages = {
- en,
- 'zh-Hans': zhHans,
- }
- const i18n = createI18n({
- locale: uni.getLocale(),
- messages,
- allowComposition: true,
- })
- export const getTemplateByKey = (key: string) => {
- if (!key) {
- console.error(`[i18n] Function getTemplateByKey(), key param is required`)
- return ''
- }
- const locale = uni.getLocale()
- const message = messages[locale]
- if (Object.keys(message).includes(key)) {
- return message[key]
- }
- try {
- const keyList = key.split('.')
- return keyList.reduce((pre, cur) => {
- return pre[cur]
- }, message)
- } catch (error) {
- console.error(`[i18n] Function getTemplateByKey(), key param ${key} is not existed.`)
- return ''
- }
- }
- function formatI18n(template: string, data?: any) {
- return template.replace(/\{([^}]+)\}/g, function (match, key: string) {
-
- const arr = key.trim().split('.')
- let result = data
- while (arr.length) {
- const first = arr.shift()
- result = result[first]
- }
- return result
- })
- }
- export function t(key, data?) {
- return formatI18n(getTemplateByKey(key), data)
- }
- export default i18n
|