@lobehub/lobehub 2.0.0-next.94 → 2.0.0-next.96

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.
Files changed (63) hide show
  1. package/.github/workflows/issue-auto-comments.yml +0 -19
  2. package/CHANGELOG.md +50 -0
  3. package/changelog/v1.json +18 -0
  4. package/locales/ar/common.json +21 -0
  5. package/locales/ar/hotkey.json +4 -0
  6. package/locales/bg-BG/common.json +21 -0
  7. package/locales/bg-BG/hotkey.json +4 -0
  8. package/locales/de-DE/common.json +21 -0
  9. package/locales/de-DE/hotkey.json +4 -0
  10. package/locales/en-US/common.json +21 -0
  11. package/locales/en-US/hotkey.json +4 -0
  12. package/locales/es-ES/common.json +21 -0
  13. package/locales/es-ES/hotkey.json +4 -0
  14. package/locales/fa-IR/common.json +21 -0
  15. package/locales/fa-IR/hotkey.json +4 -0
  16. package/locales/fr-FR/common.json +21 -0
  17. package/locales/fr-FR/hotkey.json +4 -0
  18. package/locales/it-IT/common.json +21 -0
  19. package/locales/it-IT/hotkey.json +4 -0
  20. package/locales/ja-JP/common.json +21 -0
  21. package/locales/ja-JP/hotkey.json +4 -0
  22. package/locales/ko-KR/common.json +21 -0
  23. package/locales/ko-KR/hotkey.json +4 -0
  24. package/locales/nl-NL/common.json +21 -0
  25. package/locales/nl-NL/hotkey.json +4 -0
  26. package/locales/pl-PL/common.json +21 -0
  27. package/locales/pl-PL/hotkey.json +4 -0
  28. package/locales/pt-BR/common.json +21 -0
  29. package/locales/pt-BR/hotkey.json +4 -0
  30. package/locales/ru-RU/common.json +21 -0
  31. package/locales/ru-RU/hotkey.json +4 -0
  32. package/locales/tr-TR/common.json +21 -0
  33. package/locales/tr-TR/hotkey.json +4 -0
  34. package/locales/vi-VN/common.json +21 -0
  35. package/locales/vi-VN/hotkey.json +4 -0
  36. package/locales/zh-CN/common.json +21 -0
  37. package/locales/zh-CN/hotkey.json +4 -0
  38. package/locales/zh-TW/common.json +21 -0
  39. package/locales/zh-TW/hotkey.json +4 -0
  40. package/package.json +3 -1
  41. package/packages/agent-runtime/src/core/InterventionChecker.ts +85 -0
  42. package/packages/agent-runtime/src/core/__tests__/InterventionChecker.test.ts +492 -22
  43. package/packages/agent-runtime/src/core/defaultSecurityBlacklist.ts +335 -0
  44. package/packages/agent-runtime/src/core/index.ts +1 -0
  45. package/packages/agent-runtime/src/types/state.ts +10 -1
  46. package/packages/const/src/hotkeys.ts +6 -0
  47. package/packages/conversation-flow/src/__tests__/indexing.test.ts +513 -0
  48. package/packages/conversation-flow/src/__tests__/structuring.test.ts +600 -0
  49. package/packages/types/src/hotkey.ts +1 -0
  50. package/packages/types/src/tool/intervention.ts +38 -0
  51. package/src/app/[variants]/(main)/settings/_layout/Desktop/index.tsx +41 -8
  52. package/src/app/[variants]/(main)/settings/provider/(list)/ProviderGrid/Card.tsx +6 -4
  53. package/src/app/[variants]/(main)/settings/provider/(list)/ProviderGrid/index.tsx +16 -4
  54. package/src/app/[variants]/(main)/settings/provider/(list)/index.tsx +15 -3
  55. package/src/app/[variants]/(main)/settings/provider/detail/index.tsx +23 -15
  56. package/src/features/Conversation/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.test.ts +25 -0
  57. package/src/features/Conversation/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.ts +28 -0
  58. package/src/layout/GlobalProvider/Cmdk.tsx +470 -0
  59. package/src/layout/GlobalProvider/CmdkLazy.tsx +17 -0
  60. package/src/layout/GlobalProvider/index.tsx +2 -0
  61. package/src/locales/default/common.ts +21 -0
  62. package/src/locales/default/hotkey.ts +4 -0
  63. package/src/store/chat/agents/GeneralChatAgent.ts +22 -8
