@lobehub/chat 1.82.10 → 1.83.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.
Files changed (195) hide show
  1. package/.env.desktop +1 -2
  2. package/.github/workflows/{release-desktop.yml → desktop-pr-build.yml} +59 -137
  3. package/.github/workflows/release-desktop-beta.yml +196 -0
  4. package/CHANGELOG.md +25 -0
  5. package/apps/desktop/.i18nrc.js +31 -0
  6. package/apps/desktop/Development.md +47 -0
  7. package/apps/desktop/README.md +6 -0
  8. package/apps/desktop/build/Icon-beta.icns +0 -0
  9. package/apps/desktop/build/Icon-nightly.icns +0 -0
  10. package/apps/desktop/build/Icon.icns +0 -0
  11. package/apps/desktop/build/entitlements.mac.plist +12 -0
  12. package/apps/desktop/build/favicon.ico +0 -0
  13. package/apps/desktop/build/icon-beta.png +0 -0
  14. package/apps/desktop/build/icon-dev.png +0 -0
  15. package/apps/desktop/build/icon-nightly.ico +0 -0
  16. package/apps/desktop/build/icon-nightly.png +0 -0
  17. package/apps/desktop/build/icon.ico +0 -0
  18. package/apps/desktop/build/icon.png +0 -0
  19. package/apps/desktop/dev-app-update.yml +6 -0
  20. package/apps/desktop/electron-builder.js +92 -0
  21. package/apps/desktop/electron.vite.config.ts +40 -0
  22. package/apps/desktop/package.json +72 -0
  23. package/apps/desktop/pnpm-workspace.yaml +5 -0
  24. package/apps/desktop/resources/error.html +136 -0
  25. package/apps/desktop/resources/locales/ar/common.json +32 -0
  26. package/apps/desktop/resources/locales/ar/dialog.json +31 -0
  27. package/apps/desktop/resources/locales/ar/menu.json +70 -0
  28. package/apps/desktop/resources/locales/bg-BG/common.json +32 -0
  29. package/apps/desktop/resources/locales/bg-BG/dialog.json +31 -0
  30. package/apps/desktop/resources/locales/bg-BG/menu.json +70 -0
  31. package/apps/desktop/resources/locales/de-DE/common.json +32 -0
  32. package/apps/desktop/resources/locales/de-DE/dialog.json +31 -0
  33. package/apps/desktop/resources/locales/de-DE/menu.json +70 -0
  34. package/apps/desktop/resources/locales/en-US/common.json +32 -0
  35. package/apps/desktop/resources/locales/en-US/dialog.json +31 -0
  36. package/apps/desktop/resources/locales/en-US/menu.json +70 -0
  37. package/apps/desktop/resources/locales/es-ES/common.json +32 -0
  38. package/apps/desktop/resources/locales/es-ES/dialog.json +31 -0
  39. package/apps/desktop/resources/locales/es-ES/menu.json +70 -0
  40. package/apps/desktop/resources/locales/fa-IR/common.json +32 -0
  41. package/apps/desktop/resources/locales/fa-IR/dialog.json +31 -0
  42. package/apps/desktop/resources/locales/fa-IR/menu.json +70 -0
  43. package/apps/desktop/resources/locales/fr-FR/common.json +32 -0
  44. package/apps/desktop/resources/locales/fr-FR/dialog.json +31 -0
  45. package/apps/desktop/resources/locales/fr-FR/menu.json +70 -0
  46. package/apps/desktop/resources/locales/it-IT/common.json +32 -0
  47. package/apps/desktop/resources/locales/it-IT/dialog.json +31 -0
  48. package/apps/desktop/resources/locales/it-IT/menu.json +70 -0
  49. package/apps/desktop/resources/locales/ja-JP/common.json +32 -0
  50. package/apps/desktop/resources/locales/ja-JP/dialog.json +31 -0
  51. package/apps/desktop/resources/locales/ja-JP/menu.json +70 -0
  52. package/apps/desktop/resources/locales/ko-KR/common.json +32 -0
  53. package/apps/desktop/resources/locales/ko-KR/dialog.json +31 -0
  54. package/apps/desktop/resources/locales/ko-KR/menu.json +70 -0
  55. package/apps/desktop/resources/locales/nl-NL/common.json +32 -0
  56. package/apps/desktop/resources/locales/nl-NL/dialog.json +31 -0
  57. package/apps/desktop/resources/locales/nl-NL/menu.json +70 -0
  58. package/apps/desktop/resources/locales/pl-PL/common.json +32 -0
  59. package/apps/desktop/resources/locales/pl-PL/dialog.json +31 -0
  60. package/apps/desktop/resources/locales/pl-PL/menu.json +70 -0
  61. package/apps/desktop/resources/locales/pt-BR/common.json +32 -0
  62. package/apps/desktop/resources/locales/pt-BR/dialog.json +31 -0
  63. package/apps/desktop/resources/locales/pt-BR/menu.json +70 -0
  64. package/apps/desktop/resources/locales/ru-RU/common.json +32 -0
  65. package/apps/desktop/resources/locales/ru-RU/dialog.json +31 -0
  66. package/apps/desktop/resources/locales/ru-RU/menu.json +70 -0
  67. package/apps/desktop/resources/locales/tr-TR/common.json +32 -0
  68. package/apps/desktop/resources/locales/tr-TR/dialog.json +31 -0
  69. package/apps/desktop/resources/locales/tr-TR/menu.json +70 -0
  70. package/apps/desktop/resources/locales/vi-VN/common.json +32 -0
  71. package/apps/desktop/resources/locales/vi-VN/dialog.json +31 -0
  72. package/apps/desktop/resources/locales/vi-VN/menu.json +70 -0
  73. package/apps/desktop/resources/locales/zh-CN/common.json +32 -0
  74. package/apps/desktop/resources/locales/zh-CN/dialog.json +31 -0
  75. package/apps/desktop/resources/locales/zh-CN/menu.json +70 -0
  76. package/apps/desktop/resources/locales/zh-TW/common.json +32 -0
  77. package/apps/desktop/resources/locales/zh-TW/dialog.json +31 -0
  78. package/apps/desktop/resources/locales/zh-TW/menu.json +70 -0
  79. package/apps/desktop/resources/splash.html +88 -0
  80. package/apps/desktop/scripts/i18nWorkflow/const.ts +18 -0
  81. package/apps/desktop/scripts/i18nWorkflow/genDefaultLocale.ts +35 -0
  82. package/apps/desktop/scripts/i18nWorkflow/genDiff.ts +57 -0
  83. package/apps/desktop/scripts/i18nWorkflow/index.ts +35 -0
  84. package/apps/desktop/scripts/i18nWorkflow/utils.ts +54 -0
  85. package/apps/desktop/scripts/pglite-server.ts +14 -0
  86. package/apps/desktop/src/common/routes.ts +78 -0
  87. package/apps/desktop/src/main/appBrowsers.ts +47 -0
  88. package/apps/desktop/src/main/const/dir.ts +29 -0
  89. package/apps/desktop/src/main/const/env.ts +3 -0
  90. package/apps/desktop/src/main/const/store.ts +22 -0
  91. package/apps/desktop/src/main/controllers/AuthCtr.ts +390 -0
  92. package/apps/desktop/src/main/controllers/BrowserWindowsCtr.ts +95 -0
  93. package/apps/desktop/src/main/controllers/DevtoolsCtr.ts +9 -0
  94. package/apps/desktop/src/main/controllers/LocalFileCtr.ts +380 -0
  95. package/apps/desktop/src/main/controllers/MenuCtr.ts +29 -0
  96. package/apps/desktop/src/main/controllers/RemoteServerConfigCtr.ts +335 -0
  97. package/apps/desktop/src/main/controllers/RemoteServerSyncCtr.ts +321 -0
  98. package/apps/desktop/src/main/controllers/ShortcutCtr.ts +19 -0
  99. package/apps/desktop/src/main/controllers/SystemCtr.ts +93 -0
  100. package/apps/desktop/src/main/controllers/UpdaterCtr.ts +43 -0
  101. package/apps/desktop/src/main/controllers/UploadFileCtr.ts +34 -0
  102. package/apps/desktop/src/main/controllers/_template.ts +9 -0
  103. package/apps/desktop/src/main/controllers/index.ts +58 -0
  104. package/apps/desktop/src/main/core/App.ts +370 -0
  105. package/apps/desktop/src/main/core/Browser.ts +345 -0
  106. package/apps/desktop/src/main/core/BrowserManager.ts +154 -0
  107. package/apps/desktop/src/main/core/I18nManager.ts +185 -0
  108. package/apps/desktop/src/main/core/IoCContainer.ts +12 -0
  109. package/apps/desktop/src/main/core/MenuManager.ts +64 -0
  110. package/apps/desktop/src/main/core/ShortcutManager.ts +173 -0
  111. package/apps/desktop/src/main/core/StoreManager.ts +89 -0
  112. package/apps/desktop/src/main/core/UpdaterManager.ts +321 -0
  113. package/apps/desktop/src/main/index.ts +5 -0
  114. package/apps/desktop/src/main/locales/default/common.ts +34 -0
  115. package/apps/desktop/src/main/locales/default/dialog.ts +33 -0
  116. package/apps/desktop/src/main/locales/default/index.ts +11 -0
  117. package/apps/desktop/src/main/locales/default/menu.ts +72 -0
  118. package/apps/desktop/src/main/locales/resources.ts +35 -0
  119. package/apps/desktop/src/main/menus/impls/BaseMenuPlatform.ts +10 -0
  120. package/apps/desktop/src/main/menus/impls/linux.ts +243 -0
  121. package/apps/desktop/src/main/menus/impls/macOS.ts +360 -0
  122. package/apps/desktop/src/main/menus/impls/windows.ts +226 -0
  123. package/apps/desktop/src/main/menus/index.ts +34 -0
  124. package/apps/desktop/src/main/menus/types.ts +28 -0
  125. package/apps/desktop/src/main/modules/fileSearch/impl/macOS.ts +577 -0
  126. package/apps/desktop/src/main/modules/fileSearch/index.ts +23 -0
  127. package/apps/desktop/src/main/modules/fileSearch/type.ts +27 -0
  128. package/apps/desktop/src/main/modules/updater/configs.ts +22 -0
  129. package/apps/desktop/src/main/modules/updater/utils.ts +33 -0
  130. package/apps/desktop/src/main/services/fileSearchSrv.ts +35 -0
  131. package/apps/desktop/src/main/services/fileSrv.ts +255 -0
  132. package/apps/desktop/src/main/services/index.ts +9 -0
  133. package/apps/desktop/src/main/shortcuts/config.ts +18 -0
  134. package/apps/desktop/src/main/shortcuts/index.ts +1 -0
  135. package/apps/desktop/src/main/types/fileSearch.ts +51 -0
  136. package/apps/desktop/src/main/types/store.ts +14 -0
  137. package/apps/desktop/src/main/utils/file-system.ts +15 -0
  138. package/apps/desktop/src/main/utils/logger.ts +44 -0
  139. package/apps/desktop/src/main/utils/next-electron-rsc.ts +383 -0
  140. package/apps/desktop/src/preload/electronApi.ts +18 -0
  141. package/apps/desktop/src/preload/index.ts +14 -0
  142. package/apps/desktop/src/preload/invoke.ts +10 -0
  143. package/apps/desktop/src/preload/routeInterceptor.ts +162 -0
  144. package/apps/desktop/tsconfig.json +21 -0
  145. package/changelog/v1.json +9 -0
  146. package/package.json +1 -1
  147. package/packages/electron-client-ipc/src/events/remoteServer.ts +11 -4
  148. package/packages/electron-client-ipc/src/types/dataSync.ts +15 -0
  149. package/packages/electron-client-ipc/src/types/index.ts +2 -1
  150. package/packages/electron-client-ipc/src/types/proxyTRPCRequest.ts +21 -0
  151. package/packages/electron-server-ipc/src/const.ts +3 -3
  152. package/packages/electron-server-ipc/src/ipcClient.test.ts +7 -6
  153. package/packages/electron-server-ipc/src/ipcClient.ts +17 -8
  154. package/packages/electron-server-ipc/src/ipcServer.ts +7 -3
  155. package/scripts/electronWorkflow/setDesktopVersion.ts +60 -43
  156. package/src/app/[variants]/(main)/_layout/Desktop/index.tsx +1 -1
  157. package/src/components/Analytics/Desktop.tsx +19 -0
  158. package/src/components/Analytics/index.tsx +3 -0
  159. package/src/database/core/db-adaptor.ts +4 -1
  160. package/src/database/core/electron.ts +317 -0
  161. package/src/{app/[variants]/(main)/_layout/Desktop/ElectronTitlebar/Connection/Mode.tsx → features/ElectronTitlebar/Connection/ConnectionMode.tsx} +24 -21
  162. package/src/{app/[variants]/(main)/_layout/Desktop → features}/ElectronTitlebar/Connection/Option.tsx +3 -5
  163. package/src/{app/[variants]/(main)/_layout/Desktop/ElectronTitlebar/Connection/Sync.tsx → features/ElectronTitlebar/Connection/RemoteStatus.tsx} +10 -7
  164. package/src/{app/[variants]/(main)/_layout/Desktop → features}/ElectronTitlebar/Connection/index.tsx +4 -4
  165. package/src/{app/[variants]/(main)/_layout/Desktop → features}/ElectronTitlebar/UpdateModal.tsx +2 -1
  166. package/src/libs/trpc/client/async.ts +6 -0
  167. package/src/libs/trpc/client/edge.ts +6 -0
  168. package/src/libs/trpc/client/helpers/desktopRemoteRPCFetch.ts +72 -0
  169. package/src/libs/trpc/client/index.ts +1 -0
  170. package/src/libs/trpc/client/lambda.ts +10 -1
  171. package/src/libs/trpc/client/tools.ts +6 -0
  172. package/src/server/globalConfig/index.ts +0 -3
  173. package/src/server/modules/ElectronIPCClient/index.ts +3 -1
  174. package/src/server/routers/desktop/index.ts +2 -0
  175. package/src/server/routers/desktop/mcp.ts +47 -0
  176. package/src/server/routers/lambda/user.ts +38 -23
  177. package/src/server/routers/tools/mcp.ts +0 -6
  178. package/src/services/electron/remoteServer.ts +4 -4
  179. package/src/services/mcp.ts +17 -7
  180. package/src/services/upload.ts +9 -0
  181. package/src/store/chat/slices/aiChat/actions/generateAIChat.ts +11 -2
  182. package/src/store/chat/slices/builtinTool/actions/localFile.ts +110 -53
  183. package/src/store/electron/actions/sync.ts +20 -19
  184. package/src/store/electron/initialState.ts +3 -3
  185. package/src/store/electron/selectors/sync.ts +6 -3
  186. package/src/store/electron/store.ts +2 -0
  187. package/src/store/file/slices/upload/action.ts +11 -3
  188. package/src/store/tool/selectors/tool.ts +10 -1
  189. package/src/utils/fetch/headers.ts +27 -0
  190. package/src/utils/fetch/index.ts +2 -0
  191. package/src/utils/fetch/request.ts +28 -0
  192. package/packages/electron-client-ipc/src/types/remoteServer.ts +0 -8
  193. /package/src/{app/[variants]/(main)/_layout/Desktop → features}/ElectronTitlebar/Connection/Waiting.tsx +0 -0
  194. /package/src/{app/[variants]/(main)/_layout/Desktop → features}/ElectronTitlebar/UpdateNotification.tsx +0 -0
  195. /package/src/{app/[variants]/(main)/_layout/Desktop → features}/ElectronTitlebar/index.tsx +0 -0
