@lobehub/chat 0.140.1 → 0.141.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/locales/ar/common.json +34 -6
- package/locales/ar/setting.json +36 -0
- package/locales/de-DE/common.json +34 -6
- package/locales/de-DE/setting.json +36 -0
- package/locales/en-US/common.json +34 -6
- package/locales/en-US/setting.json +36 -0
- package/locales/es-ES/common.json +34 -6
- package/locales/es-ES/setting.json +36 -0
- package/locales/fr-FR/common.json +34 -6
- package/locales/fr-FR/setting.json +36 -0
- package/locales/it-IT/common.json +34 -6
- package/locales/it-IT/setting.json +38 -0
- package/locales/ja-JP/common.json +34 -6
- package/locales/ja-JP/setting.json +38 -0
- package/locales/ko-KR/common.json +34 -6
- package/locales/ko-KR/setting.json +36 -0
- package/locales/nl-NL/common.json +34 -6
- package/locales/nl-NL/setting.json +38 -0
- package/locales/pl-PL/common.json +34 -6
- package/locales/pl-PL/setting.json +36 -0
- package/locales/pt-BR/common.json +34 -6
- package/locales/pt-BR/setting.json +36 -0
- package/locales/ru-RU/common.json +34 -6
- package/locales/ru-RU/setting.json +36 -0
- package/locales/tr-TR/common.json +34 -6
- package/locales/tr-TR/setting.json +36 -0
- package/locales/vi-VN/common.json +34 -6
- package/locales/vi-VN/setting.json +36 -0
- package/locales/zh-CN/common.json +34 -6
- package/locales/zh-CN/setting.json +36 -0
- package/locales/zh-TW/common.json +34 -6
- package/locales/zh-TW/setting.json +36 -0
- package/package.json +10 -5
- package/src/app/chat/(desktop)/features/SessionHeader.tsx +5 -1
- package/src/app/chat/(mobile)/features/SessionHeader.tsx +9 -4
- package/src/app/chat/features/SessionListContent/List/SkeletonList.tsx +0 -1
- package/src/app/settings/(desktop)/features/Header.tsx +11 -1
- package/src/app/settings/(mobile)/features/Header/index.tsx +12 -1
- package/src/app/settings/features/SettingList/index.tsx +2 -1
- package/src/app/settings/sync/Alert.tsx +39 -0
- package/src/app/settings/sync/DeviceInfo/Card.tsx +41 -0
- package/src/app/settings/sync/DeviceInfo/DeviceName.tsx +66 -0
- package/src/app/settings/sync/DeviceInfo/index.tsx +117 -0
- package/src/app/settings/sync/PageTitle.tsx +11 -0
- package/src/app/settings/sync/WebRTC/ChannelNameInput.tsx +46 -0
- package/src/app/settings/sync/WebRTC/index.tsx +97 -0
- package/src/app/settings/sync/components/SyncSwitch/index.css +237 -0
- package/src/app/settings/sync/components/SyncSwitch/index.tsx +79 -0
- package/src/app/settings/sync/components/SystemIcon.tsx +16 -0
- package/src/app/settings/sync/layout.tsx +9 -0
- package/src/app/settings/sync/page.tsx +23 -0
- package/src/app/settings/sync/util.ts +4 -0
- package/src/components/BrowserIcon/components/Brave.tsx +56 -0
- package/src/components/BrowserIcon/components/Chrome.tsx +14 -0
- package/src/components/BrowserIcon/components/Chromium.tsx +14 -0
- package/src/components/BrowserIcon/components/Edge.tsx +36 -0
- package/src/components/BrowserIcon/components/Firefox.tsx +38 -0
- package/src/components/BrowserIcon/components/Opera.tsx +19 -0
- package/src/components/BrowserIcon/components/Safari.tsx +23 -0
- package/src/components/BrowserIcon/components/Samsung.tsx +21 -0
- package/src/components/BrowserIcon/index.tsx +50 -0
- package/src/components/BrowserIcon/types.ts +8 -0
- package/src/const/settings.ts +6 -0
- package/src/database/core/__tests__/model.test.ts +2 -2
- package/src/database/core/db.ts +1 -1
- package/src/database/core/index.ts +1 -0
- package/src/database/core/model.ts +83 -5
- package/src/database/core/sync.ts +328 -0
- package/src/database/models/__tests__/message.test.ts +0 -1
- package/src/database/models/__tests__/plugin.test.ts +5 -2
- package/src/database/models/file.ts +1 -1
- package/src/database/models/message.ts +49 -30
- package/src/database/models/plugin.ts +6 -5
- package/src/database/models/session.ts +15 -16
- package/src/database/models/sessionGroup.ts +14 -8
- package/src/database/models/topic.ts +14 -21
- package/src/features/SyncStatusInspector/DisableSync.tsx +79 -0
- package/src/features/SyncStatusInspector/EnableSync.tsx +136 -0
- package/src/features/SyncStatusInspector/EnableTag.tsx +66 -0
- package/src/features/SyncStatusInspector/index.tsx +27 -0
- package/src/hooks/useSyncData.ts +48 -0
- package/src/layout/GlobalLayout/StoreHydration.tsx +5 -0
- package/src/locales/default/common.ts +27 -5
- package/src/locales/default/setting.ts +37 -1
- package/src/services/chat.ts +6 -2
- package/src/services/config.ts +1 -1
- package/src/services/global.ts +15 -0
- package/src/store/chat/slices/topic/action.test.ts +1 -1
- package/src/store/chat/slices/topic/action.ts +21 -10
- package/src/store/global/slices/common/action.ts +71 -1
- package/src/store/global/slices/common/initialState.ts +9 -0
- package/src/store/global/slices/common/selectors.ts +1 -0
- package/src/store/global/slices/preference/initialState.ts +2 -1
- package/src/store/global/slices/preference/selectors.ts +3 -0
- package/src/store/global/slices/settings/selectors/index.ts +1 -0
- package/src/store/global/slices/settings/selectors/sync.ts +14 -0
- package/src/types/settings/index.ts +3 -0
- package/src/types/settings/sync.ts +10 -0
- package/src/types/sync.ts +41 -0
- package/src/utils/platform.ts +9 -3
- package/src/utils/responsive.ts +21 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
## [Version 0.141.0](https://github.com/lobehub/lobe-chat/compare/v0.140.1...v0.141.0)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2024-03-22**</sup>
|
|
8
|
+
|
|
9
|
+
#### ✨ Features
|
|
10
|
+
|
|
11
|
+
- **misc**: Using YJS and WebRTC to support sync data between different devices.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### What's improved
|
|
19
|
+
|
|
20
|
+
- **misc**: Using YJS and WebRTC to support sync data between different devices, closes [#1525](https://github.com/lobehub/lobe-chat/issues/1525) ([60d9186](https://github.com/lobehub/lobe-chat/commit/60d9186))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
5
30
|
### [Version 0.140.1](https://github.com/lobehub/lobe-chat/compare/v0.140.0...v0.140.1)
|
|
6
31
|
|
|
7
32
|
<sup>Released on **2024-03-22**</sup>
|
package/locales/ar/common.json
CHANGED
|
@@ -10,17 +10,12 @@
|
|
|
10
10
|
},
|
|
11
11
|
"about": "حول",
|
|
12
12
|
"advanceSettings": "إعدادات متقدمة",
|
|
13
|
-
"agentMaxToken": "أقصى طول للجلسة",
|
|
14
|
-
"agentModel": "النموذج",
|
|
15
|
-
"agentProfile": "ملف المساعد",
|
|
16
13
|
"appInitializing": "جاري تهيئة LobeChat، يرجى الانتظار ...",
|
|
17
|
-
"archive": "أرشيف",
|
|
18
14
|
"autoGenerate": "توليد تلقائي",
|
|
19
15
|
"autoGenerateTooltip": "إكمال تلقائي بناءً على الكلمات المقترحة لوصف المساعد",
|
|
20
16
|
"cancel": "إلغاء",
|
|
21
17
|
"changelog": "سجل التغييرات",
|
|
22
18
|
"close": "إغلاق",
|
|
23
|
-
"confirmRemoveSessionItemAlert": "سيتم حذف هذا المساعد قريبًا، وبمجرد الحذف لن يمكن استعادته، يرجى تأكيد الإجراء",
|
|
24
19
|
"copy": "نسخ",
|
|
25
20
|
"copyFail": "فشل في النسخ",
|
|
26
21
|
"copySuccess": "تم النسخ بنجاح",
|
|
@@ -128,6 +123,39 @@
|
|
|
128
123
|
"setting": "الإعدادات",
|
|
129
124
|
"share": "مشاركة",
|
|
130
125
|
"stop": "إيقاف",
|
|
126
|
+
"sync": {
|
|
127
|
+
"actions": {
|
|
128
|
+
"settings": "إعدادات المزامنة",
|
|
129
|
+
"sync": "مزامنة فورية"
|
|
130
|
+
},
|
|
131
|
+
"awareness": {
|
|
132
|
+
"current": "الجهاز الحالي"
|
|
133
|
+
},
|
|
134
|
+
"channel": "القناة",
|
|
135
|
+
"disabled": {
|
|
136
|
+
"actions": {
|
|
137
|
+
"enable": "تمكين المزامنة السحابية",
|
|
138
|
+
"settings": "تكوين معلمات المزامنة"
|
|
139
|
+
},
|
|
140
|
+
"desc": "بيانات الجلسة الحالية تُخزن فقط في هذا المتصفح. إذا كنت بحاجة إلى مزامنة البيانات بين عدة أجهزة، يرجى تكوين وتمكين المزامنة السحابية.",
|
|
141
|
+
"title": "لم يتم تشغيل مزامنة البيانات"
|
|
142
|
+
},
|
|
143
|
+
"enabled": {
|
|
144
|
+
"title": "مزامنة البيانات"
|
|
145
|
+
},
|
|
146
|
+
"status": {
|
|
147
|
+
"connecting": "جار الاتصال",
|
|
148
|
+
"disabled": "مزامنة غير مفعلة",
|
|
149
|
+
"ready": "متصل",
|
|
150
|
+
"synced": "تمت المزامنة",
|
|
151
|
+
"syncing": "جار المزامنة",
|
|
152
|
+
"unconnected": "فشل الاتصال"
|
|
153
|
+
},
|
|
154
|
+
"title": "حالة المزامنة",
|
|
155
|
+
"unconnected": {
|
|
156
|
+
"tip": "فشل اتصال خادم الإشارة، لن يتمكن من إنشاء قناة اتصال نقطية، يرجى التحقق من الشبكة وإعادة المحاولة"
|
|
157
|
+
}
|
|
158
|
+
},
|
|
131
159
|
"tab": {
|
|
132
160
|
"chat": "الدردشة",
|
|
133
161
|
"market": "الاكتشاف",
|
|
@@ -147,4 +175,4 @@
|
|
|
147
175
|
"hasNew": "يوجد تحديث متاح",
|
|
148
176
|
"newVersion": "هناك إصدار جديد متاح: {{version}}"
|
|
149
177
|
}
|
|
150
|
-
}
|
|
178
|
+
}
|
package/locales/ar/setting.json
CHANGED
|
@@ -440,11 +440,47 @@
|
|
|
440
440
|
"placeholder": "الرجاء إدخال معرف المساعد، يجب أن يكون فريدًا، مثل تطوير الويب",
|
|
441
441
|
"tooltips": "مشاركة في سوق المساعدين"
|
|
442
442
|
},
|
|
443
|
+
"sync": {
|
|
444
|
+
"device": {
|
|
445
|
+
"deviceName": {
|
|
446
|
+
"hint": "أضف اسمًا للتعرف بشكل أفضل",
|
|
447
|
+
"placeholder": "الرجاء إدخال اسم الجهاز",
|
|
448
|
+
"title": "اسم الجهاز"
|
|
449
|
+
},
|
|
450
|
+
"title": "معلومات الجهاز",
|
|
451
|
+
"unknownBrowser": "متصفح غير معروف",
|
|
452
|
+
"unknownOS": "نظام التشغيل غير معروف"
|
|
453
|
+
},
|
|
454
|
+
"warning": {
|
|
455
|
+
"message": "هذه الميزة لا تزال تحت التجربة وقد تكون هناك حالات غير متوقعة أو غير مستقرة، في حال واجهت مشكلة، يرجى تقديم ردود فعل في الوقت المناسب."
|
|
456
|
+
},
|
|
457
|
+
"webrtc": {
|
|
458
|
+
"channelName": {
|
|
459
|
+
"desc": "سيستخدم WebRTC هذا الاسم لإنشاء قناة مزامنة، يرجى التأكد من فرادة اسم القناة",
|
|
460
|
+
"placeholder": "الرجاء إدخال اسم قناة المزامنة",
|
|
461
|
+
"shuffle": "توليف عشوائي",
|
|
462
|
+
"title": "اسم قناة المزامنة"
|
|
463
|
+
},
|
|
464
|
+
"channelPassword": {
|
|
465
|
+
"desc": "إضافة كلمة مرور لضمان خصوصية القناة، يمكن للأجهزة الانضمام إلى القناة فقط عند إدخال كلمة المرور الصحيحة",
|
|
466
|
+
"placeholder": "الرجاء إدخال كلمة مرور قناة المزامنة",
|
|
467
|
+
"title": "كلمة مرور قناة المزامنة"
|
|
468
|
+
},
|
|
469
|
+
"desc": "اتصال البيانات النقطي الفوري يتطلب تواجد الأجهزة معًا للمزامنة",
|
|
470
|
+
"enabled": {
|
|
471
|
+
"invalid": "الرجاء إدخال اسم قناة المزامنة قبل تشغيلها",
|
|
472
|
+
"title": "تمكين المزامنة"
|
|
473
|
+
},
|
|
474
|
+
"title": "WebRTC مزامنة"
|
|
475
|
+
}
|
|
476
|
+
},
|
|
443
477
|
"tab": {
|
|
444
478
|
"about": "حول",
|
|
445
479
|
"agent": "المساعد الافتراضي",
|
|
446
480
|
"common": "إعدادات عامة",
|
|
481
|
+
"experiment": "تجربة",
|
|
447
482
|
"llm": "نموذج اللغة",
|
|
483
|
+
"sync": "مزامنة السحابة",
|
|
448
484
|
"tts": "خدمة الكلام"
|
|
449
485
|
},
|
|
450
486
|
"tools": {
|
|
@@ -10,17 +10,12 @@
|
|
|
10
10
|
},
|
|
11
11
|
"about": "Über",
|
|
12
12
|
"advanceSettings": "Erweiterte Einstellungen",
|
|
13
|
-
"agentMaxToken": "Maximale Sitzungslänge",
|
|
14
|
-
"agentModel": "Modell",
|
|
15
|
-
"agentProfile": "Assistentenprofil",
|
|
16
13
|
"appInitializing": "LobeChat wird initialisiert. Bitte haben Sie einen Moment Geduld...",
|
|
17
|
-
"archive": "Archiv",
|
|
18
14
|
"autoGenerate": "Automatisch generieren",
|
|
19
15
|
"autoGenerateTooltip": "Assistentenbeschreibung automatisch auf Basis von Vorschlägen vervollständigen",
|
|
20
16
|
"cancel": "Abbrechen",
|
|
21
17
|
"changelog": "Änderungsprotokoll",
|
|
22
18
|
"close": "Schließen",
|
|
23
|
-
"confirmRemoveSessionItemAlert": "Möchten Sie diesen Assistenten wirklich löschen? Nach dem Löschen kann er nicht wiederhergestellt werden. Bitte bestätigen Sie Ihre Aktion.",
|
|
24
19
|
"copy": "Kopieren",
|
|
25
20
|
"copyFail": "Kopieren fehlgeschlagen",
|
|
26
21
|
"copySuccess": "Kopieren erfolgreich",
|
|
@@ -128,6 +123,39 @@
|
|
|
128
123
|
"setting": "Einstellung",
|
|
129
124
|
"share": "Teilen",
|
|
130
125
|
"stop": "Stoppen",
|
|
126
|
+
"sync": {
|
|
127
|
+
"actions": {
|
|
128
|
+
"settings": "同步设置",
|
|
129
|
+
"sync": "立即同步"
|
|
130
|
+
},
|
|
131
|
+
"awareness": {
|
|
132
|
+
"current": "当前设备"
|
|
133
|
+
},
|
|
134
|
+
"channel": "频道",
|
|
135
|
+
"disabled": {
|
|
136
|
+
"actions": {
|
|
137
|
+
"enable": "开启云端同步",
|
|
138
|
+
"settings": "配置同步参数"
|
|
139
|
+
},
|
|
140
|
+
"desc": "当前会话数据仅存储于此浏览器中。如果你需要在多个设备间同步数据,请配置并开启云端同步。",
|
|
141
|
+
"title": "数据同步未开启"
|
|
142
|
+
},
|
|
143
|
+
"enabled": {
|
|
144
|
+
"title": "数据同步"
|
|
145
|
+
},
|
|
146
|
+
"status": {
|
|
147
|
+
"connecting": "连接中",
|
|
148
|
+
"disabled": "同步未开启",
|
|
149
|
+
"ready": "已连接",
|
|
150
|
+
"synced": "已同步",
|
|
151
|
+
"syncing": "同步中",
|
|
152
|
+
"unconnected": "连接失败"
|
|
153
|
+
},
|
|
154
|
+
"title": "同步状态",
|
|
155
|
+
"unconnected": {
|
|
156
|
+
"tip": "信令服务器连接失败,将无法建立点对点通信频道,请检查网络后重试"
|
|
157
|
+
}
|
|
158
|
+
},
|
|
131
159
|
"tab": {
|
|
132
160
|
"chat": "Chat",
|
|
133
161
|
"market": "Entdecken",
|
|
@@ -147,4 +175,4 @@
|
|
|
147
175
|
"hasNew": "Neue Version verfügbar",
|
|
148
176
|
"newVersion": "Neue Version verfügbar: {{version}}"
|
|
149
177
|
}
|
|
150
|
-
}
|
|
178
|
+
}
|
|
@@ -440,11 +440,47 @@
|
|
|
440
440
|
"placeholder": "Geben Sie die Kennung des Assistenten ein, die eindeutig sein muss, z. B. Web-Entwicklung",
|
|
441
441
|
"tooltips": "Auf dem Assistentenmarkt teilen"
|
|
442
442
|
},
|
|
443
|
+
"sync": {
|
|
444
|
+
"device": {
|
|
445
|
+
"deviceName": {
|
|
446
|
+
"hint": "Fügen Sie einen Namen hinzu, um das Gerät zu identifizieren",
|
|
447
|
+
"placeholder": "Geben Sie den Gerätenamen ein",
|
|
448
|
+
"title": "Gerätename"
|
|
449
|
+
},
|
|
450
|
+
"title": "Geräteinformationen",
|
|
451
|
+
"unknownBrowser": "Unbekannter Browser",
|
|
452
|
+
"unknownOS": "Unbekanntes Betriebssystem"
|
|
453
|
+
},
|
|
454
|
+
"warning": {
|
|
455
|
+
"message": "Diese Funktion ist derzeit experimentell und kann unerwartete oder instabile Situationen aufweisen. Bitte geben Sie bei Problemen rechtzeitig Feedback ab."
|
|
456
|
+
},
|
|
457
|
+
"webrtc": {
|
|
458
|
+
"channelName": {
|
|
459
|
+
"desc": "WebRTC verwendet diesen Namen, um einen Synchronisierungskanal zu erstellen. Stellen Sie sicher, dass der Kanalname eindeutig ist",
|
|
460
|
+
"placeholder": "Geben Sie den Synchronisierungskanalnamen ein",
|
|
461
|
+
"shuffle": "Zufällige Generierung",
|
|
462
|
+
"title": "Synchronisierungskanalname"
|
|
463
|
+
},
|
|
464
|
+
"channelPassword": {
|
|
465
|
+
"desc": "Fügen Sie ein Passwort hinzu, um die Vertraulichkeit des Kanals zu gewährleisten. Nur wenn das Passwort korrekt ist, kann das Gerät dem Kanal beitreten",
|
|
466
|
+
"placeholder": "Geben Sie das Synchronisierungskennwort ein",
|
|
467
|
+
"title": "Synchronisierungskennwort"
|
|
468
|
+
},
|
|
469
|
+
"desc": "Echtzeit, Punkt-zu-Punkt-Datenkommunikation, bei der die Geräte gleichzeitig online sein müssen, um synchronisiert zu werden",
|
|
470
|
+
"enabled": {
|
|
471
|
+
"invalid": "Bitte geben Sie zuerst den Synchronisierungskanalnamen ein, bevor Sie die Synchronisierung aktivieren",
|
|
472
|
+
"title": "Synchronisierung aktivieren"
|
|
473
|
+
},
|
|
474
|
+
"title": "WebRTC-Synchronisierung"
|
|
475
|
+
}
|
|
476
|
+
},
|
|
443
477
|
"tab": {
|
|
444
478
|
"about": "Über",
|
|
445
479
|
"agent": "Standard-Assistent",
|
|
446
480
|
"common": "Allgemeine Einstellungen",
|
|
481
|
+
"experiment": "Experiment",
|
|
447
482
|
"llm": "Sprachmodell",
|
|
483
|
+
"sync": "Cloud-Synchronisierung",
|
|
448
484
|
"tts": "Sprachdienste"
|
|
449
485
|
},
|
|
450
486
|
"tools": {
|
|
@@ -10,17 +10,12 @@
|
|
|
10
10
|
},
|
|
11
11
|
"about": "About",
|
|
12
12
|
"advanceSettings": "Advanced Settings",
|
|
13
|
-
"agentMaxToken": "Max Session Length",
|
|
14
|
-
"agentModel": "Model",
|
|
15
|
-
"agentProfile": "Agent Profile",
|
|
16
13
|
"appInitializing": "LobeChat is initializing, please wait...",
|
|
17
|
-
"archive": "Archive",
|
|
18
14
|
"autoGenerate": "Auto Generate",
|
|
19
15
|
"autoGenerateTooltip": "Auto-generate agent description based on prompts",
|
|
20
16
|
"cancel": "Cancel",
|
|
21
17
|
"changelog": "Changelog",
|
|
22
18
|
"close": "Close",
|
|
23
|
-
"confirmRemoveSessionItemAlert": "You are about to delete this agent. Once deleted, it cannot be recovered. Please confirm your action.",
|
|
24
19
|
"copy": "Copy",
|
|
25
20
|
"copyFail": "Copy failed",
|
|
26
21
|
"copySuccess": "Copied successfully",
|
|
@@ -128,6 +123,39 @@
|
|
|
128
123
|
"setting": "Settings",
|
|
129
124
|
"share": "Share",
|
|
130
125
|
"stop": "Stop",
|
|
126
|
+
"sync": {
|
|
127
|
+
"actions": {
|
|
128
|
+
"settings": "Sync Settings",
|
|
129
|
+
"sync": "Sync Now"
|
|
130
|
+
},
|
|
131
|
+
"awareness": {
|
|
132
|
+
"current": "Current Device"
|
|
133
|
+
},
|
|
134
|
+
"channel": "Channel",
|
|
135
|
+
"disabled": {
|
|
136
|
+
"actions": {
|
|
137
|
+
"enable": "Enable Cloud Sync",
|
|
138
|
+
"settings": "Sync Settings"
|
|
139
|
+
},
|
|
140
|
+
"desc": "Current session data is only stored in this browser. If you need to sync data across multiple devices, please configure and enable cloud sync.",
|
|
141
|
+
"title": "Data Sync Disabled"
|
|
142
|
+
},
|
|
143
|
+
"enabled": {
|
|
144
|
+
"title": "Data Sync Enabled"
|
|
145
|
+
},
|
|
146
|
+
"status": {
|
|
147
|
+
"connecting": "Connecting",
|
|
148
|
+
"disabled": "Sync Disabled",
|
|
149
|
+
"ready": "Connected",
|
|
150
|
+
"synced": "Synced",
|
|
151
|
+
"syncing": "Syncing",
|
|
152
|
+
"unconnected": "Connection Failed"
|
|
153
|
+
},
|
|
154
|
+
"title": "Sync Status",
|
|
155
|
+
"unconnected": {
|
|
156
|
+
"tip": "Signaling server connection failed, and peer-to-peer communication channel cannot be established. Please check the network and try again."
|
|
157
|
+
}
|
|
158
|
+
},
|
|
131
159
|
"tab": {
|
|
132
160
|
"chat": "Chat",
|
|
133
161
|
"market": "Discover",
|
|
@@ -147,4 +175,4 @@
|
|
|
147
175
|
"hasNew": "New update available",
|
|
148
176
|
"newVersion": "New version available: {{version}}"
|
|
149
177
|
}
|
|
150
|
-
}
|
|
178
|
+
}
|
|
@@ -440,11 +440,47 @@
|
|
|
440
440
|
"placeholder": "Enter a unique identifier for the agent, e.g. web-development",
|
|
441
441
|
"tooltips": "Share to the agent marketplace"
|
|
442
442
|
},
|
|
443
|
+
"sync": {
|
|
444
|
+
"device": {
|
|
445
|
+
"deviceName": {
|
|
446
|
+
"hint": "Add a name for easy identification",
|
|
447
|
+
"placeholder": "Enter device name",
|
|
448
|
+
"title": "Device Name"
|
|
449
|
+
},
|
|
450
|
+
"title": "Device Information",
|
|
451
|
+
"unknownBrowser": "Unknown Browser",
|
|
452
|
+
"unknownOS": "Unknown OS"
|
|
453
|
+
},
|
|
454
|
+
"warning": {
|
|
455
|
+
"message": "This feature is currently experimental and may have unexpected or unstable behavior. If you encounter any issues, please submit feedback promptly."
|
|
456
|
+
},
|
|
457
|
+
"webrtc": {
|
|
458
|
+
"channelName": {
|
|
459
|
+
"desc": "WebRTC will use this name to create a sync channel. Ensure the channel name is unique.",
|
|
460
|
+
"placeholder": "Enter sync channel name",
|
|
461
|
+
"shuffle": "Generate Randomly",
|
|
462
|
+
"title": "Sync Channel Name"
|
|
463
|
+
},
|
|
464
|
+
"channelPassword": {
|
|
465
|
+
"desc": "Add a password to ensure channel privacy. Only devices with the correct password can join the channel.",
|
|
466
|
+
"placeholder": "Enter sync channel password",
|
|
467
|
+
"title": "Sync Channel Password"
|
|
468
|
+
},
|
|
469
|
+
"desc": "Real-time, peer-to-peer data communication requires all devices to be online for synchronization.",
|
|
470
|
+
"enabled": {
|
|
471
|
+
"invalid": "Please enter a sync channel name before enabling",
|
|
472
|
+
"title": "Enable Sync"
|
|
473
|
+
},
|
|
474
|
+
"title": "WebRTC Sync"
|
|
475
|
+
}
|
|
476
|
+
},
|
|
443
477
|
"tab": {
|
|
444
478
|
"about": "About",
|
|
445
479
|
"agent": "Default Agent",
|
|
446
480
|
"common": "Common Settings",
|
|
481
|
+
"experiment": "Experiment",
|
|
447
482
|
"llm": "Language Model",
|
|
483
|
+
"sync": "Cloud Sync",
|
|
448
484
|
"tts": "Text-to-Speech"
|
|
449
485
|
},
|
|
450
486
|
"tools": {
|
|
@@ -10,17 +10,12 @@
|
|
|
10
10
|
},
|
|
11
11
|
"about": "Acerca de",
|
|
12
12
|
"advanceSettings": "Configuración avanzada",
|
|
13
|
-
"agentMaxToken": "Máximo de tokens de sesión",
|
|
14
|
-
"agentModel": "Modelo",
|
|
15
|
-
"agentProfile": "Perfil del asistente",
|
|
16
13
|
"appInitializing": "LobeChat está inicializando, por favor espere...",
|
|
17
|
-
"archive": "Archivar",
|
|
18
14
|
"autoGenerate": "Generación automática",
|
|
19
15
|
"autoGenerateTooltip": "Completar automáticamente la descripción del asistente basándose en las sugerencias",
|
|
20
16
|
"cancel": "Cancelar",
|
|
21
17
|
"changelog": "Registro de cambios",
|
|
22
18
|
"close": "Cerrar",
|
|
23
|
-
"confirmRemoveSessionItemAlert": "Estás a punto de eliminar este asistente. Una vez eliminado, no se podrá recuperar. Por favor, confirma tu acción",
|
|
24
19
|
"copy": "Copiar",
|
|
25
20
|
"copyFail": "Fallo al copiar",
|
|
26
21
|
"copySuccess": "¡Copia exitosa!",
|
|
@@ -128,6 +123,39 @@
|
|
|
128
123
|
"setting": "Configuración",
|
|
129
124
|
"share": "Compartir",
|
|
130
125
|
"stop": "Detener",
|
|
126
|
+
"sync": {
|
|
127
|
+
"actions": {
|
|
128
|
+
"settings": "Configuración de sincronización",
|
|
129
|
+
"sync": "Sincronizar ahora"
|
|
130
|
+
},
|
|
131
|
+
"awareness": {
|
|
132
|
+
"current": "Dispositivo actual"
|
|
133
|
+
},
|
|
134
|
+
"channel": "Canal",
|
|
135
|
+
"disabled": {
|
|
136
|
+
"actions": {
|
|
137
|
+
"enable": "Habilitar sincronización en la nube",
|
|
138
|
+
"settings": "Configurar parámetros de sincronización"
|
|
139
|
+
},
|
|
140
|
+
"desc": "Los datos de esta sesión se almacenan solo en este navegador. Si necesitas sincronizar datos entre varios dispositivos, configura y habilita la sincronización en la nube.",
|
|
141
|
+
"title": "Sincronización de datos deshabilitada"
|
|
142
|
+
},
|
|
143
|
+
"enabled": {
|
|
144
|
+
"title": "Sincronización de datos"
|
|
145
|
+
},
|
|
146
|
+
"status": {
|
|
147
|
+
"connecting": "Conectando",
|
|
148
|
+
"disabled": "Sincronización deshabilitada",
|
|
149
|
+
"ready": "Listo",
|
|
150
|
+
"synced": "Sincronizado",
|
|
151
|
+
"syncing": "Sincronizando",
|
|
152
|
+
"unconnected": "Sin conexión"
|
|
153
|
+
},
|
|
154
|
+
"title": "Estado de sincronización",
|
|
155
|
+
"unconnected": {
|
|
156
|
+
"tip": "Fallo al conectar con el servidor de señal. No se podrá establecer un canal de comunicación punto a punto. Por favor, verifica la red e inténtalo de nuevo."
|
|
157
|
+
}
|
|
158
|
+
},
|
|
131
159
|
"tab": {
|
|
132
160
|
"chat": "Chat",
|
|
133
161
|
"market": "Descubrir",
|
|
@@ -147,4 +175,4 @@
|
|
|
147
175
|
"hasNew": "Hay una nueva actualización disponible",
|
|
148
176
|
"newVersion": "Nueva versión disponible: {{version}}"
|
|
149
177
|
}
|
|
150
|
-
}
|
|
178
|
+
}
|
|
@@ -440,11 +440,47 @@
|
|
|
440
440
|
"placeholder": "Ingrese el identificador único del asistente, por ejemplo desarrollo-web",
|
|
441
441
|
"tooltips": "Compartir en el mercado de asistentes"
|
|
442
442
|
},
|
|
443
|
+
"sync": {
|
|
444
|
+
"device": {
|
|
445
|
+
"deviceName": {
|
|
446
|
+
"hint": "Agrega un nombre para identificar el dispositivo",
|
|
447
|
+
"placeholder": "Introduce el nombre del dispositivo",
|
|
448
|
+
"title": "Nombre del dispositivo"
|
|
449
|
+
},
|
|
450
|
+
"title": "Información del dispositivo",
|
|
451
|
+
"unknownBrowser": "Navegador desconocido",
|
|
452
|
+
"unknownOS": "Sistema operativo desconocido"
|
|
453
|
+
},
|
|
454
|
+
"warning": {
|
|
455
|
+
"message": "Esta función todavía está en fase experimental y puede presentar situaciones inesperadas o inestables. Si encuentras algún problema, por favor envía tus comentarios de inmediato."
|
|
456
|
+
},
|
|
457
|
+
"webrtc": {
|
|
458
|
+
"channelName": {
|
|
459
|
+
"desc": "WebRTC utilizará este nombre para crear un canal de sincronización. Asegúrate de que el nombre del canal sea único",
|
|
460
|
+
"placeholder": "Introduce el nombre del canal de sincronización",
|
|
461
|
+
"shuffle": "Generar aleatoriamente",
|
|
462
|
+
"title": "Nombre del canal de sincronización"
|
|
463
|
+
},
|
|
464
|
+
"channelPassword": {
|
|
465
|
+
"desc": "Agrega una contraseña para garantizar la privacidad del canal. Solo los dispositivos con la contraseña correcta podrán unirse al canal",
|
|
466
|
+
"placeholder": "Introduce la contraseña del canal de sincronización",
|
|
467
|
+
"title": "Contraseña del canal de sincronización"
|
|
468
|
+
},
|
|
469
|
+
"desc": "Comunicación de datos en tiempo real y punto a punto. Los dispositivos deben estar en línea simultáneamente para sincronizarse",
|
|
470
|
+
"enabled": {
|
|
471
|
+
"invalid": "Por favor, introduce el nombre del canal de sincronización antes de activar",
|
|
472
|
+
"title": "Activar sincronización"
|
|
473
|
+
},
|
|
474
|
+
"title": "Sincronización WebRTC"
|
|
475
|
+
}
|
|
476
|
+
},
|
|
443
477
|
"tab": {
|
|
444
478
|
"about": "Acerca de",
|
|
445
479
|
"agent": "Asistente predeterminado",
|
|
446
480
|
"common": "Configuración común",
|
|
481
|
+
"experiment": "Experimento",
|
|
447
482
|
"llm": "Modelo de lenguaje",
|
|
483
|
+
"sync": "Sincronización en la nube",
|
|
448
484
|
"tts": "Servicio de voz"
|
|
449
485
|
},
|
|
450
486
|
"tools": {
|
|
@@ -10,17 +10,12 @@
|
|
|
10
10
|
},
|
|
11
11
|
"about": "À propos",
|
|
12
12
|
"advanceSettings": "Paramètres avancés",
|
|
13
|
-
"agentMaxToken": "Longueur maximale de la session",
|
|
14
|
-
"agentModel": "Modèle",
|
|
15
|
-
"agentProfile": "Profil de l'agent",
|
|
16
13
|
"appInitializing": "LobeChat est en cours de démarrage, veuillez patienter...",
|
|
17
|
-
"archive": "Archiver",
|
|
18
14
|
"autoGenerate": "Générer automatiquement",
|
|
19
15
|
"autoGenerateTooltip": "Générer automatiquement la description de l'agent basée sur les suggestions",
|
|
20
16
|
"cancel": "Annuler",
|
|
21
17
|
"changelog": "Journal des modifications",
|
|
22
18
|
"close": "Fermer",
|
|
23
|
-
"confirmRemoveSessionItemAlert": "Vous êtes sur le point de supprimer cet agent. Une fois supprimé, il ne pourra pas être récupéré. Veuillez confirmer votre action.",
|
|
24
19
|
"copy": "Copier",
|
|
25
20
|
"copyFail": "Échec de la copie",
|
|
26
21
|
"copySuccess": "Copie réussie",
|
|
@@ -128,6 +123,39 @@
|
|
|
128
123
|
"setting": "Paramètre",
|
|
129
124
|
"share": "Partager",
|
|
130
125
|
"stop": "Arrêter",
|
|
126
|
+
"sync": {
|
|
127
|
+
"actions": {
|
|
128
|
+
"settings": "Paramètres de synchronisation",
|
|
129
|
+
"sync": "Synchroniser maintenant"
|
|
130
|
+
},
|
|
131
|
+
"awareness": {
|
|
132
|
+
"current": "Appareil actuel"
|
|
133
|
+
},
|
|
134
|
+
"channel": "Canal",
|
|
135
|
+
"disabled": {
|
|
136
|
+
"actions": {
|
|
137
|
+
"enable": "Activer la synchronisation cloud",
|
|
138
|
+
"settings": "Paramètres de configuration"
|
|
139
|
+
},
|
|
140
|
+
"desc": "Les données de cette session sont uniquement stockées dans ce navigateur. Si vous avez besoin de synchroniser les données entre plusieurs appareils, veuillez configurer et activer la synchronisation cloud.",
|
|
141
|
+
"title": "La synchronisation des données n'est pas activée"
|
|
142
|
+
},
|
|
143
|
+
"enabled": {
|
|
144
|
+
"title": "Synchronisation des données"
|
|
145
|
+
},
|
|
146
|
+
"status": {
|
|
147
|
+
"connecting": "Connexion en cours",
|
|
148
|
+
"disabled": "Synchronisation désactivée",
|
|
149
|
+
"ready": "Connecté",
|
|
150
|
+
"synced": "Synchronisé",
|
|
151
|
+
"syncing": "Synchronisation en cours",
|
|
152
|
+
"unconnected": "Échec de la connexion"
|
|
153
|
+
},
|
|
154
|
+
"title": "État de synchronisation",
|
|
155
|
+
"unconnected": {
|
|
156
|
+
"tip": "Échec de la connexion au serveur de signalisation. Impossible d'établir un canal de communication peer-to-peer. Veuillez vérifier votre réseau et réessayer."
|
|
157
|
+
}
|
|
158
|
+
},
|
|
131
159
|
"tab": {
|
|
132
160
|
"chat": "Conversation",
|
|
133
161
|
"market": "Découvrir",
|
|
@@ -147,4 +175,4 @@
|
|
|
147
175
|
"hasNew": "Nouvelle mise à jour disponible",
|
|
148
176
|
"newVersion": "Nouvelle version disponible : {{version}}"
|
|
149
177
|
}
|
|
150
|
-
}
|
|
178
|
+
}
|
|
@@ -440,11 +440,47 @@
|
|
|
440
440
|
"placeholder": "Veuillez entrer l'identifiant de l'agent, qui doit être unique, par exemple développement-web",
|
|
441
441
|
"tooltips": "Partager sur le marché des agents"
|
|
442
442
|
},
|
|
443
|
+
"sync": {
|
|
444
|
+
"device": {
|
|
445
|
+
"deviceName": {
|
|
446
|
+
"hint": "Ajoutez un nom pour l'identifier",
|
|
447
|
+
"placeholder": "Entrez le nom de l'appareil",
|
|
448
|
+
"title": "Nom de l'appareil"
|
|
449
|
+
},
|
|
450
|
+
"title": "Informations sur l'appareil",
|
|
451
|
+
"unknownBrowser": "Navigateur inconnu",
|
|
452
|
+
"unknownOS": "Système d'exploitation inconnu"
|
|
453
|
+
},
|
|
454
|
+
"warning": {
|
|
455
|
+
"message": "Cette fonctionnalité est actuellement expérimentale et peut présenter des comportements inattendus ou instables. En cas de problème, veuillez soumettre vos commentaires rapidement."
|
|
456
|
+
},
|
|
457
|
+
"webrtc": {
|
|
458
|
+
"channelName": {
|
|
459
|
+
"desc": "WebRTC utilisera ce nom pour créer un canal de synchronisation. Assurez-vous que le nom du canal est unique",
|
|
460
|
+
"placeholder": "Entrez le nom du canal de synchronisation",
|
|
461
|
+
"shuffle": "Générer aléatoirement",
|
|
462
|
+
"title": "Nom du canal de synchronisation"
|
|
463
|
+
},
|
|
464
|
+
"channelPassword": {
|
|
465
|
+
"desc": "Ajoutez un mot de passe pour assurer la confidentialité du canal. Seuls les appareils avec le bon mot de passe pourront rejoindre le canal",
|
|
466
|
+
"placeholder": "Entrez le mot de passe du canal de synchronisation",
|
|
467
|
+
"title": "Mot de passe du canal de synchronisation"
|
|
468
|
+
},
|
|
469
|
+
"desc": "Communication de données en temps réel et en pair-à-pair. Les appareils doivent être en ligne simultanément pour se synchroniser",
|
|
470
|
+
"enabled": {
|
|
471
|
+
"invalid": "Veuillez entrer un nom de canal de synchronisation avant d'activer",
|
|
472
|
+
"title": "Activer la synchronisation"
|
|
473
|
+
},
|
|
474
|
+
"title": "Synchronisation WebRTC"
|
|
475
|
+
}
|
|
476
|
+
},
|
|
443
477
|
"tab": {
|
|
444
478
|
"about": "À propos",
|
|
445
479
|
"agent": "Agent par défaut",
|
|
446
480
|
"common": "Paramètres généraux",
|
|
481
|
+
"experiment": "Expérience",
|
|
447
482
|
"llm": "Modèle de langue",
|
|
483
|
+
"sync": "Synchronisation cloud",
|
|
448
484
|
"tts": "Service vocal"
|
|
449
485
|
},
|
|
450
486
|
"tools": {
|
|
@@ -10,17 +10,12 @@
|
|
|
10
10
|
},
|
|
11
11
|
"about": "Informazioni",
|
|
12
12
|
"advanceSettings": "Impostazioni avanzate",
|
|
13
|
-
"agentMaxToken": "Massima lunghezza della sessione",
|
|
14
|
-
"agentModel": "Modello",
|
|
15
|
-
"agentProfile": "Profilo assistente",
|
|
16
13
|
"appInitializing": "LobeChat inizializzazione in corso, attendere prego...",
|
|
17
|
-
"archive": "Archivio",
|
|
18
14
|
"autoGenerate": "Generazione automatica",
|
|
19
15
|
"autoGenerateTooltip": "Completamento automatico basato su suggerimenti",
|
|
20
16
|
"cancel": "Annulla",
|
|
21
17
|
"changelog": "Registro modifiche",
|
|
22
18
|
"close": "Chiudi",
|
|
23
|
-
"confirmRemoveSessionItemAlert": "Stai per eliminare questo assistente. Una volta eliminato, non sarà possibile recuperarlo. Confermi l'operazione?",
|
|
24
19
|
"copy": "Copia",
|
|
25
20
|
"copyFail": "Copia non riuscita",
|
|
26
21
|
"copySuccess": "Copia riuscita",
|
|
@@ -128,6 +123,39 @@
|
|
|
128
123
|
"setting": "Impostazioni",
|
|
129
124
|
"share": "Condividi",
|
|
130
125
|
"stop": "Ferma",
|
|
126
|
+
"sync": {
|
|
127
|
+
"actions": {
|
|
128
|
+
"settings": "Impostazioni di sincronizzazione",
|
|
129
|
+
"sync": "Sincronizza ora"
|
|
130
|
+
},
|
|
131
|
+
"awareness": {
|
|
132
|
+
"current": "Dispositivo corrente"
|
|
133
|
+
},
|
|
134
|
+
"channel": "Canale",
|
|
135
|
+
"disabled": {
|
|
136
|
+
"actions": {
|
|
137
|
+
"enable": "Abilita la sincronizzazione cloud",
|
|
138
|
+
"settings": "Configura le impostazioni di sincronizzazione"
|
|
139
|
+
},
|
|
140
|
+
"desc": "I dati della sessione corrente sono memorizzati solo in questo browser. Se hai bisogno di sincronizzare i dati tra più dispositivi, configura e abilita la sincronizzazione cloud.",
|
|
141
|
+
"title": "Sincronizzazione dati disabilitata"
|
|
142
|
+
},
|
|
143
|
+
"enabled": {
|
|
144
|
+
"title": "Sincronizzazione dati"
|
|
145
|
+
},
|
|
146
|
+
"status": {
|
|
147
|
+
"connecting": "Connessione in corso",
|
|
148
|
+
"disabled": "Sincronizzazione disabilitata",
|
|
149
|
+
"ready": "Pronto",
|
|
150
|
+
"synced": "Sincronizzato",
|
|
151
|
+
"syncing": "Sincronizzazione in corso",
|
|
152
|
+
"unconnected": "Connessione non riuscita"
|
|
153
|
+
},
|
|
154
|
+
"title": "Stato di sincronizzazione",
|
|
155
|
+
"unconnected": {
|
|
156
|
+
"tip": "Connessione al server di segnalazione non riuscita. Impossibile stabilire un canale di comunicazione punto a punto. Controlla la rete e riprova."
|
|
157
|
+
}
|
|
158
|
+
},
|
|
131
159
|
"tab": {
|
|
132
160
|
"chat": "Chat",
|
|
133
161
|
"market": "Scopri",
|
|
@@ -147,4 +175,4 @@
|
|
|
147
175
|
"hasNew": "Nuovo aggiornamento disponibile",
|
|
148
176
|
"newVersion": "Nuova versione disponibile: {{version}}"
|
|
149
177
|
}
|
|
150
|
-
}
|
|
178
|
+
}
|