@lobehub/chat 1.123.3 → 1.124.0

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 (137) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/changelog/v1.json +18 -0
  3. package/locales/ar/chat.json +6 -2
  4. package/locales/ar/editor.json +47 -0
  5. package/locales/bg-BG/chat.json +6 -2
  6. package/locales/bg-BG/editor.json +47 -0
  7. package/locales/de-DE/chat.json +6 -2
  8. package/locales/de-DE/editor.json +47 -0
  9. package/locales/en-US/chat.json +6 -2
  10. package/locales/en-US/editor.json +47 -0
  11. package/locales/es-ES/chat.json +6 -2
  12. package/locales/es-ES/editor.json +47 -0
  13. package/locales/es-ES/models.json +3 -1
  14. package/locales/fa-IR/chat.json +6 -2
  15. package/locales/fa-IR/editor.json +47 -0
  16. package/locales/fr-FR/chat.json +6 -2
  17. package/locales/fr-FR/editor.json +47 -0
  18. package/locales/it-IT/chat.json +6 -2
  19. package/locales/it-IT/editor.json +47 -0
  20. package/locales/ja-JP/chat.json +6 -2
  21. package/locales/ja-JP/editor.json +47 -0
  22. package/locales/ko-KR/chat.json +6 -2
  23. package/locales/ko-KR/editor.json +47 -0
  24. package/locales/ko-KR/models.json +3 -1
  25. package/locales/nl-NL/chat.json +6 -2
  26. package/locales/nl-NL/editor.json +47 -0
  27. package/locales/nl-NL/models.json +3 -1
  28. package/locales/pl-PL/chat.json +6 -2
  29. package/locales/pl-PL/editor.json +47 -0
  30. package/locales/pt-BR/chat.json +6 -2
  31. package/locales/pt-BR/editor.json +47 -0
  32. package/locales/ru-RU/chat.json +6 -2
  33. package/locales/ru-RU/editor.json +47 -0
  34. package/locales/tr-TR/chat.json +6 -2
  35. package/locales/tr-TR/editor.json +47 -0
  36. package/locales/vi-VN/chat.json +6 -2
  37. package/locales/vi-VN/editor.json +47 -0
  38. package/locales/zh-CN/chat.json +6 -2
  39. package/locales/zh-CN/editor.json +47 -0
  40. package/locales/zh-TW/chat.json +6 -2
  41. package/locales/zh-TW/editor.json +47 -0
  42. package/locales/zh-TW/models.json +3 -1
  43. package/next.config.ts +4 -0
  44. package/package.json +4 -2
  45. package/packages/const/src/layoutTokens.ts +1 -0
  46. package/packages/types/src/index.ts +1 -0
  47. package/packages/utils/src/index.ts +1 -0
  48. package/src/app/(backend)/webapi/chat/[provider]/route.ts +1 -1
  49. package/src/app/(backend)/webapi/chat/vertexai/route.ts +1 -0
  50. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/{Footer/MessageFromUrl.tsx → MessageFromUrl.tsx} +3 -2
  51. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/index.tsx +129 -28
  52. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/index.tsx +44 -66
  53. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/useSend.ts +141 -0
  54. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/Content.tsx +7 -1
  55. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/WelcomeChatItem/InboxWelcome/QuestionSuggest.tsx +3 -2
  56. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/WelcomeChatItem/OpeningQuestions.tsx +3 -2
  57. package/src/app/[variants]/(main)/chat/(workspace)/_layout/Desktop/ChatHeader/HeaderAction.tsx +18 -2
  58. package/src/features/ChatInput/ActionBar/STT/common.tsx +41 -47
  59. package/src/features/ChatInput/{Topic → ActionBar/SaveTopic}/index.tsx +15 -4
  60. package/src/features/ChatInput/ActionBar/Typo/index.tsx +22 -0
  61. package/src/features/ChatInput/ActionBar/components/Action.tsx +4 -0
  62. package/src/features/ChatInput/ActionBar/config.ts +7 -1
  63. package/src/features/ChatInput/ActionBar/index.tsx +40 -51
  64. package/src/features/ChatInput/ChatInputProvider.tsx +54 -0
  65. package/src/features/ChatInput/Desktop/FilePreview/FileItem/index.tsx +20 -11
  66. package/src/features/ChatInput/Desktop/FilePreview/FileList.tsx +16 -15
  67. package/src/features/ChatInput/Desktop/index.tsx +81 -68
  68. package/src/features/ChatInput/InputEditor/index.tsx +134 -0
  69. package/src/{app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files → features/ChatInput/Mobile/FilePreview}/FileItem/File.tsx +1 -2
  70. package/src/features/ChatInput/Mobile/FilePreview/index.tsx +44 -0
  71. package/src/features/ChatInput/Mobile/index.tsx +72 -0
  72. package/src/features/ChatInput/SendArea/ExpandButton.tsx +30 -0
  73. package/src/features/ChatInput/SendArea/SendButton.tsx +29 -0
  74. package/src/features/ChatInput/SendArea/ShortcutHint.tsx +52 -0
  75. package/src/features/ChatInput/SendArea/index.tsx +36 -0
  76. package/src/features/ChatInput/StoreUpdater.tsx +41 -0
  77. package/src/features/ChatInput/TypoBar/index.tsx +139 -0
  78. package/src/features/ChatInput/hooks/useChatInputEditor.ts +36 -0
  79. package/src/features/ChatInput/index.ts +7 -0
  80. package/src/features/ChatInput/store/action.ts +75 -0
  81. package/src/features/ChatInput/store/index.ts +23 -0
  82. package/src/features/ChatInput/store/initialState.ts +54 -0
  83. package/src/features/ChatInput/store/selectors.ts +5 -0
  84. package/src/features/Conversation/components/BackBottom/style.ts +1 -1
  85. package/src/features/Conversation/components/SkeletonList.tsx +10 -3
  86. package/src/features/Conversation/components/VirtualizedList/index.tsx +53 -44
  87. package/src/features/Conversation/components/WideScreenContainer/index.tsx +43 -0
  88. package/src/features/Portal/Thread/Chat/ChatInput/index.tsx +49 -42
  89. package/src/features/Portal/Thread/Chat/ChatInput/useSend.ts +48 -22
  90. package/src/features/Portal/Thread/Chat/index.tsx +2 -2
  91. package/src/features/Portal/Thread/Header/index.tsx +1 -1
  92. package/src/hooks/useHotkeys/chatScope.ts +5 -3
  93. package/src/layout/GlobalProvider/Editor.tsx +27 -0
  94. package/src/layout/GlobalProvider/Locale.tsx +3 -23
  95. package/src/libs/trpc/client/lambda.ts +76 -63
  96. package/src/locales/default/chat.ts +7 -2
  97. package/src/locales/default/editor.ts +47 -0
  98. package/src/locales/default/index.ts +2 -0
  99. package/src/services/aiChat.ts +8 -2
  100. package/src/store/chat/slices/aiChat/actions/__tests__/generateAIChatV2.test.ts +42 -33
  101. package/src/store/chat/slices/aiChat/actions/generateAIChatV2.ts +174 -35
  102. package/src/store/chat/slices/aiChat/initialState.ts +19 -0
  103. package/src/store/chat/slices/aiChat/selectors.ts +18 -0
  104. package/src/store/global/action.test.ts +6 -5
  105. package/src/store/global/actions/__tests__/general.test.ts +6 -6
  106. package/src/store/global/actions/workspacePane.ts +6 -0
  107. package/src/store/global/initialState.ts +2 -4
  108. package/src/store/global/selectors/systemStatus.test.ts +1 -2
  109. package/src/store/global/selectors/systemStatus.ts +2 -5
  110. package/src/app/(backend)/webapi/chat/anthropic/route.test.ts +0 -30
  111. package/src/app/(backend)/webapi/chat/anthropic/route.ts +0 -21
  112. package/src/app/(backend)/webapi/chat/google/route.test.ts +0 -35
  113. package/src/app/(backend)/webapi/chat/google/route.ts +0 -25
  114. package/src/app/(backend)/webapi/chat/groq/route.test.ts +0 -29
  115. package/src/app/(backend)/webapi/chat/groq/route.ts +0 -21
  116. package/src/app/(backend)/webapi/chat/openai/route.test.ts +0 -30
  117. package/src/app/(backend)/webapi/chat/openai/route.ts +0 -26
  118. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/SendMore.tsx +0 -104
  119. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/ShortcutHint.tsx +0 -40
  120. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/index.tsx +0 -125
  121. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/TextArea.test.tsx +0 -332
  122. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/TextArea.tsx +0 -29
  123. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files/index.tsx +0 -33
  124. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/InputArea/Container.tsx +0 -41
  125. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/InputArea/index.tsx +0 -156
  126. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Send.tsx +0 -33
  127. package/src/features/ChatInput/Desktop/Header/index.tsx +0 -30
  128. package/src/features/ChatInput/Desktop/InputArea/index.tsx +0 -143
  129. package/src/features/ChatInput/Desktop/__tests__/useAutoFocus.test.ts +0 -45
  130. package/src/features/ChatInput/Desktop/useAutoFocus.ts +0 -13
  131. package/src/features/ChatInput/useSend.ts +0 -102
  132. package/src/features/Portal/Thread/Chat/ChatInput/Footer.tsx +0 -90
  133. package/src/features/Portal/Thread/Chat/ChatInput/TextArea.tsx +0 -30
  134. package/src/libs/trpc/client/types.ts +0 -18
  135. /package/src/{app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files → features/ChatInput/Mobile/FilePreview}/FileItem/Image.tsx +0 -0
  136. /package/src/{app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files → features/ChatInput/Mobile/FilePreview}/FileItem/index.tsx +0 -0
  137. /package/src/{app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files → features/ChatInput/Mobile/FilePreview}/FileItem/style.ts +0 -0
