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.
17 lines
362 B
TypeScript
17 lines
362 B
TypeScript
import { localTrans } from '@capital/common';
|
|
|
|
export const Translate = {
|
|
deviceInfo: localTrans({
|
|
'zh-CN': '设备信息',
|
|
'en-US': 'Device Info',
|
|
}),
|
|
clientName: localTrans({
|
|
'zh-CN': '客户端名称',
|
|
'en-US': 'Client Name',
|
|
}),
|
|
clientVersion: localTrans({
|
|
'zh-CN': '客户端版本号',
|
|
'en-US': 'Client Version',
|
|
}),
|
|
};
|