mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 12:17:24 +08:00
Snowykami
18af1d00bd
Some checks failed
Deploy VitePress site to Pages / build (push) Failing after 1m7s
79 lines
2.1 KiB
TypeScript
79 lines
2.1 KiB
TypeScript
import {ref} from "vue";
|
||
|
||
import {useData} from "vitepress";
|
||
|
||
const i18nData = {
|
||
en: {
|
||
stats: 'Stats',
|
||
online: 'Online',
|
||
offline: 'Offline',
|
||
total: 'Total',
|
||
fetching: 'Fetching',
|
||
stars: 'Stars',
|
||
forks: 'Forks',
|
||
issues: 'Issues',
|
||
prs: 'Pull Requests',
|
||
visitors: 'Visitor',
|
||
size: 'Size',
|
||
plugins: 'Plugins',
|
||
resources: 'Resources',
|
||
pluginStore: 'Plugin Store',
|
||
pluginStoreDesc: 'Content from the LightSnow Plugin Store, LightSnow supports NoneBot through the lpnonebot plugin, and references some NoneBot plugins',
|
||
liteyukiOnly: 'Liteyuki Only',
|
||
search: 'Search',
|
||
resourceStore: 'Resources Store',
|
||
|
||
thx_contributors: 'Thanks the following contributors!',
|
||
},
|
||
zh: {
|
||
stats: '统计信息',
|
||
online: '在线',
|
||
offline: '离线',
|
||
total: '实例',
|
||
fetching: '获取中',
|
||
stars: '星标',
|
||
forks: '分叉',
|
||
issues: '工单',
|
||
prs: '拉取请求',
|
||
visitors: '访客',
|
||
size: '大小',
|
||
plugins: '插件',
|
||
resources: '主题资源',
|
||
store: '商店',
|
||
pluginStore: '插件商店',
|
||
pluginStoreDesc: '内容来自轻雪插件商店,轻雪通过lpnonebot插件对NoneBot实现支持,引用了部分NoneBot插件',
|
||
liteyukiOnly: '仅轻雪',
|
||
search: '搜索',
|
||
resourceStore: '资源商店',
|
||
|
||
thx_contributors: '感谢以下贡献者!',
|
||
}
|
||
}
|
||
|
||
let refData = {}
|
||
|
||
function getText(lang: string, key: string): string {
|
||
lang = formatLang(lang);
|
||
return i18nData[lang][key];
|
||
}
|
||
|
||
function formatLang(lang: string): string {
|
||
if (lang.includes('-')) {
|
||
return lang.split('-')[0];
|
||
}
|
||
return lang;
|
||
}
|
||
|
||
export function updateRefData() {
|
||
const lang = formatLang(useData().site.value.lang);
|
||
for (let key in refData) {
|
||
refData[key].value = getText(lang, key);
|
||
}
|
||
}
|
||
|
||
export function getTextRef(key: string): any {
|
||
const lang = formatLang(useData().site.value.lang);
|
||
refData[key] = getText(lang, key);
|
||
return refData[key]
|
||
}
|