mirror of
https://github.com/langgenius/webapp-conversation.git
synced 2025-12-26 02:06:38 +08:00
29 lines
874 B
TypeScript
29 lines
874 B
TypeScript
const translation = {
|
|
common: {
|
|
welcome: "欢迎使用",
|
|
appUnavailable: "应用不可用",
|
|
appUnkonwError: "应用不可用",
|
|
},
|
|
chat: {
|
|
newChat: "新对话",
|
|
newChatDefaultName: "新的对话",
|
|
openingStatementTitle: "对话开场白",
|
|
powerBy: "Powered by",
|
|
prompt: "提示词",
|
|
privatePromptConfigTitle: "对话设置",
|
|
publicPromptConfigTitle: "对话前提示词",
|
|
configStatusDes: "开始前,您可以修改对话设置",
|
|
configDisabled: "此次会话已使用上次会话表单",
|
|
startChat: "开始对话",
|
|
privacyPolicyLeft: "请阅读由该应用开发者提供的",
|
|
privacyPolicyMiddle: "隐私政策",
|
|
privacyPolicyRight: "。",
|
|
},
|
|
errorMessage: {
|
|
valueOfVarRequired: "变量值必填",
|
|
waitForResponse: "请等待上条信息响应完成",
|
|
},
|
|
};
|
|
|
|
export default translation;
|