package/CHANGELOG.md CHANGED
@@ -2,6 +2,56 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ## [Version 1.124.0](https://github.com/lobehub/lobe-chat/compare/v1.123.4...v1.124.0)
6
+
7
+ <sup>Released on **2025-09-06**</sup>
8
+
9
+ #### ✨ Features
10
+
11
+ - **misc**: ChatInput support rich text and support parallel send.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's improved
19
+
20
+ - **misc**: ChatInput support rich text and support parallel send, closes [#8964](https://github.com/lobehub/lobe-chat/issues/8964) ([38d9d98](https://github.com/lobehub/lobe-chat/commit/38d9d98))
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.123.4](https://github.com/lobehub/lobe-chat/compare/v1.123.3...v1.123.4)
31
+
32
+ <sup>Released on **2025-09-05**</sup>
33
+
34
+ #### ♻ Code Refactoring
35
+
36
+ - **misc**: Remove edge runtime.
37
+
38
+ <br/>
39
+
40
+ <details>
41
+ <summary><kbd>Improvements and Fixes</kbd></summary>
42
+
43
+ #### Code refactoring
44
+
45
+ - **misc**: Remove edge runtime, closes [#9085](https://github.com/lobehub/lobe-chat/issues/9085) ([d3544f9](https://github.com/lobehub/lobe-chat/commit/d3544f9))
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.123.3](https://github.com/lobehub/lobe-chat/compare/v1.123.2...v1.123.3)
6
56
 
7
57
  <sup>Released on **2025-09-05**</sup>
package/changelog/v1.json CHANGED
@@ -1,4 +1,22 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "features": [
5
+ "ChatInput support rich text and support parallel send."
6
+ ]
7
+ },
8
+ "date": "2025-09-06",
9
+ "version": "1.124.0"
10
+ },
11
+ {
12
+ "children": {
13
+ "improvements": [
14
+ "Remove edge runtime."
15
+ ]
16
+ },
17
+ "date": "2025-09-05",
18
+ "version": "1.123.4"
19
+ },
2
20
  {
3
21
  "children": {
4
22
  "fixes": [
@@ -72,8 +72,8 @@
72
72
  "addUser": "إضافة رسالة مستخدم",
73
73
  "more": "المزيد",
74
74
  "send": "إرسال",
75
- "sendWithCmdEnter": "اضغط {{meta}} + Enter للإرسال",
76
- "sendWithEnter": "اضغط Enter للإرسال",
75
+ "sendWithCmdEnter": "اضغط <key/> للإرسال",
76
+ "sendWithEnter": "اضغط <key/> للإرسال",
77
77
  "stop": "توقف",
78
78
  "warp": "تغيير السطر"
79
79
  },
@@ -232,6 +232,10 @@
232
232
  "threadMessageCount": "{{messageCount}} رسالة",
233
233
  "title": "موضوع فرعي"
234
234
  },
235
+ "toggleWideScreen": {
236
+ "off": "إيقاف وضع الشاشة العريضة",
237
+ "on": "تشغيل وضع الشاشة العريضة"
238
+ },
235
239
  "tokenDetails": {
236
240
  "chats": "رسائل المحادثة",
237
241
  "historySummary": "ملخص التاريخ",
@@ -0,0 +1,47 @@
1
+ {
2
+ "actions": {
3
+ "expand": {
4
+ "off": "طي",
5
+ "on": "توسيع"
6
+ },
7
+ "typobar": {
8
+ "off": "إخفاء شريط أدوات التنسيق",
9
+ "on": "إظهار شريط أدوات التنسيق"
10
+ }
11
+ },
12
+ "file": {
13
+ "error": "خطأ: {{message}}",
14
+ "uploading": "جاري رفع الملف..."
15
+ },
16
+ "image": {
17
+ "broken": "الصورة تالفة"
18
+ },
19
+ "link": {
20
+ "edit": "تعديل الرابط",
21
+ "open": "فتح الرابط",
22
+ "placeholder": "أدخل عنوان URL للرابط",
23
+ "unlink": "إزالة الرابط"
24
+ },
25
+ "table": {
26
+ "delete": "حذف الجدول",
27
+ "deleteColumn": "حذف العمود",
28
+ "deleteRow": "حذف الصف",
29
+ "insertColumnLeft": "إدراج {{count}} عمودًا إلى اليسار",
30
+ "insertColumnRight": "إدراج {{count}} عمودًا إلى اليمين",
31
+ "insertRowAbove": "إدراج {{count}} صفًا في الأعلى",
32
+ "insertRowBelow": "إدراج {{count}} صفًا في الأسفل"
33
+ },
34
+ "typobar": {
35
+ "blockquote": "اقتباس",
36
+ "bold": "غامق",
37
+ "bulletList": "قائمة نقطية",
38
+ "code": "كود مضمن",
39
+ "codeblock": "كتلة كود",
40
+ "italic": "مائل",
41
+ "link": "رابط",
42
+ "numberList": "قائمة مرقمة",
43
+ "strikethrough": "شطب",
44
+ "table": "إدراج جدول",
45
+ "underline": "تسطير"
46
+ }
47
+ }
@@ -72,8 +72,8 @@
72
72
  "addUser": "Добави потребителско съобщение",
73
73
  "more": "още",
74
74
  "send": "Изпрати",
75
- "sendWithCmdEnter": "Натисни {{meta}} + Enter за да изпратиш",
76
- "sendWithEnter": "Натисни Enter за да изпратиш",
75
+ "sendWithCmdEnter": "Натиснете <key/> за изпращане",
76
+ "sendWithEnter": "Натиснете <key/> за изпращане",
77
77
  "stop": "Спри",
78
78
  "warp": "Нов ред"
79
79
  },
@@ -232,6 +232,10 @@
232
232
  "threadMessageCount": "{{messageCount}} съобщения",
233
233
  "title": "Подтема"
234
234
  },