@@ -20,15 +20,6 @@ jobs:
20
20
  pull-requests: write # for actions-cool/issues-helper to update PRs
21
21
  runs-on: ubuntu-latest
22
22
  steps:
23
- - name: Auto Comment on Issues Opened
24
- uses: wow-actions/auto-comment@v1
25
- with:
26
- GITHUB_TOKEN: ${{ secrets.GH_TOKEN}}
27
- issuesOpened: |
28
- 👀 @{{ author }}
29
-
30
- Thank you for raising an issue. We will investigate into the matter and get back to you as soon as possible.
31
- Please make sure you have given us as much context as possible.
32
23
  - name: Auto Comment on Issues Closed
33
24
  uses: wow-actions/auto-comment@v1
34
25
  with:
@@ -37,16 +28,6 @@ jobs:
37
28
  ✅ @{{ author }}
38
29
 
39
30
  This issue is closed, If you have any questions, you can comment and reply.
40
- - name: Auto Comment on Pull Request Opened
41
- uses: wow-actions/auto-comment@v1
42
- with:
43
- GITHUB_TOKEN: ${{ secrets.GH_TOKEN}}
44
- pullRequestOpened: |
45
- 👍 @{{ author }}
46
-
47
- Thank you for raising your pull request and contributing to our Community
48
- Please make sure you have followed our contributing guidelines. We will review it as soon as possible.
49
- If you encounter any problems, please feel free to connect with us.
50
31
  - name: Auto Comment on Pull Request Merged
51
32
  uses: actions-cool/pr-welcome@main
52
33
  if: github.event.pull_request.merged == true
package/CHANGELOG.md CHANGED
@@ -2,6 +2,56 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ## [Version 2.0.0-next.96](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.95...v2.0.0-next.96)
6
+
7
+ <sup>Released on **2025-11-20**</sup>
8
+
9
+ #### ✨ Features
10
+
11
+ - **misc**: Support Command Menu (CMD + J).
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's improved
19
+
20
+ - **misc**: Support Command Menu (CMD + J), closes [#10271](https://github.com/lobehub/lobe-chat/issues/10271) ([a9aed0b](https://github.com/lobehub/lobe-chat/commit/a9aed0b))
21
+
22
+ </details>
23
+
24
+ <div align="right">
25
+
26
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
27
+
28
+ </div>
29
+
30
+ ## [Version 2.0.0-next.95](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.94...v2.0.0-next.95)
31
+
32
+ <sup>Released on **2025-11-20**</sup>
33
+
34
+ #### ✨ Features
35
+
36
+ - **misc**: Add Security Blacklist for agent runtime.
37
+
38
+ <br/>
39
+
40
+ <details>
41
+ <summary><kbd>Improvements and Fixes</kbd></summary>
42
+
43
+ #### What's improved
44
+
45
+ - **misc**: Add Security Blacklist for agent runtime, closes [#10325](https://github.com/lobehub/lobe-chat/issues/10325) ([deab4d0](https://github.com/lobehub/lobe-chat/commit/deab4d0))
46
+
47
+ </details>
48
+
49
+ <div align="right">
50
+
51
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
52
+
53
+ </div>
54
+
5
55
  ## [Version 2.0.0-next.94](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.93...v2.0.0-next.94)
6
56
 
7
57
  <sup>Released on **2025-11-20**</sup>
package/changelog/v1.json CHANGED
@@ -1,4 +1,22 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "features": [
5
+ "Support Command Menu (CMD + J)."
6
+ ]
7
+ },
8
+ "date": "2025-11-20",
9
+ "version": "2.0.0-next.96"
10
+ },
11
+ {
12
+ "children": {
13
+ "features": [
14
+ "Add Security Blacklist for agent runtime."
15
+ ]
16
+ },
17
+ "date": "2025-11-20",
18
+ "version": "2.0.0-next.95"
19
+ },
2
20
  {
3
21
  "children": {
4
22
  "fixes": [
@@ -135,6 +135,27 @@
135
135
  }
136
136
  },
137
137
  "close": "إغلاق",
138
+ "cmdk": {
139
+ "about": "حول",
140
+ "communitySupport": "دعم المجتمع",
141
+ "discover": "استكشاف",
142
+ "knowledgeBase": "قاعدة المعرفة",
143
+ "navigate": "التنقل",
144
+ "newAgent": "إنشاء مساعد جديد",
145
+ "noResults": "لم يتم العثور على نتائج",
146
+ "openSettings": "فتح الإعدادات",
147
+ "painting": "الرسم بالذكاء الاصطناعي",
148
+ "searchPlaceholder": "أدخل أمرًا أو ابحث...",
149
+ "settings": "الإعدادات",
150
+ "starOnGitHub": "قيّمنا على GitHub",
151
+ "submitIssue": "إرسال مشكلة",
152
+ "theme": "السمة",
153
+ "themeAuto": "اتباع النظام",
154
+ "themeDark": "الوضع الداكن",
155
+ "themeLight": "الوضع الفاتح",
156
+ "toOpen": "فتح",
157
+ "toSelect": "تحديد"
158
+ },
138
159
  "confirm": "تأكيد",
139
160
  "contact": "اتصل بنا",
140
161
  "copy": "نسخ",
@@ -7,6 +7,10 @@
7
7
  "desc": "مسح الرسائل والملفات المرفوعة في المحادثة الحالية",
8
8
  "title": "مسح رسائل المحادثة"
9
9
  },
