metacubexd/src/i18n/index.tsx

113 lines
2.6 KiB
TypeScript
Raw Normal View History

2023-09-01 23:57:58 +08:00
import { I18nContext, createI18nContext, useI18n } from '@solid-primitives/i18n'
import { makePersisted } from '@solid-primitives/storage'
import { ParentComponent, createEffect, createSignal } from 'solid-js'
2023-09-01 23:25:37 +08:00
const dict = {
'en-US': {
2023-09-02 00:32:27 +08:00
add: 'Add',
2023-09-02 00:15:19 +08:00
overview: 'Overview',
proxies: 'Proxies',
rules: 'Rules',
connections: 'Connections',
logs: 'Logs',
config: 'Config',
upload: 'Upload',
download: 'Download',
uploadTotal: 'Upload Total',
downloadTotal: 'Download Total',
activeConnections: 'Active Connections',
memoryUsage: 'Memory Usage',
traffic: 'Traffic',
memory: 'Memory',
down: 'Down',
up: 'Up',
proxyProviders: 'Proxy Providers',
ruleProviders: 'Rule Providers',
search: 'Search',
type: 'Type',
name: 'Name',
process: 'Process',
host: 'Host',
chains: 'Chains',
dlSpeed: 'DL Speed',
ulSpeed: 'UL Speed',
dl: 'DL',
ul: 'UL',
source: 'Source',
destination: 'Destination',
close: 'Close',
reset: 'Reset',
2023-09-01 23:25:37 +08:00
},
'zh-Hans': {
2023-09-02 00:32:27 +08:00
add: '添加',
2023-09-02 00:15:19 +08:00
overview: '概览',
proxies: '代理',
rules: '规则',
connections: '连接',
logs: '日志',
config: '配置',
upload: '上传',
download: '下载',
uploadTotal: '上传总量',
downloadTotal: '下载总量',
activeConnections: '活动连接',
memoryUsage: '内存使用情况',
traffic: '流量',
memory: '内存',
down: '下载',
up: '上传',
proxyProviders: '代理提供者',
ruleProviders: '规则提供者',
search: '搜索',
type: '类型',
name: '名字',
process: '进程',
host: '主机',
chains: '链路',
dlSpeed: '下载速度',
ulSpeed: '上传速度',
dl: '下载量',
ul: '上传量',
source: '源地址',
destination: '目标地址',
close: '关闭',
reset: '重置',
2023-09-01 23:25:37 +08:00
},
}
2023-09-01 23:57:58 +08:00
const useLanguage = () => {
2023-09-02 00:09:41 +08:00
const [lang, setLang] = makePersisted(
createSignal(
Reflect.has(dict, navigator.language) ? navigator.language : 'en-US',
),
{
name: 'lang',
storage: localStorage,
},
)
2023-09-01 23:57:58 +08:00
return { lang, setLang }
}
const I18nUpdator: ParentComponent = (props) => {
const { setLang } = useLanguage()
const [_, { locale }] = useI18n()
createEffect(() => {
setLang(locale())
})
return props.children
}
2023-09-01 23:25:37 +08:00
export const I18nProvider: ParentComponent = (props) => {
const { lang } = useLanguage()
const value = createI18nContext(dict, lang())
return (
2023-09-01 23:57:58 +08:00
<I18nContext.Provider value={value}>
<I18nUpdator>{props.children}</I18nUpdator>
</I18nContext.Provider>
2023-09-01 23:25:37 +08:00
)
}