@lobehub/chat 1.75.5 → 1.76.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +25 -0
- package/changelog/v1.json +9 -0
- package/docs/developer/database-schema.dbml +1 -0
- package/locales/ar/hotkey.json +46 -0
- package/locales/ar/setting.json +12 -0
- package/locales/bg-BG/hotkey.json +46 -0
- package/locales/bg-BG/setting.json +12 -0
- package/locales/de-DE/hotkey.json +46 -0
- package/locales/de-DE/setting.json +12 -0
- package/locales/en-US/hotkey.json +46 -0
- package/locales/en-US/setting.json +12 -0
- package/locales/es-ES/hotkey.json +46 -0
- package/locales/es-ES/setting.json +12 -0
- package/locales/fa-IR/hotkey.json +46 -0
- package/locales/fa-IR/setting.json +12 -0
- package/locales/fr-FR/hotkey.json +46 -0
- package/locales/fr-FR/setting.json +12 -0
- package/locales/it-IT/hotkey.json +46 -0
- package/locales/it-IT/setting.json +12 -0
- package/locales/ja-JP/hotkey.json +46 -0
- package/locales/ja-JP/setting.json +12 -0
- package/locales/ko-KR/hotkey.json +46 -0
- package/locales/ko-KR/setting.json +12 -0
- package/locales/nl-NL/hotkey.json +46 -0
- package/locales/nl-NL/setting.json +12 -0
- package/locales/pl-PL/hotkey.json +46 -0
- package/locales/pl-PL/setting.json +12 -0
- package/locales/pt-BR/hotkey.json +46 -0
- package/locales/pt-BR/setting.json +12 -0
- package/locales/ru-RU/hotkey.json +46 -0
- package/locales/ru-RU/setting.json +12 -0
- package/locales/tr-TR/hotkey.json +46 -0
- package/locales/tr-TR/setting.json +12 -0
- package/locales/vi-VN/hotkey.json +46 -0
- package/locales/vi-VN/setting.json +12 -0
- package/locales/zh-CN/hotkey.json +46 -0
- package/locales/zh-CN/setting.json +12 -0
- package/locales/zh-TW/hotkey.json +46 -0
- package/locales/zh-TW/setting.json +12 -0
- package/package.json +3 -3
- package/src/app/[variants]/(main)/(mobile)/me/(home)/features/Category.tsx +1 -1
- package/src/app/[variants]/(main)/(mobile)/me/(home)/layout.tsx +3 -2
- package/src/app/[variants]/(main)/(mobile)/me/data/features/Category.tsx +1 -1
- package/src/app/[variants]/(main)/(mobile)/me/profile/features/Category.tsx +1 -1
- package/src/app/[variants]/(main)/(mobile)/me/settings/features/Category.tsx +1 -1
- package/src/app/[variants]/(main)/_layout/Desktop/RegisterHotkeys.tsx +11 -0
- package/src/app/[variants]/(main)/_layout/Desktop/SideBar/PinList/index.tsx +6 -23
- package/src/app/[variants]/(main)/_layout/Desktop/SideBar/TopActions.test.tsx +2 -0
- package/src/app/[variants]/(main)/_layout/Desktop/index.tsx +11 -4
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/SendMore.tsx +6 -21
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/ShortcutHint.tsx +13 -34
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/index.tsx +1 -1
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ZenModeToast/Toast.tsx +7 -4
- package/src/app/[variants]/(main)/chat/(workspace)/_layout/Desktop/ChatHeader/HeaderAction.tsx +12 -8
- package/src/app/[variants]/(main)/chat/(workspace)/_layout/Desktop/ChatHeader/Main.tsx +24 -30
- package/src/app/[variants]/(main)/chat/(workspace)/_layout/Desktop/index.tsx +0 -2
- package/src/app/[variants]/(main)/chat/(workspace)/features/SettingButton.tsx +12 -7
- package/src/app/[variants]/(main)/chat/@session/features/SessionSearchBar.tsx +5 -1
- package/src/app/[variants]/(main)/chat/_layout/Desktop/RegisterHotkeys.tsx +10 -0
- package/src/app/[variants]/(main)/chat/_layout/Desktop/index.tsx +5 -0
- package/src/app/[variants]/(main)/chat/_layout/Mobile.tsx +1 -1
- package/src/app/[variants]/(main)/discover/features/StoreSearchBar.tsx +5 -1
- package/src/app/[variants]/(main)/settings/hooks/useCategory.tsx +31 -21
- package/src/app/[variants]/(main)/settings/hotkey/features/HotkeySetting.tsx +80 -0
- package/src/app/[variants]/(main)/settings/hotkey/index.tsx +9 -0
- package/src/app/[variants]/(main)/settings/hotkey/page.tsx +15 -0
- package/src/app/[variants]/layout.tsx +16 -13
- package/src/const/hotkeys.ts +80 -10
- package/src/const/settings/hotkey.ts +10 -0
- package/src/const/settings/index.ts +3 -0
- package/src/database/client/migrations.json +46 -32
- package/src/database/migrations/0019_add_hotkey_user_settings.sql +2 -0
- package/src/database/migrations/meta/0019_snapshot.json +4218 -0
- package/src/database/migrations/meta/_journal.json +7 -0
- package/src/database/schemas/user.ts +1 -0
- package/src/database/server/models/user.ts +2 -0
- package/src/features/ChatInput/Desktop/InputArea/index.tsx +8 -0
- package/src/features/ChatInput/Desktop/index.tsx +0 -1
- package/src/features/ChatInput/Topic/index.tsx +10 -15
- package/src/features/FileManager/Header/FilesSearchBar.tsx +6 -2
- package/src/features/HotkeyHelperPanel/HotkeyContent.tsx +62 -0
- package/src/features/HotkeyHelperPanel/index.tsx +59 -0
- package/src/hooks/useHotkeys/chatScope.ts +105 -0
- package/src/hooks/useHotkeys/globalScope.ts +69 -0
- package/src/hooks/useHotkeys/index.ts +2 -0
- package/src/hooks/useHotkeys/useHotkeyById.test.ts +194 -0
- package/src/hooks/useHotkeys/useHotkeyById.ts +57 -0
- package/src/locales/default/hotkey.ts +50 -0
- package/src/locales/default/index.ts +2 -0
- package/src/locales/default/setting.ts +12 -0
- package/src/store/global/initialState.ts +3 -0
- package/src/store/user/slices/settings/selectors/__snapshots__/settings.test.ts.snap +79 -0
- package/src/store/user/slices/settings/selectors/settings.test.ts +131 -0
- package/src/store/user/slices/settings/selectors/settings.ts +6 -0
- package/src/types/hotkey.ts +59 -0
- package/src/types/user/settings/hotkey.ts +3 -0
- package/src/types/user/settings/index.ts +3 -0
- package/src/app/[variants]/(main)/chat/(workspace)/_layout/Desktop/HotKeys.tsx +0 -44
- package/src/components/HotKeys/index.tsx +0 -77
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,31 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
## [Version 1.76.0](https://github.com/lobehub/lobe-chat/compare/v1.75.5...v1.76.0)
|
6
|
+
|
7
|
+
<sup>Released on **2025-03-28**</sup>
|
8
|
+
|
9
|
+
#### ✨ Features
|
10
|
+
|
11
|
+
- **misc**: Add Hotkey Settings.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### What's improved
|
19
|
+
|
20
|
+
- **misc**: Add Hotkey Settings, closes [#7118](https://github.com/lobehub/lobe-chat/issues/7118) ([9773e74](https://github.com/lobehub/lobe-chat/commit/9773e74))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
5
30
|
### [Version 1.75.5](https://github.com/lobehub/lobe-chat/compare/v1.75.4...v1.75.5)
|
6
31
|
|
7
32
|
<sup>Released on **2025-03-28**</sup>
|
package/changelog/v1.json
CHANGED
@@ -0,0 +1,46 @@
|
|
1
|
+
{
|
2
|
+
"addUserMessage": {
|
3
|
+
"desc": "إضافة المحتوى الحالي كرسالة مستخدم دون تفعيل التوليد",
|
4
|
+
"title": "إضافة رسالة مستخدم"
|
5
|
+
},
|
6
|
+
"editMessage": {
|
7
|
+
"desc": "الدخول إلى وضع التحرير عن طريق الضغط على مفتاح Alt والنقر المزدوج على الرسالة",
|
8
|
+
"title": "تحرير الرسالة"
|
9
|
+
},
|
10
|
+
"openChatSettings": {
|
11
|
+
"desc": "عرض وتعديل إعدادات المحادثة الحالية",
|
12
|
+
"title": "فتح إعدادات المحادثة"
|
13
|
+
},
|
14
|
+
"openHotkeyHelper": {
|
15
|
+
"desc": "عرض جميع تعليمات استخدام الاختصارات",
|
16
|
+
"title": "فتح مساعدة الاختصارات"
|
17
|
+
},
|
18
|
+
"regenerateMessage": {
|
19
|
+
"desc": "إعادة توليد آخر رسالة",
|
20
|
+
"title": "إعادة توليد الرسالة"
|
21
|
+
},
|
22
|
+
"saveTopic": {
|
23
|
+
"desc": "حفظ الموضوع الحالي وفتح موضوع جديد",
|
24
|
+
"title": "فتح موضوع جديد"
|
25
|
+
},
|
26
|
+
"search": {
|
27
|
+
"desc": "استدعاء مربع البحث الرئيسي في الصفحة الحالية",
|
28
|
+
"title": "بحث"
|
29
|
+
},
|
30
|
+
"switchAgent": {
|
31
|
+
"desc": "تبديل المساعد المثبت في الشريط الجانبي عن طريق الضغط على Ctrl مع الأرقام من 0 إلى 9",
|
32
|
+
"title": "تبديل المساعد بسرعة"
|
33
|
+
},
|
34
|
+
"toggleLeftPanel": {
|
35
|
+
"desc": "عرض أو إخفاء لوحة المساعد على اليسار",
|
36
|
+
"title": "عرض/إخفاء لوحة المساعد"
|
37
|
+
},
|
38
|
+
"toggleRightPanel": {
|
39
|
+
"desc": "عرض أو إخفاء لوحة المواضيع على اليمين",
|
40
|
+
"title": "عرض/إخفاء لوحة الموضوع"
|
41
|
+
},
|
42
|
+
"toggleZenMode": {
|
43
|
+
"desc": "في وضع التركيز، عرض المحادثة الحالية فقط، وإخفاء واجهة المستخدم الأخرى",
|
44
|
+
"title": "تبديل وضع التركيز"
|
45
|
+
}
|
46
|
+
}
|
package/locales/ar/setting.json
CHANGED
@@ -42,6 +42,17 @@
|
|
42
42
|
"sessionWithName": "إعدادات الجلسة · {{name}}",
|
43
43
|
"title": "إعدادات"
|
44
44
|
},
|
45
|
+
"hotkey": {
|
46
|
+
"conflicts": "يتعارض مع اختصارات لوحة المفاتيح الحالية",
|
47
|
+
"group": {
|
48
|
+
"conversation": "المحادثة",
|
49
|
+
"essential": "أساسي"
|
50
|
+
},
|
51
|
+
"invalidCombination": "يجب أن تحتوي اختصارات لوحة المفاتيح على مفتاح تعديل واحد على الأقل (Ctrl، Alt، Shift) ومفتاح عادي واحد",
|
52
|
+
"record": "اضغط على المفتاح لتسجيل اختصار لوحة المفاتيح",
|
53
|
+
"reset": "إعادة تعيين إلى اختصارات لوحة المفاتيح الافتراضية",
|
54
|
+
"title": "اختصارات لوحة المفاتيح"
|
55
|
+
},
|
45
56
|
"llm": {
|
46
57
|
"aesGcm": "سيتم استخدام خوارزمية التشفير <1>AES-GCM</1> لتشفير مفتاحك وعنوان الوكيل",
|
47
58
|
"apiKey": {
|
@@ -425,6 +436,7 @@
|
|
425
436
|
"agent": "المساعد الافتراضي",
|
426
437
|
"common": "إعدادات عامة",
|
427
438
|
"experiment": "تجربة",
|
439
|
+
"hotkey": "اختصارات لوحة المفاتيح",
|
428
440
|
"llm": "نموذج اللغة",
|
429
441
|
"provider": "مزود خدمة الذكاء الاصطناعي",
|
430
442
|
"sync": "مزامنة السحابة",
|
@@ -0,0 +1,46 @@
|
|
1
|
+
{
|
2
|
+
"addUserMessage": {
|
3
|
+
"desc": "Добавете текущото съдържание като съобщение от потребителя, без да задействате генерирането",
|
4
|
+
"title": "Добавяне на съобщение от потребителя"
|
5
|
+
},
|
6
|
+
"editMessage": {
|
7
|
+
"desc": "Влезте в режим на редактиране, като задържите Alt и два пъти кликнете върху съобщението",
|
8
|
+
"title": "Редактиране на съобщение"
|
9
|
+
},
|
10
|
+
"openChatSettings": {
|
11
|
+
"desc": "Прегледайте и променете настройките на текущия разговор",
|
12
|
+
"title": "Отворете настройките на чата"
|
13
|
+
},
|
14
|
+
"openHotkeyHelper": {
|
15
|
+
"desc": "Прегледайте инструкциите за използване на всички клавишни комбинации",
|
16
|
+
"title": "Отворете помощта за клавишни комбинации"
|
17
|
+
},
|
18
|
+
"regenerateMessage": {
|
19
|
+
"desc": "Прегенерирайте последното съобщение",
|
20
|
+
"title": "Прегенериране на съобщение"
|
21
|
+
},
|
22
|
+
"saveTopic": {
|
23
|
+
"desc": "Запазете текущата тема и отворете нова",
|
24
|
+
"title": "Създаване на нова тема"
|
25
|
+
},
|
26
|
+
"search": {
|
27
|
+
"desc": "Активирайте основното поле за търсене на текущата страница",
|
28
|
+
"title": "Търсене"
|
29
|
+
},
|
30
|
+
"switchAgent": {
|
31
|
+
"desc": "Сменете помощника, фиксиран в страничната лента, като задържите Ctrl и натиснете число от 0 до 9",
|
32
|
+
"title": "Бърза смяна на помощника"
|
33
|
+
},
|
34
|
+
"toggleLeftPanel": {
|
35
|
+
"desc": "Показване или скриване на панела с помощ отляво",
|
36
|
+
"title": "Показване/скриване на панела с помощника"
|
37
|
+
},
|
38
|
+
"toggleRightPanel": {
|
39
|
+
"desc": "Показване или скриване на панела с теми отдясно",
|
40
|
+
"title": "Показване/скриване на панела с теми"
|
41
|
+
},
|
42
|
+
"toggleZenMode": {
|
43
|
+
"desc": "В режим на фокус, показвайте само текущия разговор, скривайки другия интерфейс",
|
44
|
+
"title": "Превключване на режим на фокус"
|
45
|
+
}
|
46
|
+
}
|
@@ -42,6 +42,17 @@
|
|
42
42
|
"sessionWithName": "Настройки на сесията · {{name}}",
|
43
43
|
"title": "Настройки"
|
44
44
|
},
|
45
|
+
"hotkey": {
|
46
|
+
"conflicts": "Конфликт с текущите клавишни комбинации",
|
47
|
+
"group": {
|
48
|
+
"conversation": "Разговор",
|
49
|
+
"essential": "Основен"
|
50
|
+
},
|
51
|
+
"invalidCombination": "Клавишната комбинация трябва да съдържа поне един модификатор (Ctrl, Alt, Shift) и един обикновен клавиш",
|
52
|
+
"record": "Натиснете клавиш, за да запишете клавишна комбинация",
|
53
|
+
"reset": "Нулиране до подразбиращите се клавишни комбинации",
|
54
|
+
"title": "Бързи клавиши"
|
55
|
+
},
|
45
56
|
"llm": {
|
46
57
|
"aesGcm": "Вашият ключ и адрес на агента ще бъдат криптирани с алгоритъма за криптиране <1>AES-GCM</1>",
|
47
58
|
"apiKey": {
|
@@ -425,6 +436,7 @@
|
|
425
436
|
"agent": "Агент по подразбиране",
|
426
437
|
"common": "Общи настройки",
|
427
438
|
"experiment": "Експеримент",
|
439
|
+
"hotkey": "Бързи клавиши",
|
428
440
|
"llm": "Езиков модел",
|
429
441
|
"provider": "AI доставчик",
|
430
442
|
"sync": "Синхронизиране в облака",
|
@@ -0,0 +1,46 @@
|
|
1
|
+
{
|
2
|
+
"addUserMessage": {
|
3
|
+
"desc": "Fügen Sie den aktuellen Eingabetext als Benutzernachricht hinzu, ohne die Generierung auszulösen",
|
4
|
+
"title": "Benutzernachricht hinzufügen"
|
5
|
+
},
|
6
|
+
"editMessage": {
|
7
|
+
"desc": "Treten Sie in den Bearbeitungsmodus, indem Sie die Alt-Taste gedrückt halten und auf die Nachricht doppelklicken",
|
8
|
+
"title": "Nachricht bearbeiten"
|
9
|
+
},
|
10
|
+
"openChatSettings": {
|
11
|
+
"desc": "Aktuelle Sitzungseinstellungen anzeigen und ändern",
|
12
|
+
"title": "Chat-Einstellungen öffnen"
|
13
|
+
},
|
14
|
+
"openHotkeyHelper": {
|
15
|
+
"desc": "Anleitung zur Verwendung aller Tastenkombinationen anzeigen",
|
16
|
+
"title": "Tastenkombinationshilfe öffnen"
|
17
|
+
},
|
18
|
+
"regenerateMessage": {
|
19
|
+
"desc": "Die letzte Nachricht neu generieren",
|
20
|
+
"title": "Nachricht neu generieren"
|
21
|
+
},
|
22
|
+
"saveTopic": {
|
23
|
+
"desc": "Das aktuelle Thema speichern und ein neues Thema öffnen",
|
24
|
+
"title": "Neues Thema beginnen"
|
25
|
+
},
|
26
|
+
"search": {
|
27
|
+
"desc": "Hauptsuchfeld der aktuellen Seite aufrufen",
|
28
|
+
"title": "Suche"
|
29
|
+
},
|
30
|
+
"switchAgent": {
|
31
|
+
"desc": "Wechseln Sie zwischen den im Seitenbereich fixierten Assistenten, indem Sie die Strg-Taste gedrückt halten und eine Zahl von 0 bis 9 drücken",
|
32
|
+
"title": "Schnell zwischen Assistenten wechseln"
|
33
|
+
},
|
34
|
+
"toggleLeftPanel": {
|
35
|
+
"desc": "Linkes Hilfepanel ein- oder ausblenden",
|
36
|
+
"title": "Assistentenpanel ein-/ausblenden"
|
37
|
+
},
|
38
|
+
"toggleRightPanel": {
|
39
|
+
"desc": "Rechtes Themenpanel ein- oder ausblenden",
|
40
|
+
"title": "Themenpanel ein-/ausblenden"
|
41
|
+
},
|
42
|
+
"toggleZenMode": {
|
43
|
+
"desc": "Im Fokusmodus nur die aktuelle Sitzung anzeigen, andere UI ausblenden",
|
44
|
+
"title": "Fokussierungsmodus umschalten"
|
45
|
+
}
|
46
|
+
}
|
@@ -42,6 +42,17 @@
|
|
42
42
|
"sessionWithName": "Sitzungseinstellungen · {{name}}",
|
43
43
|
"title": "Einstellungen"
|
44
44
|
},
|
45
|
+
"hotkey": {
|
46
|
+
"conflicts": "Konflikte mit bestehenden Tastenkombinationen",
|
47
|
+
"group": {
|
48
|
+
"conversation": "Gespräch",
|
49
|
+
"essential": "Grundlegend"
|
50
|
+
},
|
51
|
+
"invalidCombination": "Die Tastenkombination muss mindestens einen Modifikatortaste (Strg, Alt, Umschalt) und eine normale Taste enthalten",
|
52
|
+
"record": "Drücken Sie eine Taste, um die Tastenkombination aufzuzeichnen",
|
53
|
+
"reset": "Auf die Standard-Tastenkombination zurücksetzen",
|
54
|
+
"title": "Tastenkombinationen"
|
55
|
+
},
|
45
56
|
"llm": {
|
46
57
|
"aesGcm": "Ihr Schlüssel und Ihre Proxy-Adresse werden mit dem <1>AES-GCM</1> Verschlüsselungsalgorithmus verschlüsselt.",
|
47
58
|
"apiKey": {
|
@@ -425,6 +436,7 @@
|
|
425
436
|
"agent": "Standard-Assistent",
|
426
437
|
"common": "Allgemeine Einstellungen",
|
427
438
|
"experiment": "Experiment",
|
439
|
+
"hotkey": "Tastenkombinationen",
|
428
440
|
"llm": "Sprachmodell",
|
429
441
|
"provider": "KI-Dienstanbieter",
|
430
442
|
"sync": "Cloud-Synchronisierung",
|
@@ -0,0 +1,46 @@
|
|
1
|
+
{
|
2
|
+
"addUserMessage": {
|
3
|
+
"desc": "Add the current input as a user message without triggering generation",
|
4
|
+
"title": "Add a User Message"
|
5
|
+
},
|
6
|
+
"editMessage": {
|
7
|
+
"desc": "Enter edit mode by holding Alt and double-clicking the message",
|
8
|
+
"title": "Edit Message"
|
9
|
+
},
|
10
|
+
"openChatSettings": {
|
11
|
+
"desc": "View and modify the settings for the current conversation",
|
12
|
+
"title": "Open Chat Settings"
|
13
|
+
},
|
14
|
+
"openHotkeyHelper": {
|
15
|
+
"desc": "View instructions for all keyboard shortcuts",
|
16
|
+
"title": "Open Hotkey Help"
|
17
|
+
},
|
18
|
+
"regenerateMessage": {
|
19
|
+
"desc": "Regenerate the last message",
|
20
|
+
"title": "Regenerate Message"
|
21
|
+
},
|
22
|
+
"saveTopic": {
|
23
|
+
"desc": "Save the current topic and open a new one",
|
24
|
+
"title": "Start a New Topic"
|
25
|
+
},
|
26
|
+
"search": {
|
27
|
+
"desc": "Activate the main search box on the current page",
|
28
|
+
"title": "Search"
|
29
|
+
},
|
30
|
+
"switchAgent": {
|
31
|
+
"desc": "Switch between pinned assistants in the sidebar by holding Ctrl and pressing numbers 0-9",
|
32
|
+
"title": "Quick Switch Assistant"
|
33
|
+
},
|
34
|
+
"toggleLeftPanel": {
|
35
|
+
"desc": "Show or hide the left assistant panel",
|
36
|
+
"title": "Show/Hide Assistant Panel"
|
37
|
+
},
|
38
|
+
"toggleRightPanel": {
|
39
|
+
"desc": "Show or hide the right topics panel",
|
40
|
+
"title": "Show/Hide Topic Panel"
|
41
|
+
},
|
42
|
+
"toggleZenMode": {
|
43
|
+
"desc": "In focus mode, only display the current conversation and hide other UI elements",
|
44
|
+
"title": "Toggle Focus Mode"
|
45
|
+
}
|
46
|
+
}
|
@@ -42,6 +42,17 @@
|
|
42
42
|
"sessionWithName": "Session Settings · {{name}}",
|
43
43
|
"title": "Settings"
|
44
44
|
},
|
45
|
+
"hotkey": {
|
46
|
+
"conflicts": "Conflicts with existing hotkeys",
|
47
|
+
"group": {
|
48
|
+
"conversation": "Conversation",
|
49
|
+
"essential": "Essential"
|
50
|
+
},
|
51
|
+
"invalidCombination": "The hotkey must include at least one modifier key (Ctrl, Alt, Shift) and one regular key",
|
52
|
+
"record": "Press a key to record the hotkey",
|
53
|
+
"reset": "Reset to default hotkeys",
|
54
|
+
"title": "Hotkeys"
|
55
|
+
},
|
45
56
|
"llm": {
|
46
57
|
"aesGcm": "Your keys and proxy address will be encrypted using the <1>AES-GCM</1> encryption algorithm",
|
47
58
|
"apiKey": {
|
@@ -425,6 +436,7 @@
|
|
425
436
|
"agent": "Default Assistant",
|
426
437
|
"common": "Common Settings",
|
427
438
|
"experiment": "Experiment",
|
439
|
+
"hotkey": "Hotkeys",
|
428
440
|
"llm": "Language Model",
|
429
441
|
"provider": "AI Service Provider",
|
430
442
|
"sync": "Cloud Sync",
|
@@ -0,0 +1,46 @@
|
|
1
|
+
{
|
2
|
+
"addUserMessage": {
|
3
|
+
"desc": "Añadir el contenido actual como un mensaje de usuario, pero sin activar la generación",
|
4
|
+
"title": "Añadir un mensaje de usuario"
|
5
|
+
},
|
6
|
+
"editMessage": {
|
7
|
+
"desc": "Entrar en modo de edición manteniendo presionada la tecla Alt y haciendo doble clic en el mensaje",
|
8
|
+
"title": "Editar mensaje"
|
9
|
+
},
|
10
|
+
"openChatSettings": {
|
11
|
+
"desc": "Ver y modificar la configuración de la conversación actual",
|
12
|
+
"title": "Abrir configuración de la conversación"
|
13
|
+
},
|
14
|
+
"openHotkeyHelper": {
|
15
|
+
"desc": "Ver las instrucciones de uso de todos los atajos de teclado",
|
16
|
+
"title": "Abrir ayuda de atajos de teclado"
|
17
|
+
},
|
18
|
+
"regenerateMessage": {
|
19
|
+
"desc": "Regenerar el último mensaje",
|
20
|
+
"title": "Regenerar mensaje"
|
21
|
+
},
|
22
|
+
"saveTopic": {
|
23
|
+
"desc": "Guardar el tema actual y abrir un nuevo tema",
|
24
|
+
"title": "Iniciar un nuevo tema"
|
25
|
+
},
|
26
|
+
"search": {
|
27
|
+
"desc": "Invocar el cuadro de búsqueda principal de la página actual",
|
28
|
+
"title": "Buscar"
|
29
|
+
},
|
30
|
+
"switchAgent": {
|
31
|
+
"desc": "Cambiar el asistente fijado en la barra lateral manteniendo presionada la tecla Ctrl y pulsando un número del 0 al 9",
|
32
|
+
"title": "Cambio rápido de asistente"
|
33
|
+
},
|
34
|
+
"toggleLeftPanel": {
|
35
|
+
"desc": "Mostrar u ocultar el panel de asistente a la izquierda",
|
36
|
+
"title": "Mostrar/Ocultar panel de asistente"
|
37
|
+
},
|
38
|
+
"toggleRightPanel": {
|
39
|
+
"desc": "Mostrar u ocultar el panel de temas a la derecha",
|
40
|
+
"title": "Mostrar/Ocultar panel de temas"
|
41
|
+
},
|
42
|
+
"toggleZenMode": {
|
43
|
+
"desc": "En modo de enfoque, solo se muestra la conversación actual, ocultando otras interfaces",
|
44
|
+
"title": "Alternar modo de enfoque"
|
45
|
+
}
|
46
|
+
}
|
@@ -42,6 +42,17 @@
|
|
42
42
|
"sessionWithName": "Configuración de la sesión · {{name}}",
|
43
43
|
"title": "Configuración"
|
44
44
|
},
|
45
|
+
"hotkey": {
|
46
|
+
"conflicts": "Conflicto con las teclas de acceso rápido existentes",
|
47
|
+
"group": {
|
48
|
+
"conversation": "Conversación",
|
49
|
+
"essential": "Esencial"
|
50
|
+
},
|
51
|
+
"invalidCombination": "La combinación de teclas de acceso rápido debe incluir al menos una tecla modificadora (Ctrl, Alt, Shift) y una tecla normal",
|
52
|
+
"record": "Presiona una tecla para grabar la tecla de acceso rápido",
|
53
|
+
"reset": "Restablecer a las teclas de acceso rápido predeterminadas",
|
54
|
+
"title": "Atajos de teclado"
|
55
|
+
},
|
45
56
|
"llm": {
|
46
57
|
"aesGcm": "Su clave y dirección del agente se cifrarán utilizando el algoritmo de cifrado <1>AES-GCM</1>",
|
47
58
|
"apiKey": {
|
@@ -425,6 +436,7 @@
|
|
425
436
|
"agent": "Asistente predeterminado",
|
426
437
|
"common": "Configuración común",
|
427
438
|
"experiment": "Experimento",
|
439
|
+
"hotkey": "Atajos de teclado",
|
428
440
|
"llm": "Modelo de lenguaje",
|
429
441
|
"provider": "Proveedor de servicios de IA",
|
430
442
|
"sync": "Sincronización en la nube",
|
@@ -0,0 +1,46 @@
|
|
1
|
+
{
|
2
|
+
"addUserMessage": {
|
3
|
+
"desc": "محتوای ورودی فعلی را به عنوان پیام کاربر اضافه کنید، اما تولید را فعال نکنید",
|
4
|
+
"title": "اضافه کردن یک پیام کاربر"
|
5
|
+
},
|
6
|
+
"editMessage": {
|
7
|
+
"desc": "با نگه داشتن کلید Alt و دوبار کلیک بر روی پیام وارد حالت ویرایش شوید",
|
8
|
+
"title": "ویرایش پیام"
|
9
|
+
},
|
10
|
+
"openChatSettings": {
|
11
|
+
"desc": "مشاهده و ویرایش تنظیمات کنونی گفتگو",
|
12
|
+
"title": "باز کردن تنظیمات گفتگو"
|
13
|
+
},
|
14
|
+
"openHotkeyHelper": {
|
15
|
+
"desc": "مشاهده تمام توضیحات استفاده از کلیدهای میانبر",
|
16
|
+
"title": "باز کردن راهنمای کلیدهای میانبر"
|
17
|
+
},
|
18
|
+
"regenerateMessage": {
|
19
|
+
"desc": "آخرین پیام را دوباره تولید کنید",
|
20
|
+
"title": "تولید مجدد پیام"
|
21
|
+
},
|
22
|
+
"saveTopic": {
|
23
|
+
"desc": "موضوع فعلی را ذخیره کرده و یک موضوع جدید باز کنید",
|
24
|
+
"title": "باز کردن موضوع جدید"
|
25
|
+
},
|
26
|
+
"search": {
|
27
|
+
"desc": "فعال کردن جعبه جستجوی اصلی صفحه کنونی",
|
28
|
+
"title": "جستجو"
|
29
|
+
},
|
30
|
+
"switchAgent": {
|
31
|
+
"desc": "با نگه داشتن Ctrl و زدن عدد 0~9، دستیار ثابت در نوار کناری را تغییر دهید",
|
32
|
+
"title": "تغییر سریع دستیار"
|
33
|
+
},
|
34
|
+
"toggleLeftPanel": {
|
35
|
+
"desc": "نمایش یا پنهان کردن پنل دستیار سمت چپ",
|
36
|
+
"title": "نمایش/پنهان کردن پنل دستیار"
|
37
|
+
},
|
38
|
+
"toggleRightPanel": {
|
39
|
+
"desc": "نمایش یا پنهان کردن پنل موضوعات سمت راست",
|
40
|
+
"title": "نمایش/پنهان کردن پنل موضوع"
|
41
|
+
},
|
42
|
+
"toggleZenMode": {
|
43
|
+
"desc": "در حالت تمرکز، فقط گفتگو کنونی نمایش داده میشود و سایر رابطهای کاربری پنهان میشوند",
|
44
|
+
"title": "تغییر حالت تمرکز"
|
45
|
+
}
|
46
|
+
}
|
@@ -42,6 +42,17 @@
|
|
42
42
|
"sessionWithName": "تنظیمات جلسه · {{name}}",
|
43
43
|
"title": "تنظیمات"
|
44
44
|
},
|
45
|
+
"hotkey": {
|
46
|
+
"conflicts": "تداخل با کلیدهای میانبر موجود",
|
47
|
+
"group": {
|
48
|
+
"conversation": "گفتگو",
|
49
|
+
"essential": "اساسی"
|
50
|
+
},
|
51
|
+
"invalidCombination": "کلیدهای میانبر باید حداقل شامل یک کلید اصلاحی (Ctrl, Alt, Shift) و یک کلید معمولی باشند",
|
52
|
+
"record": "برای ضبط کلید میانبر، کلید را فشار دهید",
|
53
|
+
"reset": "بازنشانی به کلیدهای میانبر پیشفرض",
|
54
|
+
"title": "کلیدهای میانبر"
|
55
|
+
},
|
45
56
|
"llm": {
|
46
57
|
"aesGcm": "کلید و آدرس پروکسی شما با استفاده از الگوریتم رمزنگاری <1>AES-GCM</1> رمزگذاری خواهد شد",
|
47
58
|
"apiKey": {
|
@@ -425,6 +436,7 @@
|
|
425
436
|
"agent": "دستیار پیشفرض",
|
426
437
|
"common": "تنظیمات عمومی",
|
427
438
|
"experiment": "آزمایش",
|
439
|
+
"hotkey": "کلیدهای میانبر",
|
428
440
|
"llm": "مدل زبان",
|
429
441
|
"provider": "ارائه دهنده خدمات هوش مصنوعی",
|
430
442
|
"sync": "همگامسازی ابری",
|
@@ -0,0 +1,46 @@
|
|
1
|
+
{
|
2
|
+
"addUserMessage": {
|
3
|
+
"desc": "Ajouter le contenu actuel en tant que message utilisateur sans déclencher de génération",
|
4
|
+
"title": "Ajouter un message utilisateur"
|
5
|
+
},
|
6
|
+
"editMessage": {
|
7
|
+
"desc": "Entrez en mode édition en maintenant la touche Alt enfoncée et en double-cliquant sur le message",
|
8
|
+
"title": "Éditer le message"
|
9
|
+
},
|
10
|
+
"openChatSettings": {
|
11
|
+
"desc": "Voir et modifier les paramètres de la conversation actuelle",
|
12
|
+
"title": "Ouvrir les paramètres de la conversation"
|
13
|
+
},
|
14
|
+
"openHotkeyHelper": {
|
15
|
+
"desc": "Voir les instructions d'utilisation de tous les raccourcis",
|
16
|
+
"title": "Ouvrir l'aide des raccourcis"
|
17
|
+
},
|
18
|
+
"regenerateMessage": {
|
19
|
+
"desc": "Régénérer le dernier message",
|
20
|
+
"title": "Régénérer le message"
|
21
|
+
},
|
22
|
+
"saveTopic": {
|
23
|
+
"desc": "Enregistrer le sujet actuel et ouvrir un nouveau sujet",
|
24
|
+
"title": "Ouvrir un nouveau sujet"
|
25
|
+
},
|
26
|
+
"search": {
|
27
|
+
"desc": "Faire apparaître la barre de recherche principale de la page actuelle",
|
28
|
+
"title": "Rechercher"
|
29
|
+
},
|
30
|
+
"switchAgent": {
|
31
|
+
"desc": "Changer d'assistant fixé dans la barre latérale en maintenant Ctrl et en appuyant sur un chiffre de 0 à 9",
|
32
|
+
"title": "Changer rapidement d'assistant"
|
33
|
+
},
|
34
|
+
"toggleLeftPanel": {
|
35
|
+
"desc": "Afficher ou masquer le panneau d'assistance à gauche",
|
36
|
+
"title": "Afficher/masquer le panneau de l'assistant"
|
37
|
+
},
|
38
|
+
"toggleRightPanel": {
|
39
|
+
"desc": "Afficher ou masquer le panneau de sujets à droite",
|
40
|
+
"title": "Afficher/masquer le panneau de sujet"
|
41
|
+
},
|
42
|
+
"toggleZenMode": {
|
43
|
+
"desc": "En mode concentration, n'afficher que la conversation actuelle, masquer les autres interfaces",
|
44
|
+
"title": "Basculer en mode concentration"
|
45
|
+
}
|
46
|
+
}
|
@@ -42,6 +42,17 @@
|
|
42
42
|
"sessionWithName": "Paramètres de session · {{name}}",
|
43
43
|
"title": "Paramètres"
|
44
44
|
},
|
45
|
+
"hotkey": {
|
46
|
+
"conflicts": "Conflit avec les raccourcis existants",
|
47
|
+
"group": {
|
48
|
+
"conversation": "Conversation",
|
49
|
+
"essential": "Essentiel"
|
50
|
+
},
|
51
|
+
"invalidCombination": "Le raccourci doit contenir au moins une touche de modification (Ctrl, Alt, Shift) et une touche normale",
|
52
|
+
"record": "Appuyez sur une touche pour enregistrer le raccourci",
|
53
|
+
"reset": "Réinitialiser aux raccourcis par défaut",
|
54
|
+
"title": "Raccourcis clavier"
|
55
|
+
},
|
45
56
|
"llm": {
|
46
57
|
"aesGcm": "Votre clé, votre adresse de proxy, etc. seront cryptées à l'aide de l'algorithme de chiffrement <1>AES-GCM</1>",
|
47
58
|
"apiKey": {
|
@@ -425,6 +436,7 @@
|
|
425
436
|
"agent": "Agent par défaut",
|
426
437
|
"common": "Paramètres généraux",
|
427
438
|
"experiment": "Expérience",
|
439
|
+
"hotkey": "Raccourcis clavier",
|
428
440
|
"llm": "Modèle de langue",
|
429
441
|
"provider": "Fournisseur de services d'IA",
|
430
442
|
"sync": "Synchronisation cloud",
|
@@ -0,0 +1,46 @@
|
|
1
|
+
{
|
2
|
+
"addUserMessage": {
|
3
|
+
"desc": "Aggiungi il contenuto attuale come messaggio utente, senza attivare la generazione",
|
4
|
+
"title": "Aggiungi un messaggio utente"
|
5
|
+
},
|
6
|
+
"editMessage": {
|
7
|
+
"desc": "Entra in modalità di modifica tenendo premuto Alt e facendo doppio clic sul messaggio",
|
8
|
+
"title": "Modifica messaggio"
|
9
|
+
},
|
10
|
+
"openChatSettings": {
|
11
|
+
"desc": "Visualizza e modifica le impostazioni della conversazione attuale",
|
12
|
+
"title": "Apri impostazioni chat"
|
13
|
+
},
|
14
|
+
"openHotkeyHelper": {
|
15
|
+
"desc": "Visualizza le istruzioni per l'uso di tutte le scorciatoie da tastiera",
|
16
|
+
"title": "Apri aiuto scorciatoie"
|
17
|
+
},
|
18
|
+
"regenerateMessage": {
|
19
|
+
"desc": "Rigenera l'ultimo messaggio",
|
20
|
+
"title": "Rigenera messaggio"
|
21
|
+
},
|
22
|
+
"saveTopic": {
|
23
|
+
"desc": "Salva l'argomento attuale e apri un nuovo argomento",
|
24
|
+
"title": "Inizia un nuovo argomento"
|
25
|
+
},
|
26
|
+
"search": {
|
27
|
+
"desc": "Attiva la barra di ricerca principale della pagina corrente",
|
28
|
+
"title": "Cerca"
|
29
|
+
},
|
30
|
+
"switchAgent": {
|
31
|
+
"desc": "Cambia l'assistente fissato nella barra laterale tenendo premuto Ctrl e premendo un numero da 0 a 9",
|
32
|
+
"title": "Cambia assistente rapidamente"
|
33
|
+
},
|
34
|
+
"toggleLeftPanel": {
|
35
|
+
"desc": "Mostra o nascondi il pannello assistente a sinistra",
|
36
|
+
"title": "Mostra/Nascondi pannello assistente"
|
37
|
+
},
|
38
|
+
"toggleRightPanel": {
|
39
|
+
"desc": "Mostra o nascondi il pannello argomenti a destra",
|
40
|
+
"title": "Mostra/Nascondi pannello argomenti"
|
41
|
+
},
|
42
|
+
"toggleZenMode": {
|
43
|
+
"desc": "In modalità concentrazione, mostra solo la conversazione attuale, nascondendo altre interfacce",
|
44
|
+
"title": "Attiva/disattiva modalità di concentrazione"
|
45
|
+
}
|
46
|
+
}
|
@@ -42,6 +42,17 @@
|
|
42
42
|
"sessionWithName": "Impostazioni della sessione · {{name}}",
|
43
43
|
"title": "Impostazioni"
|
44
44
|
},
|
45
|
+
"hotkey": {
|
46
|
+
"conflicts": "In conflitto con i tasti di scelta rapida esistenti",
|
47
|
+
"group": {
|
48
|
+
"conversation": "Conversazione",
|
49
|
+
"essential": "Essenziale"
|
50
|
+
},
|
51
|
+
"invalidCombination": "La combinazione di tasti deve contenere almeno un tasto modificatore (Ctrl, Alt, Shift) e un tasto normale",
|
52
|
+
"record": "Premi un tasto per registrare la scorciatoia",
|
53
|
+
"reset": "Ripristina le scorciatoie predefinite",
|
54
|
+
"title": "Scorciatoie"
|
55
|
+
},
|
45
56
|
"llm": {
|
46
57
|
"aesGcm": "La tua chiave e l'indirizzo dell'agente saranno crittografati utilizzando l'algoritmo di crittografia <1>AES-GCM</1>",
|
47
58
|
"apiKey": {
|
@@ -425,6 +436,7 @@
|
|
425
436
|
"agent": "Assistente predefinito",
|
426
437
|
"common": "Impostazioni comuni",
|
427
438
|
"experiment": "实验",
|
439
|
+
"hotkey": "Scorciatoie",
|
428
440
|
"llm": "Modello linguistico",
|
429
441
|
"provider": "Fornitore di servizi AI",
|
430
442
|
"sync": "云端同步",
|