10
+ "commandPalette": {
11
+ "desc": "افتح لوحة الأوامر العامة للوصول السريع إلى الميزات",
12
+ "title": "لوحة الأوامر"
13
+ },
10
14
  "deleteAndRegenerateMessage": {
11
15
  "desc": "حذف الرسالة الأخيرة وإعادة إنشائها",
12
16
  "title": "حذف وإعادة إنشاء"
@@ -135,6 +135,27 @@
135
135
  }
136
136
  },
137
137
  "close": "Затвори",
138
+ "cmdk": {
139
+ "about": "Относно",
140
+ "communitySupport": "Общностна поддръжка",
141
+ "discover": "Открий",
142
+ "knowledgeBase": "База знания",
143
+ "navigate": "Навигация",
144
+ "newAgent": "Създай агент",
145
+ "noResults": "Няма намерени резултати",
146
+ "openSettings": "Отвори настройките",
147
+ "painting": "AI Рисуване",
148
+ "searchPlaceholder": "Въведете команда или търсене...",
149
+ "settings": "Настройки",
150
+ "starOnGitHub": "Дайте ни звезда в GitHub",
151
+ "submitIssue": "Подайте проблем",
152
+ "theme": "Тема",
153
+ "themeAuto": "Следвай системата",
154
+ "themeDark": "Тъмен режим",
155
+ "themeLight": "Светъл режим",
156
+ "toOpen": "Отвори",
157
+ "toSelect": "Избери"
158
+ },
138
159
  "confirm": "Потвърди",
139
160
  "contact": "Свържете се с нас",
140
161
  "copy": "Копирай",
@@ -7,6 +7,10 @@
7
7
  "desc": "Изтриване на текущите съобщения и качените файлове в сесията",
8
8
  "title": "Изтриване на съобщенията в сесията"
9
9
  },
10
+ "commandPalette": {
11
+ "desc": "Отворете глобалния панел с команди за бърз достъп до функции",
12
+ "title": "Панел с команди"
13
+ },
10
14
  "deleteAndRegenerateMessage": {
11
15
  "desc": "Изтриване на последното съобщение и повторно генериране",
12
16
  "title": "Изтрий и генерирай отново"
@@ -135,6 +135,27 @@
135
135
  }