235
+ "toggleWideScreen": {
236
+ "off": "Изключване на широк екран",
237
+ "on": "Включване на широк екран"
238
+ },
235
239
  "tokenDetails": {
236
240
  "chats": "Чат съобщения",
237
241
  "historySummary": "Историческо резюме",
@@ -0,0 +1,47 @@
1
+ {
2
+ "actions": {
3
+ "expand": {
4
+ "off": "Сгъни",
5
+ "on": "Разгъни"
6
+ },
7
+ "typobar": {
8
+ "off": "Скрий лентата за форматиране",
9
+ "on": "Покажи лентата за форматиране"
10
+ }
11
+ },
12
+ "file": {
13
+ "error": "Грешка: {{message}}",
14
+ "uploading": "Качване на файл..."
15
+ },
16
+ "image": {
17
+ "broken": "Изображението е повредено"
18
+ },
19
+ "link": {
20
+ "edit": "Редактирай връзката",
21
+ "open": "Отвори връзката",
22
+ "placeholder": "Въведете URL адрес на връзката",
23
+ "unlink": "Премахни връзката"
24
+ },
25
+ "table": {
26
+ "delete": "Премахни таблицата",
27
+ "deleteColumn": "Премахни колоната",
28
+ "deleteRow": "Премахни реда",
29
+ "insertColumnLeft": "Вмъкни {{count}} колони отляво",
30
+ "insertColumnRight": "Вмъкни {{count}} колони отдясно",
31
+ "insertRowAbove": "Вмъкни {{count}} реда отгоре",
32
+ "insertRowBelow": "Вмъкни {{count}} реда отдолу"
33
+ },
34
+ "typobar": {
35
+ "blockquote": "Цитат",
36
+ "bold": "Удебели",
37
+ "bulletList": "Маркиран списък",
38
+ "code": "Код в реда",
39
+ "codeblock": "Блок с код",
40
+ "italic": "Курсив",
41
+ "link": "Връзка",
42
+ "numberList": "Номериран списък",
43
+ "strikethrough": "Зачеркване",
44
+ "table": "Вмъкване на таблица",
45
+ "underline": "Подчертаване"
46
+ }
47
+ }
@@ -72,8 +72,8 @@
72
72
  "addUser": "Fügen Sie eine Benutzer-Nachricht hinzu",
73
73
  "more": "Mehr",
74
74
  "send": "Senden",
75
- "sendWithCmdEnter": "Mit {{meta}} + Eingabetaste senden",
76
- "sendWithEnter": "Mit Eingabetaste senden",
75
+ "sendWithCmdEnter": "Drücken Sie <key/>, um zu senden",
76
+ "sendWithEnter": "Drücken Sie <key/>, um zu senden",
77
77
  "stop": "Stoppen",
78
78
  "warp": "Zeilenumbruch"
79
79
  },
