mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-10-12 13:03:43 +08:00
修改title
This commit is contained in:
@@ -90,9 +90,9 @@ export function SideBar(props: { className?: string }) {
|
|||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
<div className={styles["sidebar-header"]}>
|
<div className={styles["sidebar-header"]}>
|
||||||
<div className={styles["sidebar-title"]}>Gu GPT</div>
|
<div className={styles["sidebar-title"]}>Gu's GPT</div>
|
||||||
<div className={styles["sidebar-sub-title"]}>
|
<div className={styles["sidebar-sub-title"]}>
|
||||||
Just try your any Question!
|
智能聊天机器人,随便问、随便聊!
|
||||||
</div>
|
</div>
|
||||||
<div className={styles["sidebar-logo"]}>
|
<div className={styles["sidebar-logo"]}>
|
||||||
<ChatGptIcon />
|
<ChatGptIcon />
|
||||||
@@ -123,7 +123,10 @@ export function SideBar(props: { className?: string }) {
|
|||||||
<IconButton icon={<SettingsIcon />} shadow />
|
<IconButton icon={<SettingsIcon />} shadow />
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
<div className={styles["sidebar-action"]} style={{ visibility: 'hidden' }}>
|
<div
|
||||||
|
className={styles["sidebar-action"]}
|
||||||
|
style={{ visibility: "hidden" }}
|
||||||
|
>
|
||||||
<a href={REPO_URL} target="_blank">
|
<a href={REPO_URL} target="_blank">
|
||||||
<IconButton icon={<GithubIcon />} shadow />
|
<IconButton icon={<GithubIcon />} shadow />
|
||||||
</a>
|
</a>
|
||||||
|
@@ -9,7 +9,7 @@ const cn = {
|
|||||||
ChatItemCount: (count: number) => `${count} 条对话`,
|
ChatItemCount: (count: number) => `${count} 条对话`,
|
||||||
},
|
},
|
||||||
Chat: {
|
Chat: {
|
||||||
SubTitle: (count: number) => `与 ChatGPT 的 ${count} 条对话`,
|
SubTitle: (count: number) => `与 GPT 的 ${count} 条对话`,
|
||||||
Actions: {
|
Actions: {
|
||||||
ChatList: "查看消息列表",
|
ChatList: "查看消息列表",
|
||||||
CompressedHistory: "查看压缩后的历史 Prompt",
|
CompressedHistory: "查看压缩后的历史 Prompt",
|
||||||
@@ -26,7 +26,7 @@ const cn = {
|
|||||||
if (submitKey === String(SubmitKey.Enter)) {
|
if (submitKey === String(SubmitKey.Enter)) {
|
||||||
inputHints += ",Shift + Enter 换行";
|
inputHints += ",Shift + Enter 换行";
|
||||||
}
|
}
|
||||||
return inputHints + ",/ 触发补全";
|
return inputHints;
|
||||||
},
|
},
|
||||||
Send: "发送",
|
Send: "发送",
|
||||||
},
|
},
|
||||||
|
@@ -16,7 +16,7 @@ export enum Theme {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const DEFAULT_CONFIG = {
|
const DEFAULT_CONFIG = {
|
||||||
historyMessageCount: 4,
|
historyMessageCount: 5,
|
||||||
compressMessageLengthThreshold: 1000,
|
compressMessageLengthThreshold: 1000,
|
||||||
sendBotMessages: true as boolean,
|
sendBotMessages: true as boolean,
|
||||||
submitKey: SubmitKey.CtrlEnter as SubmitKey,
|
submitKey: SubmitKey.CtrlEnter as SubmitKey,
|
||||||
|
Reference in New Issue
Block a user