136
136
  },
137
137
  "close": "Schließen",
138
+ "cmdk": {
139
+ "about": "Über",
140
+ "communitySupport": "Community-Support",
141
+ "discover": "Entdecken",
142
+ "knowledgeBase": "Wissensdatenbank",
143
+ "navigate": "Navigieren",
144
+ "newAgent": "Neuen Assistenten erstellen",
145
+ "noResults": "Keine Ergebnisse gefunden",
146
+ "openSettings": "Einstellungen öffnen",
147
+ "painting": "KI-Malerei",
148
+ "searchPlaceholder": "Befehl eingeben oder suchen...",
149
+ "settings": "Einstellungen",
150
+ "starOnGitHub": "Gib uns einen Stern auf GitHub",
151
+ "submitIssue": "Problem melden",
152
+ "theme": "Design",
153
+ "themeAuto": "Systemeinstellung folgen",
154
+ "themeDark": "Dunkles Design",
155
+ "themeLight": "Helles Design",
156
+ "toOpen": "Öffnen",
157
+ "toSelect": "Auswählen"
158
+ },
138
159
  "confirm": "Bestätigen",
139
160
  "contact": "Kontakt",
140
161
  "copy": "Kopieren",
@@ -7,6 +7,10 @@
7
7
  "desc": "Aktuelle Nachrichten und hochgeladene Dateien im Gespräch löschen",
8
8
  "title": "Gesprächsnachrichten löschen"
9
9
  },
10
+ "commandPalette": {
11
+ "desc": "Öffne die globale Befehlspalette für schnellen Zugriff auf Funktionen",
12
+ "title": "Befehlspalette"
13
+ },
10
14
  "deleteAndRegenerateMessage": {
11
15
  "desc": "Letzte Nachricht löschen und neu generieren",
12
16
  "title": "Löschen und neu generieren"
@@ -135,6 +135,27 @@
135
135
  }
136
136
  },
137
137
  "close": "Close",
138
+ "cmdk": {
139
+ "about": "About",
140
+ "communitySupport": "Community Support",
141
+ "discover": "Discover",
142
+ "knowledgeBase": "Knowledge Base",
143
+ "navigate": "Navigate",
144
+ "newAgent": "Create New Assistant",
145
+ "noResults": "No results found",
146
+ "openSettings": "Open Settings",
147
+ "painting": "AI Painting",
148
+ "searchPlaceholder": "Enter a command or search...",
149
+ "settings": "Settings",
150
+ "starOnGitHub": "Star us on GitHub",
151
+ "submitIssue": "Submit Issue",
152
+ "theme": "Theme",
153
+ "themeAuto": "Auto",
154
+ "themeDark": "Dark",
155
+ "themeLight": "Light",
156
+ "toOpen": "to Open",
157
+ "toSelect": "to Select"
158
+ },
138
159
  "confirm": "Confirm",
139
160
  "contact": "Contact Us",
140
161
  "copy": "Copy",
@@ -7,6 +7,10 @@
7
7
  "desc": "Clear the messages and uploaded files from the current conversation",
8
8
  "title": "Clear Conversation Messages"
9
9
  },
10
+ "commandPalette": {
11
+ "desc": "Open the global command palette for quick access to features",
12
+ "title": "Command Palette"
13
+ },
10
14
  "deleteAndRegenerateMessage": {
11
15
  "desc": "Delete the last message and regenerate",
12
16
  "title": "Delete and Regenerate"
@@ -135,6 +135,27 @@
135
135
  }
136
136
  },
137
137
  "close": "Cerrar",
