@lobehub/chat 1.123.4 → 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.
- package/CHANGELOG.md +25 -0
- package/changelog/v1.json +9 -0
- package/locales/ar/chat.json +6 -2
- package/locales/ar/editor.json +47 -0
- package/locales/bg-BG/chat.json +6 -2
- package/locales/bg-BG/editor.json +47 -0
- package/locales/de-DE/chat.json +6 -2
- package/locales/de-DE/editor.json +47 -0
- package/locales/en-US/chat.json +6 -2
- package/locales/en-US/editor.json +47 -0
- package/locales/es-ES/chat.json +6 -2
- package/locales/es-ES/editor.json +47 -0
- package/locales/es-ES/models.json +3 -1
- package/locales/fa-IR/chat.json +6 -2
- package/locales/fa-IR/editor.json +47 -0
- package/locales/fr-FR/chat.json +6 -2
- package/locales/fr-FR/editor.json +47 -0
- package/locales/it-IT/chat.json +6 -2
- package/locales/it-IT/editor.json +47 -0
- package/locales/ja-JP/chat.json +6 -2
- package/locales/ja-JP/editor.json +47 -0
- package/locales/ko-KR/chat.json +6 -2
- package/locales/ko-KR/editor.json +47 -0
- package/locales/ko-KR/models.json +3 -1
- package/locales/nl-NL/chat.json +6 -2
- package/locales/nl-NL/editor.json +47 -0
- package/locales/nl-NL/models.json +3 -1
- package/locales/pl-PL/chat.json +6 -2
- package/locales/pl-PL/editor.json +47 -0
- package/locales/pt-BR/chat.json +6 -2
- package/locales/pt-BR/editor.json +47 -0
- package/locales/ru-RU/chat.json +6 -2
- package/locales/ru-RU/editor.json +47 -0
- package/locales/tr-TR/chat.json +6 -2
- package/locales/tr-TR/editor.json +47 -0
- package/locales/vi-VN/chat.json +6 -2
- package/locales/vi-VN/editor.json +47 -0
- package/locales/zh-CN/chat.json +6 -2
- package/locales/zh-CN/editor.json +47 -0
- package/locales/zh-TW/chat.json +6 -2
- package/locales/zh-TW/editor.json +47 -0
- package/locales/zh-TW/models.json +3 -1
- package/next.config.ts +4 -0
- package/package.json +4 -2
- package/packages/const/src/layoutTokens.ts +1 -0
- package/packages/types/src/index.ts +1 -0
- package/packages/utils/src/index.ts +1 -0
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/{Footer/MessageFromUrl.tsx → MessageFromUrl.tsx} +3 -2
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/index.tsx +129 -28
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/index.tsx +44 -66
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/useSend.ts +141 -0
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/Content.tsx +7 -1
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/WelcomeChatItem/InboxWelcome/QuestionSuggest.tsx +3 -2
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/WelcomeChatItem/OpeningQuestions.tsx +3 -2
- package/src/app/[variants]/(main)/chat/(workspace)/_layout/Desktop/ChatHeader/HeaderAction.tsx +18 -2
- package/src/features/ChatInput/ActionBar/STT/common.tsx +41 -47
- package/src/features/ChatInput/{Topic → ActionBar/SaveTopic}/index.tsx +15 -4
- package/src/features/ChatInput/ActionBar/Typo/index.tsx +22 -0
- package/src/features/ChatInput/ActionBar/components/Action.tsx +4 -0
- package/src/features/ChatInput/ActionBar/config.ts +7 -1
- package/src/features/ChatInput/ActionBar/index.tsx +40 -51
- package/src/features/ChatInput/ChatInputProvider.tsx +54 -0
- package/src/features/ChatInput/Desktop/FilePreview/FileItem/index.tsx +20 -11
- package/src/features/ChatInput/Desktop/FilePreview/FileList.tsx +16 -15
- package/src/features/ChatInput/Desktop/index.tsx +81 -68
- package/src/features/ChatInput/InputEditor/index.tsx +134 -0
- package/src/{app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files → features/ChatInput/Mobile/FilePreview}/FileItem/File.tsx +1 -2
- package/src/features/ChatInput/Mobile/FilePreview/index.tsx +44 -0
- package/src/features/ChatInput/Mobile/index.tsx +72 -0
- package/src/features/ChatInput/SendArea/ExpandButton.tsx +30 -0
- package/src/features/ChatInput/SendArea/SendButton.tsx +29 -0
- package/src/features/ChatInput/SendArea/ShortcutHint.tsx +52 -0
- package/src/features/ChatInput/SendArea/index.tsx +36 -0
- package/src/features/ChatInput/StoreUpdater.tsx +41 -0
- package/src/features/ChatInput/TypoBar/index.tsx +139 -0
- package/src/features/ChatInput/hooks/useChatInputEditor.ts +36 -0
- package/src/features/ChatInput/index.ts +7 -0
- package/src/features/ChatInput/store/action.ts +75 -0
- package/src/features/ChatInput/store/index.ts +23 -0
- package/src/features/ChatInput/store/initialState.ts +54 -0
- package/src/features/ChatInput/store/selectors.ts +5 -0
- package/src/features/Conversation/components/BackBottom/style.ts +1 -1
- package/src/features/Conversation/components/SkeletonList.tsx +10 -3
- package/src/features/Conversation/components/VirtualizedList/index.tsx +53 -44
- package/src/features/Conversation/components/WideScreenContainer/index.tsx +43 -0
- package/src/features/Portal/Thread/Chat/ChatInput/index.tsx +49 -42
- package/src/features/Portal/Thread/Chat/ChatInput/useSend.ts +48 -22
- package/src/features/Portal/Thread/Chat/index.tsx +2 -2
- package/src/features/Portal/Thread/Header/index.tsx +1 -1
- package/src/hooks/useHotkeys/chatScope.ts +5 -3
- package/src/layout/GlobalProvider/Editor.tsx +27 -0
- package/src/layout/GlobalProvider/Locale.tsx +3 -23
- package/src/locales/default/chat.ts +7 -2
- package/src/locales/default/editor.ts +47 -0
- package/src/locales/default/index.ts +2 -0
- package/src/services/aiChat.ts +8 -2
- package/src/store/chat/slices/aiChat/actions/__tests__/generateAIChatV2.test.ts +42 -33
- package/src/store/chat/slices/aiChat/actions/generateAIChatV2.ts +174 -35
- package/src/store/chat/slices/aiChat/initialState.ts +19 -0
- package/src/store/chat/slices/aiChat/selectors.ts +18 -0
- package/src/store/global/action.test.ts +6 -5
- package/src/store/global/actions/__tests__/general.test.ts +6 -6
- package/src/store/global/actions/workspacePane.ts +6 -0
- package/src/store/global/initialState.ts +2 -4
- package/src/store/global/selectors/systemStatus.test.ts +1 -2
- package/src/store/global/selectors/systemStatus.ts +2 -5
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/SendMore.tsx +0 -104
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/ShortcutHint.tsx +0 -40
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/index.tsx +0 -125
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/TextArea.test.tsx +0 -332
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/TextArea.tsx +0 -29
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files/index.tsx +0 -33
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/InputArea/Container.tsx +0 -41
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/InputArea/index.tsx +0 -156
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Send.tsx +0 -33
- package/src/features/ChatInput/Desktop/Header/index.tsx +0 -30
- package/src/features/ChatInput/Desktop/InputArea/index.tsx +0 -143
- package/src/features/ChatInput/Desktop/__tests__/useAutoFocus.test.ts +0 -45
- package/src/features/ChatInput/Desktop/useAutoFocus.ts +0 -13
- package/src/features/ChatInput/useSend.ts +0 -102
- package/src/features/Portal/Thread/Chat/ChatInput/Footer.tsx +0 -90
- package/src/features/Portal/Thread/Chat/ChatInput/TextArea.tsx +0 -30
- package/src/libs/trpc/client/types.ts +0 -18
- /package/src/{app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files → features/ChatInput/Mobile/FilePreview}/FileItem/Image.tsx +0 -0
- /package/src/{app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files → features/ChatInput/Mobile/FilePreview}/FileItem/index.tsx +0 -0
- /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,31 @@
|
|
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
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
5
30
|
### [Version 1.123.4](https://github.com/lobehub/lobe-chat/compare/v1.123.3...v1.123.4)
|
6
31
|
|
7
32
|
<sup>Released on **2025-09-05**</sup>
|
package/changelog/v1.json
CHANGED
package/locales/ar/chat.json
CHANGED
@@ -72,8 +72,8 @@
|
|
72
72
|
"addUser": "إضافة رسالة مستخدم",
|
73
73
|
"more": "المزيد",
|
74
74
|
"send": "إرسال",
|
75
|
-
"sendWithCmdEnter": "اضغط
|
76
|
-
"sendWithEnter": "اضغط
|
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
|
+
}
|
package/locales/bg-BG/chat.json
CHANGED
@@ -72,8 +72,8 @@
|
|
72
72
|
"addUser": "Добави потребителско съобщение",
|
73
73
|
"more": "още",
|
74
74
|
"send": "Изпрати",
|
75
|
-
"sendWithCmdEnter": "
|
76
|
-
"sendWithEnter": "
|
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
|
+
}
|
package/locales/de-DE/chat.json
CHANGED
@@ -72,8 +72,8 @@
|
|
72
72
|
"addUser": "Fügen Sie eine Benutzer-Nachricht hinzu",
|
73
73
|
"more": "Mehr",
|
74
74
|
"send": "Senden",
|
75
|
-
"sendWithCmdEnter": "
|
76
|
-
"sendWithEnter": "
|
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
|
+
}
|
package/locales/en-US/chat.json
CHANGED
@@ -72,8 +72,8 @@
|
|
72
72
|
"addUser": "Add a user message",
|
73
73
|
"more": "more",
|
74
74
|
"send": "Send",
|
75
|
-
"sendWithCmdEnter": "Press
|
76
|
-
"sendWithEnter": "Press
|
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
|
+
}
|
package/locales/es-ES/chat.json
CHANGED
@@ -72,8 +72,8 @@
|
|
72
72
|
"addUser": "Agregar un mensaje de usuario",
|
73
73
|
"more": "más",
|
74
74
|
"send": "Enviar",
|
75
|
-
"sendWithCmdEnter": "
|
76
|
-
"sendWithEnter": "
|
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":
|
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
|
},
|
package/locales/fa-IR/chat.json
CHANGED
@@ -72,8 +72,8 @@
|
|
72
72
|
"addUser": "افزودن یک پیام کاربر",
|
73
73
|
"more": "بیشتر",
|
74
74
|
"send": "ارسال",
|
75
|
-
"sendWithCmdEnter": "
|
76
|
-
"sendWithEnter": "
|
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
|
+
}
|
package/locales/fr-FR/chat.json
CHANGED
@@ -72,8 +72,8 @@
|
|
72
72
|
"addUser": "Ajouter un message utilisateur",
|
73
73
|
"more": "Plus",
|
74
74
|
"send": "Envoyer",
|
75
|
-
"sendWithCmdEnter": "
|
76
|
-
"sendWithEnter": "
|
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
|
+
}
|
package/locales/it-IT/chat.json
CHANGED
@@ -72,8 +72,8 @@
|
|
72
72
|
"addUser": "Aggiungi un messaggio utente",
|
73
73
|
"more": "Ulteriori",
|
74
74
|
"send": "Invia",
|
75
|
-
"sendWithCmdEnter": "
|
76
|
-
"sendWithEnter": "
|
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
|
+
}
|
package/locales/ja-JP/chat.json
CHANGED
@@ -72,8 +72,8 @@
|
|
72
72
|
"addUser": "ユーザーメッセージを追加",
|
73
73
|
"more": "もっと",
|
74
74
|
"send": "送信",
|
75
|
-
"sendWithCmdEnter": "
|
76
|
-
"sendWithEnter": "
|
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": "履歴の要約",
|