@lobehub/chat 0.149.0 → 0.149.2
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 +42 -0
- package/locales/ar/chat.json +4 -1
- package/locales/ar/modelProvider.json +1 -3
- package/locales/bg-BG/chat.json +4 -1
- package/locales/bg-BG/modelProvider.json +1 -3
- package/locales/de-DE/chat.json +4 -1
- package/locales/de-DE/modelProvider.json +1 -3
- package/locales/en-US/chat.json +7 -4
- package/locales/en-US/modelProvider.json +1 -3
- package/locales/es-ES/chat.json +4 -1
- package/locales/es-ES/modelProvider.json +1 -3
- package/locales/fr-FR/chat.json +7 -4
- package/locales/fr-FR/modelProvider.json +1 -3
- package/locales/it-IT/chat.json +4 -1
- package/locales/it-IT/modelProvider.json +16 -17
- package/locales/ja-JP/chat.json +4 -1
- package/locales/ja-JP/modelProvider.json +14 -16
- package/locales/ko-KR/chat.json +4 -1
- package/locales/ko-KR/modelProvider.json +1 -3
- package/locales/nl-NL/chat.json +4 -1
- package/locales/nl-NL/modelProvider.json +1 -3
- package/locales/pl-PL/chat.json +4 -1
- package/locales/pl-PL/modelProvider.json +1 -3
- package/locales/pt-BR/chat.json +4 -1
- package/locales/pt-BR/modelProvider.json +1 -3
- package/locales/ru-RU/chat.json +4 -1
- package/locales/ru-RU/modelProvider.json +1 -3
- package/locales/tr-TR/chat.json +4 -1
- package/locales/tr-TR/modelProvider.json +1 -3
- package/locales/vi-VN/chat.json +4 -1
- package/locales/vi-VN/modelProvider.json +1 -3
- package/locales/zh-CN/chat.json +4 -1
- package/locales/zh-CN/modelProvider.json +1 -3
- package/locales/zh-TW/chat.json +4 -1
- package/locales/zh-TW/modelProvider.json +1 -3
- package/package.json +1 -1
- package/src/app/chat/(desktop)/features/ChatInput/Footer/SendMore.tsx +117 -0
- package/src/app/chat/(desktop)/features/ChatInput/Footer/index.tsx +9 -56
- package/src/app/chat/(desktop)/features/ChatInput/TextArea.tsx +1 -1
- package/src/app/chat/(desktop)/features/HotKeys.tsx +3 -3
- package/src/app/chat/features/TopicListContent/Topic/TopicContent.tsx +15 -6
- package/src/components/HotKeys/index.tsx +14 -18
- package/src/const/hotkeys.ts +1 -1
- package/src/features/ChatInput/ActionBar/Clear.tsx +3 -3
- package/src/features/ChatInput/Topic/index.tsx +3 -3
- package/src/features/Conversation/Actions/Assistant.tsx +1 -1
- package/src/features/Conversation/Error/OllamaBizError/SetupGuide.tsx +159 -70
- package/src/locales/default/chat.ts +4 -1
- package/src/locales/default/modelProvider.ts +1 -3
- package/src/store/chat/slices/message/action.ts +15 -0
- package/src/store/chat/slices/topic/action.test.ts +8 -4
- package/src/store/chat/slices/topic/action.ts +70 -28
- package/src/store/chat/slices/topic/initialState.ts +2 -1
- package/src/store/chat/slices/topic/reducer.test.ts +3 -5
- package/src/store/chat/slices/topic/reducer.ts +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,48 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
### [Version 0.149.2](https://github.com/lobehub/lobe-chat/compare/v0.149.1...v0.149.2)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2024-04-24**</sup>
|
|
8
|
+
|
|
9
|
+
#### 💄 Styles
|
|
10
|
+
|
|
11
|
+
- **misc**: Support to create ai message.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### Styles
|
|
19
|
+
|
|
20
|
+
- **misc**: Support to create ai message, closes [#2185](https://github.com/lobehub/lobe-chat/issues/2185) ([ba3ba6a](https://github.com/lobehub/lobe-chat/commit/ba3ba6a))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
### [Version 0.149.1](https://github.com/lobehub/lobe-chat/compare/v0.149.0...v0.149.1)
|
|
31
|
+
|
|
32
|
+
<sup>Released on **2024-04-24**</sup>
|
|
33
|
+
|
|
34
|
+
<br/>
|
|
35
|
+
|
|
36
|
+
<details>
|
|
37
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
38
|
+
|
|
39
|
+
</details>
|
|
40
|
+
|
|
41
|
+
<div align="right">
|
|
42
|
+
|
|
43
|
+
[](#readme-top)
|
|
44
|
+
|
|
45
|
+
</div>
|
|
46
|
+
|
|
5
47
|
## [Version 0.149.0](https://github.com/lobehub/lobe-chat/compare/v0.148.10...v0.149.0)
|
|
6
48
|
|
|
7
49
|
<sup>Released on **2024-04-24**</sup>
|
package/locales/ar/chat.json
CHANGED
|
@@ -25,8 +25,9 @@
|
|
|
25
25
|
"title": "دردشة عشوائية"
|
|
26
26
|
},
|
|
27
27
|
"input": {
|
|
28
|
+
"addAi": "إضافة رسالة AI",
|
|
29
|
+
"addUser": "إضافة رسالة مستخدم",
|
|
28
30
|
"more": "المزيد",
|
|
29
|
-
"onlyAdd": "إضافة الرسالة فقط",
|
|
30
31
|
"send": "إرسال",
|
|
31
32
|
"sendWithCmdEnter": "اضغط {{meta}} + Enter للإرسال",
|
|
32
33
|
"sendWithEnter": "اضغط Enter للإرسال",
|
|
@@ -101,6 +102,8 @@
|
|
|
101
102
|
"confirmRemoveTopic": "سيتم حذف هذا الموضوع قريبًا، وبمجرد الحذف لن يمكن استعادته، يرجى التحلي بالحذر.",
|
|
102
103
|
"confirmRemoveUnstarred": "سيتم حذف المواضيع غير المحفوظة قريبًا، وبمجرد الحذف لن يمكن استعادتها، يرجى التحلي بالحذر.",
|
|
103
104
|
"defaultTitle": "الموضوع الافتراضي",
|
|
105
|
+
"duplicateLoading": "جاري نسخ الموضوع...",
|
|
106
|
+
"duplicateSuccess": "تم نسخ الموضوع بنجاح",
|
|
104
107
|
"guide": {
|
|
105
108
|
"desc": "انقر فوق زر الإرسال الأيسر لحفظ الجلسة الحالية كموضوع تاريخي وبدء جلسة جديدة",
|
|
106
109
|
"title": "قائمة المواضيع"
|
|
@@ -147,15 +147,13 @@
|
|
|
147
147
|
"windows": "على نظام Windows، انقر فوق \"لوحة التحكم\"، ثم ادخل إلى تحرير متغيرات البيئة النظامية. قم بإنشاء متغير بيئي بعنوان \"OLLAMA_ORIGINS\" لحساب المستخدم الخاص بك، واجعل قيمته * ثم انقر على \"موافق/تطبيق\" للحفظ."
|
|
148
148
|
},
|
|
149
149
|
"install": {
|
|
150
|
-
"description": "يرجى التأكد من
|
|
150
|
+
"description": "يرجى التأكد من أنك قد قمت بتشغيل Ollama ، إذا لم تقم بتنزيل Ollama ، يرجى زيارة الموقع الرسمي <1>للتنزيل</1>",
|
|
151
151
|
"docker": "إذا كنت تفضل استخدام Docker، يوفر Ollama أيضًا صور Docker الرسمية، يمكنك سحبها باستخدام الأمر التالي:",
|
|
152
152
|
"linux": {
|
|
153
153
|
"command": "قم بتثبيته باستخدام الأمر التالي:",
|
|
154
154
|
"manual": "أو يمكنك الرجوع إلى <1>دليل تثبيت Linux يدويًا</1> للقيام بالتثبيت بنفسك."
|
|
155
155
|
},
|
|
156
|
-
"macos": "قم بـ<0>تنزيل إصدار Ollama لنظام macOS</0>، وقم بفك الضغط والتثبيت.",
|
|
157
156
|
"title": "تثبيت وتشغيل تطبيق Ollama محليًا",
|
|
158
|
-
"windows": "قم بـ<0>تنزيل إصدار Ollama لنظام Windows</0>، وقم بفك الضغط والتثبيت.",
|
|
159
157
|
"windowsTab": "Windows (نسخة معاينة)"
|
|
160
158
|
}
|
|
161
159
|
},
|
package/locales/bg-BG/chat.json
CHANGED
|
@@ -25,8 +25,9 @@
|
|
|
25
25
|
"title": "Просто чати"
|
|
26
26
|
},
|
|
27
27
|
"input": {
|
|
28
|
+
"addAi": "Добави AI съобщение",
|
|
29
|
+
"addUser": "Добави потребителско съобщение",
|
|
28
30
|
"more": "още",
|
|
29
|
-
"onlyAdd": "Само добави съобщение",
|
|
30
31
|
"send": "Изпрати",
|
|
31
32
|
"sendWithCmdEnter": "Натисни {{meta}} + Enter за да изпратиш",
|
|
32
33
|
"sendWithEnter": "Натисни Enter за да изпратиш",
|
|
@@ -101,6 +102,8 @@
|
|
|
101
102
|
"confirmRemoveTopic": "На път си да изтриеш тази тема. След като бъде изтрита, тя не може да бъде възстановена. Моля, продължи с повишено внимание.",
|
|
102
103
|
"confirmRemoveUnstarred": "На път си да изтриеш немаркираните теми. След като бъдат изтрити, те не могат да бъдат възстановени. Моля, продължи с повишено внимание.",
|
|
103
104
|
"defaultTitle": "Тема по подразбиране",
|
|
105
|
+
"duplicateLoading": "Копиране на темата...",
|
|
106
|
+
"duplicateSuccess": "Темата е успешно копирана",
|
|
104
107
|
"guide": {
|
|
105
108
|
"desc": "Кликни върху бутона вляво, за да запазиш текущата сесия като историческа тема и да започнеш нова сесия.",
|
|
106
109
|
"title": "Списък с теми"
|
|
@@ -147,15 +147,13 @@
|
|
|
147
147
|
"windows": "На Windows кликнете върху „Контролен панел“, влезте в редактиране на системните променливи. Създайте нова променлива на средата с име „OLLAMA_ORIGINS“, стойност * и кликнете „ОК/Приложи“, за да запазите промените"
|
|
148
148
|
},
|
|
149
149
|
"install": {
|
|
150
|
-
"description": "Моля, потвърдете, че сте
|
|
150
|
+
"description": "Моля, потвърдете, че сте активирали Ollama. Ако не сте го изтеглили, моля посетете <1>официалния сайт</1> на Ollama.",
|
|
151
151
|
"docker": "Ако предпочитате да използвате Docker, Ollama предлага официален Docker образ, който можете да изтеглите с помощта на следната команда:",
|
|
152
152
|
"linux": {
|
|
153
153
|
"command": "Инсталирайте чрез следната команда:",
|
|
154
154
|
"manual": "Или може да се обадите на <1>Ръководство за ръчна инсталация на Linux</1> и да инсталирате ръчно"
|
|
155
155
|
},
|
|
156
|
-
"macos": "<0>Изтеглете версията за macOS на Ollama</0>, разархивирайте я и я инсталирайте",
|
|
157
156
|
"title": "Инсталиране и стартиране на приложението Ollama локално",
|
|
158
|
-
"windows": "<0>Изтеглете версията за Windows на Ollama</0>, разархивирайте я и я инсталирайте",
|
|
159
157
|
"windowsTab": "Windows (преглед)"
|
|
160
158
|
}
|
|
161
159
|
},
|
package/locales/de-DE/chat.json
CHANGED
|
@@ -25,8 +25,9 @@
|
|
|
25
25
|
"title": "Lass uns plaudern"
|
|
26
26
|
},
|
|
27
27
|
"input": {
|
|
28
|
+
"addAi": "Fügen Sie eine AI-Nachricht hinzu",
|
|
29
|
+
"addUser": "Fügen Sie eine Benutzer-Nachricht hinzu",
|
|
28
30
|
"more": "Mehr",
|
|
29
|
-
"onlyAdd": "Nur Nachricht hinzufügen",
|
|
30
31
|
"send": "Senden",
|
|
31
32
|
"sendWithCmdEnter": "Mit {{meta}} + Eingabetaste senden",
|
|
32
33
|
"sendWithEnter": "Mit Eingabetaste senden",
|
|
@@ -101,6 +102,8 @@
|
|
|
101
102
|
"confirmRemoveTopic": "Möchtest du dieses Thema wirklich löschen? Diese Aktion kann nicht rückgängig gemacht werden.",
|
|
102
103
|
"confirmRemoveUnstarred": "Möchtest du die nicht markierten Themen wirklich löschen? Diese Aktion kann nicht rückgängig gemacht werden.",
|
|
103
104
|
"defaultTitle": "Standardthema",
|
|
105
|
+
"duplicateLoading": "Thema wird kopiert...",
|
|
106
|
+
"duplicateSuccess": "Thema erfolgreich kopiert",
|
|
104
107
|
"guide": {
|
|
105
108
|
"desc": "Klicken Sie auf die Schaltfläche links, um das aktuelle Gespräch als historisches Thema zu speichern und eine neue Gesprächsrunde zu starten",
|
|
106
109
|
"title": "Themenliste"
|
|
@@ -147,15 +147,13 @@
|
|
|
147
147
|
"windows": "Klicken Sie auf Windows auf 'Systemsteuerung', um die Systemumgebungsvariablen zu bearbeiten. Erstellen Sie eine Umgebungsvariable namens 'OLLAMA_ORIGINS' für Ihr Benutzerkonto mit dem Wert '*', und klicken Sie auf 'OK/Anwenden', um zu speichern."
|
|
148
148
|
},
|
|
149
149
|
"install": {
|
|
150
|
-
"description": "
|
|
150
|
+
"description": "Stelle sicher, dass du Ollama aktiviert hast. Wenn du Ollama noch nicht heruntergeladen hast, besuche die offizielle Website, um es <1>herunterzuladen</1>.",
|
|
151
151
|
"docker": "Wenn Sie Docker bevorzugen, bietet Ollama auch offizielle Docker-Images an. Sie können sie mit dem folgenden Befehl abrufen:",
|
|
152
152
|
"linux": {
|
|
153
153
|
"command": "Installieren Sie mit dem folgenden Befehl:",
|
|
154
154
|
"manual": "Alternativ können Sie die <1>Linux-Installationsanleitung</1> für die manuelle Installation verwenden."
|
|
155
155
|
},
|
|
156
|
-
"macos": "<0>macOS-Version von Ollama herunterladen</0>, entpacken und installieren.",
|
|
157
156
|
"title": "Installieren und starten Sie die lokale Ollama-Anwendung",
|
|
158
|
-
"windows": "<0>Windows-Version von Ollama herunterladen</0>, entpacken und installieren.",
|
|
159
157
|
"windowsTab": "Windows (Vorschau)"
|
|
160
158
|
}
|
|
161
159
|
},
|
package/locales/en-US/chat.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"clearCurrentMessages": "Clear current session messages",
|
|
9
9
|
"confirmClearCurrentMessages": "You are about to clear the current session messages. Once cleared, they cannot be retrieved. Please confirm your action.",
|
|
10
10
|
"confirmRemoveSessionItemAlert": "You are about to delete this agent. Once deleted, it cannot be retrieved. Please confirm your action.",
|
|
11
|
-
"confirmRemoveSessionSuccess": "
|
|
11
|
+
"confirmRemoveSessionSuccess": "Agent removed successfully",
|
|
12
12
|
"defaultAgent": "Default Agent",
|
|
13
13
|
"defaultList": "Default List",
|
|
14
14
|
"defaultSession": "Default Agent",
|
|
@@ -25,8 +25,9 @@
|
|
|
25
25
|
"title": "Just Chat"
|
|
26
26
|
},
|
|
27
27
|
"input": {
|
|
28
|
+
"addAi": "Add an AI message",
|
|
29
|
+
"addUser": "Add a user message",
|
|
28
30
|
"more": "more",
|
|
29
|
-
"onlyAdd": "Only add message",
|
|
30
31
|
"send": "Send",
|
|
31
32
|
"sendWithCmdEnter": "Press {{meta}} + Enter to send",
|
|
32
33
|
"sendWithEnter": "Press Enter to send",
|
|
@@ -48,10 +49,10 @@
|
|
|
48
49
|
"sessionGroup": {
|
|
49
50
|
"config": "Group Management",
|
|
50
51
|
"confirmRemoveGroupAlert": "This group is about to be deleted. After deletion, the agents in this group will be moved to the default list. Please confirm your operation.",
|
|
51
|
-
"createAgentSuccess": "
|
|
52
|
+
"createAgentSuccess": "Agent created successfully",
|
|
52
53
|
"createGroup": "Add New Group",
|
|
53
54
|
"createSuccess": "Created successfully",
|
|
54
|
-
"creatingAgent": "Creating
|
|
55
|
+
"creatingAgent": "Creating agent...",
|
|
55
56
|
"inputPlaceholder": "Please enter group name...",
|
|
56
57
|
"moveGroup": "Move to Group",
|
|
57
58
|
"newGroup": "New Group",
|
|
@@ -101,6 +102,8 @@
|
|
|
101
102
|
"confirmRemoveTopic": "You are about to delete this topic. Once deleted, it cannot be recovered. Please proceed with caution.",
|
|
102
103
|
"confirmRemoveUnstarred": "You are about to delete unstarred topics. Once deleted, they cannot be recovered. Please proceed with caution.",
|
|
103
104
|
"defaultTitle": "Default Topic",
|
|
105
|
+
"duplicateLoading": "Topic duplicating...",
|
|
106
|
+
"duplicateSuccess": "Topic duplicated successfully",
|
|
104
107
|
"guide": {
|
|
105
108
|
"desc": "Click the button on the left to save the current session as a historical topic and start a new session.",
|
|
106
109
|
"title": "Topic List"
|
|
@@ -147,15 +147,13 @@
|
|
|
147
147
|
"windows": "On Windows, go to 'Control Panel' and edit system environment variables. Create a new environment variable named 'OLLAMA_ORIGINS' for your user account, set the value to '*', and click 'OK/Apply' to save."
|
|
148
148
|
},
|
|
149
149
|
"install": {
|
|
150
|
-
"description": "Please
|
|
150
|
+
"description": "Please make sure you have enabled Ollama. If you haven't downloaded Ollama yet, please visit the official website <1>to download</1>.",
|
|
151
151
|
"docker": "If you prefer using Docker, Ollama also provides an official Docker image. You can pull it using the following command:",
|
|
152
152
|
"linux": {
|
|
153
153
|
"command": "Install using the following command:",
|
|
154
154
|
"manual": "Alternatively, you can refer to the <1>Linux Manual Installation Guide</1> for manual installation."
|
|
155
155
|
},
|
|
156
|
-
"macos": "Download the macOS version of Ollama, unzip, and install it.",
|
|
157
156
|
"title": "Install and Start Ollama Locally",
|
|
158
|
-
"windows": "Download the Windows version of Ollama, unzip, and install it.",
|
|
159
157
|
"windowsTab": "Windows (Preview)"
|
|
160
158
|
}
|
|
161
159
|
},
|
package/locales/es-ES/chat.json
CHANGED
|
@@ -25,8 +25,9 @@
|
|
|
25
25
|
"title": "Charla casual"
|
|
26
26
|
},
|
|
27
27
|
"input": {
|
|
28
|
+
"addAi": "Agregar un mensaje de IA",
|
|
29
|
+
"addUser": "Agregar un mensaje de usuario",
|
|
28
30
|
"more": "más",
|
|
29
|
-
"onlyAdd": "Añadir solo",
|
|
30
31
|
"send": "Enviar",
|
|
31
32
|
"sendWithCmdEnter": "Enviar con {{meta}} + Enter",
|
|
32
33
|
"sendWithEnter": "Enviar con Enter",
|
|
@@ -101,6 +102,8 @@
|
|
|
101
102
|
"confirmRemoveTopic": "Estás a punto de eliminar este tema. Una vez eliminado, no se podrá recuperar. Por favor, procede con precaución.",
|
|
102
103
|
"confirmRemoveUnstarred": "Estás a punto de eliminar los temas no marcados como favoritos. Una vez eliminados, no se podrán recuperar. Por favor, procede con precaución.",
|
|
103
104
|
"defaultTitle": "Tema predeterminado",
|
|
105
|
+
"duplicateLoading": "Duplicando tema...",
|
|
106
|
+
"duplicateSuccess": "Tema duplicado exitosamente",
|
|
104
107
|
"guide": {
|
|
105
108
|
"desc": "Haz clic en el botón izquierdo para guardar la conversación actual como un tema histórico y comenzar una nueva sesión",
|
|
106
109
|
"title": "Lista de temas"
|
|
@@ -147,15 +147,13 @@
|
|
|
147
147
|
"windows": "En Windows, ve a 'Panel de control', edita las variables de entorno del sistema. Crea una nueva variable de entorno llamada 'OLLAMA_ORIGINS' para tu cuenta de usuario, con el valor '*', y haz clic en 'OK/Aplicar' para guardar los cambios."
|
|
148
148
|
},
|
|
149
149
|
"install": {
|
|
150
|
-
"description": "
|
|
150
|
+
"description": "Por favor, asegúrate de que has activado Ollama. Si no has descargado Ollama, por favor visita el sitio web oficial para <1>descargarlo</1>.",
|
|
151
151
|
"docker": "Si prefieres usar Docker, Ollama también ofrece una imagen oficial en Docker. Puedes obtenerla con el siguiente comando:",
|
|
152
152
|
"linux": {
|
|
153
153
|
"command": "Instala con el siguiente comando:",
|
|
154
154
|
"manual": "O también puedes consultar la <1>Guía de instalación manual en Linux</1> para instalarlo por tu cuenta."
|
|
155
155
|
},
|
|
156
|
-
"macos": "Descarga <0>la versión de Ollama para macOS</0>, descomprímela e instálala.",
|
|
157
156
|
"title": "Instalación local y activación de la aplicación Ollama",
|
|
158
|
-
"windows": "Descarga <0>la versión de Ollama para Windows</0>, descomprímela e instálala.",
|
|
159
157
|
"windowsTab": "Windows (Versión de vista previa)"
|
|
160
158
|
}
|
|
161
159
|
},
|
package/locales/fr-FR/chat.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"clearCurrentMessages": "Effacer les messages actuels",
|
|
9
9
|
"confirmClearCurrentMessages": "Vous êtes sur le point d'effacer les messages de cette session. Cette action est irréversible. Veuillez confirmer.",
|
|
10
10
|
"confirmRemoveSessionItemAlert": "Vous êtes sur le point de supprimer cet agent. Cette action est irréversible. Veuillez confirmer.",
|
|
11
|
-
"confirmRemoveSessionSuccess": "
|
|
11
|
+
"confirmRemoveSessionSuccess": "Agent supprimé avec succès",
|
|
12
12
|
"defaultAgent": "Agent par défaut",
|
|
13
13
|
"defaultList": "Liste par défaut",
|
|
14
14
|
"defaultSession": "Session par défaut",
|
|
@@ -25,8 +25,9 @@
|
|
|
25
25
|
"title": "Discutons un peu"
|
|
26
26
|
},
|
|
27
27
|
"input": {
|
|
28
|
+
"addAi": "Ajouter un message AI",
|
|
29
|
+
"addUser": "Ajouter un message utilisateur",
|
|
28
30
|
"more": "Plus",
|
|
29
|
-
"onlyAdd": "Ajouter uniquement",
|
|
30
31
|
"send": "Envoyer",
|
|
31
32
|
"sendWithCmdEnter": "Envoyer avec {{meta}} + Entrée",
|
|
32
33
|
"sendWithEnter": "Envoyer avec Entrée",
|
|
@@ -48,10 +49,10 @@
|
|
|
48
49
|
"sessionGroup": {
|
|
49
50
|
"config": "Gestion des groupes",
|
|
50
51
|
"confirmRemoveGroupAlert": "Vous êtes sur le point de supprimer ce groupe. Une fois supprimé, les agents de ce groupe seront déplacés vers la liste par défaut. Veuillez confirmer votre action.",
|
|
51
|
-
"createAgentSuccess": "Création de l'
|
|
52
|
+
"createAgentSuccess": "Création de l'agent réussie",
|
|
52
53
|
"createGroup": "Créer un nouveau groupe",
|
|
53
54
|
"createSuccess": "Création réussie",
|
|
54
|
-
"creatingAgent": "Création de l'
|
|
55
|
+
"creatingAgent": "Création de l'agent en cours...",
|
|
55
56
|
"inputPlaceholder": "Veuillez saisir le nom du groupe...",
|
|
56
57
|
"moveGroup": "Déplacer vers un groupe",
|
|
57
58
|
"newGroup": "Nouveau groupe",
|
|
@@ -101,6 +102,8 @@
|
|
|
101
102
|
"confirmRemoveTopic": "Vous êtes sur le point de supprimer ce sujet. Cette action est irréversible. Veuillez confirmer.",
|
|
102
103
|
"confirmRemoveUnstarred": "Vous êtes sur le point de supprimer les sujets non favoris. Cette action est irréversible. Veuillez confirmer.",
|
|
103
104
|
"defaultTitle": "Sujet par défaut",
|
|
105
|
+
"duplicateLoading": "Duplication du sujet en cours...",
|
|
106
|
+
"duplicateSuccess": "Sujet dupliqué avec succès",
|
|
104
107
|
"guide": {
|
|
105
108
|
"desc": "Cliquez sur le bouton à gauche pour enregistrer la conversation actuelle comme un sujet historique et démarrer une nouvelle session.",
|
|
106
109
|
"title": "Liste des sujets"
|
|
@@ -147,15 +147,13 @@
|
|
|
147
147
|
"windows": "On Windows, go to 'Control Panel' and edit system environment variables. Create a new environment variable named 'OLLAMA_ORIGINS' for your user account, set the value to '*', and click 'OK/Apply' to save."
|
|
148
148
|
},
|
|
149
149
|
"install": {
|
|
150
|
-
"description": "
|
|
150
|
+
"description": "Veuillez vous assurer que vous avez activé Ollama. Si vous n'avez pas encore téléchargé Ollama, veuillez vous rendre sur le site officiel pour le <1>télécharger</1>.",
|
|
151
151
|
"docker": "If you prefer using Docker, Ollama also provides an official Docker image. You can pull it using the following command:",
|
|
152
152
|
"linux": {
|
|
153
153
|
"command": "Install using the following command:",
|
|
154
154
|
"manual": "Alternatively, you can refer to the <1>Linux Manual Installation Guide</1> for manual installation."
|
|
155
155
|
},
|
|
156
|
-
"macos": "Download the macOS version of Ollama, unzip, and install it.",
|
|
157
156
|
"title": "Install and Start Ollama Locally",
|
|
158
|
-
"windows": "Download the Windows version of Ollama, unzip, and install it.",
|
|
159
157
|
"windowsTab": "Windows (Preview)"
|
|
160
158
|
}
|
|
161
159
|
},
|
package/locales/it-IT/chat.json
CHANGED
|
@@ -25,8 +25,9 @@
|
|
|
25
25
|
"title": "Chiacchierata casuale"
|
|
26
26
|
},
|
|
27
27
|
"input": {
|
|
28
|
+
"addAi": "Aggiungi un messaggio AI",
|
|
29
|
+
"addUser": "Aggiungi un messaggio utente",
|
|
28
30
|
"more": "Ulteriori",
|
|
29
|
-
"onlyAdd": "Solo aggiungi messaggio",
|
|
30
31
|
"send": "Invia",
|
|
31
32
|
"sendWithCmdEnter": "Invia premendo {{meta}} + Invio",
|
|
32
33
|
"sendWithEnter": "Invia premendo Invio",
|
|
@@ -101,6 +102,8 @@
|
|
|
101
102
|
"confirmRemoveTopic": "Stai per rimuovere questo argomento, l'operazione non potrà essere annullata. Procedere con cautela.",
|
|
102
103
|
"confirmRemoveUnstarred": "Stai per rimuovere gli argomenti non contrassegnati, questa operazione non potrà essere annullata. Procedere con cautela.",
|
|
103
104
|
"defaultTitle": "Argomento predefinito",
|
|
105
|
+
"duplicateLoading": "Duplicazione dell'argomento in corso...",
|
|
106
|
+
"duplicateSuccess": "Argomento duplicato con successo",
|
|
104
107
|
"guide": {
|
|
105
108
|
"desc": "Fare clic sul pulsante a sinistra per salvare l'attuale sessione come argomento storico e avviare una nuova sessione",
|
|
106
109
|
"title": "Elenco argomenti"
|
|
@@ -136,26 +136,25 @@
|
|
|
136
136
|
"setup": {
|
|
137
137
|
"cors": {
|
|
138
138
|
"description": "A causa delle restrizioni di sicurezza del browser, è necessario configurare il cross-origin resource sharing (CORS) per consentire l'utilizzo di Ollama.",
|
|
139
|
-
"install": {
|
|
140
|
-
"description": "Assicurati di aver avviato Ollama. Se non hai ancora scaricato Ollama, visita il sito ufficiale per il download.",
|
|
141
|
-
"docker": "Se preferisci utilizzare Docker, Ollama fornisce un'immagine Docker ufficiale che puoi scaricare tramite il seguente comando:",
|
|
142
|
-
"linux": {
|
|
143
|
-
"command": "Per installare, esegui il seguente comando:",
|
|
144
|
-
"manual": "In alternativa, puoi consultare la <1>Guida all'installazione manuale di Linux</1> per installare manualmente."
|
|
145
|
-
},
|
|
146
|
-
"macos": "Scarica la versione di Ollama per macOS, estraila e installala.",
|
|
147
|
-
"title": "Installa e avvia l'applicazione Ollama localmente.",
|
|
148
|
-
"windows": "Scarica la versione di Ollama per Windows, estraila e installala.",
|
|
149
|
-
"windowsTab": "Windows (Versione di anteprima)"
|
|
150
|
-
},
|
|
151
139
|
"linux": {
|
|
152
140
|
"env": "Nella sezione [Service], aggiungi `Environment` e inserisci la variabile di ambiente OLLAMA_ORIGINS:",
|
|
153
|
-
"macos": "Apri l'applicazione 'Terminale', incolla il comando seguente e premi Invio.",
|
|
154
141
|
"reboot": "Dopo aver completato l'esecuzione, riavvia il servizio Ollama.",
|
|
155
|
-
"systemd": "Per modificare il servizio ollama, chiama systemd:"
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
142
|
+
"systemd": "Per modificare il servizio ollama, chiama systemd:"
|
|
143
|
+
},
|
|
144
|
+
"macos": "Apri l'applicazione 'Terminale', incolla il comando seguente e premi Invio per eseguirlo",
|
|
145
|
+
"reboot": "Riavvia il servizio Ollama una volta completata l'esecuzione",
|
|
146
|
+
"title": "Configura Ollama per consentire l'accesso cross-origin",
|
|
147
|
+
"windows": "Su Windows, fai clic su 'Pannello di controllo', accedi alle variabili di ambiente di sistema. Crea una nuova variabile di ambiente chiamata 'OLLAMA_ORIGINS' per il tuo account utente, con valore *, quindi fai clic su 'OK/Applica' per salvare le modifiche"
|
|
148
|
+
},
|
|
149
|
+
"install": {
|
|
150
|
+
"description": "Assicurati di aver avviato Ollama. Se non l'hai ancora scaricato, visita il sito ufficiale per <1>scaricarlo</1>",
|
|
151
|
+
"docker": "Se preferisci utilizzare Docker, Ollama fornisce anche un'immagine Docker ufficiale che puoi scaricare tramite il seguente comando:",
|
|
152
|
+
"linux": {
|
|
153
|
+
"command": "Per installare, utilizza il seguente comando:",
|
|
154
|
+
"manual": "Oppure, puoi consultare la <1>Guida all'installazione manuale di Linux</1> per installare manualmente"
|
|
155
|
+
},
|
|
156
|
+
"title": "Installa e avvia l'applicazione Ollama localmente",
|
|
157
|
+
"windowsTab": "Windows (Versione di anteprima)"
|
|
159
158
|
}
|
|
160
159
|
},
|
|
161
160
|
"title": "Ollama"
|
package/locales/ja-JP/chat.json
CHANGED
|
@@ -25,8 +25,9 @@
|
|
|
25
25
|
"title": "気軽におしゃべり"
|
|
26
26
|
},
|
|
27
27
|
"input": {
|
|
28
|
+
"addAi": "AIメッセージを追加",
|
|
29
|
+
"addUser": "ユーザーメッセージを追加",
|
|
28
30
|
"more": "もっと",
|
|
29
|
-
"onlyAdd": "メッセージのみ追加",
|
|
30
31
|
"send": "送信",
|
|
31
32
|
"sendWithCmdEnter": "{{meta}} + Enter キーで送信",
|
|
32
33
|
"sendWithEnter": "Enter キーで送信",
|
|
@@ -101,6 +102,8 @@
|
|
|
101
102
|
"confirmRemoveTopic": "このトピックを削除します。削除した後は元に戻すことはできません。注意して操作してください。",
|
|
102
103
|
"confirmRemoveUnstarred": "スターをつけていないトピックを削除します。削除した後は元に戻すことはできません。注意して操作してください。",
|
|
103
104
|
"defaultTitle": "デフォルトトピック",
|
|
105
|
+
"duplicateLoading": "トピックを複製中...",
|
|
106
|
+
"duplicateSuccess": "トピックの複製に成功しました",
|
|
104
107
|
"guide": {
|
|
105
108
|
"desc": "左側のボタンをクリックして、現在の会話を保存し、新しい会話を開始できます",
|
|
106
109
|
"title": "トピックリスト"
|
|
@@ -135,28 +135,26 @@
|
|
|
135
135
|
},
|
|
136
136
|
"setup": {
|
|
137
137
|
"cors": {
|
|
138
|
-
"description": "
|
|
138
|
+
"description": "ブラウザのセキュリティ制限により、Ollama を正常に使用するにはクロスオリジンリクエストを許可する必要があります。",
|
|
139
139
|
"linux": {
|
|
140
|
-
"env": "
|
|
141
|
-
"reboot": "
|
|
142
|
-
"systemd": "
|
|
140
|
+
"env": "[Service] セクションに `Environment` を追加し、OLLAMA_ORIGINS 環境変数を設定してください:",
|
|
141
|
+
"reboot": "systemd を再読み込みして Ollama を再起動します。",
|
|
142
|
+
"systemd": "systemd を呼び出して ollama サービスを編集します:"
|
|
143
143
|
},
|
|
144
|
-
"macos": "
|
|
145
|
-
"reboot": "
|
|
146
|
-
"title": "
|
|
147
|
-
"windows": "
|
|
144
|
+
"macos": "「ターミナル」アプリを開き、以下のコマンドを貼り付けて実行し、Enter キーを押してください",
|
|
145
|
+
"reboot": "Ollama サービスを再起動するには、実行後に再起動してください",
|
|
146
|
+
"title": "Ollama の CORS アクセスを許可する設定",
|
|
147
|
+
"windows": "Windows 上では、「コントロールパネル」をクリックしてシステム環境変数を編集します。ユーザーアカウントに「OLLAMA_ORIGINS」という名前の環境変数を作成し、値を * に設定し、「OK/適用」をクリックして保存します"
|
|
148
148
|
},
|
|
149
149
|
"install": {
|
|
150
|
-
"description": "
|
|
151
|
-
"docker": "
|
|
150
|
+
"description": "Ollamaを有効にしていることを確認してください。Ollamaをまだダウンロードしていない場合は、公式サイト<1>からダウンロード</1>してください。",
|
|
151
|
+
"docker": "もしDockerを使用することを好む場合、Ollamaは公式Dockerイメージも提供しています。以下のコマンドを使用して取得できます:",
|
|
152
152
|
"linux": {
|
|
153
|
-
"command": "
|
|
154
|
-
"manual": "
|
|
153
|
+
"command": "以下のコマンドを使用してインストール:",
|
|
154
|
+
"manual": "または、<1>Linuxマニュアルインストールガイド</1>を参照して手動でインストールすることもできます"
|
|
155
155
|
},
|
|
156
|
-
"
|
|
157
|
-
"
|
|
158
|
-
"windows": "Download the Windows version of Ollama, unzip, and install.",
|
|
159
|
-
"windowsTab": "Windows (Preview)"
|
|
156
|
+
"title": "ローカルでOllamaアプリをインストールして起動する",
|
|
157
|
+
"windowsTab": "Windows(プレビュー版)"
|
|
160
158
|
}
|
|
161
159
|
},
|
|
162
160
|
"title": "Ollama"
|
package/locales/ko-KR/chat.json
CHANGED
|
@@ -25,8 +25,9 @@
|
|
|
25
25
|
"title": "무작위 대화"
|
|
26
26
|
},
|
|
27
27
|
"input": {
|
|
28
|
+
"addAi": "AI 메시지 추가",
|
|
29
|
+
"addUser": "사용자 메시지 추가",
|
|
28
30
|
"more": "더 많은",
|
|
29
|
-
"onlyAdd": "메시지만 추가",
|
|
30
31
|
"send": "전송",
|
|
31
32
|
"sendWithCmdEnter": "{{meta}} + Enter 키로 전송",
|
|
32
33
|
"sendWithEnter": "Enter 키로 전송",
|
|
@@ -101,6 +102,8 @@
|
|
|
101
102
|
"confirmRemoveTopic": "이 주제를 삭제하시면 되돌릴 수 없습니다. 신중하게 작업하시겠습니까?",
|
|
102
103
|
"confirmRemoveUnstarred": "별표가 없는 주제를 삭제하시면 되돌릴 수 없습니다. 신중하게 작업하시겠습니까?",
|
|
103
104
|
"defaultTitle": "기본 주제",
|
|
105
|
+
"duplicateLoading": "주제 복사 중...",
|
|
106
|
+
"duplicateSuccess": "주제 복사 성공",
|
|
104
107
|
"guide": {
|
|
105
108
|
"desc": "현재 대화를 히스토리 토픽으로 저장하고 새 대화를 시작하려면 왼쪽 버튼을 클릭하세요.",
|
|
106
109
|
"title": "토픽 목록"
|
|
@@ -147,15 +147,13 @@
|
|
|
147
147
|
"windows": "Windows에서는 '제어판'을 클릭하여 시스템 환경 변수를 편집하십시오. 사용자 계정에 'OLLAMA_ORIGINS'이라는 환경 변수를 만들고 값으로 *을 입력한 후 '확인/적용'을 클릭하여 저장하십시오."
|
|
148
148
|
},
|
|
149
149
|
"install": {
|
|
150
|
-
"description": "Ollama
|
|
150
|
+
"description": "Ollama가 활성화되어 있는지 확인하고, Ollama를 다운로드하지 않았다면 공식 웹사이트<1>에서 다운로드</1>하십시오.",
|
|
151
151
|
"docker": "Docker를 사용하는 것을 선호하는 경우 Ollama는 공식 Docker 이미지도 제공하며 다음 명령을 사용하여 가져올 수 있습니다:",
|
|
152
152
|
"linux": {
|
|
153
153
|
"command": "다음 명령을 사용하여 설치하십시오:",
|
|
154
154
|
"manual": "또는 <1>Linux 수동 설치 안내</1>를 참조하여 직접 설치할 수도 있습니다."
|
|
155
155
|
},
|
|
156
|
-
"macos": "<0>macOS 버전 Ollama 다운로드</0> 후 압축을 풀고 설치하십시오.",
|
|
157
156
|
"title": "로컬에서 Ollama 애플리케이션을 설치하고 시작하십시오",
|
|
158
|
-
"windows": "<0>Windows 버전 Ollama 다운로드</0> 후 압축을 풀고 설치하십시오.",
|
|
159
157
|
"windowsTab": "Windows (미리보기판)"
|
|
160
158
|
}
|
|
161
159
|
},
|
package/locales/nl-NL/chat.json
CHANGED
|
@@ -25,8 +25,9 @@
|
|
|
25
25
|
"title": "Praat maar raak"
|
|
26
26
|
},
|
|
27
27
|
"input": {
|
|
28
|
+
"addAi": "Voeg een AI-bericht toe",
|
|
29
|
+
"addUser": "Voeg een gebruikersbericht toe",
|
|
28
30
|
"more": "Meer",
|
|
29
|
-
"onlyAdd": "Alleen bericht toevoegen",
|
|
30
31
|
"send": "Verzenden",
|
|
31
32
|
"sendWithCmdEnter": "Verzenden met {{meta}} + Enter",
|
|
32
33
|
"sendWithEnter": "Verzenden met Enter",
|
|
@@ -101,6 +102,8 @@
|
|
|
101
102
|
"confirmRemoveTopic": "Dit onderwerp wordt verwijderd en kan niet worden hersteld. Wees voorzichtig.",
|
|
102
103
|
"confirmRemoveUnstarred": "Niet-gefavoriseerde onderwerpen worden verwijderd en kunnen niet worden hersteld. Wees voorzichtig.",
|
|
103
104
|
"defaultTitle": "Standaard onderwerp",
|
|
105
|
+
"duplicateLoading": "Onderwerp dupliceren...",
|
|
106
|
+
"duplicateSuccess": "Onderwerp succesvol gedupliceerd",
|
|
104
107
|
"guide": {
|
|
105
108
|
"desc": "Klik op de knop aan de linkerkant om het huidige gesprek op te slaan als een historisch onderwerp en een nieuw gesprek te starten",
|
|
106
109
|
"title": "Onderwerplijst"
|
|
@@ -147,15 +147,13 @@
|
|
|
147
147
|
"windows": "On Windows, go to 'Control Panel' and edit system environment variables. Create a new environment variable named 'OLLAMA_ORIGINS' for your user account, set the value to '*', and click 'OK/Apply' to save."
|
|
148
148
|
},
|
|
149
149
|
"install": {
|
|
150
|
-
"description": "
|
|
150
|
+
"description": "Zorg ervoor dat Ollama is ingeschakeld. Als je Ollama nog niet hebt gedownload, ga dan naar de officiële website om <1>te downloaden</1>.",
|
|
151
151
|
"docker": "If you prefer using Docker, Ollama also provides official Docker images. You can pull them using the following command:",
|
|
152
152
|
"linux": {
|
|
153
153
|
"command": "Install using the following command:",
|
|
154
154
|
"manual": "Alternatively, you can refer to the <1>Linux Manual Installation Guide</1> for manual installation."
|
|
155
155
|
},
|
|
156
|
-
"macos": "Download the macOS version of Ollama, unzip, and install it.",
|
|
157
156
|
"title": "Install and Start Ollama Locally",
|
|
158
|
-
"windows": "Download the Windows version of Ollama, unzip, and install it.",
|
|
159
157
|
"windowsTab": "Windows (Preview)"
|
|
160
158
|
}
|
|
161
159
|
},
|
package/locales/pl-PL/chat.json
CHANGED
|
@@ -25,8 +25,9 @@
|
|
|
25
25
|
"title": "Pogadajmy sobie"
|
|
26
26
|
},
|
|
27
27
|
"input": {
|
|
28
|
+
"addAi": "Dodaj wiadomość AI",
|
|
29
|
+
"addUser": "Dodaj wiadomość użytkownika",
|
|
28
30
|
"more": "więcej",
|
|
29
|
-
"onlyAdd": "Tylko dodaj wiadomość",
|
|
30
31
|
"send": "Wyślij",
|
|
31
32
|
"sendWithCmdEnter": "Wyślij za pomocą klawisza {{meta}} + Enter",
|
|
32
33
|
"sendWithEnter": "Wyślij za pomocą klawisza Enter",
|
|
@@ -101,6 +102,8 @@
|
|
|
101
102
|
"confirmRemoveTopic": "Czy na pewno chcesz usunąć ten temat? Tej operacji nie można cofnąć. Proszę potwierdź swoją decyzję.",
|
|
102
103
|
"confirmRemoveUnstarred": "Czy na pewno chcesz usunąć nieoznaczone tematy? Tej operacji nie można cofnąć. Proszę potwierdź swoją decyzję.",
|
|
103
104
|
"defaultTitle": "Domyślne tematy",
|
|
105
|
+
"duplicateLoading": "Kopiowanie tematu...",
|
|
106
|
+
"duplicateSuccess": "Temat został skopiowany pomyślnie",
|
|
104
107
|
"guide": {
|
|
105
108
|
"desc": "Kliknij przycisk po lewej stronie, aby zapisać bieżącą rozmowę jako historię tematu i rozpocząć nową rundę rozmowy",
|
|
106
109
|
"title": "Lista tematów"
|
|
@@ -147,15 +147,13 @@
|
|
|
147
147
|
"windows": "On Windows, go to 'Control Panel' and edit system environment variables. Create a new environment variable named 'OLLAMA_ORIGINS' for your user account, set the value to '*', and click 'OK/Apply' to save."
|
|
148
148
|
},
|
|
149
149
|
"install": {
|
|
150
|
-
"description": "
|
|
150
|
+
"description": "Upewnij się, że masz zainstalowanego Ollamę. Jeśli nie, pobierz ją ze strony internetowej <1> tutaj</1>",
|
|
151
151
|
"docker": "If you prefer using Docker, Ollama also provides an official Docker image. You can pull it using the following command:",
|
|
152
152
|
"linux": {
|
|
153
153
|
"command": "Install using the following command:",
|
|
154
154
|
"manual": "Alternatively, you can refer to the <1>Linux Manual Installation Guide</1> for manual installation."
|
|
155
155
|
},
|
|
156
|
-
"macos": "Download the macOS version of Ollama, unzip, and install it.",
|
|
157
156
|
"title": "Install and Start Ollama Locally",
|
|
158
|
-
"windows": "Download the Windows version of Ollama, unzip, and install it.",
|
|
159
157
|
"windowsTab": "Windows (Preview)"
|
|
160
158
|
}
|
|
161
159
|
},
|
package/locales/pt-BR/chat.json
CHANGED
|
@@ -25,8 +25,9 @@
|
|
|
25
25
|
"title": "Conversa Aleatória"
|
|
26
26
|
},
|
|
27
27
|
"input": {
|
|
28
|
+
"addAi": "Adicionar uma mensagem de IA",
|
|
29
|
+
"addUser": "Adicionar uma mensagem de usuário",
|
|
28
30
|
"more": "mais",
|
|
29
|
-
"onlyAdd": "Apenas adicionar mensagem",
|
|
30
31
|
"send": "Enviar",
|
|
31
32
|
"sendWithCmdEnter": "Pressione {{meta}} + Enter para enviar",
|
|
32
33
|
"sendWithEnter": "Pressione Enter para enviar",
|
|
@@ -101,6 +102,8 @@
|
|
|
101
102
|
"confirmRemoveTopic": "Você está prestes a remover este tópico. Depois de remover, não será possível recuperá-lo. Por favor, confirme sua ação.",
|
|
102
103
|
"confirmRemoveUnstarred": "Você está prestes a remover os tópicos não favoritados. Depois de remover, não será possível recuperá-los. Por favor, confirme sua ação.",
|
|
103
104
|
"defaultTitle": "Tópico Padrão",
|
|
105
|
+
"duplicateLoading": "Tópico sendo duplicado...",
|
|
106
|
+
"duplicateSuccess": "Tópico duplicado com sucesso",
|
|
104
107
|
"guide": {
|
|
105
108
|
"desc": "Clique em enviar no botão esquerdo para salvar a conversa atual como um tópico histórico e iniciar uma nova rodada de conversa",
|
|
106
109
|
"title": "Lista de Tópicos"
|