138
+ "cmdk": {
139
+ "about": "Acerca de",
140
+ "communitySupport": "Soporte de la comunidad",
141
+ "discover": "Descubrir",
142
+ "knowledgeBase": "Base de conocimientos",
143
+ "navigate": "Navegar",
144
+ "newAgent": "Nuevo asistente",
145
+ "noResults": "No se encontraron resultados",
146
+ "openSettings": "Abrir configuración",
147
+ "painting": "Dibujo con IA",
148
+ "searchPlaceholder": "Escribe un comando o busca...",
149
+ "settings": "Configuración",
150
+ "starOnGitHub": "Danos una estrella en GitHub",
151
+ "submitIssue": "Informar de un problema",
152
+ "theme": "Tema",
153
+ "themeAuto": "Seguir el sistema",
154
+ "themeDark": "Modo oscuro",
155
+ "themeLight": "Modo claro",
156
+ "toOpen": "Abrir",
157
+ "toSelect": "Seleccionar"
158
+ },
138
159
  "confirm": "Confirmar",
139
160
  "contact": "Contacto",
140
161
  "copy": "Copiar",
@@ -7,6 +7,10 @@
7
7
  "desc": "Eliminar los mensajes y archivos subidos de la conversación actual",
8
8
  "title": "Eliminar mensajes de la conversación"
9
9
  },
10
+ "commandPalette": {
11
+ "desc": "Abre el panel de comandos global para acceder rápidamente a las funciones",
12
+ "title": "Panel de Comandos"
13
+ },
10
14
  "deleteAndRegenerateMessage": {
11
15
  "desc": "Eliminar el último mensaje y volver a generarlo",
12
16
  "title": "Eliminar y regenerar"
@@ -135,6 +135,27 @@
135
135
  }
136
136
  },
137
137
  "close": "بستن",
138
+ "cmdk": {
139
+ "about": "درباره",
140
+ "communitySupport": "پشتیبانی جامعه",
141
+ "discover": "کشف",
142
+ "knowledgeBase": "پایگاه دانش",
143
+ "navigate": "ناوبری",
144
+ "newAgent": "دستیار جدید",
145
+ "noResults": "نتیجه‌ای یافت نشد",
146
+ "openSettings": "باز کردن تنظیمات",
147
+ "painting": "نقاشی با هوش مصنوعی",
148
+ "searchPlaceholder": "دستور وارد کنید یا جستجو کنید...",
149
+ "settings": "تنظیمات",
150
+ "starOnGitHub": "به ما در GitHub ستاره بدهید",
151
+ "submitIssue": "ارسال مشکل",
152
+ "theme": "تم",
153
+ "themeAuto": "همگام با سیستم",
154
+ "themeDark": "حالت تیره",
155
+ "themeLight": "حالت روشن",
156
+ "toOpen": "باز کردن",
157
+ "toSelect": "انتخاب"
158
+ },
138
159
  "confirm": "تأیید",
139
160
  "contact": "تماس با ما",
140
161
  "copy": "کپی",
@@ -7,6 +7,10 @@
7
7
  "desc": "حذف پیام‌ها و فایل‌های بارگذاری شده در جلسه جاری",
8
8
  "title": "حذف پیام‌های جلسه"
9
9
  },
10
+ "commandPalette": {
11
+ "desc": "باز کردن پنل فرمان جهانی برای دسترسی سریع به قابلیت‌ها",
12
+ "title": "پنل فرمان"
13
+ },
10
14
  "deleteAndRegenerateMessage": {
11
15
  "desc": "آخرین پیام را حذف کرده و دوباره تولید کن",
12
16
  "title": "حذف و تولید مجدد"
@@ -135,6 +135,27 @@
135
135
  }
136
136
  },
137
137
  "close": "Fermer",
138
+ "cmdk": {
139
+ "about": "À propos",
140
+ "communitySupport": "Support communautaire",
141
+ "discover": "Découvrir",
142
+ "knowledgeBase": "Base de connaissances",
143
+ "navigate": "Naviguer",
144
+ "newAgent": "Nouvel assistant",
145
+ "noResults": "Aucun résultat trouvé",
146
+ "openSettings": "Ouvrir les paramètres",
147
+ "painting": "Peinture IA",
148
+ "searchPlaceholder": "Entrez une commande ou recherchez...",
149
+ "settings": "Paramètres",
150
+ "starOnGitHub": "Donnez-nous une étoile sur GitHub",
151
+ "submitIssue": "Soumettre un problème",
152
+ "theme": "Thème",
153
+ "themeAuto": "Suivre le système",
154
+ "themeDark": "Mode sombre",
155
+ "themeLight": "Mode clair",
156
+ "toOpen": "Ouvrir",
157
+ "toSelect": "Sélectionner"
158
+ },
138
159
  "confirm": "Confirmer",