@@ -0,0 +1,31 @@
1
+ {
2
+ "about": {
3
+ "button": "Bestätigen",
4
+ "detail": "Eine Chat-Anwendung, die auf einem großen Sprachmodell basiert",
5
+ "message": "{{appName}} {{appVersion}}",
6
+ "title": "Über"
7
+ },
8
+ "confirm": {
9
+ "cancel": "Abbrechen",
10
+ "no": "Nein",
11
+ "title": "Bestätigung",
12
+ "yes": "Ja"
13
+ },
14
+ "error": {
15
+ "button": "Bestätigen",
16
+ "detail": "Während der Operation ist ein Fehler aufgetreten, bitte versuchen Sie es später erneut",
17
+ "message": "Ein Fehler ist aufgetreten",
18
+ "title": "Fehler"
19
+ },
20
+ "update": {
21
+ "downloadAndInstall": "Herunterladen und installieren",
22
+ "downloadComplete": "Download abgeschlossen",
23
+ "downloadCompleteMessage": "Das Update-Paket wurde heruntergeladen, möchten Sie es jetzt installieren?",
24
+ "installLater": "Später installieren",
25
+ "installNow": "Jetzt installieren",
26
+ "later": "Später erinnern",
27
+ "newVersion": "Neue Version gefunden",
28
+ "newVersionAvailable": "Neue Version verfügbar: {{version}}",
29
+ "skipThisVersion": "Diese Version überspringen"
30
+ }
31
+ }
@@ -0,0 +1,70 @@
1
+ {
2
+ "common": {
3
+ "checkUpdates": "Überprüfen Sie auf Updates..."
4
+ },
5
+ "dev": {
6
+ "devPanel": "Entwicklerpanel",
7
+ "devTools": "Entwicklerwerkzeuge",
8
+ "forceReload": "Erzwinge Neuladen",
9
+ "openStore": "Speicherdatei öffnen",
10
+ "refreshMenu": "Menü aktualisieren",
11
+ "reload": "Neuladen",
12
+ "title": "Entwicklung"
13
+ },
14
+ "edit": {
15
+ "copy": "Kopieren",
16
+ "cut": "Ausschneiden",
17
+ "paste": "Einfügen",
18
+ "redo": "Wiederherstellen",
19
+ "selectAll": "Alles auswählen",
20
+ "speech": "Sprache",
21
+ "startSpeaking": "Beginne zu sprechen",
22
+ "stopSpeaking": "Stoppe das Sprechen",
23
+ "title": "Bearbeiten",
24
+ "undo": "Rückgängig"
25
+ },
26
+ "file": {
27
+ "preferences": "Einstellungen",
28
+ "quit": "Beenden",
29
+ "title": "Datei"
30
+ },
31
+ "help": {
32
+ "about": "Über",
33
+ "githubRepo": "GitHub-Repository",
34
+ "reportIssue": "Problem melden",
35
+ "title": "Hilfe",
36
+ "visitWebsite": "Besuche die Website"
37
+ },
38
+ "macOS": {
39
+ "about": "Über {{appName}}",
40
+ "devTools": "LobeHub Entwicklerwerkzeuge",
41
+ "hide": "{{appName}} ausblenden",
42
+ "hideOthers": "Andere ausblenden",
43
+ "preferences": "Einstellungen...",
44
+ "services": "Dienste",
45
+ "unhide": "Alle anzeigen"
46
+ },
47
+ "tray": {
48
+ "open": "{{appName}} öffnen",
49
+ "quit": "Beenden",
50
+ "show": "{{appName}} anzeigen"
51
+ },
52
+ "view": {
53
+ "forceReload": "Erzwinge Neuladen",
54
+ "reload": "Neuladen",
55
+ "resetZoom": "Zoom zurücksetzen",
56
+ "title": "Ansicht",
57
+ "toggleFullscreen": "Vollbild umschalten",
58
+ "zoomIn": "Vergrößern",
59
+ "zoomOut": "Verkleinern"
60
+ },
61
+ "window": {
62
+ "bringAllToFront": "Alle Fenster in den Vordergrund bringen",
63
+ "close": "Schließen",
64
+ "front": "Alle Fenster in den Vordergrund bringen",
65
+ "minimize": "Minimieren",
66
+ "title": "Fenster",
67
+ "toggleFullscreen": "Vollbild umschalten",
68
+ "zoom": "Zoom"
69
+ }
70
+ }
@@ -0,0 +1,32 @@
1
+ {
2
+ "actions": {
3
+ "add": "Add",
4
+ "back": "Back",
5
+ "cancel": "Cancel",
6
+ "close": "Close",
7
+ "confirm": "Confirm",
8
+ "delete": "Delete",
9
+ "edit": "Edit",
10
+ "more": "More",
11
+ "next": "Next",
12
+ "ok": "OK",
13
+ "previous": "Previous",
14
+ "refresh": "Refresh",
15
+ "remove": "Remove",
16
+ "retry": "Retry",
17
+ "save": "Save",
18
+ "search": "Search",
19
+ "submit": "Submit"
20
+ },
21
+ "app": {
22
+ "description": "Your AI Assistant Collaboration Platform",
23
+ "name": "LobeHub"
24
+ },
25
+ "status": {
26
+ "error": "Error",
27
+ "info": "Information",
28
+ "loading": "Loading",
29
+ "success": "Success",
30
+ "warning": "Warning"
31
+ }
32
+ }
@@ -0,0 +1,31 @@
1
+ {
2
+ "about": {
3
+ "button": "OK",
4
+ "detail": "A chat application based on a large language model",
5
+ "message": "{{appName}} {{appVersion}}",
6
+ "title": "About"
7
+ },
8
+ "confirm": {
9
+ "cancel": "Cancel",
10
+ "no": "No",
11
+ "title": "Confirm",
12
+ "yes": "Yes"
13
+ },
14
+ "error": {
15
+ "button": "OK",
16
+ "detail": "An error occurred during the operation, please try again later",
17
+ "message": "An error occurred",
18
+ "title": "Error"
19
+ },
20
+ "update": {
21
+ "downloadAndInstall": "Download and Install",
22
+ "downloadComplete": "Download Complete",
23
+ "downloadCompleteMessage": "The update package has been downloaded, would you like to install it now?",
24
+ "installLater": "Install Later",
25
+ "installNow": "Install Now",
26
+ "later": "Remind Me Later",
27
+ "newVersion": "New Version Found",
28
+ "newVersionAvailable": "New version available: {{version}}",
29
+ "skipThisVersion": "Skip This Version"
30
+ }
31
+ }
@@ -0,0 +1,70 @@
1
+ {
2
+ "common": {
3
+ "checkUpdates": "Checking for updates..."
4
+ },
5
+ "dev": {
6
+ "devPanel": "Developer Panel",
7
+ "devTools": "Developer Tools",
8
+ "forceReload": "Force Reload",
9
+ "openStore": "Open Storage File",
10
+ "refreshMenu": "Refresh menu",
11
+ "reload": "Reload",
12
+ "title": "Development"
13
+ },
14
+ "edit": {
15
+ "copy": "Copy",
16
+ "cut": "Cut",
17
+ "paste": "Paste",
18
+ "redo": "Redo",
19
+ "selectAll": "Select All",
20
+ "speech": "Speech",
21
+ "startSpeaking": "Start Speaking",
22
+ "stopSpeaking": "Stop Speaking",
23
+ "title": "Edit",
24
+ "undo": "Undo"
25
+ },
26
+ "file": {
27
+ "preferences": "Preferences",
28
+ "quit": "Quit",
29
+ "title": "File"
30
+ },
31
+ "help": {
32
+ "about": "About",
33
+ "githubRepo": "GitHub Repository",
34
+ "reportIssue": "Report Issue",
35
+ "title": "Help",
36
+ "visitWebsite": "Visit Website"
37
+ },
38
+ "macOS": {
39
+ "about": "About {{appName}}",
40
+ "devTools": "LobeHub Developer Tools",
41
+ "hide": "Hide {{appName}}",
42
+ "hideOthers": "Hide Others",
43
+ "preferences": "Preferences...",
44
+ "services": "Services",
45
+ "unhide": "Show All"
46
+ },
47
+ "tray": {
48
+ "open": "Open {{appName}}",
49
+ "quit": "Quit",
50
+ "show": "Show {{appName}}"
51
+ },
52
+ "view": {
53
+ "forceReload": "Force Reload",
54
+ "reload": "Reload",
55
+ "resetZoom": "Reset Zoom",
56
+ "title": "View",
57
+ "toggleFullscreen": "Toggle Fullscreen",
58
+ "zoomIn": "Zoom In",
59
+ "zoomOut": "Zoom Out"
60
+ },
61
+ "window": {
62
+ "bringAllToFront": "Bring All Windows to Front",
63
+ "close": "Close",
64
+ "front": "Bring All Windows to Front",
65
+ "minimize": "Minimize",
66
+ "title": "Window",
67
+ "toggleFullscreen": "Toggle Fullscreen",
68
+ "zoom": "Zoom"
69
+ }
70
+ }
@@ -0,0 +1,32 @@
1
+ {
2
+ "actions": {
3
+ "add": "Agregar",
4
+ "back": "Volver",
5
+ "cancel": "Cancelar",
6
+ "close": "Cerrar",
7
+ "confirm": "Confirmar",
8
+ "delete": "Eliminar",
9
+ "edit": "Editar",
10
+ "more": "Más",
11
+ "next": "Siguiente",
12
+ "ok": "Aceptar",
13
+ "previous": "Anterior",
14
+ "refresh": "Actualizar",
15
+ "remove": "Eliminar",
16
+ "retry": "Reintentar",
17
+ "save": "Guardar",
18
+ "search": "Buscar",
19
+ "submit": "Enviar"
20
+ },
21
+ "app": {
22
+ "description": "Tu plataforma de colaboración con el asistente de IA",
23
+ "name": "LobeHub"
24
+ },
25
+ "status": {
26
+ "error": "Error",
27
+ "info": "Información",
28
+ "loading": "Cargando",
29
+ "success": "Éxito",
30
+ "warning": "Advertencia"
31
+ }
32
+ }
@@ -0,0 +1,31 @@
1
+ {
2
+ "about": {
3
+ "button": "Aceptar",
4
+ "detail": "Una aplicación de chat basada en un modelo de lenguaje grande",
5
+ "message": "{{appName}} {{appVersion}}",
6
+ "title": "Acerca de"
7
+ },
8
+ "confirm": {
9
+ "cancel": "Cancelar",
10
+ "no": "No",
11
+ "title": "Confirmar",
12
+ "yes": "Sí"
13
+ },
14
+ "error": {
15
+ "button": "Aceptar",
16
+ "detail": "Se produjo un error durante la operación, por favor intente de nuevo más tarde",
17
+ "message": "Se produjo un error",
18
+ "title": "Error"
19
+ },
20
+ "update": {
21
+ "downloadAndInstall": "Descargar e instalar",
22
+ "downloadComplete": "Descarga completada",
23
+ "downloadCompleteMessage": "El paquete de actualización se ha descargado, ¿desea instalarlo ahora?",
24
+ "installLater": "Instalar más tarde",
25
+ "installNow": "Instalar ahora",
26
+ "later": "Recordar más tarde",
27
+ "newVersion": "Nueva versión disponible",
28
+ "newVersionAvailable": "Nueva versión encontrada: {{version}}",
29
+ "skipThisVersion": "Saltar esta versión"
30
+ }
31
+ }
@@ -0,0 +1,70 @@
1
+ {
2
+ "common": {
3
+ "checkUpdates": "Comprobando actualizaciones..."
4
+ },
5
+ "dev": {
6
+ "devPanel": "Panel de desarrollador",
7
+ "devTools": "Herramientas de desarrollador",
8
+ "forceReload": "Recargar forzosamente",
9
+ "openStore": "Abrir archivo de almacenamiento",
10
+ "refreshMenu": "Actualizar menú",
11
+ "reload": "Recargar",
12
+ "title": "Desarrollo"
13
+ },
14
+ "edit": {
15
+ "copy": "Copiar",
16
+ "cut": "Cortar",
17
+ "paste": "Pegar",
18
+ "redo": "Rehacer",
19
+ "selectAll": "Seleccionar todo",
20
+ "speech": "Voz",
21
+ "startSpeaking": "Comenzar a leer en voz alta",
22
+ "stopSpeaking": "Detener lectura en voz alta",
23
+ "title": "Editar",
24
+ "undo": "Deshacer"
25
+ },
26
+ "file": {
27
+ "preferences": "Preferencias",
28
+ "quit": "Salir",
29
+ "title": "Archivo"
30
+ },
31
+ "help": {
32
+ "about": "Acerca de",
33
+ "githubRepo": "Repositorio de GitHub",
34
+ "reportIssue": "Reportar un problema",
35
+ "title": "Ayuda",
36
+ "visitWebsite": "Visitar el sitio web"
37
+ },
38
+ "macOS": {
39
+ "about": "Acerca de {{appName}}",
40
+ "devTools": "Herramientas de desarrollador de LobeHub",
41
+ "hide": "Ocultar {{appName}}",
42
+ "hideOthers": "Ocultar otros",
43
+ "preferences": "Configuración...",
44
+ "services": "Servicios",
45
+ "unhide": "Mostrar todo"
46
+ },
47
+ "tray": {
48
+ "open": "Abrir {{appName}}",
49
+ "quit": "Salir",
50
+ "show": "Mostrar {{appName}}"
51
+ },
52
+ "view": {
53
+ "forceReload": "Recargar forzosamente",
54
+ "reload": "Recargar",
55
+ "resetZoom": "Restablecer zoom",
56
+ "title": "Vista",
57
+ "toggleFullscreen": "Alternar pantalla completa",
58
+ "zoomIn": "Acercar",
59
+ "zoomOut": "Alejar"
60
+ },
61
+ "window": {
62
+ "bringAllToFront": "Traer todas las ventanas al frente",
63
+ "close": "Cerrar",
64
+ "front": "Traer todas las ventanas al frente",
65
+ "minimize": "Minimizar",
66
+ "title": "Ventana",
67
+ "toggleFullscreen": "Alternar pantalla completa",
68
+ "zoom": "Zoom"
69
+ }
70
+ }
@@ -0,0 +1,32 @@
1
+ {
2
+ "actions": {
3
+ "add": "افزودن",
4
+ "back": "بازگشت",
5
+ "cancel": "لغو",
6
+ "close": "بستن",
7
+ "confirm": "تأیید",
8
+ "delete": "حذف",
9
+ "edit": "ویرایش",
10
+ "more": "بیشتر",
11
+ "next": "مرحله بعد",
12
+ "ok": "تأیید",
13
+ "previous": "مرحله قبل",
14
+ "refresh": "به‌روزرسانی",
15
+ "remove": "حذف",
16
+ "retry": "تلاش مجدد",
17
+ "save": "ذخیره",
18
+ "search": "جستجو",
19
+ "submit": "ارسال"
20
+ },
21
+ "app": {
22
+ "description": "پلتفرم همکاری دستیار هوش مصنوعی شما",
23
+ "name": "LobeHub"
24
+ },
25
+ "status": {
26
+ "error": "خطا",
27
+ "info": "اطلاعات",
28
+ "loading": "در حال بارگذاری",
29
+ "success": "موفق",
30
+ "warning": "هشدار"
31
+ }
32
+ }
@@ -0,0 +1,31 @@
1
+ {
2
+ "about": {
3
+ "button": "تأیید",
4
+ "detail": "یک برنامه چت مبتنی بر مدل‌های زبانی بزرگ",
5
+ "message": "{{appName}} {{appVersion}}",
6
+ "title": "درباره"
7
+ },
8
+ "confirm": {
9
+ "cancel": "لغو",
10
+ "no": "خیر",
11
+ "title": "تأیید",
12
+ "yes": "بله"
13
+ },
14
+ "error": {
15
+ "button": "تأیید",
16
+ "detail": "در حین انجام عملیات خطایی رخ داده است، لطفاً بعداً دوباره تلاش کنید",
17
+ "message": "خطا رخ داده است",
18
+ "title": "خطا"
19
+ },
20
+ "update": {
21
+ "downloadAndInstall": "دانلود و نصب",
22
+ "downloadComplete": "دانلود کامل شد",
23
+ "downloadCompleteMessage": "بسته به‌روزرسانی دانلود شده است، آیا می‌خواهید بلافاصله نصب کنید؟",
24
+ "installLater": "نصب بعداً",
25
+ "installNow": "نصب اکنون",
26
+ "later": "یادآوری بعداً",
27
+ "newVersion": "نسخه جدیدی پیدا شد",
28
+ "newVersionAvailable": "نسخه جدید پیدا شد: {{version}}",
29
+ "skipThisVersion": "این نسخه را نادیده بگیرید"
30
+ }
31
+ }
@@ -0,0 +1,70 @@
1
+ {
2
+ "common": {
3
+ "checkUpdates": "بررسی به‌روزرسانی..."
4
+ },
5
+ "dev": {
6
+ "devPanel": "پنل توسعه‌دهنده",
7
+ "devTools": "ابزارهای توسعه‌دهنده",
8
+ "forceReload": "بارگذاری اجباری",
9
+ "openStore": "باز کردن فایل‌های ذخیره شده",
10
+ "refreshMenu": "به‌روزرسانی منو",
11
+ "reload": "بارگذاری مجدد",
12
+ "title": "توسعه"
13
+ },
14
+ "edit": {
15
+ "copy": "کپی",
16
+ "cut": "برش",
17
+ "paste": "چسباندن",
18
+ "redo": "انجام مجدد",
19
+ "selectAll": "انتخاب همه",
20
+ "speech": "گفتار",
21
+ "startSpeaking": "شروع به خواندن",
22
+ "stopSpeaking": "متوقف کردن خواندن",
23
+ "title": "ویرایش",
24
+ "undo": "بازگشت"
25
+ },
26
+ "file": {
27
+ "preferences": "تنظیمات",
28
+ "quit": "خروج",
29
+ "title": "فایل"
30
+ },
31
+ "help": {
32
+ "about": "درباره",
33
+ "githubRepo": "مخزن GitHub",
34
+ "reportIssue": "گزارش مشکل",
35
+ "title": "کمک",
36
+ "visitWebsite": "بازدید از وب‌سایت"
37
+ },
38
+ "macOS": {
39
+ "about": "درباره {{appName}}",
40
+ "devTools": "ابزارهای توسعه‌دهنده LobeHub",
41
+ "hide": "پنهان کردن {{appName}}",
42
+ "hideOthers": "پنهان کردن دیگران",
43
+ "preferences": "تنظیمات...",
44
+ "services": "خدمات",
45
+ "unhide": "نمایش همه"
46
+ },
47
+ "tray": {
48
+ "open": "باز کردن {{appName}}",
49
+ "quit": "خروج",
50
+ "show": "نمایش {{appName}}"
51
+ },
52
+ "view": {
53
+ "forceReload": "بارگذاری اجباری",
54
+ "reload": "بارگذاری مجدد",
55
+ "resetZoom": "تنظیم زوم به حالت اولیه",
56
+ "title": "نمایش",
57
+ "toggleFullscreen": "تغییر به حالت تمام صفحه",
58
+ "zoomIn": "بزرگ‌نمایی",
59
+ "zoomOut": "کوچک‌نمایی"
60
+ },
61
+ "window": {
62
+ "bringAllToFront": "همه پنجره‌ها را به جلو بیاورید",
63
+ "close": "بستن",
64
+ "front": "همه پنجره‌ها را به جلو بیاورید",
65
+ "minimize": "کوچک کردن",
66
+ "title": "پنجره",
67
+ "toggleFullscreen": "تغییر به حالت تمام صفحه",
68
+ "zoom": "زوم"
69
+ }
70
+ }
@@ -0,0 +1,32 @@
1
+ {
2
+ "actions": {
3
+ "add": "Ajouter",
4
+ "back": "Retour",
5
+ "cancel": "Annuler",
6
+ "close": "Fermer",
7
+ "confirm": "Confirmer",
8
+ "delete": "Supprimer",
9
+ "edit": "Éditer",
10
+ "more": "Plus",
11
+ "next": "Suivant",
12
+ "ok": "D'accord",
13
+ "previous": "Précédent",
14
+ "refresh": "Rafraîchir",
15
+ "remove": "Retirer",
16
+ "retry": "Réessayer",
17
+ "save": "Enregistrer",
18
+ "search": "Rechercher",
19
+ "submit": "Soumettre"
20
+ },
21
+ "app": {
22
+ "description": "Votre plateforme de collaboration avec l'assistant IA",
23
+ "name": "LobeHub"
24
+ },
25
+ "status": {
26
+ "error": "Erreur",
27
+ "info": "Information",
28
+ "loading": "Chargement",
29
+ "success": "Succès",
30
+ "warning": "Avertissement"
31
+ }
32
+ }
@@ -0,0 +1,31 @@
1
+ {
2
+ "about": {
3
+ "button": "D'accord",
4
+ "detail": "Une application de chat basée sur un grand modèle de langage",
5
+ "message": "{{appName}} {{appVersion}}",
6
+ "title": "À propos"
7
+ },
8
+ "confirm": {
9
+ "cancel": "Annuler",
10
+ "no": "Non",
11
+ "title": "Confirmer",
12
+ "yes": "Oui"
13
+ },
14
+ "error": {
15
+ "button": "D'accord",
16
+ "detail": "Une erreur s'est produite lors de l'opération, veuillez réessayer plus tard",
17
+ "message": "Une erreur s'est produite",
18
+ "title": "Erreur"
19
+ },
20
+ "update": {
21
+ "downloadAndInstall": "Télécharger et installer",
22
+ "downloadComplete": "Téléchargement terminé",
23
+ "downloadCompleteMessage": "Le paquet de mise à jour a été téléchargé, souhaitez-vous l'installer maintenant ?",
24
+ "installLater": "Installer plus tard",
25
+ "installNow": "Installer maintenant",
26
+ "later": "Rappeler plus tard",
27
+ "newVersion": "Nouvelle version détectée",
28
+ "newVersionAvailable": "Nouvelle version disponible : {{version}}",
29
+ "skipThisVersion": "Ignorer cette version"
30
+ }
31
+ }
@@ -0,0 +1,70 @@
1
+ {
2
+ "common": {
3
+ "checkUpdates": "Vérifier les mises à jour..."
4
+ },
5
+ "dev": {
6
+ "devPanel": "Panneau de développement",
7
+ "devTools": "Outils de développement",
8
+ "forceReload": "Recharger de force",
9
+ "openStore": "Ouvrir le fichier de stockage",
10
+ "refreshMenu": "Rafraîchir le menu",
11
+ "reload": "Recharger",
12
+ "title": "Développement"
13
+ },
14
+ "edit": {
15
+ "copy": "Copier",
16
+ "cut": "Couper",
17
+ "paste": "Coller",
18
+ "redo": "Rétablir",
19
+ "selectAll": "Tout sélectionner",
20
+ "speech": "Voix",
21
+ "startSpeaking": "Commencer à lire",
22
+ "stopSpeaking": "Arrêter de lire",
23
+ "title": "Édition",
24
+ "undo": "Annuler"
25
+ },
26
+ "file": {
27
+ "preferences": "Préférences",
28
+ "quit": "Quitter",
29
+ "title": "Fichier"
30
+ },
31
+ "help": {
32
+ "about": "À propos",
33
+ "githubRepo": "Dépôt GitHub",
34
+ "reportIssue": "Signaler un problème",
35
+ "title": "Aide",
36
+ "visitWebsite": "Visiter le site officiel"
37
+ },
38
+ "macOS": {
39
+ "about": "À propos de {{appName}}",
40
+ "devTools": "Outils de développement LobeHub",
41
+ "hide": "Masquer {{appName}}",
42
+ "hideOthers": "Masquer les autres",
43
+ "preferences": "Préférences...",
44
+ "services": "Services",
45
+ "unhide": "Tout afficher"
46
+ },
47
+ "tray": {
48
+ "open": "Ouvrir {{appName}}",
49
+ "quit": "Quitter",
50
+ "show": "Afficher {{appName}}"
51
+ },
52
+ "view": {
53
+ "forceReload": "Recharger de force",
54
+ "reload": "Recharger",
55
+ "resetZoom": "Réinitialiser le zoom",
56
+ "title": "Affichage",
57
+ "toggleFullscreen": "Basculer en plein écran",
58
+ "zoomIn": "Zoomer",
59
+ "zoomOut": "Dézoomer"
60
+ },
61
+ "window": {
62
+ "bringAllToFront": "Mettre toutes les fenêtres au premier plan",
63
+ "close": "Fermer",
64
+ "front": "Mettre toutes les fenêtres au premier plan",
65
+ "minimize": "Réduire",
66
+ "title": "Fenêtre",
67
+ "toggleFullscreen": "Basculer en plein écran",
68
+ "zoom": "Zoom"
69
+ }
70
+ }