@lobehub/lobehub 2.0.0-next.95 → 2.0.0-next.96
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +25 -0
- package/changelog/v1.json +9 -0
- package/locales/ar/common.json +21 -0
- package/locales/ar/hotkey.json +4 -0
- package/locales/bg-BG/common.json +21 -0
- package/locales/bg-BG/hotkey.json +4 -0
- package/locales/de-DE/common.json +21 -0
- package/locales/de-DE/hotkey.json +4 -0
- package/locales/en-US/common.json +21 -0
- package/locales/en-US/hotkey.json +4 -0
- package/locales/es-ES/common.json +21 -0
- package/locales/es-ES/hotkey.json +4 -0
- package/locales/fa-IR/common.json +21 -0
- package/locales/fa-IR/hotkey.json +4 -0
- package/locales/fr-FR/common.json +21 -0
- package/locales/fr-FR/hotkey.json +4 -0
- package/locales/it-IT/common.json +21 -0
- package/locales/it-IT/hotkey.json +4 -0
- package/locales/ja-JP/common.json +21 -0
- package/locales/ja-JP/hotkey.json +4 -0
- package/locales/ko-KR/common.json +21 -0
- package/locales/ko-KR/hotkey.json +4 -0
- package/locales/nl-NL/common.json +21 -0
- package/locales/nl-NL/hotkey.json +4 -0
- package/locales/pl-PL/common.json +21 -0
- package/locales/pl-PL/hotkey.json +4 -0
- package/locales/pt-BR/common.json +21 -0
- package/locales/pt-BR/hotkey.json +4 -0
- package/locales/ru-RU/common.json +21 -0
- package/locales/ru-RU/hotkey.json +4 -0
- package/locales/tr-TR/common.json +21 -0
- package/locales/tr-TR/hotkey.json +4 -0
- package/locales/vi-VN/common.json +21 -0
- package/locales/vi-VN/hotkey.json +4 -0
- package/locales/zh-CN/common.json +21 -0
- package/locales/zh-CN/hotkey.json +4 -0
- package/locales/zh-TW/common.json +21 -0
- package/locales/zh-TW/hotkey.json +4 -0
- package/package.json +3 -1
- package/packages/const/src/hotkeys.ts +6 -0
- package/packages/conversation-flow/src/__tests__/indexing.test.ts +513 -0
- package/packages/conversation-flow/src/__tests__/structuring.test.ts +600 -0
- package/packages/types/src/hotkey.ts +1 -0
- package/src/app/[variants]/(main)/settings/_layout/Desktop/index.tsx +41 -8
- package/src/app/[variants]/(main)/settings/provider/(list)/ProviderGrid/Card.tsx +6 -4
- package/src/app/[variants]/(main)/settings/provider/(list)/ProviderGrid/index.tsx +16 -4
- package/src/app/[variants]/(main)/settings/provider/(list)/index.tsx +15 -3
- package/src/app/[variants]/(main)/settings/provider/detail/index.tsx +23 -15
- package/src/layout/GlobalProvider/Cmdk.tsx +470 -0
- package/src/layout/GlobalProvider/CmdkLazy.tsx +17 -0
- package/src/layout/GlobalProvider/index.tsx +2 -0
- package/src/locales/default/common.ts +21 -0
- package/src/locales/default/hotkey.ts +4 -0
|
@@ -138,6 +138,27 @@ export default {
|
|
|
138
138
|
},
|
|
139
139
|
},
|
|
140
140
|
close: '关闭',
|
|
141
|
+
cmdk: {
|
|
142
|
+
about: '关于',
|
|
143
|
+
communitySupport: '社区支持',
|
|
144
|
+
discover: '发现',
|
|
145
|
+
knowledgeBase: '知识库',
|
|
146
|
+
navigate: '导航',
|
|
147
|
+
newAgent: '新建助手',
|
|
148
|
+
noResults: '未找到相关结果',
|
|
149
|
+
openSettings: '打开设置',
|
|
150
|
+
painting: 'AI 绘画',
|
|
151
|
+
searchPlaceholder: '输入命令或搜索...',
|
|
152
|
+
settings: '设置',
|
|
153
|
+
starOnGitHub: '在 GitHub 上给我们 Star',
|
|
154
|
+
submitIssue: '提交问题',
|
|
155
|
+
theme: '主题',
|
|
156
|
+
themeAuto: '跟随系统',
|
|
157
|
+
themeDark: '深色模式',
|
|
158
|
+
themeLight: '浅色模式',
|
|
159
|
+
toOpen: '打开',
|
|
160
|
+
toSelect: '选择',
|
|
161
|
+
},
|
|
141
162
|
confirm: '确认',
|
|
142
163
|
contact: '联系我们',
|
|
143
164
|
copy: '复制',
|