@@ -232,6 +232,10 @@
232
232
  "threadMessageCount": "{{messageCount}} Nachrichten",
233
233
  "title": "Unterthema"
234
234
  },
235
+ "toggleWideScreen": {
236
+ "off": "Breitbildmodus deaktivieren",
237
+ "on": "Breitbildmodus aktivieren"
238
+ },
235
239
  "tokenDetails": {
236
240
  "chats": "Chats",
237
241
  "historySummary": "Historische Zusammenfassung",
@@ -0,0 +1,47 @@
1
+ {
2
+ "actions": {
3
+ "expand": {
4
+ "off": "Einklappen",
5
+ "on": "Ausklappen"
6
+ },
7
+ "typobar": {
8
+ "off": "Formatierungsleiste ausblenden",
9
+ "on": "Formatierungsleiste anzeigen"
10
+ }
11
+ },
12
+ "file": {
13
+ "error": "Fehler: {{message}}",
14
+ "uploading": "Datei wird hochgeladen..."
15
+ },
16
+ "image": {
17
+ "broken": "Bild beschädigt"
18
+ },
19
+ "link": {
20
+ "edit": "Link bearbeiten",
21
+ "open": "Link öffnen",
22
+ "placeholder": "Link-URL eingeben",
23
+ "unlink": "Link entfernen"
24
+ },
25
+ "table": {
26
+ "delete": "Tabelle löschen",
27
+ "deleteColumn": "Spalte löschen",
28
+ "deleteRow": "Zeile löschen",
29
+ "insertColumnLeft": "Links {{count}} Spalten einfügen",
30
+ "insertColumnRight": "Rechts {{count}} Spalten einfügen",
31
+ "insertRowAbove": "Oben {{count}} Zeilen einfügen",
32
+ "insertRowBelow": "Unten {{count}} Zeilen einfügen"
33
+ },
34
+ "typobar": {
35
+ "blockquote": "Zitat",
36
+ "bold": "Fett",
37
+ "bulletList": "Ungeordnete Liste",
38
+ "code": "Inline-Code",
39
+ "codeblock": "Codeblock",
40
+ "italic": "Kursiv",
41
+ "link": "Link",
42
+ "numberList": "Nummerierte Liste",
43
+ "strikethrough": "Durchgestrichen",
44
+ "table": "Tabelle einfügen",
45
+ "underline": "Unterstrichen"
46
+ }
47
+ }
@@ -72,8 +72,8 @@
72
72
  "addUser": "Add a user message",
73
73
  "more": "more",
74
74
  "send": "Send",
75
- "sendWithCmdEnter": "Press {{meta}} + Enter to send",
76
- "sendWithEnter": "Press Enter to send",
75
+ "sendWithCmdEnter": "Press <key/> to send",
76
+ "sendWithEnter": "Press <key/> to send",
77
77
  "stop": "Stop",
78
78
  "warp": "New Line"
79
79
  },
