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.
30 lines
840 B
TypeScript
30 lines
840 B
TypeScript
import { localTrans } from '@capital/common';
|
|
|
|
export const Translate = {
|
|
webpanel: localTrans({ 'zh-CN': '网页面板', 'en-US': 'Webview Panel' }),
|
|
customwebpanel: localTrans({
|
|
'zh-CN': '自定义网页面板',
|
|
'en-US': 'Custom Webview Panel',
|
|
}),
|
|
notfound: localTrans({
|
|
'zh-CN': '加载失败, 面板信息不存在',
|
|
'en-US': 'Loading failed, panel info does not exist',
|
|
}),
|
|
website: localTrans({
|
|
'zh-CN': '网址',
|
|
'en-US': 'Website',
|
|
}),
|
|
htmlcode: localTrans({
|
|
'zh-CN': 'HTML代码',
|
|
'en-US': 'HTML Code',
|
|
}),
|
|
openInExtra: localTrans({
|
|
'zh-CN': '在外部打开',
|
|
'en-US': 'Open in extra',
|
|
}),
|
|
editTip: localTrans({
|
|
'zh-CN': '使用html语法编辑, 关闭窗口自动保存',
|
|
'en-US': 'Edit with html syntax, close the window and save automatically',
|
|
}),
|
|
};
|