@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.
Files changed (53) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/changelog/v1.json +9 -0
  3. package/locales/ar/common.json +21 -0
  4. package/locales/ar/hotkey.json +4 -0
  5. package/locales/bg-BG/common.json +21 -0
  6. package/locales/bg-BG/hotkey.json +4 -0
  7. package/locales/de-DE/common.json +21 -0
  8. package/locales/de-DE/hotkey.json +4 -0
  9. package/locales/en-US/common.json +21 -0
  10. package/locales/en-US/hotkey.json +4 -0
  11. package/locales/es-ES/common.json +21 -0
  12. package/locales/es-ES/hotkey.json +4 -0
  13. package/locales/fa-IR/common.json +21 -0
  14. package/locales/fa-IR/hotkey.json +4 -0
  15. package/locales/fr-FR/common.json +21 -0
  16. package/locales/fr-FR/hotkey.json +4 -0
  17. package/locales/it-IT/common.json +21 -0
  18. package/locales/it-IT/hotkey.json +4 -0
  19. package/locales/ja-JP/common.json +21 -0
  20. package/locales/ja-JP/hotkey.json +4 -0
  21. package/locales/ko-KR/common.json +21 -0
  22. package/locales/ko-KR/hotkey.json +4 -0
  23. package/locales/nl-NL/common.json +21 -0
  24. package/locales/nl-NL/hotkey.json +4 -0
  25. package/locales/pl-PL/common.json +21 -0
  26. package/locales/pl-PL/hotkey.json +4 -0
  27. package/locales/pt-BR/common.json +21 -0
  28. package/locales/pt-BR/hotkey.json +4 -0
  29. package/locales/ru-RU/common.json +21 -0
  30. package/locales/ru-RU/hotkey.json +4 -0
  31. package/locales/tr-TR/common.json +21 -0
  32. package/locales/tr-TR/hotkey.json +4 -0
  33. package/locales/vi-VN/common.json +21 -0
  34. package/locales/vi-VN/hotkey.json +4 -0
  35. package/locales/zh-CN/common.json +21 -0
  36. package/locales/zh-CN/hotkey.json +4 -0
  37. package/locales/zh-TW/common.json +21 -0
  38. package/locales/zh-TW/hotkey.json +4 -0
  39. package/package.json +3 -1
  40. package/packages/const/src/hotkeys.ts +6 -0
  41. package/packages/conversation-flow/src/__tests__/indexing.test.ts +513 -0
  42. package/packages/conversation-flow/src/__tests__/structuring.test.ts +600 -0
  43. package/packages/types/src/hotkey.ts +1 -0
  44. package/src/app/[variants]/(main)/settings/_layout/Desktop/index.tsx +41 -8
  45. package/src/app/[variants]/(main)/settings/provider/(list)/ProviderGrid/Card.tsx +6 -4
  46. package/src/app/[variants]/(main)/settings/provider/(list)/ProviderGrid/index.tsx +16 -4
  47. package/src/app/[variants]/(main)/settings/provider/(list)/index.tsx +15 -3
  48. package/src/app/[variants]/(main)/settings/provider/detail/index.tsx +23 -15
  49. package/src/layout/GlobalProvider/Cmdk.tsx +470 -0
  50. package/src/layout/GlobalProvider/CmdkLazy.tsx +17 -0
  51. package/src/layout/GlobalProvider/index.tsx +2 -0
  52. package/src/locales/default/common.ts +21 -0
  53. 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: '复制',
@@ -11,6 +11,10 @@ const hotkey: HotkeyI18nTranslations & {
11
11
  desc: '清空当前会话的消息和上传的文件',
12
12
  title: '清空会话消息',
13
13
  },
14
+ commandPalette: {
15
+ desc: '打开全局命令面板快速访问功能',
16
+ title: '命令面板',
17
+ },
14
18
  deleteAndRegenerateMessage: {
15
19
  desc: '删除最后一条消息并重新生成',
16
20
  title: '删除并重新生成',