mirror of https://github.com/msgbyte/tailchat
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
374 B
TypeScript
14 lines
374 B
TypeScript
import { localTrans } from '@capital/common';
|
|
|
|
export const Translate = {
|
|
webpanel: localTrans({ 'zh-CN': '网页面板', 'en-US': 'Webview Panel' }),
|
|
notfound: localTrans({
|
|
'zh-CN': '加载失败, 面板信息不存在',
|
|
'en-US': 'Loading failed, panel info does not exist',
|
|
}),
|
|
website: localTrans({
|
|
'zh-CN': '网址',
|
|
'en-US': 'Website',
|
|
}),
|
|
};
|