mirror of https://github.com/msgbyte/tailchat
10 lines
439 B
TypeScript
10 lines
439 B
TypeScript
import { localTrans } from '@capital/common';
|
|
|
|
export const Translate = {
|
|
miaoTrans: localTrans({ 'zh-CN': '喵语翻译', 'en-US': 'Meow Translate' }),
|
|
title: localTrans({ 'zh-CN': '喵言喵语', 'en-US': 'Meow meow' }),
|
|
send: localTrans({ 'zh-CN': '发送喵语', 'en-US': 'Send meow' }),
|
|
inputHuman: localTrans({ 'zh-CN': '输入人话', 'en-US': 'Input Human' }),
|
|
calls: localTrans({ 'zh-CN': '喵', 'en-US': 'Meow~' }),
|
|
};
|