139
160
  "contact": "Nous contacter",
140
161
  "copy": "Copier",
@@ -7,6 +7,10 @@
7
7
  "desc": "Effacer les messages de la session actuelle et les fichiers téléchargés",
8
8
  "title": "Effacer les messages de la session"
9
9
  },
10
+ "commandPalette": {
11
+ "desc": "Ouvrez le panneau de commande global pour accéder rapidement aux fonctionnalités",
12
+ "title": "Panneau de commande"
13
+ },
10
14
  "deleteAndRegenerateMessage": {
11
15
  "desc": "Supprimer le dernier message et régénérer",
12
16
  "title": "Supprimer et régénérer"
@@ -135,6 +135,27 @@
135
135
  }
136
136
  },
137
137
  "close": "Chiudi",
138
+ "cmdk": {
139
+ "about": "Informazioni",
140
+ "communitySupport": "Supporto della comunità",
141
+ "discover": "Scopri",
142
+ "knowledgeBase": "Base di conoscenza",
143
+ "navigate": "Naviga",
144
+ "newAgent": "Nuovo assistente",
145
+ "noResults": "Nessun risultato trovato",
146
+ "openSettings": "Apri impostazioni",
147
+ "painting": "Disegno AI",
148
+ "searchPlaceholder": "Inserisci un comando o cerca...",
149
+ "settings": "Impostazioni",
150
+ "starOnGitHub": "Dacci una stella su GitHub",
151
+ "submitIssue": "Segnala un problema",
152
+ "theme": "Tema",
153
+ "themeAuto": "Segui il sistema",
154
+ "themeDark": "Tema scuro",
155
+ "themeLight": "Tema chiaro",
156
+ "toOpen": "Apri",
157
+ "toSelect": "Seleziona"
158
+ },
138
159
  "confirm": "Conferma",
139
160
  "contact": "Contattaci",
140
161
  "copy": "Copia",
@@ -7,6 +7,10 @@
7
7
  "desc": "Cancella i messaggi e i file caricati della conversazione attuale",
8
8
  "title": "Cancella messaggi della conversazione"
9
9
  },
10
+ "commandPalette": {
11
+ "desc": "Apri il pannello comandi globale per accedere rapidamente alle funzioni",
12
+ "title": "Pannello comandi"
13
+ },
10
14
  "deleteAndRegenerateMessage": {
11
15
  "desc": "Elimina l'ultimo messaggio e rigeneralo",
12
16
  "title": "Elimina e rigenera"
@@ -135,6 +135,27 @@
135
135
  }
136
136
  },
137
137
  "close": "閉じる",
138
+ "cmdk": {
139
+ "about": "概要",
140
+ "communitySupport": "コミュニティサポート",
141
+ "discover": "発見",
142
+ "knowledgeBase": "ナレッジベース",
143
+ "navigate": "ナビゲート",
144
+ "newAgent": "新しいエージェントを作成",
145
+ "noResults": "該当する結果が見つかりませんでした",
146
+ "openSettings": "設定を開く",
147
+ "painting": "AI ペインティング",
148
+ "searchPlaceholder": "コマンドを入力または検索...",
149
+ "settings": "設定",
150
+ "starOnGitHub": "GitHub でスターを付ける",
151
+ "submitIssue": "問題を報告する",
152
+ "theme": "テーマ",
153
+ "themeAuto": "システムに従う",
154
+ "themeDark": "ダークモード",
155
+ "themeLight": "ライトモード",
156
+ "toOpen": "開く",
157
+ "toSelect": "選択"
158
+ },
138
159
  "confirm": "確認",
139
160
  "contact": "お問い合わせ",