@@ -232,6 +232,10 @@
232
232
  "threadMessageCount": "{{messageCount}} messages",
233
233
  "title": "Subtopic"
234
234
  },
235
+ "toggleWideScreen": {
236
+ "off": "Turn off widescreen mode",
237
+ "on": "Turn on widescreen mode"
238
+ },
235
239
  "tokenDetails": {
236
240
  "chats": "Chat Messages",
237
241
  "historySummary": "History Summary",
@@ -0,0 +1,47 @@
1
+ {
2
+ "actions": {
3
+ "expand": {
4
+ "off": "Collapse",
5
+ "on": "Expand"
6
+ },
7
+ "typobar": {
8
+ "off": "Hide formatting toolbar",
9
+ "on": "Show formatting toolbar"
10
+ }
11
+ },
12
+ "file": {
13
+ "error": "Error: {{message}}",
14
+ "uploading": "Uploading file..."
15
+ },
16
+ "image": {
17
+ "broken": "Image is corrupted"
18
+ },
19
+ "link": {
20
+ "edit": "Edit link",
21
+ "open": "Open link",
22
+ "placeholder": "Enter link URL",
23
+ "unlink": "Unlink"
24
+ },
25
+ "table": {
26
+ "delete": "Delete table",
27
+ "deleteColumn": "Delete column",
28
+ "deleteRow": "Delete row",
29
+ "insertColumnLeft": "Insert {{count}} column(s) to the left",
30
+ "insertColumnRight": "Insert {{count}} column(s) to the right",
31
+ "insertRowAbove": "Insert {{count}} row(s) above",
32
+ "insertRowBelow": "Insert {{count}} row(s) below"
33
+ },
34
+ "typobar": {
35
+ "blockquote": "Blockquote",
36
+ "bold": "Bold",
37
+ "bulletList": "Bulleted list",
38
+ "code": "Inline code",
39
+ "codeblock": "Code block",
40
+ "italic": "Italic",
41
+ "link": "Link",
42
+ "numberList": "Numbered list",
43
+ "strikethrough": "Strikethrough",
44
+ "table": "Insert table",
45
+ "underline": "Underline"
46
+ }
47
+ }
@@ -72,8 +72,8 @@
72
72
  "addUser": "Agregar un mensaje de usuario",
73
73
  "more": "más",
74
74
  "send": "Enviar",
75
- "sendWithCmdEnter": "Enviar con {{meta}} + Enter",
76
- "sendWithEnter": "Enviar con Enter",
75
+ "sendWithCmdEnter": "Presiona <key/> para enviar",
76
+ "sendWithEnter": "Presiona <key/> para enviar",
77
77
  "stop": "Detener",
78
78
  "warp": "Salto de línea"
79
79
  },
