@lobehub/chat 1.75.5 → 1.76.1
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 +50 -0
- package/Dockerfile +3 -2
- package/Dockerfile.database +3 -1
- package/Dockerfile.pglite +3 -1
- package/changelog/v1.json +18 -0
- package/docs/developer/database-schema.dbml +1 -0
- package/locales/ar/hotkey.json +46 -0
- package/locales/ar/models.json +3 -0
- package/locales/ar/setting.json +12 -0
- package/locales/bg-BG/hotkey.json +46 -0
- package/locales/bg-BG/models.json +3 -0
- package/locales/bg-BG/setting.json +12 -0
- package/locales/de-DE/hotkey.json +46 -0
- package/locales/de-DE/models.json +3 -0
- package/locales/de-DE/setting.json +12 -0
- package/locales/en-US/hotkey.json +46 -0
- package/locales/en-US/models.json +3 -0
- package/locales/en-US/setting.json +12 -0
- package/locales/es-ES/hotkey.json +46 -0
- package/locales/es-ES/models.json +3 -0
- package/locales/es-ES/setting.json +12 -0
- package/locales/fa-IR/hotkey.json +46 -0
- package/locales/fa-IR/models.json +3 -0
- package/locales/fa-IR/setting.json +12 -0
- package/locales/fr-FR/hotkey.json +46 -0
- package/locales/fr-FR/models.json +3 -0
- package/locales/fr-FR/setting.json +12 -0
- package/locales/it-IT/hotkey.json +46 -0
- package/locales/it-IT/models.json +3 -0
- package/locales/it-IT/setting.json +12 -0
- package/locales/ja-JP/hotkey.json +46 -0
- package/locales/ja-JP/models.json +3 -0
- package/locales/ja-JP/setting.json +12 -0
- package/locales/ko-KR/hotkey.json +46 -0
- package/locales/ko-KR/models.json +3 -0
- package/locales/ko-KR/setting.json +12 -0
- package/locales/nl-NL/hotkey.json +46 -0
- package/locales/nl-NL/models.json +3 -0
- package/locales/nl-NL/setting.json +12 -0
- package/locales/pl-PL/hotkey.json +46 -0
- package/locales/pl-PL/models.json +3 -0
- package/locales/pl-PL/setting.json +12 -0
- package/locales/pt-BR/hotkey.json +46 -0
- package/locales/pt-BR/models.json +3 -0
- package/locales/pt-BR/setting.json +12 -0
- package/locales/ru-RU/hotkey.json +46 -0
- package/locales/ru-RU/models.json +3 -0
- package/locales/ru-RU/setting.json +12 -0
- package/locales/tr-TR/hotkey.json +46 -0
- package/locales/tr-TR/models.json +3 -0
- package/locales/tr-TR/setting.json +12 -0
- package/locales/vi-VN/hotkey.json +46 -0
- package/locales/vi-VN/models.json +3 -0
- package/locales/vi-VN/setting.json +12 -0
- package/locales/zh-CN/hotkey.json +46 -0
- package/locales/zh-CN/models.json +3 -0
- package/locales/zh-CN/setting.json +12 -0
- package/locales/zh-TW/hotkey.json +46 -0
- package/locales/zh-TW/models.json +3 -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]/(main)/settings/tts/features/const.tsx +4 -0
- package/src/app/[variants]/layout.tsx +16 -13
- package/src/config/aiModels/openai.ts +10 -0
- 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/types/user/settings/tts.ts +1 -1
- package/src/app/[variants]/(main)/chat/(workspace)/_layout/Desktop/HotKeys.tsx +0 -44
- package/src/components/HotKeys/index.tsx +0 -77
@@ -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
|
+
}
|
@@ -1082,6 +1082,9 @@
|
|
1082
1082
|
"gpt-4o-mini-realtime-preview": {
|
1083
1083
|
"description": "Version mini en temps réel de GPT-4o, prenant en charge les entrées et sorties audio et textuelles en temps réel."
|
1084
1084
|
},
|
1085
|
+
"gpt-4o-mini-tts": {
|
1086
|
+
"description": "GPT-4o mini TTS est un modèle de synthèse vocale basé sur GPT-4o mini, offrant une génération de voix de haute qualité à un coût plus faible."
|
1087
|
+
},
|
1085
1088
|
"gpt-4o-realtime-preview": {
|
1086
1089
|
"description": "Version en temps réel de GPT-4o, prenant en charge les entrées et sorties audio et textuelles en temps réel."
|
1087
1090
|
},
|
@@ -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
|
+
}
|
@@ -1082,6 +1082,9 @@
|
|
1082
1082
|
"gpt-4o-mini-realtime-preview": {
|
1083
1083
|
"description": "Versione in tempo reale di GPT-4o-mini, supporta input e output audio e testuali in tempo reale."
|
1084
1084
|
},
|
1085
|
+
"gpt-4o-mini-tts": {
|
1086
|
+
"description": "GPT-4o mini TTS è un modello di sintesi vocale basato su GPT-4o mini, che offre una generazione di voce di alta qualità a un costo più basso."
|
1087
|
+
},
|
1085
1088
|
"gpt-4o-realtime-preview": {
|
1086
1089
|
"description": "Versione in tempo reale di GPT-4o, supporta input e output audio e testuali in tempo reale."
|
1087
1090
|
},
|
@@ -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": "云端同步",
|
@@ -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": "集中モードでは、現在の会話のみを表示し、他のUIを隠す",
|
44
|
+
"title": "集中モードを切り替え"
|
45
|
+
}
|
46
|
+
}
|
@@ -1082,6 +1082,9 @@
|
|
1082
1082
|
"gpt-4o-mini-realtime-preview": {
|
1083
1083
|
"description": "GPT-4o-miniリアルタイムバージョン、音声とテキストのリアルタイム入力と出力をサポート"
|
1084
1084
|
},
|
1085
|
+
"gpt-4o-mini-tts": {
|
1086
|
+
"description": "GPT-4o mini TTS は、GPT-4o mini に基づくテキスト音声合成モデルで、高品質な音声生成を低コストで提供します。"
|
1087
|
+
},
|
1085
1088
|
"gpt-4o-realtime-preview": {
|
1086
1089
|
"description": "GPT-4oリアルタイムバージョン、音声とテキストのリアルタイム入力と出力をサポート"
|
1087
1090
|
},
|
@@ -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": "ショートカットキーには少なくとも1つの修飾キー(Ctrl、Alt、Shift)と1つの通常のキーが必要です",
|
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": "현재 입력 내용을 사용자 메시지로 추가하되 생성은 트리거하지 않음",
|
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": "집중 모드에서는 현재 대화만 표시하고 다른 UI를 숨깁니다.",
|
44
|
+
"title": "집중 모드 전환"
|
45
|
+
}
|
46
|
+
}
|
@@ -1082,6 +1082,9 @@
|
|
1082
1082
|
"gpt-4o-mini-realtime-preview": {
|
1083
1083
|
"description": "GPT-4o-mini 실시간 버전으로, 오디오 및 텍스트의 실시간 입력 및 출력을 지원합니다."
|
1084
1084
|
},
|
1085
|
+
"gpt-4o-mini-tts": {
|
1086
|
+
"description": "GPT-4o mini TTS 는 GPT-4o mini 에 기반한 텍스트 음성 변환 모델로, 높은 품질의 음성 생성을 저렴한 가격으로 제공합니다."
|
1087
|
+
},
|
1085
1088
|
"gpt-4o-realtime-preview": {
|
1086
1089
|
"description": "GPT-4o 실시간 버전으로, 오디오 및 텍스트의 실시간 입력 및 출력을 지원합니다."
|
1087
1090
|
},
|
@@ -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": "Voeg de huidige invoer toe als gebruikersbericht, maar activeer geen generatie",
|
4
|
+
"title": "Voeg een gebruikersbericht toe"
|
5
|
+
},
|
6
|
+
"editMessage": {
|
7
|
+
"desc": "Ga naar de bewerkingsmodus door Alt ingedrukt te houden en op het bericht te dubbelklikken",
|
8
|
+
"title": "Bewerk bericht"
|
9
|
+
},
|
10
|
+
"openChatSettings": {
|
11
|
+
"desc": "Bekijk en wijzig de instellingen van de huidige sessie",
|
12
|
+
"title": "Open gespreksinstellingen"
|
13
|
+
},
|
14
|
+
"openHotkeyHelper": {
|
15
|
+
"desc": "Bekijk de gebruiksaanwijzing voor alle sneltoetsen",
|
16
|
+
"title": "Open sneltoets hulp"
|
17
|
+
},
|
18
|
+
"regenerateMessage": {
|
19
|
+
"desc": "Genereer het laatste bericht opnieuw",
|
20
|
+
"title": "Genereer bericht opnieuw"
|
21
|
+
},
|
22
|
+
"saveTopic": {
|
23
|
+
"desc": "Sla het huidige onderwerp op en open een nieuw onderwerp",
|
24
|
+
"title": "Start nieuw onderwerp"
|
25
|
+
},
|
26
|
+
"search": {
|
27
|
+
"desc": "Roep het hoofdzoekvak van de huidige pagina op",
|
28
|
+
"title": "Zoeken"
|
29
|
+
},
|
30
|
+
"switchAgent": {
|
31
|
+
"desc": "Schakel tussen de in de zijbalk vastgezette assistenten door Ctrl ingedrukt te houden en een cijfer van 0~9 te drukken",
|
32
|
+
"title": "Snel wisselen van assistent"
|
33
|
+
},
|
34
|
+
"toggleLeftPanel": {
|
35
|
+
"desc": "Toon of verberg het linker assistentpaneel",
|
36
|
+
"title": "Toon/verberg assistentpaneel"
|
37
|
+
},
|
38
|
+
"toggleRightPanel": {
|
39
|
+
"desc": "Toon of verberg het rechter onderwerp paneel",
|
40
|
+
"title": "Toon/verberg onderwerp paneel"
|
41
|
+
},
|
42
|
+
"toggleZenMode": {
|
43
|
+
"desc": "In de focusmodus wordt alleen de huidige sessie weergegeven, andere UI-elementen worden verborgen",
|
44
|
+
"title": "Schakel focusmodus in"
|
45
|
+
}
|
46
|
+
}
|
@@ -1082,6 +1082,9 @@
|
|
1082
1082
|
"gpt-4o-mini-realtime-preview": {
|
1083
1083
|
"description": "GPT-4o-mini realtime versie, ondersteunt audio en tekst realtime invoer en uitvoer."
|
1084
1084
|
},
|
1085
|
+
"gpt-4o-mini-tts": {
|
1086
|
+
"description": "GPT-4o mini TTS is een tekst-naar-spraak model dat is gebaseerd op GPT-4o mini, en biedt hoge kwaliteit spraakgeneratie tegen een lagere prijs."
|
1087
|
+
},
|
1085
1088
|
"gpt-4o-realtime-preview": {
|
1086
1089
|
"description": "GPT-4o realtime versie, ondersteunt audio en tekst realtime invoer en uitvoer."
|
1087
1090
|
},
|
@@ -42,6 +42,17 @@
|
|
42
42
|
"sessionWithName": "Sessie-instellingen · {{name}}",
|
43
43
|
"title": "Instellingen"
|
44
44
|
},
|
45
|
+
"hotkey": {
|
46
|
+
"conflicts": "Conflict met bestaande sneltoetsen",
|
47
|
+
"group": {
|
48
|
+
"conversation": "Gesprek",
|
49
|
+
"essential": "Essentieel"
|
50
|
+
},
|
51
|
+
"invalidCombination": "Sneltoets moet ten minste één modifier-toets (Ctrl, Alt, Shift) en één reguliere toets bevatten",
|
52
|
+
"record": "Druk op een toets om de sneltoets op te nemen",
|
53
|
+
"reset": "Reset naar standaard sneltoetsen",
|
54
|
+
"title": "Sneltoetsen"
|
55
|
+
},
|
45
56
|
"llm": {
|
46
57
|
"aesGcm": "Uw sleutel en proxy-adres zullen worden versleuteld met het <1>AES-GCM</1> encryptie-algoritme",
|
47
58
|
"apiKey": {
|
@@ -425,6 +436,7 @@
|
|
425
436
|
"agent": "Standaardassistent",
|
426
437
|
"common": "Algemene instellingen",
|
427
438
|
"experiment": "Experiment",
|
439
|
+
"hotkey": "Sneltoetsen",
|
428
440
|
"llm": "Taalmodel",
|
429
441
|
"provider": "AI-dienstverlener",
|
430
442
|
"sync": "Cloudsynchronisatie",
|
@@ -0,0 +1,46 @@
|
|
1
|
+
{
|
2
|
+
"addUserMessage": {
|
3
|
+
"desc": "Dodaj bieżącą treść jako wiadomość użytkownika, ale nie wyzwalaj generowania",
|
4
|
+
"title": "Dodaj wiadomość użytkownika"
|
5
|
+
},
|
6
|
+
"editMessage": {
|
7
|
+
"desc": "Wejdź w tryb edycji, przytrzymując klawisz Alt i podwójnie klikając wiadomość",
|
8
|
+
"title": "Edytuj wiadomość"
|
9
|
+
},
|
10
|
+
"openChatSettings": {
|
11
|
+
"desc": "Zobacz i zmodyfikuj ustawienia bieżącej rozmowy",
|
12
|
+
"title": "Otwórz ustawienia czatu"
|
13
|
+
},
|
14
|
+
"openHotkeyHelper": {
|
15
|
+
"desc": "Zobacz wszystkie instrukcje dotyczące skrótów klawiszowych",
|
16
|
+
"title": "Otwórz pomoc dotyczącą skrótów klawiszowych"
|
17
|
+
},
|
18
|
+
"regenerateMessage": {
|
19
|
+
"desc": "Ponownie wygeneruj ostatnią wiadomość",
|
20
|
+
"title": "Ponownie wygeneruj wiadomość"
|
21
|
+
},
|
22
|
+
"saveTopic": {
|
23
|
+
"desc": "Zapisz bieżący temat i otwórz nowy temat",
|
24
|
+
"title": "Rozpocznij nowy temat"
|
25
|
+
},
|
26
|
+
"search": {
|
27
|
+
"desc": "Wywołaj główne pole wyszukiwania na bieżącej stronie",
|
28
|
+
"title": "Szukaj"
|
29
|
+
},
|
30
|
+
"switchAgent": {
|
31
|
+
"desc": "Przełączaj przypiętego asystenta w pasku bocznym, przytrzymując Ctrl i naciskając numery 0-9",
|
32
|
+
"title": "Szybkie przełączanie asystenta"
|
33
|
+
},
|
34
|
+
"toggleLeftPanel": {
|
35
|
+
"desc": "Pokaż lub ukryj lewy panel asystenta",
|
36
|
+
"title": "Pokaż/ukryj panel asystenta"
|
37
|
+
},
|
38
|
+
"toggleRightPanel": {
|
39
|
+
"desc": "Pokaż lub ukryj prawy panel tematów",
|
40
|
+
"title": "Pokaż/ukryj panel tematów"
|
41
|
+
},
|
42
|
+
"toggleZenMode": {
|
43
|
+
"desc": "W trybie skupienia wyświetlaj tylko bieżącą rozmowę, ukrywając inne interfejsy",
|
44
|
+
"title": "Przełącz tryb skupienia"
|
45
|
+
}
|
46
|
+
}
|
@@ -1082,6 +1082,9 @@
|
|
1082
1082
|
"gpt-4o-mini-realtime-preview": {
|
1083
1083
|
"description": "Wersja na żywo GPT-4o-mini, obsługująca wejście i wyjście audio oraz tekstowe w czasie rzeczywistym."
|
1084
1084
|
},
|
1085
|
+
"gpt-4o-mini-tts": {
|
1086
|
+
"description": "GPT-4o mini TTS to model tekstu na mowę oparty na GPT-4o mini, oferujący wysokiej jakości generowanie mowy przy niższych kosztach."
|
1087
|
+
},
|
1085
1088
|
"gpt-4o-realtime-preview": {
|
1086
1089
|
"description": "Wersja na żywo GPT-4o, obsługująca wejście i wyjście audio oraz tekstowe w czasie rzeczywistym."
|
1087
1090
|
},
|
@@ -42,6 +42,17 @@
|
|
42
42
|
"sessionWithName": "Ustawienia sesji · {{name}}",
|
43
43
|
"title": "Ustawienia"
|
44
44
|
},
|
45
|
+
"hotkey": {
|
46
|
+
"conflicts": "Kolizja z istniejącymi skrótami klawiszowymi",
|
47
|
+
"group": {
|
48
|
+
"conversation": "Rozmowa",
|
49
|
+
"essential": "Podstawowy"
|
50
|
+
},
|
51
|
+
"invalidCombination": "Skrót klawiszowy musi zawierać przynajmniej jeden klawisz modyfikujący (Ctrl, Alt, Shift) oraz jeden klawisz zwykły",
|
52
|
+
"record": "Naciśnij klawisz, aby nagrać skrót klawiszowy",
|
53
|
+
"reset": "Przywróć domyślne skróty klawiszowe",
|
54
|
+
"title": "Skróty klawiszowe"
|
55
|
+
},
|
45
56
|
"llm": {
|
46
57
|
"aesGcm": "Twój klucz, adres proxy i inne będą szyfrowane za pomocą algorytmu szyfrowania <1>AES-GCM</1>",
|
47
58
|
"apiKey": {
|
@@ -425,6 +436,7 @@
|
|
425
436
|
"agent": "Domyślny asystent",
|
426
437
|
"common": "Ustawienia ogólne",
|
427
438
|
"experiment": "Eksperyment",
|
439
|
+
"hotkey": "Skróty klawiszowe",
|
428
440
|
"llm": "Model językowy",
|
429
441
|
"provider": "Dostawca usług AI",
|
430
442
|
"sync": "Synchronizacja w chmurze",
|
@@ -0,0 +1,46 @@
|
|
1
|
+
{
|
2
|
+
"addUserMessage": {
|
3
|
+
"desc": "Adiciona o conteúdo atual como uma mensagem do usuário, mas não aciona a geração",
|
4
|
+
"title": "Adicionar uma mensagem do usuário"
|
5
|
+
},
|
6
|
+
"editMessage": {
|
7
|
+
"desc": "Entre no modo de edição pressionando Alt e clicando duas vezes na mensagem",
|
8
|
+
"title": "Editar mensagem"
|
9
|
+
},
|
10
|
+
"openChatSettings": {
|
11
|
+
"desc": "Ver e modificar as configurações da conversa atual",
|
12
|
+
"title": "Abrir configurações de conversa"
|
13
|
+
},
|
14
|
+
"openHotkeyHelper": {
|
15
|
+
"desc": "Ver as instruções de uso de todos os atalhos",
|
16
|
+
"title": "Abrir ajuda de atalhos"
|
17
|
+
},
|
18
|
+
"regenerateMessage": {
|
19
|
+
"desc": "Regenerar a última mensagem",
|
20
|
+
"title": "Regenerar mensagem"
|
21
|
+
},
|
22
|
+
"saveTopic": {
|
23
|
+
"desc": "Salvar o tópico atual e abrir um novo tópico",
|
24
|
+
"title": "Iniciar novo tópico"
|
25
|
+
},
|
26
|
+
"search": {
|
27
|
+
"desc": "Abrir a caixa de pesquisa principal da página atual",
|
28
|
+
"title": "Pesquisar"
|
29
|
+
},
|
30
|
+
"switchAgent": {
|
31
|
+
"desc": "Troque o assistente fixo na barra lateral pressionando Ctrl e um número de 0 a 9",
|
32
|
+
"title": "Troca rápida de assistente"
|
33
|
+
},
|
34
|
+
"toggleLeftPanel": {
|
35
|
+
"desc": "Mostrar ou ocultar o painel de assistente à esquerda",
|
36
|
+
"title": "Mostrar/Ocultar painel do assistente"
|
37
|
+
},
|
38
|
+
"toggleRightPanel": {
|
39
|
+
"desc": "Mostrar ou ocultar o painel de tópicos à direita",
|
40
|
+
"title": "Mostrar/Ocultar painel de tópicos"
|
41
|
+
},
|
42
|
+
"toggleZenMode": {
|
43
|
+
"desc": "No modo de foco, exibe apenas a conversa atual, ocultando outras interfaces",
|
44
|
+
"title": "Alternar modo de foco"
|
45
|
+
}
|
46
|
+
}
|
@@ -1082,6 +1082,9 @@
|
|
1082
1082
|
"gpt-4o-mini-realtime-preview": {
|
1083
1083
|
"description": "Versão em tempo real do GPT-4o-mini, suporta entrada e saída de áudio e texto em tempo real."
|
1084
1084
|
},
|
1085
|
+
"gpt-4o-mini-tts": {
|
1086
|
+
"description": "GPT-4o mini TTS é um modelo de texto para fala baseado em GPT-4o mini, oferecendo uma geração de voz de alta qualidade a um custo mais baixo."
|
1087
|
+
},
|
1085
1088
|
"gpt-4o-realtime-preview": {
|
1086
1089
|
"description": "Versão em tempo real do GPT-4o, suporta entrada e saída de áudio e texto em tempo real."
|
1087
1090
|
},
|
@@ -42,6 +42,17 @@
|
|
42
42
|
"sessionWithName": "Configurações de Sessão · {{name}}",
|
43
43
|
"title": "Configurações"
|
44
44
|
},
|
45
|
+
"hotkey": {
|
46
|
+
"conflicts": "Conflito com teclas de atalho existentes",
|
47
|
+
"group": {
|
48
|
+
"conversation": "Conversa",
|
49
|
+
"essential": "Essencial"
|
50
|
+
},
|
51
|
+
"invalidCombination": "A combinação de teclas de atalho deve incluir pelo menos uma tecla modificadora (Ctrl, Alt, Shift) e uma tecla comum",
|
52
|
+
"record": "Pressione a tecla para gravar o atalho",
|
53
|
+
"reset": "Redefinir para os atalhos padrão",
|
54
|
+
"title": "Atalhos"
|
55
|
+
},
|
45
56
|
"llm": {
|
46
57
|
"aesGcm": "Suas chaves, endereço do agente, etc., serão criptografados usando o algoritmo de criptografia <1>AES-GCM</1>",
|
47
58
|
"apiKey": {
|
@@ -425,6 +436,7 @@
|
|
425
436
|
"agent": "Assistente Padrão",
|
426
437
|
"common": "Configurações Comuns",
|
427
438
|
"experiment": "Experimento",
|
439
|
+
"hotkey": "Atalhos",
|
428
440
|
"llm": "Modelo de Linguagem",
|
429
441
|
"provider": "Fornecedor de IA",
|
430
442
|
"sync": "Sincronização na nuvem",
|
@@ -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
|
+
}
|
@@ -1082,6 +1082,9 @@
|
|
1082
1082
|
"gpt-4o-mini-realtime-preview": {
|
1083
1083
|
"description": "Реальная версия GPT-4o-mini, поддерживающая аудио и текстовый ввод и вывод в реальном времени."
|
1084
1084
|
},
|
1085
|
+
"gpt-4o-mini-tts": {
|
1086
|
+
"description": "GPT-4o mini TTS — это модель преобразования текста в речь, основанная на GPT-4o mini, обеспечивающая высокое качество синтеза речи при низкой стоимости."
|
1087
|
+
},
|
1085
1088
|
"gpt-4o-realtime-preview": {
|
1086
1089
|
"description": "Реальная версия GPT-4o, поддерживающая аудио и текстовый ввод и вывод в реальном времени."
|
1087
1090
|
},
|