chat.ts 1001 B

1234567891011121314151617181920212223242526272829
  1. import { ChatEn } from '../en/chat';
  2. type I18nKeys = keyof typeof ChatEn;
  3. export interface Resources {
  4. translation: Record<I18nKeys, string>;
  5. }
  6. export const ChatZh: Resources['translation'] = {
  7. dialog_list: '对话列表',
  8. delete_chat: '删除会话',
  9. delete_chat_confirm: '您确认要删除会话吗?',
  10. input_tips: '可以问我任何问题,shift + Enter 换行',
  11. sent: '发送',
  12. answer_again: '重新回答',
  13. feedback_tip: '描述一下具体问题或更优的答案',
  14. thinking: '正在思考中',
  15. stop_replying: '停止回复',
  16. erase_memory: '清除记忆',
  17. copy_success: '复制成功',
  18. copy_failed: '复制失败',
  19. copy_nothing: '内容复制为空',
  20. file_tip: '文件上传后无法更改',
  21. chat_online: '在线对话',
  22. assistant: '平台小助手', // 灵数平台小助手
  23. model_tip: '当前应用暂不支持模型选择',
  24. temperature_tip: '当前应用暂不支持温度配置',
  25. extend_tip: '当前应用暂不支持拓展配置',
  26. } as const;