140
161
  "copy": "コピー",
@@ -7,6 +7,10 @@
7
7
  "desc": "現在のセッションのメッセージとアップロードされたファイルをクリアする",
8
8
  "title": "セッションメッセージをクリア"
9
9
  },
10
+ "commandPalette": {
11
+ "desc": "グローバルコマンドパレットを開いて機能に素早くアクセス",
12
+ "title": "コマンドパレット"
13
+ },
10
14
  "deleteAndRegenerateMessage": {
11
15
  "desc": "最後のメッセージを削除して再生成する",
12
16
  "title": "削除して再生成"
@@ -135,6 +135,27 @@
135
135
  }
136
136
  },
137
137
  "close": "닫기",
138
+ "cmdk": {
139
+ "about": "정보",
140
+ "communitySupport": "커뮤니티 지원",
141
+ "discover": "탐색",
142
+ "knowledgeBase": "지식 베이스",
143
+ "navigate": "탐색",
144
+ "newAgent": "새 에이전트 만들기",
145
+ "noResults": "관련 결과를 찾을 수 없습니다",
146
+ "openSettings": "설정 열기",
147
+ "painting": "AI 그림",
148
+ "searchPlaceholder": "명령어 입력 또는 검색...",
149
+ "settings": "설정",
150
+ "starOnGitHub": "GitHub에서 Star 주기",
151
+ "submitIssue": "문제 제출",
152
+ "theme": "테마",
153
+ "themeAuto": "시스템 설정 따르기",
154
+ "themeDark": "다크 모드",
155
+ "themeLight": "라이트 모드",
156
+ "toOpen": "열기",
157
+ "toSelect": "선택"
158
+ },
138
159
  "confirm": "확인",
139
160
  "contact": "문의하기",
140
161
  "copy": "복사",
@@ -7,6 +7,10 @@
7
7
  "desc": "현재 대화의 메시지와 업로드된 파일을 모두 삭제",
8
8
  "title": "대화 메시지 지우기"
9
9
  },
10
+ "commandPalette": {
11
+ "desc": "전역 명령 팔레트를 열어 기능에 빠르게 접근합니다",
12
+ "title": "명령 팔레트"
13
+ },
10
14
  "deleteAndRegenerateMessage": {
11
15
  "desc": "마지막 메시지를 삭제하고 다시 생성합니다",
12
16
  "title": "삭제 후 다시 생성"
@@ -135,6 +135,27 @@
135
135
  }
136
136
  },
137
137
  "close": "Sluiten",
138
+ "cmdk": {
139
+ "about": "Over",
140
+ "communitySupport": "Communityondersteuning",
141
+ "discover": "Ontdekken",
142
+ "knowledgeBase": "Kennisbank",
143
+ "navigate": "Navigeren",
144
+ "newAgent": "Nieuwe Assistent",
145
+ "noResults": "Geen resultaten gevonden",
146
+ "openSettings": "Instellingen openen",
147
+ "painting": "AI-schilderen",
148
+ "searchPlaceholder": "Voer een commando in of zoek...",
149
+ "settings": "Instellingen",
150
+ "starOnGitHub": "Geef ons een ster op GitHub",
151
+ "submitIssue": "Probleem melden",
152
+ "theme": "Thema",
153
+ "themeAuto": "Systeem volgen",
154
+ "themeDark": "Donkere modus",
155
+ "themeLight": "Lichte modus",
156
+ "toOpen": "Openen",
157
+ "toSelect": "Selecteren"
158
+ },
138
159
  "confirm": "Bevestigen",
139
160
  "contact": "Contacteer ons",
140
161
  "copy": "Kopiëren",
@@ -7,6 +7,10 @@
7
7
  "desc": "Verwijder de berichten en geüploade bestanden van de huidige sessie",
8
8
  "title": "Verwijder sessieberichten"
9
9
  },
