@lobehub/chat 1.75.5 → 1.76.1

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 (123) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/Dockerfile +3 -2
  3. package/Dockerfile.database +3 -1
  4. package/Dockerfile.pglite +3 -1
  5. package/changelog/v1.json +18 -0
  6. package/docs/developer/database-schema.dbml +1 -0
  7. package/locales/ar/hotkey.json +46 -0
  8. package/locales/ar/models.json +3 -0
  9. package/locales/ar/setting.json +12 -0
  10. package/locales/bg-BG/hotkey.json +46 -0
  11. package/locales/bg-BG/models.json +3 -0
  12. package/locales/bg-BG/setting.json +12 -0
  13. package/locales/de-DE/hotkey.json +46 -0
  14. package/locales/de-DE/models.json +3 -0
  15. package/locales/de-DE/setting.json +12 -0
  16. package/locales/en-US/hotkey.json +46 -0
  17. package/locales/en-US/models.json +3 -0
  18. package/locales/en-US/setting.json +12 -0
  19. package/locales/es-ES/hotkey.json +46 -0
  20. package/locales/es-ES/models.json +3 -0
  21. package/locales/es-ES/setting.json +12 -0
  22. package/locales/fa-IR/hotkey.json +46 -0
  23. package/locales/fa-IR/models.json +3 -0
  24. package/locales/fa-IR/setting.json +12 -0
  25. package/locales/fr-FR/hotkey.json +46 -0
  26. package/locales/fr-FR/models.json +3 -0
  27. package/locales/fr-FR/setting.json +12 -0
  28. package/locales/it-IT/hotkey.json +46 -0
  29. package/locales/it-IT/models.json +3 -0
  30. package/locales/it-IT/setting.json +12 -0
  31. package/locales/ja-JP/hotkey.json +46 -0
  32. package/locales/ja-JP/models.json +3 -0
  33. package/locales/ja-JP/setting.json +12 -0
  34. package/locales/ko-KR/hotkey.json +46 -0
  35. package/locales/ko-KR/models.json +3 -0
  36. package/locales/ko-KR/setting.json +12 -0
  37. package/locales/nl-NL/hotkey.json +46 -0
  38. package/locales/nl-NL/models.json +3 -0
  39. package/locales/nl-NL/setting.json +12 -0
  40. package/locales/pl-PL/hotkey.json +46 -0
  41. package/locales/pl-PL/models.json +3 -0
  42. package/locales/pl-PL/setting.json +12 -0
  43. package/locales/pt-BR/hotkey.json +46 -0
  44. package/locales/pt-BR/models.json +3 -0
  45. package/locales/pt-BR/setting.json +12 -0
  46. package/locales/ru-RU/hotkey.json +46 -0
  47. package/locales/ru-RU/models.json +3 -0
  48. package/locales/ru-RU/setting.json +12 -0
  49. package/locales/tr-TR/hotkey.json +46 -0
  50. package/locales/tr-TR/models.json +3 -0
  51. package/locales/tr-TR/setting.json +12 -0
  52. package/locales/vi-VN/hotkey.json +46 -0
  53. package/locales/vi-VN/models.json +3 -0
  54. package/locales/vi-VN/setting.json +12 -0
  55. package/locales/zh-CN/hotkey.json +46 -0
  56. package/locales/zh-CN/models.json +3 -0
  57. package/locales/zh-CN/setting.json +12 -0
  58. package/locales/zh-TW/hotkey.json +46 -0
  59. package/locales/zh-TW/models.json +3 -0
  60. package/locales/zh-TW/setting.json +12 -0
  61. package/package.json +3 -3
  62. package/src/app/[variants]/(main)/(mobile)/me/(home)/features/Category.tsx +1 -1
  63. package/src/app/[variants]/(main)/(mobile)/me/(home)/layout.tsx +3 -2
  64. package/src/app/[variants]/(main)/(mobile)/me/data/features/Category.tsx +1 -1
  65. package/src/app/[variants]/(main)/(mobile)/me/profile/features/Category.tsx +1 -1
  66. package/src/app/[variants]/(main)/(mobile)/me/settings/features/Category.tsx +1 -1
  67. package/src/app/[variants]/(main)/_layout/Desktop/RegisterHotkeys.tsx +11 -0
  68. package/src/app/[variants]/(main)/_layout/Desktop/SideBar/PinList/index.tsx +6 -23
  69. package/src/app/[variants]/(main)/_layout/Desktop/SideBar/TopActions.test.tsx +2 -0
  70. package/src/app/[variants]/(main)/_layout/Desktop/index.tsx +11 -4
  71. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/SendMore.tsx +6 -21
  72. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/ShortcutHint.tsx +13 -34
  73. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/index.tsx +1 -1
  74. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ZenModeToast/Toast.tsx +7 -4
  75. package/src/app/[variants]/(main)/chat/(workspace)/_layout/Desktop/ChatHeader/HeaderAction.tsx +12 -8
  76. package/src/app/[variants]/(main)/chat/(workspace)/_layout/Desktop/ChatHeader/Main.tsx +24 -30
  77. package/src/app/[variants]/(main)/chat/(workspace)/_layout/Desktop/index.tsx +0 -2
  78. package/src/app/[variants]/(main)/chat/(workspace)/features/SettingButton.tsx +12 -7
  79. package/src/app/[variants]/(main)/chat/@session/features/SessionSearchBar.tsx +5 -1
  80. package/src/app/[variants]/(main)/chat/_layout/Desktop/RegisterHotkeys.tsx +10 -0
  81. package/src/app/[variants]/(main)/chat/_layout/Desktop/index.tsx +5 -0
  82. package/src/app/[variants]/(main)/chat/_layout/Mobile.tsx +1 -1
  83. package/src/app/[variants]/(main)/discover/features/StoreSearchBar.tsx +5 -1
  84. package/src/app/[variants]/(main)/settings/hooks/useCategory.tsx +31 -21
  85. package/src/app/[variants]/(main)/settings/hotkey/features/HotkeySetting.tsx +80 -0
  86. package/src/app/[variants]/(main)/settings/hotkey/index.tsx +9 -0
  87. package/src/app/[variants]/(main)/settings/hotkey/page.tsx +15 -0
  88. package/src/app/[variants]/(main)/settings/tts/features/const.tsx +4 -0
  89. package/src/app/[variants]/layout.tsx +16 -13
  90. package/src/config/aiModels/openai.ts +10 -0
  91. package/src/const/hotkeys.ts +80 -10
  92. package/src/const/settings/hotkey.ts +10 -0
  93. package/src/const/settings/index.ts +3 -0
  94. package/src/database/client/migrations.json +46 -32
  95. package/src/database/migrations/0019_add_hotkey_user_settings.sql +2 -0
  96. package/src/database/migrations/meta/0019_snapshot.json +4218 -0
  97. package/src/database/migrations/meta/_journal.json +7 -0
  98. package/src/database/schemas/user.ts +1 -0
  99. package/src/database/server/models/user.ts +2 -0
  100. package/src/features/ChatInput/Desktop/InputArea/index.tsx +8 -0
  101. package/src/features/ChatInput/Desktop/index.tsx +0 -1
  102. package/src/features/ChatInput/Topic/index.tsx +10 -15
  103. package/src/features/FileManager/Header/FilesSearchBar.tsx +6 -2
  104. package/src/features/HotkeyHelperPanel/HotkeyContent.tsx +62 -0
  105. package/src/features/HotkeyHelperPanel/index.tsx +59 -0
  106. package/src/hooks/useHotkeys/chatScope.ts +105 -0
  107. package/src/hooks/useHotkeys/globalScope.ts +69 -0
  108. package/src/hooks/useHotkeys/index.ts +2 -0
  109. package/src/hooks/useHotkeys/useHotkeyById.test.ts +194 -0
  110. package/src/hooks/useHotkeys/useHotkeyById.ts +57 -0
  111. package/src/locales/default/hotkey.ts +50 -0
  112. package/src/locales/default/index.ts +2 -0
  113. package/src/locales/default/setting.ts +12 -0
  114. package/src/store/global/initialState.ts +3 -0
  115. package/src/store/user/slices/settings/selectors/__snapshots__/settings.test.ts.snap +79 -0
  116. package/src/store/user/slices/settings/selectors/settings.test.ts +131 -0
  117. package/src/store/user/slices/settings/selectors/settings.ts +6 -0
  118. package/src/types/hotkey.ts +59 -0
  119. package/src/types/user/settings/hotkey.ts +3 -0
  120. package/src/types/user/settings/index.ts +3 -0
  121. package/src/types/user/settings/tts.ts +1 -1
  122. package/src/app/[variants]/(main)/chat/(workspace)/_layout/Desktop/HotKeys.tsx +0 -44
  123. package/src/components/HotKeys/index.tsx +0 -77
