diff --git a/src/renderer/src/i18n/locales/en-us.json b/src/renderer/src/i18n/locales/en-us.json index 4d11d083..710c1e23 100644 --- a/src/renderer/src/i18n/locales/en-us.json +++ b/src/renderer/src/i18n/locales/en-us.json @@ -237,7 +237,8 @@ "copied": "Copied", "confirm": "Confirm", "more": "More", - "advanced_settings": "Advanced Settings" + "advanced_settings": "Advanced Settings", + "expand": "Expand" }, "docs": { "title": "Docs" @@ -483,7 +484,11 @@ "upgrade.success.content": "Please restart the application to complete the upgrade", "upgrade.success.title": "Upgrade successfully", "warn.notion.exporting": "Exporting to Notion, please do not request export repeatedly!", - "warning.rate.limit": "Too many requests. Please wait {{seconds}} seconds before trying again." + "warning.rate.limit": "Too many requests. Please wait {{seconds}} seconds before trying again.", + "tools": { + "invoking": "Invoking", + "completed": "Completed" + } }, "minapp": { "sidebar.add.title": "Add to sidebar", diff --git a/src/renderer/src/i18n/locales/ja-jp.json b/src/renderer/src/i18n/locales/ja-jp.json index e6ddc746..1166208e 100644 --- a/src/renderer/src/i18n/locales/ja-jp.json +++ b/src/renderer/src/i18n/locales/ja-jp.json @@ -237,7 +237,8 @@ "copied": "コピーされました", "confirm": "確認", "more": "もっと", - "advanced_settings": "詳細設定" + "advanced_settings": "詳細設定", + "expand": "展開" }, "docs": { "title": "ドキュメント" @@ -483,7 +484,11 @@ "upgrade.success.content": "アップグレードを完了するためにアプリケーションを再起動してください", "upgrade.success.title": "アップグレードに成功しました", "warn.notion.exporting": "Notionにエクスポート中です。重複してエクスポートしないでください! ", - "warning.rate.limit": "送信が頻繁すぎます。{{seconds}} 秒待ってから再試行してください。" + "warning.rate.limit": "送信が頻繁すぎます。{{seconds}} 秒待ってから再試行してください。", + "tools": { + "invoking": "呼び出し中", + "completed": "完了" + } }, "minapp": { "sidebar.add.title": "サイドバーに追加", diff --git a/src/renderer/src/i18n/locales/ru-ru.json b/src/renderer/src/i18n/locales/ru-ru.json index d3640317..583bd5d9 100644 --- a/src/renderer/src/i18n/locales/ru-ru.json +++ b/src/renderer/src/i18n/locales/ru-ru.json @@ -237,7 +237,8 @@ "confirm": "Подтверждение", "copied": "Скопировано", "more": "Ещё", - "advanced_settings": "Дополнительные настройки" + "advanced_settings": "Дополнительные настройки", + "expand": "Развернуть" }, "docs": { "title": "Документация" @@ -489,7 +490,11 @@ "upgrade.success.content": "Пожалуйста, перезапустите приложение для завершения обновления", "upgrade.success.title": "Обновление успешно", "warn.notion.exporting": "Экспортируется в Notion, пожалуйста, не отправляйте повторные запросы!", - "warning.rate.limit": "Отправка слишком частая, пожалуйста, подождите {{seconds}} секунд, прежде чем попробовать снова." + "warning.rate.limit": "Отправка слишком частая, пожалуйста, подождите {{seconds}} секунд, прежде чем попробовать снова.", + "tools": { + "invoking": "Вызов", + "completed": "Завершено" + } }, "minapp": { "sidebar.add.title": "Добавить в боковую панель", diff --git a/src/renderer/src/i18n/locales/zh-cn.json b/src/renderer/src/i18n/locales/zh-cn.json index 496809a3..78511cf3 100644 --- a/src/renderer/src/i18n/locales/zh-cn.json +++ b/src/renderer/src/i18n/locales/zh-cn.json @@ -237,7 +237,8 @@ "warning": "警告", "you": "用户", "more": "更多", - "advanced_settings": "高级设置" + "advanced_settings": "高级设置", + "expand": "展开" }, "docs": { "title": "帮助文档" @@ -483,7 +484,11 @@ "upgrade.success.content": "重启用以完成升级", "upgrade.success.title": "升级成功", "warn.notion.exporting": "正在导出到 Notion, 请勿重复请求导出!", - "warning.rate.limit": "发送过于频繁,请等待 {{seconds}} 秒后再尝试" + "warning.rate.limit": "发送过于频繁,请等待 {{seconds}} 秒后再尝试", + "tools": { + "invoking": "调用中", + "completed": "已完成" + } }, "minapp": { "sidebar.add.title": "添加到侧边栏", diff --git a/src/renderer/src/i18n/locales/zh-tw.json b/src/renderer/src/i18n/locales/zh-tw.json index e9c2f5de..c8c54126 100644 --- a/src/renderer/src/i18n/locales/zh-tw.json +++ b/src/renderer/src/i18n/locales/zh-tw.json @@ -237,7 +237,8 @@ "copied": "已複製", "confirm": "確認", "more": "更多", - "advanced_settings": "進階設定" + "advanced_settings": "進階設定", + "expand": "展開" }, "docs": { "title": "說明文件" @@ -483,7 +484,11 @@ "upgrade.success.content": "請重新啟動程式以完成升級", "upgrade.success.title": "升級成功", "warn.notion.exporting": "正在匯出到 Notion,請勿重複請求匯出!", - "warning.rate.limit": "發送過於頻繁,請在 {{seconds}} 秒後再嘗試" + "warning.rate.limit": "發送過於頻繁,請在 {{seconds}} 秒後再嘗試", + "tools": { + "invoking": "調用中", + "completed": "已完成" + } }, "minapp": { "sidebar.add.title": "新增到側邊欄", diff --git a/src/renderer/src/pages/home/Messages/MessageTools.tsx b/src/renderer/src/pages/home/Messages/MessageTools.tsx index 73d73cfc..22b638a9 100644 --- a/src/renderer/src/pages/home/Messages/MessageTools.tsx +++ b/src/renderer/src/pages/home/Messages/MessageTools.tsx @@ -60,7 +60,7 @@ const MessageTools: FC = ({ message }) => { {tool.name} - {isInvoking ? t('tools.invoking') : t('tools.completed')} + {isInvoking ? t('message.tools.invoking') : t('message.tools.completed')} {isInvoking && } {isDone && }