12345678910111213141516171819202122232425262728293031323334 |
- /**
- * 工具箱-AI问答
- */
- /* 英文 */
- export const AIQuestionEn = {
- title:'Researching AI Q&A Assistant',
- add_new_window:'New Dialogue Window',
- new_window:'New Dialogue Window',
- AI_use_intro:'AI Assistant Instructions',
- input_placeholder:'Please enter a question, Shift+Enter to change the line.',
- send_btn:'Send',
- use_intro_title:'Instructions',
- use_intro01:'Maximum 500 Q&A per account per day.',
- use_intro02:'History Q&A default named with the first question in the dialogue window, can be modified.'
- };
-
- /* 中文 */
- export const AIQuestionZh = {
- title:'研究AI问答小助手',
- add_new_window:'新建对话窗口',
- new_window:'新对话窗口',
- AI_use_intro:'AI助手使用说明',
- input_placeholder:'请输入提问,Shift+Enter换行',
- send_btn:'发送',
- use_intro_title:'使用说明',
- use_intro01:'每账号每天最高500次问答。',
- use_intro02:'历史问答默认用该对话窗口内第一个提问命名,可修改。'
- };
-
- /**
- * $t('ToolBox.AIQuestion.XXX')
- */
|