@@ -232,6 +232,10 @@
232
232
  "threadMessageCount": "{{messageCount}} mensajes",
233
233
  "title": "Subtema"
234
234
  },
235
+ "toggleWideScreen": {
236
+ "off": "Desactivar modo de pantalla ancha",
237
+ "on": "Activar modo de pantalla ancha"
238
+ },
235
239
  "tokenDetails": {
236
240
  "chats": "Mensajes de chat",
237
241
  "historySummary": "Resumen histórico",
@@ -0,0 +1,47 @@
1
+ {
2
+ "actions": {
3
+ "expand": {
4
+ "off": "Contraer",
5
+ "on": "Expandir"
6
+ },
7
+ "typobar": {
8
+ "off": "Ocultar barra de herramientas de formato",
9
+ "on": "Mostrar barra de herramientas de formato"
10
+ }
11
+ },
12
+ "file": {
13
+ "error": "Error: {{message}}",
14
+ "uploading": "Subiendo archivo..."
15
+ },
16
+ "image": {
17
+ "broken": "Imagen dañada"
18
+ },
19
+ "link": {
20
+ "edit": "Editar enlace",
21
+ "open": "Abrir enlace",
22
+ "placeholder": "Introduce la URL del enlace",
23
+ "unlink": "Quitar enlace"
24
+ },
25
+ "table": {
26
+ "delete": "Eliminar tabla",
27
+ "deleteColumn": "Eliminar columna",
28
+ "deleteRow": "Eliminar fila",
29
+ "insertColumnLeft": "Insertar {{count}} columna(s) a la izquierda",
30
+ "insertColumnRight": "Insertar {{count}} columna(s) a la derecha",
31
+ "insertRowAbove": "Insertar {{count}} fila(s) encima",
32
+ "insertRowBelow": "Insertar {{count}} fila(s) debajo"
33
+ },
34
+ "typobar": {
35
+ "blockquote": "Cita",
36
+ "bold": "Negrita",
37
+ "bulletList": "Lista desordenada",
38
+ "code": "Código en línea",
39
+ "codeblock": "Bloque de código",
40
+ "italic": "Cursiva",
41
+ "link": "Enlace",
42
+ "numberList": "Lista ordenada",
43
+ "strikethrough": "Tachado",
44
+ "table": "Insertar tabla",
45
+ "underline": "Subrayado"
46
+ }
47
+ }
@@ -1505,7 +1505,9 @@
1505
1505
  "gpt-4.1-nano": {
1506
1506
  "description": "GPT-4.1 mini ofrece un equilibrio entre inteligencia, velocidad y costo, lo que lo convierte en un modelo atractivo para muchos casos de uso."
1507
1507
  },
1508
- "gpt-4.5-preview": "GPT-4.5-preview es el modelo de propósito general más reciente, con un profundo conocimiento del mundo y una mejor comprensión de las intenciones de los usuarios; destaca en tareas creativas y en la planificación de agentes. El conocimiento de este modelo está actualizado hasta octubre de 2023.",
1508
+ "gpt-4.5-preview": {
1509
+ "description": "GPT-4.5-preview es el modelo de propósito general más reciente, con un profundo conocimiento del mundo y una mejor comprensión de las intenciones de los usuarios; destaca en tareas creativas y en la planificación de agentes. El conocimiento de este modelo está actualizado hasta octubre de 2023."
1510
+ },
1509
1511
  "gpt-4o": {
1510
1512
  "description": "ChatGPT-4o es un modelo dinámico que se actualiza en tiempo real para mantener la versión más actual. Combina una poderosa comprensión y generación de lenguaje, adecuado para aplicaciones a gran escala, incluyendo servicio al cliente, educación y soporte técnico."
1511
1513
  },
@@ -72,8 +72,8 @@
72
72
  "addUser": "افزودن یک پیام کاربر",
73
73
  "more": "بیشتر",
74
74
  "send": "ارسال",
75
- "sendWithCmdEnter": "فشار دهید {{meta}} + Enter برای ارسال",
76
- "sendWithEnter": "فشار دهید Enter برای ارسال",
75
+ "sendWithCmdEnter": "برای ارسال، کلید <key/> را فشار دهید",
76
+ "sendWithEnter": "برای ارسال، کلید <key/> را فشار دهید",
77
77
  "stop": "توقف",
78
78
  "warp": "خط جدید"
79
79
  },