package/CHANGELOG.md CHANGED
@@ -2,6 +2,56 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.76.1](https://github.com/lobehub/lobe-chat/compare/v1.76.0...v1.76.1)
6
+
7
+ <sup>Released on **2025-03-29**</sup>
8
+
9
+ #### 💄 Styles
10
+
11
+ - **misc**: Supports OpenAI's latest voice model gpt-4o-mini-tts.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### Styles
19
+
20
+ - **misc**: Supports OpenAI's latest voice model gpt-4o-mini-tts, closes [#7213](https://github.com/lobehub/lobe-chat/issues/7213) ([f291e6f](https://github.com/lobehub/lobe-chat/commit/f291e6f))
21
+
22
+ </details>
23
+
24
+ <div align="right">
25
+
26
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
27
+
28
+ </div>
29
+
30
+ ## [Version 1.76.0](https://github.com/lobehub/lobe-chat/compare/v1.75.5...v1.76.0)
31
+
32
+ <sup>Released on **2025-03-28**</sup>
33
+
34
+ #### ✨ Features
35
+
36
+ - **misc**: Add Hotkey Settings.
37
+
38
+ <br/>
39
+
40
+ <details>
41
+ <summary><kbd>Improvements and Fixes</kbd></summary>
42
+
43
+ #### What's improved
44
+
45
+ - **misc**: Add Hotkey Settings, closes [#7118](https://github.com/lobehub/lobe-chat/issues/7118) ([9773e74](https://github.com/lobehub/lobe-chat/commit/9773e74))
46
+
47
+ </details>
48
+
49
+ <div align="right">
50
+
51
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
52
+
53
+ </div>
54
+
5
55
  ### [Version 1.75.5](https://github.com/lobehub/lobe-chat/compare/v1.75.4...v1.75.5)
6
56
 
7
57
  <sup>Released on **2025-03-28**</sup>
package/Dockerfile CHANGED
@@ -44,9 +44,10 @@ ARG NEXT_PUBLIC_POSTHOG_KEY
44
44
  ARG NEXT_PUBLIC_ANALYTICS_UMAMI
45
45
  ARG NEXT_PUBLIC_UMAMI_SCRIPT_URL
46
46
  ARG NEXT_PUBLIC_UMAMI_WEBSITE_ID
47
+ ARG FEATURE_FLAGS
47
48
 
48
- ENV NEXT_PUBLIC_BASE_PATH="${NEXT_PUBLIC_BASE_PATH}"
49
-
49
+ ENV NEXT_PUBLIC_BASE_PATH="${NEXT_PUBLIC_BASE_PATH}" \
50
+ FEATURE_FLAGS="${FEATURE_FLAGS}"
50
51
  # Sentry
51
52
  ENV NEXT_PUBLIC_SENTRY_DSN="${NEXT_PUBLIC_SENTRY_DSN}" \
52
53
  SENTRY_ORG="" \
@@ -46,8 +46,10 @@ ARG NEXT_PUBLIC_POSTHOG_KEY
46
46
  ARG NEXT_PUBLIC_ANALYTICS_UMAMI
47
47
  ARG NEXT_PUBLIC_UMAMI_SCRIPT_URL
48
48
  ARG NEXT_PUBLIC_UMAMI_WEBSITE_ID
49
+ ARG FEATURE_FLAGS
49
50
 
50
- ENV NEXT_PUBLIC_BASE_PATH="${NEXT_PUBLIC_BASE_PATH}"
51
+ ENV NEXT_PUBLIC_BASE_PATH="${NEXT_PUBLIC_BASE_PATH}" \
52
+ FEATURE_FLAGS="${FEATURE_FLAGS}"
51
53
 
52
54
  ENV NEXT_PUBLIC_SERVICE_MODE="${NEXT_PUBLIC_SERVICE_MODE:-server}" \
53
55
  NEXT_PUBLIC_ENABLE_NEXT_AUTH="${NEXT_PUBLIC_ENABLE_NEXT_AUTH:-1}" \
package/Dockerfile.pglite CHANGED
@@ -44,9 +44,11 @@ ARG NEXT_PUBLIC_POSTHOG_KEY
44
44
  ARG NEXT_PUBLIC_ANALYTICS_UMAMI
45
45
  ARG NEXT_PUBLIC_UMAMI_SCRIPT_URL
46
46
  ARG NEXT_PUBLIC_UMAMI_WEBSITE_ID
47
+ ARG FEATURE_FLAGS
47
48
 
48
49
  ENV NEXT_PUBLIC_CLIENT_DB="pglite"
49
- ENV NEXT_PUBLIC_BASE_PATH="${NEXT_PUBLIC_BASE_PATH}"
50
+ ENV NEXT_PUBLIC_BASE_PATH="${NEXT_PUBLIC_BASE_PATH}" \
51
+ FEATURE_FLAGS="${FEATURE_FLAGS}"
50
52
 
51
53
  # Sentry
52
54
  ENV NEXT_PUBLIC_SENTRY_DSN="${NEXT_PUBLIC_SENTRY_DSN}" \
package/changelog/v1.json CHANGED
@@ -1,4 +1,22 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "improvements": [
5
+ "Supports OpenAI's latest voice model gpt-4o-mini-tts."
6
+ ]
7
+ },
8
+ "date": "2025-03-29",
9
+ "version": "1.76.1"
10
+ },
11
+ {
12
+ "children": {
13
+ "features": [
14
+ "Add Hotkey Settings."
15
+ ]
16
+ },
17
+ "date": "2025-03-28",
18
+ "version": "1.76.0"
19
+ },
2
20
  {
3
21
  "children": {
4
22
  "improvements": [
@@ -586,6 +586,7 @@ table user_installed_plugins {
586
586
  table user_settings {
587
587
  id text [pk, not null]
588
588
  tts jsonb
589
+ hotkey jsonb
589
590
  key_vaults text
590
591
  general jsonb
591
592
  language_model jsonb
@@ -0,0 +1,46 @@
1
+ {
2
+ "addUserMessage": {
3
+ "desc": "إضافة المحتوى الحالي كرسالة مستخدم دون تفعيل التوليد",
4
+ "title": "إضافة رسالة مستخدم"
5
+ },
6
+ "editMessage": {
7
+ "desc": "الدخول إلى وضع التحرير عن طريق الضغط على مفتاح Alt والنقر المزدوج على الرسالة",
8
+ "title": "تحرير الرسالة"
9
+ },
10
+ "openChatSettings": {
11
+ "desc": "عرض وتعديل إعدادات المحادثة الحالية",
12
+ "title": "فتح إعدادات المحادثة"
13
+ },
14
+ "openHotkeyHelper": {
15
+ "desc": "عرض جميع تعليمات استخدام الاختصارات",
16
+ "title": "فتح مساعدة الاختصارات"
17
+ },
18
+ "regenerateMessage": {
19
+ "desc": "إعادة توليد آخر رسالة",
20
+ "title": "إعادة توليد الرسالة"
21
+ },
22
+ "saveTopic": {
23
+ "desc": "حفظ الموضوع الحالي وفتح موضوع جديد",
24
+ "title": "فتح موضوع جديد"
25
+ },
26
+ "search": {
27
+ "desc": "استدعاء مربع البحث الرئيسي في الصفحة الحالية",
28
+ "title": "بحث"
29
+ },
30
+ "switchAgent": {
31
+ "desc": "تبديل المساعد المثبت في الشريط الجانبي عن طريق الضغط على Ctrl مع الأرقام من 0 إلى 9",
32
+ "title": "تبديل المساعد بسرعة"
33
+ },
34
+ "toggleLeftPanel": {
35
+ "desc": "عرض أو إخفاء لوحة المساعد على اليسار",
36
+ "title": "عرض/إخفاء لوحة المساعد"
37
+ },
38
+ "toggleRightPanel": {
39
+ "desc": "عرض أو إخفاء لوحة المواضيع على اليمين",
40
+ "title": "عرض/إخفاء لوحة الموضوع"
41
+ },
42
+ "toggleZenMode": {
43
+ "desc": "في وضع التركيز، عرض المحادثة الحالية فقط، وإخفاء واجهة المستخدم الأخرى",
44
+ "title": "تبديل وضع التركيز"
45
+ }
46
+ }
@@ -1082,6 +1082,9 @@
1082
1082
  "gpt-4o-mini-realtime-preview": {
1083
1083
  "description": "الإصدار المصغر الفوري من GPT-4o، يدعم إدخال وإخراج الصوت والنص في الوقت الحقيقي."
1084
1084
  },
1085
+ "gpt-4o-mini-tts": {
1086
+ "description": "GPT-4o mini TTS هو نموذج تحويل النص إلى كلام، مبني على GPT-4o mini، يقدم إنتاج كلمات صوتية عالية الجودة بسعر أقل."
1087
+ },
1085
1088
  "gpt-4o-realtime-preview": {
1086
1089
  "description": "الإصدار الفوري من GPT-4o، يدعم إدخال وإخراج الصوت والنص في الوقت الحقيقي."
1087
1090
  },
@@ -42,6 +42,17 @@
42
42
  "sessionWithName": "إعدادات الجلسة · {{name}}",
43
43
  "title": "إعدادات"
44
44
  },
45
+ "hotkey": {
46
+ "conflicts": "يتعارض مع اختصارات لوحة المفاتيح الحالية",
47
+ "group": {
48
+ "conversation": "المحادثة",
49
+ "essential": "أساسي"
50
+ },
51
+ "invalidCombination": "يجب أن تحتوي اختصارات لوحة المفاتيح على مفتاح تعديل واحد على الأقل (Ctrl، Alt، Shift) ومفتاح عادي واحد",
52
+ "record": "اضغط على المفتاح لتسجيل اختصار لوحة المفاتيح",
53
+ "reset": "إعادة تعيين إلى اختصارات لوحة المفاتيح الافتراضية",
54
+ "title": "اختصارات لوحة المفاتيح"
55
+ },
45
56
  "llm": {
46
57
  "aesGcm": "سيتم استخدام خوارزمية التشفير <1>AES-GCM</1> لتشفير مفتاحك وعنوان الوكيل",
47
58
  "apiKey": {
@@ -425,6 +436,7 @@
425
436
  "agent": "المساعد الافتراضي",
426
437
  "common": "إعدادات عامة",
427
438
  "experiment": "تجربة",
439
+ "hotkey": "اختصارات لوحة المفاتيح",
428
440
  "llm": "نموذج اللغة",
429
441
  "provider": "مزود خدمة الذكاء الاصطناعي",
430
442
  "sync": "مزامنة السحابة",
@@ -0,0 +1,46 @@
1
+ {
2
+ "addUserMessage": {
3
+ "desc": "Добавете текущото съдържание като съобщение от потребителя, без да задействате генерирането",
4
+ "title": "Добавяне на съобщение от потребителя"
5
+ },
6
+ "editMessage": {
7
+ "desc": "Влезте в режим на редактиране, като задържите Alt и два пъти кликнете върху съобщението",
8
+ "title": "Редактиране на съобщение"
9
+ },
10
+ "openChatSettings": {
11
+ "desc": "Прегледайте и променете настройките на текущия разговор",
12
+ "title": "Отворете настройките на чата"
13
+ },
14
+ "openHotkeyHelper": {
15
+ "desc": "Прегледайте инструкциите за използване на всички клавишни комбинации",
16
+ "title": "Отворете помощта за клавишни комбинации"
17
+ },
18
+ "regenerateMessage": {
19
+ "desc": "Прегенерирайте последното съобщение",
20
+ "title": "Прегенериране на съобщение"
21
+ },
22
+ "saveTopic": {
23
+ "desc": "Запазете текущата тема и отворете нова",
24
+ "title": "Създаване на нова тема"
25
+ },
26
+ "search": {
27
+ "desc": "Активирайте основното поле за търсене на текущата страница",
28
+ "title": "Търсене"
29
+ },
30
+ "switchAgent": {
31
+ "desc": "Сменете помощника, фиксиран в страничната лента, като задържите Ctrl и натиснете число от 0 до 9",
32
+ "title": "Бърза смяна на помощника"
33
+ },
34
+ "toggleLeftPanel": {
35
+ "desc": "Показване или скриване на панела с помощ отляво",
36
+ "title": "Показване/скриване на панела с помощника"
37
+ },
38
+ "toggleRightPanel": {
39
+ "desc": "Показване или скриване на панела с теми отдясно",
40
+ "title": "Показване/скриване на панела с теми"
41
+ },
42
+ "toggleZenMode": {
43
+ "desc": "В режим на фокус, показвайте само текущия разговор, скривайки другия интерфейс",
44
+ "title": "Превключване на режим на фокус"
45
+ }
46
+ }
@@ -1082,6 +1082,9 @@
1082
1082
  "gpt-4o-mini-realtime-preview": {
1083
1083
  "description": "Реален вариант на GPT-4o-mini, поддържащ вход и изход на аудио и текст в реално време."
1084
1084
  },
1085
+ "gpt-4o-mini-tts": {
1086
+ "description": "GPT-4o mini TTS е модел за преобразуване на текст в реч, базиран на GPT-4o mini, предлагащ висококачествено генериране на реч при по-ниска цена."
1087
+ },
1085
1088
  "gpt-4o-realtime-preview": {
1086
1089
  "description": "Реален вариант на GPT-4o, поддържащ вход и изход на аудио и текст в реално време."
1087
1090
  },
@@ -42,6 +42,17 @@
42
42
  "sessionWithName": "Настройки на сесията · {{name}}",
43
43
  "title": "Настройки"
44
44
  },
45
+ "hotkey": {
46
+ "conflicts": "Конфликт с текущите клавишни комбинации",
47
+ "group": {
48
+ "conversation": "Разговор",
49
+ "essential": "Основен"
50
+ },
51
+ "invalidCombination": "Клавишната комбинация трябва да съдържа поне един модификатор (Ctrl, Alt, Shift) и един обикновен клавиш",
52
+ "record": "Натиснете клавиш, за да запишете клавишна комбинация",
53
+ "reset": "Нулиране до подразбиращите се клавишни комбинации",
54
+ "title": "Бързи клавиши"
55
+ },
45
56
  "llm": {
46
57
  "aesGcm": "Вашият ключ и адрес на агента ще бъдат криптирани с алгоритъма за криптиране <1>AES-GCM</1>",
47
58
  "apiKey": {
@@ -425,6 +436,7 @@
425
436
  "agent": "Агент по подразбиране",
426
437
  "common": "Общи настройки",
427
438
  "experiment": "Експеримент",
439
+ "hotkey": "Бързи клавиши",
428
440
  "llm": "Езиков модел",
429
441
  "provider": "AI доставчик",
430
442
  "sync": "Синхронизиране в облака",
@@ -0,0 +1,46 @@
1
+ {
2
+ "addUserMessage": {
3
+ "desc": "Fügen Sie den aktuellen Eingabetext als Benutzernachricht hinzu, ohne die Generierung auszulösen",
4
+ "title": "Benutzernachricht hinzufügen"
5
+ },
6
+ "editMessage": {
7
+ "desc": "Treten Sie in den Bearbeitungsmodus, indem Sie die Alt-Taste gedrückt halten und auf die Nachricht doppelklicken",
8
+ "title": "Nachricht bearbeiten"
9
+ },
10
+ "openChatSettings": {
11
+ "desc": "Aktuelle Sitzungseinstellungen anzeigen und ändern",
12
+ "title": "Chat-Einstellungen öffnen"
13
+ },
14
+ "openHotkeyHelper": {
15
+ "desc": "Anleitung zur Verwendung aller Tastenkombinationen anzeigen",
16
+ "title": "Tastenkombinationshilfe öffnen"
17
+ },
18
+ "regenerateMessage": {
19
+ "desc": "Die letzte Nachricht neu generieren",
20
+ "title": "Nachricht neu generieren"
21
+ },
22
+ "saveTopic": {
23
+ "desc": "Das aktuelle Thema speichern und ein neues Thema öffnen",
24
+ "title": "Neues Thema beginnen"
25
+ },
26
+ "search": {
27
+ "desc": "Hauptsuchfeld der aktuellen Seite aufrufen",
28
+ "title": "Suche"
29
+ },
30
+ "switchAgent": {
31
+ "desc": "Wechseln Sie zwischen den im Seitenbereich fixierten Assistenten, indem Sie die Strg-Taste gedrückt halten und eine Zahl von 0 bis 9 drücken",
32
+ "title": "Schnell zwischen Assistenten wechseln"
33
+ },
34
+ "toggleLeftPanel": {
35
+ "desc": "Linkes Hilfepanel ein- oder ausblenden",
36
+ "title": "Assistentenpanel ein-/ausblenden"
37
+ },
38
+ "toggleRightPanel": {
39
+ "desc": "Rechtes Themenpanel ein- oder ausblenden",
40
+ "title": "Themenpanel ein-/ausblenden"
41
+ },
42
+ "toggleZenMode": {
43
+ "desc": "Im Fokusmodus nur die aktuelle Sitzung anzeigen, andere UI ausblenden",
44
+ "title": "Fokussierungsmodus umschalten"
45
+ }
46
+ }
@@ -1082,6 +1082,9 @@
1082
1082
  "gpt-4o-mini-realtime-preview": {
1083
1083
  "description": "Echtzeitversion von GPT-4o-mini, unterstützt Audio- und Texteingabe sowie -ausgabe in Echtzeit."
1084
1084
  },
1085
+ "gpt-4o-mini-tts": {
1086
+ "description": "GPT-4o mini TTS ist ein Text-to-Speech-Modell, das auf GPT-4o mini basiert und hochwertige Sprachgenerierung bei niedrigeren Kosten bietet."
1087
+ },
1085
1088
  "gpt-4o-realtime-preview": {
1086
1089
  "description": "Echtzeitversion von GPT-4o, unterstützt Audio- und Texteingabe sowie -ausgabe in Echtzeit."
1087
1090
  },
@@ -42,6 +42,17 @@
42
42
  "sessionWithName": "Sitzungseinstellungen · {{name}}",
43
43
  "title": "Einstellungen"
44
44
  },
45
+ "hotkey": {
46
+ "conflicts": "Konflikte mit bestehenden Tastenkombinationen",
47
+ "group": {
48
+ "conversation": "Gespräch",
49
+ "essential": "Grundlegend"
50
+ },
51
+ "invalidCombination": "Die Tastenkombination muss mindestens einen Modifikatortaste (Strg, Alt, Umschalt) und eine normale Taste enthalten",
52
+ "record": "Drücken Sie eine Taste, um die Tastenkombination aufzuzeichnen",
53
+ "reset": "Auf die Standard-Tastenkombination zurücksetzen",
54
+ "title": "Tastenkombinationen"
55
+ },
45
56
  "llm": {
46
57
  "aesGcm": "Ihr Schlüssel und Ihre Proxy-Adresse werden mit dem <1>AES-GCM</1> Verschlüsselungsalgorithmus verschlüsselt.",
47
58
  "apiKey": {
@@ -425,6 +436,7 @@
425
436
  "agent": "Standard-Assistent",
426
437
  "common": "Allgemeine Einstellungen",
427
438
  "experiment": "Experiment",
439
+ "hotkey": "Tastenkombinationen",
428
440
  "llm": "Sprachmodell",
429
441
  "provider": "KI-Dienstanbieter",
430
442
  "sync": "Cloud-Synchronisierung",
@@ -0,0 +1,46 @@
1
+ {
2
+ "addUserMessage": {
3
+ "desc": "Add the current input as a user message without triggering generation",
4
+ "title": "Add a User Message"
5
+ },
6
+ "editMessage": {
7
+ "desc": "Enter edit mode by holding Alt and double-clicking the message",
8
+ "title": "Edit Message"
9
+ },
10
+ "openChatSettings": {
11
+ "desc": "View and modify the settings for the current conversation",
12
+ "title": "Open Chat Settings"
13
+ },
14
+ "openHotkeyHelper": {
15
+ "desc": "View instructions for all keyboard shortcuts",
16
+ "title": "Open Hotkey Help"
17
+ },
18
+ "regenerateMessage": {
19
+ "desc": "Regenerate the last message",
20
+ "title": "Regenerate Message"
21
+ },
22
+ "saveTopic": {
23
+ "desc": "Save the current topic and open a new one",
24
+ "title": "Start a New Topic"
25
+ },
26
+ "search": {
27
+ "desc": "Activate the main search box on the current page",
28
+ "title": "Search"
29
+ },
30
+ "switchAgent": {
31
+ "desc": "Switch between pinned assistants in the sidebar by holding Ctrl and pressing numbers 0-9",
32
+ "title": "Quick Switch Assistant"
33
+ },
34
+ "toggleLeftPanel": {
35
+ "desc": "Show or hide the left assistant panel",
36
+ "title": "Show/Hide Assistant Panel"
37
+ },
38
+ "toggleRightPanel": {
39
+ "desc": "Show or hide the right topics panel",
40
+ "title": "Show/Hide Topic Panel"
41
+ },
42
+ "toggleZenMode": {
43
+ "desc": "In focus mode, only display the current conversation and hide other UI elements",
44
+ "title": "Toggle Focus Mode"
45
+ }
46
+ }
@@ -1082,6 +1082,9 @@
1082
1082
  "gpt-4o-mini-realtime-preview": {
1083
1083
  "description": "GPT-4o-mini real-time version, supporting real-time audio and text input and output."
1084
1084
  },
1085
+ "gpt-4o-mini-tts": {
1086
+ "description": "GPT-4o mini TTS is a text-to-speech model based on GPT-4o mini, providing high-quality speech generation at a lower cost."
1087
+ },
1085
1088
  "gpt-4o-realtime-preview": {
1086
1089
  "description": "GPT-4o real-time version, supporting real-time audio and text input and output."
1087
1090
  },
@@ -42,6 +42,17 @@
42
42
  "sessionWithName": "Session Settings · {{name}}",
43
43
  "title": "Settings"
44
44
  },
45
+ "hotkey": {
46
+ "conflicts": "Conflicts with existing hotkeys",
47
+ "group": {
48
+ "conversation": "Conversation",
49
+ "essential": "Essential"
50
+ },
51
+ "invalidCombination": "The hotkey must include at least one modifier key (Ctrl, Alt, Shift) and one regular key",
52
+ "record": "Press a key to record the hotkey",
53
+ "reset": "Reset to default hotkeys",
54
+ "title": "Hotkeys"
55
+ },
45
56
  "llm": {
46
57
  "aesGcm": "Your keys and proxy address will be encrypted using the <1>AES-GCM</1> encryption algorithm",
47
58
  "apiKey": {
@@ -425,6 +436,7 @@
425
436
  "agent": "Default Assistant",
426
437
  "common": "Common Settings",
427
438
  "experiment": "Experiment",
439
+ "hotkey": "Hotkeys",
428
440
  "llm": "Language Model",
429
441
  "provider": "AI Service Provider",
430
442
  "sync": "Cloud Sync",
@@ -0,0 +1,46 @@
1
+ {
2
+ "addUserMessage": {
3
+ "desc": "Añadir el contenido actual como un mensaje de usuario, pero sin activar la generación",
4
+ "title": "Añadir un mensaje de usuario"
5
+ },
6
+ "editMessage": {
7
+ "desc": "Entrar en modo de edición manteniendo presionada la tecla Alt y haciendo doble clic en el mensaje",
8
+ "title": "Editar mensaje"
9
+ },
10
+ "openChatSettings": {
11
+ "desc": "Ver y modificar la configuración de la conversación actual",
12
+ "title": "Abrir configuración de la conversación"
13
+ },
14
+ "openHotkeyHelper": {
15
+ "desc": "Ver las instrucciones de uso de todos los atajos de teclado",
16
+ "title": "Abrir ayuda de atajos de teclado"
17
+ },
18
+ "regenerateMessage": {
19
+ "desc": "Regenerar el último mensaje",
20
+ "title": "Regenerar mensaje"
21
+ },
22
+ "saveTopic": {
23
+ "desc": "Guardar el tema actual y abrir un nuevo tema",
24
+ "title": "Iniciar un nuevo tema"
25
+ },
26
+ "search": {
27
+ "desc": "Invocar el cuadro de búsqueda principal de la página actual",
28
+ "title": "Buscar"
29
+ },
30
+ "switchAgent": {
31
+ "desc": "Cambiar el asistente fijado en la barra lateral manteniendo presionada la tecla Ctrl y pulsando un número del 0 al 9",
32
+ "title": "Cambio rápido de asistente"
33
+ },
34
+ "toggleLeftPanel": {
35
+ "desc": "Mostrar u ocultar el panel de asistente a la izquierda",
36
+ "title": "Mostrar/Ocultar panel de asistente"
37
+ },
38
+ "toggleRightPanel": {
39
+ "desc": "Mostrar u ocultar el panel de temas a la derecha",
40
+ "title": "Mostrar/Ocultar panel de temas"
41
+ },
42
+ "toggleZenMode": {
43
+ "desc": "En modo de enfoque, solo se muestra la conversación actual, ocultando otras interfaces",
44
+ "title": "Alternar modo de enfoque"
45
+ }
46
+ }
@@ -1082,6 +1082,9 @@
1082
1082
  "gpt-4o-mini-realtime-preview": {
1083
1083
  "description": "Versión en tiempo real de GPT-4o-mini, que admite entrada y salida de audio y texto en tiempo real."
1084
1084
  },
1085
+ "gpt-4o-mini-tts": {
1086
+ "description": "GPT-4o mini TTS es un modelo de texto a voz basado en GPT-4o mini, que ofrece generación de voz de alta calidad a un costo más bajo."
1087
+ },
1085
1088
  "gpt-4o-realtime-preview": {
1086
1089
  "description": "Versión en tiempo real de GPT-4o, que admite entrada y salida de audio y texto en tiempo real."
1087
1090
  },
@@ -42,6 +42,17 @@
42
42
  "sessionWithName": "Configuración de la sesión · {{name}}",
43
43
  "title": "Configuración"
44
44
  },
45
+ "hotkey": {
46
+ "conflicts": "Conflicto con las teclas de acceso rápido existentes",
47
+ "group": {
48
+ "conversation": "Conversación",
49
+ "essential": "Esencial"
50
+ },
51
+ "invalidCombination": "La combinación de teclas de acceso rápido debe incluir al menos una tecla modificadora (Ctrl, Alt, Shift) y una tecla normal",
52
+ "record": "Presiona una tecla para grabar la tecla de acceso rápido",
53
+ "reset": "Restablecer a las teclas de acceso rápido predeterminadas",
54
+ "title": "Atajos de teclado"
55
+ },
45
56
  "llm": {
46
57
  "aesGcm": "Su clave y dirección del agente se cifrarán utilizando el algoritmo de cifrado <1>AES-GCM</1>",
47
58
  "apiKey": {
@@ -425,6 +436,7 @@
425
436
  "agent": "Asistente predeterminado",
426
437
  "common": "Configuración común",
427
438
  "experiment": "Experimento",
439
+ "hotkey": "Atajos de teclado",
428
440
  "llm": "Modelo de lenguaje",
429
441
  "provider": "Proveedor de servicios de IA",
430
442
  "sync": "Sincronización en la nube",
@@ -0,0 +1,46 @@
1
+ {
2
+ "addUserMessage": {
3
+ "desc": "محتوای ورودی فعلی را به عنوان پیام کاربر اضافه کنید، اما تولید را فعال نکنید",
4
+ "title": "اضافه کردن یک پیام کاربر"
5
+ },
6
+ "editMessage": {
7
+ "desc": "با نگه داشتن کلید Alt و دوبار کلیک بر روی پیام وارد حالت ویرایش شوید",
8
+ "title": "ویرایش پیام"
9
+ },
10
+ "openChatSettings": {
11
+ "desc": "مشاهده و ویرایش تنظیمات کنونی گفتگو",
12
+ "title": "باز کردن تنظیمات گفتگو"
13
+ },
14
+ "openHotkeyHelper": {
15
+ "desc": "مشاهده تمام توضیحات استفاده از کلیدهای میانبر",
16
+ "title": "باز کردن راهنمای کلیدهای میانبر"
17
+ },
18
+ "regenerateMessage": {
19
+ "desc": "آخرین پیام را دوباره تولید کنید",
20
+ "title": "تولید مجدد پیام"
21
+ },
22
+ "saveTopic": {
23
+ "desc": "موضوع فعلی را ذخیره کرده و یک موضوع جدید باز کنید",
24
+ "title": "باز کردن موضوع جدید"
25
+ },
26
+ "search": {
27
+ "desc": "فعال کردن جعبه جستجوی اصلی صفحه کنونی",
28
+ "title": "جستجو"
29
+ },
30
+ "switchAgent": {
31
+ "desc": "با نگه داشتن Ctrl و زدن عدد 0~9، دستیار ثابت در نوار کناری را تغییر دهید",
32
+ "title": "تغییر سریع دستیار"
33
+ },
34
+ "toggleLeftPanel": {
35
+ "desc": "نمایش یا پنهان کردن پنل دستیار سمت چپ",
36
+ "title": "نمایش/پنهان کردن پنل دستیار"
37
+ },
38
+ "toggleRightPanel": {
39
+ "desc": "نمایش یا پنهان کردن پنل موضوعات سمت راست",
40
+ "title": "نمایش/پنهان کردن پنل موضوع"
41
+ },
42
+ "toggleZenMode": {
43
+ "desc": "در حالت تمرکز، فقط گفتگو کنونی نمایش داده می‌شود و سایر رابط‌های کاربری پنهان می‌شوند",
44
+ "title": "تغییر حالت تمرکز"
45
+ }
46
+ }
@@ -1082,6 +1082,9 @@
1082
1082
  "gpt-4o-mini-realtime-preview": {
1083
1083
  "description": "نسخه زنده GPT-4o-mini، پشتیبانی از ورودی و خروجی صوتی و متنی به صورت زنده."
1084
1084
  },
1085
+ "gpt-4o-mini-tts": {
1086
+ "description": "GPT-4o mini TTS یک مدل تبدیل متن به گفتار است که بر اساس GPT-4o mini ساخته شده است و با قیمت پایین تری از GPT-4o mini ارائه می‌دهد."
1087
+ },
1085
1088
  "gpt-4o-realtime-preview": {
1086
1089
  "description": "نسخه زنده GPT-4o، پشتیبانی از ورودی و خروجی صوتی و متنی به صورت زنده."
1087
1090
  },
@@ -42,6 +42,17 @@
42
42
  "sessionWithName": "تنظیمات جلسه · {{name}}",
43
43
  "title": "تنظیمات"
44
44
  },
45
+ "hotkey": {
46
+ "conflicts": "تداخل با کلیدهای میانبر موجود",
47
+ "group": {
48
+ "conversation": "گفتگو",
49
+ "essential": "اساسی"
50
+ },
51
+ "invalidCombination": "کلیدهای میانبر باید حداقل شامل یک کلید اصلاحی (Ctrl, Alt, Shift) و یک کلید معمولی باشند",
52
+ "record": "برای ضبط کلید میانبر، کلید را فشار دهید",
53
+ "reset": "بازنشانی به کلیدهای میانبر پیش‌فرض",
54
+ "title": "کلیدهای میانبر"
55
+ },
45
56
  "llm": {
46
57
  "aesGcm": "کلید و آدرس پروکسی شما با استفاده از الگوریتم رمزنگاری <1>AES-GCM</1> رمزگذاری خواهد شد",
47
58
  "apiKey": {
@@ -425,6 +436,7 @@
425
436
  "agent": "دستیار پیش‌فرض",
426
437
  "common": "تنظیمات عمومی",
427
438
  "experiment": "آزمایش",
439
+ "hotkey": "کلیدهای میانبر",
428
440
  "llm": "مدل زبان",
429
441
  "provider": "ارائه دهنده خدمات هوش مصنوعی",
430
442
  "sync": "همگام‌سازی ابری",