This commit is contained in:
GH Action - Upstream Sync
2023-07-21 01:11:52 +00:00
11 changed files with 284 additions and 194 deletions

View File

@@ -18,6 +18,12 @@ const cn = {
},
Chat: {
SubTitle: (count: number) => `${count} 条对话`,
EditMessage: {
Topic: {
Title: "聊天主题",
SubTitle: "更改当前聊天主题",
},
},
Actions: {
ChatList: "查看消息列表",
CompressedHistory: "查看压缩后的历史 Prompt",
@@ -326,6 +332,11 @@ const cn = {
More: "查看全部",
},
URLCommand: {
Code: "检测到链接中已经包含访问码,是否自动填入?",
Settings: "检测到链接中包含了预制设置,是否自动填入?",
},
UI: {
Confirm: "确认",
Cancel: "取消",

View File

@@ -20,6 +20,12 @@ const en: LocaleType = {
},
Chat: {
SubTitle: (count: number) => `${count} messages`,
EditMessage: {
Topic: {
Title: "Topic",
SubTitle: "Change the current topic",
},
},
Actions: {
ChatList: "Go To Chat List",
CompressedHistory: "Compressed History Memory Prompt",
@@ -344,6 +350,11 @@ const en: LocaleType = {
Topic: "Topic",
Time: "Time",
},
URLCommand: {
Code: "Detected access code from url, confirm to apply? ",
Settings: "Detected settings from url, confirm to apply?",
},
};
export default en;