@@ -232,6 +232,10 @@
232
232
  "threadMessageCount": "{{messageCount}} پیام",
233
233
  "title": "زیرموضوع"
234
234
  },
235
+ "toggleWideScreen": {
236
+ "off": "حالت صفحه‌نمایش عریض را غیرفعال کنید",
237
+ "on": "حالت صفحه‌نمایش عریض را فعال کنید"
238
+ },
235
239
  "tokenDetails": {
236
240
  "chats": "پیام‌های گفتگو",
237
241
  "historySummary": "خلاصه تاریخ",
@@ -0,0 +1,47 @@
1
+ {
2
+ "actions": {
3
+ "expand": {
4
+ "off": "جمع کردن",
5
+ "on": "باز کردن"
6
+ },
7
+ "typobar": {
8
+ "off": "مخفی کردن نوار ابزار قالب‌بندی",
9
+ "on": "نمایش نوار ابزار قالب‌بندی"
10
+ }
11
+ },
12
+ "file": {
13
+ "error": "خطا: {{message}}",
14
+ "uploading": "در حال بارگذاری فایل..."
15
+ },
16
+ "image": {
17
+ "broken": "تصویر خراب است"
18
+ },
19
+ "link": {
20
+ "edit": "ویرایش پیوند",
21
+ "open": "باز کردن پیوند",
22
+ "placeholder": "آدرس URL پیوند را وارد کنید",
23
+ "unlink": "حذف پیوند"
24
+ },
25
+ "table": {
26
+ "delete": "حذف جدول",
27
+ "deleteColumn": "حذف ستون",
28
+ "deleteRow": "حذف ردیف",
29
+ "insertColumnLeft": "درج {{count}} ستون در سمت چپ",
30
+ "insertColumnRight": "درج {{count}} ستون در سمت راست",
31
+ "insertRowAbove": "درج {{count}} ردیف در بالا",
32
+ "insertRowBelow": "درج {{count}} ردیف در پایین"
33
+ },
34
+ "typobar": {
35
+ "blockquote": "نقل قول",
36
+ "bold": "پررنگ",
37
+ "bulletList": "فهرست نشانه‌دار",
38
+ "code": "کد درون‌خطی",
39
+ "codeblock": "بلوک کد",
40
+ "italic": "ایتالیک",
41
+ "link": "پیوند",
42
+ "numberList": "فهرست شماره‌دار",
43
+ "strikethrough": "خط خورده",
44
+ "table": "درج جدول",
45
+ "underline": "زیرخط"
46
+ }
47
+ }
@@ -72,8 +72,8 @@
72
72
  "addUser": "Ajouter un message utilisateur",
73
73
  "more": "Plus",
74
74
  "send": "Envoyer",
75
- "sendWithCmdEnter": "Envoyer avec {{meta}} + Entrée",
76
- "sendWithEnter": "Envoyer avec Entrée",
75
+ "sendWithCmdEnter": "Appuyez sur <key/> pour envoyer",
76
+ "sendWithEnter": "Appuyez sur <key/> pour envoyer",
77
77
  "stop": "Arrêter",
78
78
  "warp": "Saut de ligne"
79
79
  },
@@ -232,6 +232,10 @@
232
232
  "threadMessageCount": "{{messageCount}} messages",
233
233
  "title": "Sous-sujet"
234
234
  },
