@lobehub/lobehub 2.0.0-next.64 → 2.0.0-next.66
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/.github/workflows/claude-translator.yml +1 -0
- package/CHANGELOG.md +50 -0
- package/changelog/v1.json +18 -0
- package/locales/ar/chat.json +3 -0
- package/locales/ar/plugin.json +5 -0
- package/locales/bg-BG/chat.json +3 -0
- package/locales/bg-BG/plugin.json +5 -0
- package/locales/de-DE/chat.json +3 -0
- package/locales/de-DE/plugin.json +5 -0
- package/locales/en-US/chat.json +3 -0
- package/locales/es-ES/chat.json +3 -0
- package/locales/es-ES/plugin.json +5 -0
- package/locales/fa-IR/chat.json +3 -0
- package/locales/fa-IR/plugin.json +5 -0
- package/locales/fr-FR/chat.json +3 -0
- package/locales/fr-FR/plugin.json +5 -0
- package/locales/it-IT/chat.json +3 -0
- package/locales/it-IT/plugin.json +5 -0
- package/locales/ja-JP/chat.json +3 -0
- package/locales/ja-JP/plugin.json +5 -0
- package/locales/ko-KR/chat.json +3 -0
- package/locales/ko-KR/plugin.json +5 -0
- package/locales/nl-NL/chat.json +3 -0
- package/locales/nl-NL/plugin.json +5 -0
- package/locales/pl-PL/chat.json +3 -0
- package/locales/pl-PL/plugin.json +5 -0
- package/locales/pt-BR/chat.json +3 -0
- package/locales/pt-BR/plugin.json +5 -0
- package/locales/ru-RU/chat.json +3 -0
- package/locales/ru-RU/plugin.json +5 -0
- package/locales/tr-TR/chat.json +3 -0
- package/locales/tr-TR/plugin.json +5 -0
- package/locales/vi-VN/chat.json +3 -0
- package/locales/vi-VN/plugin.json +5 -0
- package/locales/zh-CN/chat.json +3 -0
- package/locales/zh-CN/plugin.json +2 -2
- package/locales/zh-TW/chat.json +3 -0
- package/locales/zh-TW/plugin.json +5 -0
- package/package.json +5 -5
- package/packages/conversation-flow/src/__tests__/fixtures/index.ts +4 -8
- package/packages/conversation-flow/src/__tests__/fixtures/inputs/{assistant-with-tools.json → assistantGroup/assistant-with-tools.json} +2 -1
- package/packages/conversation-flow/src/__tests__/fixtures/inputs/assistantGroup/index.ts +8 -0
- package/packages/conversation-flow/src/__tests__/fixtures/inputs/index.ts +2 -4
- package/packages/conversation-flow/src/__tests__/fixtures/outputs/{assistant-with-tools.json → assistantGroup/assistant-with-tools.json} +8 -8
- package/packages/conversation-flow/src/__tests__/fixtures/outputs/assistantGroup/index.ts +8 -0
- package/packages/conversation-flow/src/__tests__/parse.test.ts +6 -6
- package/packages/conversation-flow/src/parse.ts +45 -1
- package/packages/conversation-flow/src/transformation/FlatListBuilder.ts +64 -0
- package/packages/database/package.json +2 -2
- package/packages/obervability-otel/package.json +1 -1
- package/packages/types/src/message/common/metadata.ts +8 -1
- package/packages/types/src/message/ui/chat.ts +1 -0
- package/src/app/(backend)/market/agent/[[...segments]]/route.ts +1 -1
- package/src/app/(backend)/market/oidc/[[...segments]]/route.ts +1 -1
- package/src/app/market-auth-callback/layout.tsx +27 -3
- package/src/features/ChatInput/ActionBar/Token/TokenTag.tsx +2 -2
- package/src/features/Conversation/Messages/Assistant/Actions/index.tsx +15 -1
- package/src/features/Conversation/Messages/Assistant/CollapsedMessage.tsx +37 -0
- package/src/features/Conversation/Messages/Assistant/MessageContent.tsx +16 -9
- package/src/features/Conversation/Messages/Group/Actions/WithContentId.tsx +28 -6
- package/src/features/Conversation/Messages/Group/CollapsedMessage.tsx +37 -0
- package/src/features/Conversation/Messages/Group/{GroupChildren.tsx → Group.tsx} +18 -4
- package/src/features/Conversation/Messages/Group/index.tsx +4 -6
- package/src/features/Conversation/hooks/useChatListActionsBar.tsx +14 -0
- package/src/layout/AuthProvider/MarketAuth/MarketAuthProvider.tsx +1 -1
- package/src/libs/mcp/__tests__/index.test.ts +6 -6
- package/src/locales/default/chat.ts +3 -0
- package/src/store/chat/slices/message/actions/publicApi.ts +17 -0
- package/src/store/chat/slices/message/selectors/displayMessage.ts +1 -1
- package/src/store/chat/slices/message/selectors/messageState.ts +7 -0
- package/src/store/chat/slices/translate/action.test.ts +26 -32
- package/src/store/chat/slices/translate/action.ts +3 -3
- /package/packages/conversation-flow/src/__tests__/fixtures/inputs/{complex-scenario.json → assistantGroup/tools-with-branches.json} +0 -0
- /package/packages/conversation-flow/src/__tests__/fixtures/outputs/{complex-scenario.json → assistantGroup/tools-with-branches.json} +0 -0
- /package/src/features/Conversation/Messages/Group/{GroupContext.tsx → GroupContext.ts} +0 -0
|
@@ -21,6 +21,7 @@ jobs:
|
|
|
21
21
|
(github.event_name == 'pull_request_review' && github.event.sender.type != 'Bot') ||
|
|
22
22
|
(github.event_name == 'pull_request_review_comment' && github.event.sender.type != 'Bot')
|
|
23
23
|
runs-on: ubuntu-latest
|
|
24
|
+
timeout-minutes: 5
|
|
24
25
|
permissions:
|
|
25
26
|
contents: read
|
|
26
27
|
# update issues/comments
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,56 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
## [Version 2.0.0-next.66](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.65...v2.0.0-next.66)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2025-11-16**</sup>
|
|
8
|
+
|
|
9
|
+
#### ✨ Features
|
|
10
|
+
|
|
11
|
+
- **misc**: Support to collapse message.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### What's improved
|
|
19
|
+
|
|
20
|
+
- **misc**: Support to collapse message, closes [#10234](https://github.com/lobehub/lobe-chat/issues/10234) ([4cd6347](https://github.com/lobehub/lobe-chat/commit/4cd6347))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
## [Version 2.0.0-next.65](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.64...v2.0.0-next.65)
|
|
31
|
+
|
|
32
|
+
<sup>Released on **2025-11-16**</sup>
|
|
33
|
+
|
|
34
|
+
#### 💄 Styles
|
|
35
|
+
|
|
36
|
+
- **misc**: Update i18n.
|
|
37
|
+
|
|
38
|
+
<br/>
|
|
39
|
+
|
|
40
|
+
<details>
|
|
41
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
42
|
+
|
|
43
|
+
#### Styles
|
|
44
|
+
|
|
45
|
+
- **misc**: Update i18n, closes [#10235](https://github.com/lobehub/lobe-chat/issues/10235) ([a52c9e5](https://github.com/lobehub/lobe-chat/commit/a52c9e5))
|
|
46
|
+
|
|
47
|
+
</details>
|
|
48
|
+
|
|
49
|
+
<div align="right">
|
|
50
|
+
|
|
51
|
+
[](#readme-top)
|
|
52
|
+
|
|
53
|
+
</div>
|
|
54
|
+
|
|
5
55
|
## [Version 2.0.0-next.64](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.63...v2.0.0-next.64)
|
|
6
56
|
|
|
7
57
|
<sup>Released on **2025-11-15**</sup>
|
package/changelog/v1.json
CHANGED
|
@@ -1,4 +1,22 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"children": {
|
|
4
|
+
"features": [
|
|
5
|
+
"Support to collapse message."
|
|
6
|
+
]
|
|
7
|
+
},
|
|
8
|
+
"date": "2025-11-16",
|
|
9
|
+
"version": "2.0.0-next.66"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"children": {
|
|
13
|
+
"improvements": [
|
|
14
|
+
"Update i18n."
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"date": "2025-11-16",
|
|
18
|
+
"version": "2.0.0-next.65"
|
|
19
|
+
},
|
|
2
20
|
{
|
|
3
21
|
"children": {
|
|
4
22
|
"improvements": [
|
package/locales/ar/chat.json
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"availableAgents": "المساعدون المتاحون",
|
|
18
18
|
"backToBottom": "العودة إلى الأسفل",
|
|
19
19
|
"chatList": {
|
|
20
|
+
"expandMessage": "عرض الرسائل",
|
|
20
21
|
"longMessageDetail": "عرض التفاصيل"
|
|
21
22
|
},
|
|
22
23
|
"clearCurrentMessages": "مسح رسائل الجلسة الحالية",
|
|
@@ -173,9 +174,11 @@
|
|
|
173
174
|
"title": "الإشارة إلى الأعضاء"
|
|
174
175
|
},
|
|
175
176
|
"messageAction": {
|
|
177
|
+
"collapse": "إخفاء الرسائل",
|
|
176
178
|
"continueGeneration": "متابعة التوليد",
|
|
177
179
|
"delAndRegenerate": "حذف وإعادة الإنشاء",
|
|
178
180
|
"deleteDisabledByThreads": "يوجد موضوعات فرعية، لا يمكن الحذف",
|
|
181
|
+
"expand": "عرض الرسائل",
|
|
179
182
|
"regenerate": "إعادة الإنشاء"
|
|
180
183
|
},
|
|
181
184
|
"messages": {
|
package/locales/ar/plugin.json
CHANGED
|
@@ -253,6 +253,11 @@
|
|
|
253
253
|
},
|
|
254
254
|
"localSystem": {
|
|
255
255
|
"apiName": {
|
|
256
|
+
"editLocalFile": "تحرير الملف",
|
|
257
|
+
"getCommandOutput": "الحصول على مخرجات الأوامر",
|
|
258
|
+
"globLocalFiles": "البحث عن الملفات المطابقة",
|
|
259
|
+
"grepContent": "البحث في المحتوى",
|
|
260
|
+
"killCommand": "إيقاف تنفيذ الأمر",
|
|
256
261
|
"listLocalFiles": "عرض قائمة الملفات",
|
|
257
262
|
"moveLocalFiles": "نقل الملفات",
|
|
258
263
|
"readLocalFile": "قراءة محتوى الملف",
|
package/locales/bg-BG/chat.json
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"availableAgents": "Налични асистенти",
|
|
18
18
|
"backToBottom": "Върни се в началото",
|
|
19
19
|
"chatList": {
|
|
20
|
+
"expandMessage": "Разгъни съобщението",
|
|
20
21
|
"longMessageDetail": "Вижте детайлите"
|
|
21
22
|
},
|
|
22
23
|
"clearCurrentMessages": "Изчисти съобщенията от текущата сесия",
|
|
@@ -173,9 +174,11 @@
|
|
|
173
174
|
"title": "Споменаване на членове"
|
|
174
175
|
},
|
|
175
176
|
"messageAction": {
|
|
177
|
+
"collapse": "Скрий съобщението",
|
|
176
178
|
"continueGeneration": "Продължи генерирането",
|
|
177
179
|
"delAndRegenerate": "Изтрий и прегенерирай",
|
|
178
180
|
"deleteDisabledByThreads": "Съществуват подтеми, не можете да изтриете.",
|
|
181
|
+
"expand": "Разгъни съобщението",
|
|
179
182
|
"regenerate": "Прегенерирай"
|
|
180
183
|
},
|
|
181
184
|
"messages": {
|
|
@@ -253,6 +253,11 @@
|
|
|
253
253
|
},
|
|
254
254
|
"localSystem": {
|
|
255
255
|
"apiName": {
|
|
256
|
+
"editLocalFile": "Редактиране на файл",
|
|
257
|
+
"getCommandOutput": "Получаване на изход от командата",
|
|
258
|
+
"globLocalFiles": "Търсене на съвпадащи файлове",
|
|
259
|
+
"grepContent": "Търсене на съдържание",
|
|
260
|
+
"killCommand": "Прекратяване на изпълнението на командата",
|
|
256
261
|
"listLocalFiles": "Преглед на списък с файлове",
|
|
257
262
|
"moveLocalFiles": "Преместване на файлове",
|
|
258
263
|
"readLocalFile": "Четене на съдържание на файл",
|
package/locales/de-DE/chat.json
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"availableAgents": "Verfügbare Assistenten",
|
|
18
18
|
"backToBottom": "Zurück zum Ende",
|
|
19
19
|
"chatList": {
|
|
20
|
+
"expandMessage": "Nachricht anzeigen",
|
|
20
21
|
"longMessageDetail": "Details anzeigen"
|
|
21
22
|
},
|
|
22
23
|
"clearCurrentMessages": "Aktuelle Nachrichten löschen",
|
|
@@ -173,9 +174,11 @@
|
|
|
173
174
|
"title": "Mitglieder erwähnen"
|
|
174
175
|
},
|
|
175
176
|
"messageAction": {
|
|
177
|
+
"collapse": "Nachricht ausblenden",
|
|
176
178
|
"continueGeneration": "Generierung fortsetzen",
|
|
177
179
|
"delAndRegenerate": "Löschen und neu generieren",
|
|
178
180
|
"deleteDisabledByThreads": "Es gibt Unterthemen, die Löschung ist nicht möglich.",
|
|
181
|
+
"expand": "Nachricht anzeigen",
|
|
179
182
|
"regenerate": "Neu generieren"
|
|
180
183
|
},
|
|
181
184
|
"messages": {
|
|
@@ -253,6 +253,11 @@
|
|
|
253
253
|
},
|
|
254
254
|
"localSystem": {
|
|
255
255
|
"apiName": {
|
|
256
|
+
"editLocalFile": "Datei bearbeiten",
|
|
257
|
+
"getCommandOutput": "Codeausgabe abrufen",
|
|
258
|
+
"globLocalFiles": "Dateien durchsuchen",
|
|
259
|
+
"grepContent": "Inhalt durchsuchen",
|
|
260
|
+
"killCommand": "Codeausführung beenden",
|
|
256
261
|
"listLocalFiles": "Dateiliste anzeigen",
|
|
257
262
|
"moveLocalFiles": "Dateien verschieben",
|
|
258
263
|
"readLocalFile": "Dateiinhalt lesen",
|
package/locales/en-US/chat.json
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"availableAgents": "Available assistants",
|
|
18
18
|
"backToBottom": "Back to bottom",
|
|
19
19
|
"chatList": {
|
|
20
|
+
"expandMessage": "Expand Message",
|
|
20
21
|
"longMessageDetail": "View Details"
|
|
21
22
|
},
|
|
22
23
|
"clearCurrentMessages": "Clear current session messages",
|
|
@@ -173,9 +174,11 @@
|
|
|
173
174
|
"title": "Mention Members"
|
|
174
175
|
},
|
|
175
176
|
"messageAction": {
|
|
177
|
+
"collapse": "Collapse Message",
|
|
176
178
|
"continueGeneration": "Continue Generating",
|
|
177
179
|
"delAndRegenerate": "Delete and Regenerate",
|
|
178
180
|
"deleteDisabledByThreads": "There are subtopics, deletion is not allowed",
|
|
181
|
+
"expand": "Expand Message",
|
|
179
182
|
"regenerate": "Regenerate"
|
|
180
183
|
},
|
|
181
184
|
"messages": {
|
package/locales/es-ES/chat.json
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"availableAgents": "Agentes disponibles",
|
|
18
18
|
"backToBottom": "Volver al fondo",
|
|
19
19
|
"chatList": {
|
|
20
|
+
"expandMessage": "Expandir mensaje",
|
|
20
21
|
"longMessageDetail": "Ver detalles"
|
|
21
22
|
},
|
|
22
23
|
"clearCurrentMessages": "Borrar mensajes actuales",
|
|
@@ -173,9 +174,11 @@
|
|
|
173
174
|
"title": "Mencionar miembros"
|
|
174
175
|
},
|
|
175
176
|
"messageAction": {
|
|
177
|
+
"collapse": "Ocultar mensaje",
|
|
176
178
|
"continueGeneration": "Continuar generando",
|
|
177
179
|
"delAndRegenerate": "Eliminar y Regenerar",
|
|
178
180
|
"deleteDisabledByThreads": "Existen subtemas, no se puede eliminar",
|
|
181
|
+
"expand": "Expandir mensaje",
|
|
179
182
|
"regenerate": "Regenerar"
|
|
180
183
|
},
|
|
181
184
|
"messages": {
|
|
@@ -253,6 +253,11 @@
|
|
|
253
253
|
},
|
|
254
254
|
"localSystem": {
|
|
255
255
|
"apiName": {
|
|
256
|
+
"editLocalFile": "Editar archivo",
|
|
257
|
+
"getCommandOutput": "Obtener salida del código",
|
|
258
|
+
"globLocalFiles": "Buscar archivos coincidentes",
|
|
259
|
+
"grepContent": "Buscar contenido",
|
|
260
|
+
"killCommand": "Detener ejecución del código",
|
|
256
261
|
"listLocalFiles": "Ver lista de archivos",
|
|
257
262
|
"moveLocalFiles": "Mover archivos",
|
|
258
263
|
"readLocalFile": "Leer contenido del archivo",
|
package/locales/fa-IR/chat.json
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"availableAgents": "دستیاران در دسترس",
|
|
18
18
|
"backToBottom": "بازگشت به پایین",
|
|
19
19
|
"chatList": {
|
|
20
|
+
"expandMessage": "گسترش پیام",
|
|
20
21
|
"longMessageDetail": "مشاهده جزئیات"
|
|
21
22
|
},
|
|
22
23
|
"clearCurrentMessages": "پاک کردن پیامهای جلسه فعلی",
|
|
@@ -173,9 +174,11 @@
|
|
|
173
174
|
"title": "ذکر اعضا"
|
|
174
175
|
},
|
|
175
176
|
"messageAction": {
|
|
177
|
+
"collapse": "بستن پیام",
|
|
176
178
|
"continueGeneration": "ادامه تولید",
|
|
177
179
|
"delAndRegenerate": "حذف و بازتولید",
|
|
178
180
|
"deleteDisabledByThreads": "زیرموضوع وجود دارد، نمیتوان حذف کرد",
|
|
181
|
+
"expand": "گسترش پیام",
|
|
179
182
|
"regenerate": "بازتولید"
|
|
180
183
|
},
|
|
181
184
|
"messages": {
|
|
@@ -253,6 +253,11 @@
|
|
|
253
253
|
},
|
|
254
254
|
"localSystem": {
|
|
255
255
|
"apiName": {
|
|
256
|
+
"editLocalFile": "ویرایش فایل",
|
|
257
|
+
"getCommandOutput": "دریافت خروجی کد",
|
|
258
|
+
"globLocalFiles": "جستجوی فایلها با الگو",
|
|
259
|
+
"grepContent": "جستجوی محتوا",
|
|
260
|
+
"killCommand": "متوقف کردن اجرای کد",
|
|
256
261
|
"listLocalFiles": "مشاهده لیست فایلها",
|
|
257
262
|
"moveLocalFiles": "جابجایی فایلها",
|
|
258
263
|
"readLocalFile": "خواندن محتوای فایل",
|
package/locales/fr-FR/chat.json
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"availableAgents": "Assistants disponibles",
|
|
18
18
|
"backToBottom": "Retour en bas",
|
|
19
19
|
"chatList": {
|
|
20
|
+
"expandMessage": "Développer le message",
|
|
20
21
|
"longMessageDetail": "Voir les détails"
|
|
21
22
|
},
|
|
22
23
|
"clearCurrentMessages": "Effacer les messages actuels",
|
|
@@ -173,9 +174,11 @@
|
|
|
173
174
|
"title": "Mentionner un membre"
|
|
174
175
|
},
|
|
175
176
|
"messageAction": {
|
|
177
|
+
"collapse": "Réduire le message",
|
|
176
178
|
"continueGeneration": "Continuer la génération",
|
|
177
179
|
"delAndRegenerate": "Supprimer et régénérer",
|
|
178
180
|
"deleteDisabledByThreads": "Il existe des sous-sujets, la suppression n'est pas possible.",
|
|
181
|
+
"expand": "Développer le message",
|
|
179
182
|
"regenerate": "Régénérer"
|
|
180
183
|
},
|
|
181
184
|
"messages": {
|
|
@@ -253,6 +253,11 @@
|
|
|
253
253
|
},
|
|
254
254
|
"localSystem": {
|
|
255
255
|
"apiName": {
|
|
256
|
+
"editLocalFile": "Modifier le fichier",
|
|
257
|
+
"getCommandOutput": "Obtenir la sortie du code",
|
|
258
|
+
"globLocalFiles": "Rechercher des fichiers correspondants",
|
|
259
|
+
"grepContent": "Rechercher dans le contenu",
|
|
260
|
+
"killCommand": "Arrêter l'exécution du code",
|
|
256
261
|
"listLocalFiles": "Voir la liste des fichiers",
|
|
257
262
|
"moveLocalFiles": "Déplacer les fichiers",
|
|
258
263
|
"readLocalFile": "Lire le contenu du fichier",
|
package/locales/it-IT/chat.json
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"availableAgents": "Assistenti disponibili",
|
|
18
18
|
"backToBottom": "Torna in fondo",
|
|
19
19
|
"chatList": {
|
|
20
|
+
"expandMessage": "Espandi messaggio",
|
|
20
21
|
"longMessageDetail": "Visualizza dettagli"
|
|
21
22
|
},
|
|
22
23
|
"clearCurrentMessages": "Cancella messaggi attuali",
|
|
@@ -173,9 +174,11 @@
|
|
|
173
174
|
"title": "Menziona membri"
|
|
174
175
|
},
|
|
175
176
|
"messageAction": {
|
|
177
|
+
"collapse": "Comprimi messaggio",
|
|
176
178
|
"continueGeneration": "Continua a generare",
|
|
177
179
|
"delAndRegenerate": "Elimina e rigenera",
|
|
178
180
|
"deleteDisabledByThreads": "Esistono sottoargomenti, non è possibile eliminare",
|
|
181
|
+
"expand": "Espandi messaggio",
|
|
179
182
|
"regenerate": "Rigenera"
|
|
180
183
|
},
|
|
181
184
|
"messages": {
|
|
@@ -253,6 +253,11 @@
|
|
|
253
253
|
},
|
|
254
254
|
"localSystem": {
|
|
255
255
|
"apiName": {
|
|
256
|
+
"editLocalFile": "Modifica file",
|
|
257
|
+
"getCommandOutput": "Ottieni output del codice",
|
|
258
|
+
"globLocalFiles": "Cerca file corrispondenti",
|
|
259
|
+
"grepContent": "Cerca contenuto",
|
|
260
|
+
"killCommand": "Termina esecuzione del codice",
|
|
256
261
|
"listLocalFiles": "Visualizza lista file",
|
|
257
262
|
"moveLocalFiles": "Sposta file",
|
|
258
263
|
"readLocalFile": "Leggi contenuto file",
|
package/locales/ja-JP/chat.json
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"availableAgents": "利用可能なアシスタント",
|
|
18
18
|
"backToBottom": "現在に戻る",
|
|
19
19
|
"chatList": {
|
|
20
|
+
"expandMessage": "メッセージを展開",
|
|
20
21
|
"longMessageDetail": "詳細を見る"
|
|
21
22
|
},
|
|
22
23
|
"clearCurrentMessages": "現在の会話をクリア",
|
|
@@ -173,9 +174,11 @@
|
|
|
173
174
|
"title": "メンバーをメンション"
|
|
174
175
|
},
|
|
175
176
|
"messageAction": {
|
|
177
|
+
"collapse": "メッセージを折りたたむ",
|
|
176
178
|
"continueGeneration": "生成を続ける",
|
|
177
179
|
"delAndRegenerate": "削除して再生成",
|
|
178
180
|
"deleteDisabledByThreads": "サブトピックが存在するため、削除できません。",
|
|
181
|
+
"expand": "メッセージを展開",
|
|
179
182
|
"regenerate": "再生成"
|
|
180
183
|
},
|
|
181
184
|
"messages": {
|
|
@@ -253,6 +253,11 @@
|
|
|
253
253
|
},
|
|
254
254
|
"localSystem": {
|
|
255
255
|
"apiName": {
|
|
256
|
+
"editLocalFile": "ファイルを編集",
|
|
257
|
+
"getCommandOutput": "コード出力を取得",
|
|
258
|
+
"globLocalFiles": "ファイルを検索",
|
|
259
|
+
"grepContent": "内容を検索",
|
|
260
|
+
"killCommand": "コードの実行を停止",
|
|
256
261
|
"listLocalFiles": "ファイル一覧を表示",
|
|
257
262
|
"moveLocalFiles": "ファイルを移動",
|
|
258
263
|
"readLocalFile": "ファイル内容を読み込み",
|
package/locales/ko-KR/chat.json
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"availableAgents": "사용 가능한 도우미",
|
|
18
18
|
"backToBottom": "하단으로 이동",
|
|
19
19
|
"chatList": {
|
|
20
|
+
"expandMessage": "메시지 펼치기",
|
|
20
21
|
"longMessageDetail": "자세히 보기"
|
|
21
22
|
},
|
|
22
23
|
"clearCurrentMessages": "현재 대화 지우기",
|
|
@@ -173,9 +174,11 @@
|
|
|
173
174
|
"title": "멤버 언급"
|
|
174
175
|
},
|
|
175
176
|
"messageAction": {
|
|
177
|
+
"collapse": "메시지 접기",
|
|
176
178
|
"continueGeneration": "계속 생성하기",
|
|
177
179
|
"delAndRegenerate": "삭제하고 다시 생성",
|
|
178
180
|
"deleteDisabledByThreads": "하위 주제가 존재하여 삭제할 수 없습니다.",
|
|
181
|
+
"expand": "메시지 펼치기",
|
|
179
182
|
"regenerate": "다시 생성"
|
|
180
183
|
},
|
|
181
184
|
"messages": {
|
|
@@ -253,6 +253,11 @@
|
|
|
253
253
|
},
|
|
254
254
|
"localSystem": {
|
|
255
255
|
"apiName": {
|
|
256
|
+
"editLocalFile": "파일 편집",
|
|
257
|
+
"getCommandOutput": "코드 출력 가져오기",
|
|
258
|
+
"globLocalFiles": "파일 검색",
|
|
259
|
+
"grepContent": "내용 검색",
|
|
260
|
+
"killCommand": "코드 실행 중지",
|
|
256
261
|
"listLocalFiles": "파일 목록 보기",
|
|
257
262
|
"moveLocalFiles": "파일 이동",
|
|
258
263
|
"readLocalFile": "파일 내용 읽기",
|
package/locales/nl-NL/chat.json
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"availableAgents": "Beschikbare assistenten",
|
|
18
18
|
"backToBottom": "Terug naar onderen",
|
|
19
19
|
"chatList": {
|
|
20
|
+
"expandMessage": "Bericht uitvouwen",
|
|
20
21
|
"longMessageDetail": "Bekijk details"
|
|
21
22
|
},
|
|
22
23
|
"clearCurrentMessages": "Huidige berichten wissen",
|
|
@@ -173,9 +174,11 @@
|
|
|
173
174
|
"title": "Leden vermelden"
|
|
174
175
|
},
|
|
175
176
|
"messageAction": {
|
|
177
|
+
"collapse": "Bericht samenvouwen",
|
|
176
178
|
"continueGeneration": "Doorgaan met genereren",
|
|
177
179
|
"delAndRegenerate": "Verwijderen en opnieuw genereren",
|
|
178
180
|
"deleteDisabledByThreads": "Er zijn subonderwerpen, verwijderen is niet mogelijk.",
|
|
181
|
+
"expand": "Bericht uitvouwen",
|
|
179
182
|
"regenerate": "Opnieuw genereren"
|
|
180
183
|
},
|
|
181
184
|
"messages": {
|
|
@@ -253,6 +253,11 @@
|
|
|
253
253
|
},
|
|
254
254
|
"localSystem": {
|
|
255
255
|
"apiName": {
|
|
256
|
+
"editLocalFile": "Bestand bewerken",
|
|
257
|
+
"getCommandOutput": "Code-uitvoer ophalen",
|
|
258
|
+
"globLocalFiles": "Bestanden zoeken",
|
|
259
|
+
"grepContent": "Inhoud doorzoeken",
|
|
260
|
+
"killCommand": "Code-uitvoering beëindigen",
|
|
256
261
|
"listLocalFiles": "Bestandslijst bekijken",
|
|
257
262
|
"moveLocalFiles": "Bestanden verplaatsen",
|
|
258
263
|
"readLocalFile": "Bestandsinhoud lezen",
|
package/locales/pl-PL/chat.json
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"availableAgents": "Dostępni asystenci",
|
|
18
18
|
"backToBottom": "Przewiń na dół",
|
|
19
19
|
"chatList": {
|
|
20
|
+
"expandMessage": "Rozwiń wiadomość",
|
|
20
21
|
"longMessageDetail": "Zobacz szczegóły"
|
|
21
22
|
},
|
|
22
23
|
"clearCurrentMessages": "Wyczyść bieżącą rozmowę",
|
|
@@ -173,9 +174,11 @@
|
|
|
173
174
|
"title": "Wzmianka o członkach"
|
|
174
175
|
},
|
|
175
176
|
"messageAction": {
|
|
177
|
+
"collapse": "Zwiń wiadomość",
|
|
176
178
|
"continueGeneration": "Kontynuuj generowanie",
|
|
177
179
|
"delAndRegenerate": "Usuń i wygeneruj ponownie",
|
|
178
180
|
"deleteDisabledByThreads": "Istnieją podwątki, nie można usunąć",
|
|
181
|
+
"expand": "Rozwiń wiadomość",
|
|
179
182
|
"regenerate": "Wygeneruj ponownie"
|
|
180
183
|
},
|
|
181
184
|
"messages": {
|
|
@@ -253,6 +253,11 @@
|
|
|
253
253
|
},
|
|
254
254
|
"localSystem": {
|
|
255
255
|
"apiName": {
|
|
256
|
+
"editLocalFile": "Edytuj plik",
|
|
257
|
+
"getCommandOutput": "Pobierz wynik polecenia",
|
|
258
|
+
"globLocalFiles": "Wyszukaj pasujące pliki",
|
|
259
|
+
"grepContent": "Przeszukaj zawartość",
|
|
260
|
+
"killCommand": "Zatrzymaj wykonywanie polecenia",
|
|
256
261
|
"listLocalFiles": "Wyświetl listę plików",
|
|
257
262
|
"moveLocalFiles": "Przenieś pliki",
|
|
258
263
|
"readLocalFile": "Odczytaj zawartość pliku",
|
package/locales/pt-BR/chat.json
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"availableAgents": "Assistentes disponíveis",
|
|
18
18
|
"backToBottom": "Voltar para o início",
|
|
19
19
|
"chatList": {
|
|
20
|
+
"expandMessage": "Expandir mensagem",
|
|
20
21
|
"longMessageDetail": "Ver detalhes"
|
|
21
22
|
},
|
|
22
23
|
"clearCurrentMessages": "Limpar mensagens atuais",
|
|
@@ -173,9 +174,11 @@
|
|
|
173
174
|
"title": "Mencionar membros"
|
|
174
175
|
},
|
|
175
176
|
"messageAction": {
|
|
177
|
+
"collapse": "Recolher mensagem",
|
|
176
178
|
"continueGeneration": "Continuar gerando",
|
|
177
179
|
"delAndRegenerate": "Excluir e Regenerar",
|
|
178
180
|
"deleteDisabledByThreads": "Existem subtópicos, não é possível deletar.",
|
|
181
|
+
"expand": "Expandir mensagem",
|
|
179
182
|
"regenerate": "Regenerar"
|
|
180
183
|
},
|
|
181
184
|
"messages": {
|
|
@@ -253,6 +253,11 @@
|
|
|
253
253
|
},
|
|
254
254
|
"localSystem": {
|
|
255
255
|
"apiName": {
|
|
256
|
+
"editLocalFile": "Editar arquivo",
|
|
257
|
+
"getCommandOutput": "Obter saída do código",
|
|
258
|
+
"globLocalFiles": "Buscar arquivos correspondentes",
|
|
259
|
+
"grepContent": "Procurar conteúdo",
|
|
260
|
+
"killCommand": "Encerrar execução do código",
|
|
256
261
|
"listLocalFiles": "Ver lista de arquivos",
|
|
257
262
|
"moveLocalFiles": "Mover arquivos",
|
|
258
263
|
"readLocalFile": "Ler conteúdo do arquivo",
|
package/locales/ru-RU/chat.json
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"availableAgents": "Доступные помощники",
|
|
18
18
|
"backToBottom": "Вернуться вниз",
|
|
19
19
|
"chatList": {
|
|
20
|
+
"expandMessage": "Развернуть сообщение",
|
|
20
21
|
"longMessageDetail": "Посмотреть детали"
|
|
21
22
|
},
|
|
22
23
|
"clearCurrentMessages": "Очистить текущий разговор",
|
|
@@ -173,9 +174,11 @@
|
|
|
173
174
|
"title": "Упомянуть участника"
|
|
174
175
|
},
|
|
175
176
|
"messageAction": {
|
|
177
|
+
"collapse": "Свернуть сообщение",
|
|
176
178
|
"continueGeneration": "Продолжить генерацию",
|
|
177
179
|
"delAndRegenerate": "Удалить и пересоздать",
|
|
178
180
|
"deleteDisabledByThreads": "Существуют подтемы, удаление невозможно",
|
|
181
|
+
"expand": "Развернуть сообщение",
|
|
179
182
|
"regenerate": "Пересоздать"
|
|
180
183
|
},
|
|
181
184
|
"messages": {
|
|
@@ -253,6 +253,11 @@
|
|
|
253
253
|
},
|
|
254
254
|
"localSystem": {
|
|
255
255
|
"apiName": {
|
|
256
|
+
"editLocalFile": "Редактировать файл",
|
|
257
|
+
"getCommandOutput": "Получить вывод команды",
|
|
258
|
+
"globLocalFiles": "Поиск файлов по шаблону",
|
|
259
|
+
"grepContent": "Поиск по содержимому",
|
|
260
|
+
"killCommand": "Прервать выполнение команды",
|
|
256
261
|
"listLocalFiles": "Просмотр списка файлов",
|
|
257
262
|
"moveLocalFiles": "Перемещение файлов",
|
|
258
263
|
"readLocalFile": "Чтение содержимого файла",
|
package/locales/tr-TR/chat.json
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"availableAgents": "Kullanılabilir asistanlar",
|
|
18
18
|
"backToBottom": "En alta git",
|
|
19
19
|
"chatList": {
|
|
20
|
+
"expandMessage": "Mesajı Genişlet",
|
|
20
21
|
"longMessageDetail": "Detayları görüntüle"
|
|
21
22
|
},
|
|
22
23
|
"clearCurrentMessages": "Mevcut oturum mesajlarını temizle",
|
|
@@ -173,9 +174,11 @@
|
|
|
173
174
|
"title": "Üyeleri Etiketle"
|
|
174
175
|
},
|
|
175
176
|
"messageAction": {
|
|
177
|
+
"collapse": "Mesajı Daralt",
|
|
176
178
|
"continueGeneration": "Oluşturmaya devam et",
|
|
177
179
|
"delAndRegenerate": "Sil ve Yeniden Oluştur",
|
|
178
180
|
"deleteDisabledByThreads": "Alt konular mevcut, silinemez",
|
|
181
|
+
"expand": "Mesajı Genişlet",
|
|
179
182
|
"regenerate": "Yeniden Oluştur"
|
|
180
183
|
},
|
|
181
184
|
"messages": {
|
|
@@ -253,6 +253,11 @@
|
|
|
253
253
|
},
|
|
254
254
|
"localSystem": {
|
|
255
255
|
"apiName": {
|
|
256
|
+
"editLocalFile": "Dosyayı Düzenle",
|
|
257
|
+
"getCommandOutput": "Komut Çıktısını Al",
|
|
258
|
+
"globLocalFiles": "Dosyaları Ara",
|
|
259
|
+
"grepContent": "İçeriği Ara",
|
|
260
|
+
"killCommand": "Komut Yürütmesini Durdur",
|
|
256
261
|
"listLocalFiles": "Dosya listesini görüntüle",
|
|
257
262
|
"moveLocalFiles": "Dosya taşı",
|
|
258
263
|
"readLocalFile": "Dosya içeriğini oku",
|
package/locales/vi-VN/chat.json
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"availableAgents": "Trợ lý có sẵn",
|
|
18
18
|
"backToBottom": "Quay về dưới cùng",
|
|
19
19
|
"chatList": {
|
|
20
|
+
"expandMessage": "Mở rộng tin nhắn",
|
|
20
21
|
"longMessageDetail": "Xem chi tiết"
|
|
21
22
|
},
|
|
22
23
|
"clearCurrentMessages": "Xóa tin nhắn hiện tại",
|
|
@@ -173,9 +174,11 @@
|
|
|
173
174
|
"title": "Nhắc đến thành viên"
|
|
174
175
|
},
|
|
175
176
|
"messageAction": {
|
|
177
|
+
"collapse": "Thu gọn tin nhắn",
|
|
176
178
|
"continueGeneration": "Tiếp tục tạo",
|
|
177
179
|
"delAndRegenerate": "Xóa và tạo lại",
|
|
178
180
|
"deleteDisabledByThreads": "Có chủ đề con, không thể xóa",
|
|
181
|
+
"expand": "Mở rộng tin nhắn",
|
|
179
182
|
"regenerate": "Tạo lại"
|
|
180
183
|
},
|
|
181
184
|
"messages": {
|
|
@@ -253,6 +253,11 @@
|
|
|
253
253
|
},
|
|
254
254
|
"localSystem": {
|
|
255
255
|
"apiName": {
|
|
256
|
+
"editLocalFile": "Chỉnh sửa tệp",
|
|
257
|
+
"getCommandOutput": "Lấy đầu ra mã lệnh",
|
|
258
|
+
"globLocalFiles": "Tìm kiếm tệp",
|
|
259
|
+
"grepContent": "Tìm kiếm nội dung",
|
|
260
|
+
"killCommand": "Dừng thực thi mã",
|
|
256
261
|
"listLocalFiles": "Xem danh sách tệp",
|
|
257
262
|
"moveLocalFiles": "Di chuyển tệp",
|
|
258
263
|
"readLocalFile": "Đọc nội dung tệp",
|
package/locales/zh-CN/chat.json
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"availableAgents": "可用助手",
|
|
18
18
|
"backToBottom": "跳转至当前",
|
|
19
19
|
"chatList": {
|
|
20
|
+
"expandMessage": "展开消息",
|
|
20
21
|
"longMessageDetail": "查看详情"
|
|
21
22
|
},
|
|
22
23
|
"clearCurrentMessages": "清空当前会话消息",
|
|
@@ -173,9 +174,11 @@
|
|
|
173
174
|
"title": "提及成员"
|
|
174
175
|
},
|
|
175
176
|
"messageAction": {
|
|
177
|
+
"collapse": "收起消息",
|
|
176
178
|
"continueGeneration": "继续生成",
|
|
177
179
|
"delAndRegenerate": "删除并重新生成",
|
|
178
180
|
"deleteDisabledByThreads": "存在子话题,不能删除",
|
|
181
|
+
"expand": "展开消息",
|
|
179
182
|
"regenerate": "重新生成"
|
|
180
183
|
},
|
|
181
184
|
"messages": {
|