10
+ "commandPalette": {
11
+ "desc": "Open het globale opdrachtpaneel voor snelle toegang tot functies",
12
+ "title": "Opdrachtpaneel"
13
+ },
10
14
  "deleteAndRegenerateMessage": {
11
15
  "desc": "Verwijder het laatste bericht en genereer opnieuw",
12
16
  "title": "Verwijderen en opnieuw genereren"
@@ -135,6 +135,27 @@
135
135
  }
136
136
  },
137
137
  "close": "Zamknij",
138
+ "cmdk": {
139
+ "about": "O nas",
140
+ "communitySupport": "Wsparcie społeczności",
141
+ "discover": "Odkrywaj",
142
+ "knowledgeBase": "Baza wiedzy",
143
+ "navigate": "Nawigacja",
144
+ "newAgent": "Nowy asystent",
145
+ "noResults": "Brak wyników",
146
+ "openSettings": "Otwórz ustawienia",
147
+ "painting": "Sztuka AI",
148
+ "searchPlaceholder": "Wpisz polecenie lub wyszukaj...",
149
+ "settings": "Ustawienia",
150
+ "starOnGitHub": "Daj nam gwiazdkę na GitHubie",
151
+ "submitIssue": "Zgłoś problem",
152
+ "theme": "Motyw",
153
+ "themeAuto": "Zgodnie z systemem",
154
+ "themeDark": "Tryb ciemny",
155
+ "themeLight": "Tryb jasny",
156
+ "toOpen": "Otwórz",
157
+ "toSelect": "Wybierz"
158
+ },
138
159
  "confirm": "Potwierdź",
139
160
  "contact": "Skontaktuj się z nami",
140
161
  "copy": "Kopiuj",
@@ -7,6 +7,10 @@
7
7
  "desc": "Wyczyść wiadomości i przesłane pliki w bieżącej rozmowie",
8
8
  "title": "Wyczyść wiadomości rozmowy"
9
9
  },
10
+ "commandPalette": {
11
+ "desc": "Otwórz globalny panel poleceń, aby szybko uzyskać dostęp do funkcji",
12
+ "title": "Panel poleceń"
13
+ },
10
14
  "deleteAndRegenerateMessage": {
11
15
  "desc": "Usuń ostatnią wiadomość i wygeneruj ponownie",
12
16
  "title": "Usuń i wygeneruj ponownie"
@@ -135,6 +135,27 @@
135
135
  }
136
136
  },
137
137
  "close": "Fechar",
138
+ "cmdk": {
139
+ "about": "Sobre",
140
+ "communitySupport": "Suporte da Comunidade",
141
+ "discover": "Descobrir",
142
+ "knowledgeBase": "Base de Conhecimento",
143
+ "navigate": "Navegar",
144
+ "newAgent": "Novo Assistente",
145
+ "noResults": "Nenhum resultado encontrado",
146
+ "openSettings": "Abrir Configurações",
147
+ "painting": "Pintura com IA",
148
+ "searchPlaceholder": "Digite um comando ou pesquise...",
149
+ "settings": "Configurações",
150
+ "starOnGitHub": "Dê uma estrela no GitHub",
151
+ "submitIssue": "Reportar um problema",
152
+ "theme": "Tema",
153
+ "themeAuto": "Seguir o sistema",
154
+ "themeDark": "Modo Escuro",
155
+ "themeLight": "Modo Claro",
156
+ "toOpen": "Abrir",
157
+ "toSelect": "Selecionar"
158
+ },
138
159
  "confirm": "Confirmar",
139
160
  "contact": "Entre em contato",
140
161
  "copy": "Copiar",
@@ -7,6 +7,10 @@
7
7
  "desc": "Limpar as mensagens da conversa atual e os arquivos enviados",
8
8
  "title": "Limpar mensagens da conversa"
9
9
  },
10
+ "commandPalette": {
11
+ "desc": "Abra o painel de comandos global para acessar funções rapidamente",
12
+ "title": "Painel de Comandos"
13
+ },
10
14
  "deleteAndRegenerateMessage": {
11
15
  "desc": "Excluir a última mensagem e gerar novamente",
12
16
  "title": "Excluir e gerar novamente"