235
+ "toggleWideScreen": {
236
+ "off": "Désactiver le mode écran large",
237
+ "on": "Activer le mode écran large"
238
+ },
235
239
  "tokenDetails": {
236
240
  "chats": "Messages de discussion",
237
241
  "historySummary": "Résumé historique",
@@ -0,0 +1,47 @@
1
+ {
2
+ "actions": {
3
+ "expand": {
4
+ "off": "Réduire",
5
+ "on": "Développer"
6
+ },
7
+ "typobar": {
8
+ "off": "Masquer la barre d'outils de formatage",
9
+ "on": "Afficher la barre d'outils de formatage"
10
+ }
11
+ },
12
+ "file": {
13
+ "error": "Erreur : {{message}}",
14
+ "uploading": "Téléversement du fichier en cours..."
15
+ },
16
+ "image": {
17
+ "broken": "Image endommagée"
18
+ },
19
+ "link": {
20
+ "edit": "Modifier le lien",
21
+ "open": "Ouvrir le lien",
22
+ "placeholder": "Entrez l'URL du lien",
23
+ "unlink": "Supprimer le lien"
24
+ },
25
+ "table": {
26
+ "delete": "Supprimer le tableau",
27
+ "deleteColumn": "Supprimer la colonne",
28
+ "deleteRow": "Supprimer la ligne",
29
+ "insertColumnLeft": "Insérer {{count}} colonne(s) à gauche",
30
+ "insertColumnRight": "Insérer {{count}} colonne(s) à droite",
31
+ "insertRowAbove": "Insérer {{count}} ligne(s) au-dessus",
32
+ "insertRowBelow": "Insérer {{count}} ligne(s) en dessous"
33
+ },
34
+ "typobar": {
35
+ "blockquote": "Citation",
36
+ "bold": "Gras",
37
+ "bulletList": "Liste à puces",
38
+ "code": "Code en ligne",
39
+ "codeblock": "Bloc de code",
40
+ "italic": "Italique",
41
+ "link": "Lien",
42
+ "numberList": "Liste numérotée",
43
+ "strikethrough": "Barré",
44
+ "table": "Insérer un tableau",
45
+ "underline": "Souligné"
46
+ }
47
+ }
@@ -72,8 +72,8 @@
72
72
  "addUser": "Aggiungi un messaggio utente",
73
73
  "more": "Ulteriori",
74
74
  "send": "Invia",
75
- "sendWithCmdEnter": "Invia premendo {{meta}} + Invio",
76
- "sendWithEnter": "Invia premendo Invio",
75
+ "sendWithCmdEnter": "Premi <key/> per inviare",
76
+ "sendWithEnter": "Premi <key/> per inviare",
77
77
  "stop": "Ferma",
78
78
  "warp": "A capo"
79
79
  },
@@ -232,6 +232,10 @@
232
232
  "threadMessageCount": "{{messageCount}} messaggi",
233
233
  "title": "Sottoargomento"
234
234
  },
235
+ "toggleWideScreen": {
236
+ "off": "Disattiva modalità schermo ampio",
237
+ "on": "Attiva modalità schermo ampio"
238
+ },
235
239
  "tokenDetails": {
236
240
  "chats": "Chat",
237
241
  "historySummary": "Riepilogo storico",
@@ -0,0 +1,47 @@
1
+ {
2
+ "actions": {
3
+ "expand": {
4
+ "off": "Comprimi",
5
+ "on": "Espandi"
6
+ },
7
+ "typobar": {
8
+ "off": "Nascondi barra degli strumenti di formattazione",
9
+ "on": "Mostra barra degli strumenti di formattazione"
10
+ }
11
+ },
12
+ "file": {
13
+ "error": "Errore: {{message}}",
14
+ "uploading": "Caricamento file in corso..."
15
+ },
16
+ "image": {
17
+ "broken": "Immagine danneggiata"
18
+ },
19
+ "link": {
20
+ "edit": "Modifica link",
21
+ "open": "Apri link",
22
+ "placeholder": "Inserisci URL del link",
23
+ "unlink": "Rimuovi link"
24
+ },
25
+ "table": {
26
+ "delete": "Elimina tabella",
27
+ "deleteColumn": "Elimina colonna",
28
+ "deleteRow": "Elimina riga",
29
+ "insertColumnLeft": "Inserisci {{count}} colonne a sinistra",
30
+ "insertColumnRight": "Inserisci {{count}} colonne a destra",
31
+ "insertRowAbove": "Inserisci {{count}} righe sopra",
32
+ "insertRowBelow": "Inserisci {{count}} righe sotto"
33
+ },
34
+ "typobar": {
35
+ "blockquote": "Citazione",
36
+ "bold": "Grassetto",
37
+ "bulletList": "Elenco puntato",
38
+ "code": "Codice in linea",
39
+ "codeblock": "Blocco di codice",
40
+ "italic": "Corsivo",
41
+ "link": "Collegamento",
42
+ "numberList": "Elenco numerato",
43
+ "strikethrough": "Testo barrato",
44
+ "table": "Inserisci tabella",
45
+ "underline": "Sottolineato"
46
+ }
47
+ }