mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-17 19:44:45 +08:00
feat: dynamic title
This commit is contained in:
@@ -100,6 +100,14 @@ export const enUS: Translations = {
|
||||
searchChats: "Search chats",
|
||||
},
|
||||
|
||||
// Page titles (document title)
|
||||
pages: {
|
||||
appName: "DeerFlow",
|
||||
chats: "Chats",
|
||||
newChat: "New chat",
|
||||
untitled: "Untitled",
|
||||
},
|
||||
|
||||
// Tool calls
|
||||
toolCalls: {
|
||||
moreSteps: (count: number) => `${count} more step${count === 1 ? "" : "s"}`,
|
||||
|
||||
@@ -94,6 +94,14 @@ export interface Translations {
|
||||
searchChats: string;
|
||||
};
|
||||
|
||||
// Page titles (document title)
|
||||
pages: {
|
||||
appName: string;
|
||||
chats: string;
|
||||
newChat: string;
|
||||
untitled: string;
|
||||
};
|
||||
|
||||
// Tool calls
|
||||
toolCalls: {
|
||||
moreSteps: (count: number) => string;
|
||||
|
||||
@@ -98,6 +98,14 @@ export const zhCN: Translations = {
|
||||
searchChats: "搜索对话",
|
||||
},
|
||||
|
||||
// Page titles (document title)
|
||||
pages: {
|
||||
appName: "DeerFlow",
|
||||
chats: "对话",
|
||||
newChat: "新对话",
|
||||
untitled: "未命名",
|
||||
},
|
||||
|
||||
// Tool calls
|
||||
toolCalls: {
|
||||
moreSteps: (count: number) => `查看其他 ${count} 个步骤`,
|
||||
|
||||
Reference in New Issue
Block a user