@lobehub/chat 1.82.10 → 1.83.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/.env.desktop +1 -2
- package/.github/workflows/{release-desktop.yml → desktop-pr-build.yml} +59 -137
- package/.github/workflows/release-desktop-beta.yml +194 -0
- package/CHANGELOG.md +42 -0
- package/apps/desktop/.i18nrc.js +31 -0
- package/apps/desktop/Development.md +47 -0
- package/apps/desktop/README.md +6 -0
- package/apps/desktop/build/Icon-beta.icns +0 -0
- package/apps/desktop/build/Icon-nightly.icns +0 -0
- package/apps/desktop/build/Icon.icns +0 -0
- package/apps/desktop/build/entitlements.mac.plist +12 -0
- package/apps/desktop/build/favicon.ico +0 -0
- package/apps/desktop/build/icon-beta.png +0 -0
- package/apps/desktop/build/icon-dev.png +0 -0
- package/apps/desktop/build/icon-nightly.ico +0 -0
- package/apps/desktop/build/icon-nightly.png +0 -0
- package/apps/desktop/build/icon.ico +0 -0
- package/apps/desktop/build/icon.png +0 -0
- package/apps/desktop/dev-app-update.yml +6 -0
- package/apps/desktop/electron-builder.js +92 -0
- package/apps/desktop/electron.vite.config.ts +40 -0
- package/apps/desktop/package.json +72 -0
- package/apps/desktop/pnpm-workspace.yaml +5 -0
- package/apps/desktop/resources/error.html +136 -0
- package/apps/desktop/resources/locales/ar/common.json +32 -0
- package/apps/desktop/resources/locales/ar/dialog.json +31 -0
- package/apps/desktop/resources/locales/ar/menu.json +70 -0
- package/apps/desktop/resources/locales/bg-BG/common.json +32 -0
- package/apps/desktop/resources/locales/bg-BG/dialog.json +31 -0
- package/apps/desktop/resources/locales/bg-BG/menu.json +70 -0
- package/apps/desktop/resources/locales/de-DE/common.json +32 -0
- package/apps/desktop/resources/locales/de-DE/dialog.json +31 -0
- package/apps/desktop/resources/locales/de-DE/menu.json +70 -0
- package/apps/desktop/resources/locales/en-US/common.json +32 -0
- package/apps/desktop/resources/locales/en-US/dialog.json +31 -0
- package/apps/desktop/resources/locales/en-US/menu.json +70 -0
- package/apps/desktop/resources/locales/es-ES/common.json +32 -0
- package/apps/desktop/resources/locales/es-ES/dialog.json +31 -0
- package/apps/desktop/resources/locales/es-ES/menu.json +70 -0
- package/apps/desktop/resources/locales/fa-IR/common.json +32 -0
- package/apps/desktop/resources/locales/fa-IR/dialog.json +31 -0
- package/apps/desktop/resources/locales/fa-IR/menu.json +70 -0
- package/apps/desktop/resources/locales/fr-FR/common.json +32 -0
- package/apps/desktop/resources/locales/fr-FR/dialog.json +31 -0
- package/apps/desktop/resources/locales/fr-FR/menu.json +70 -0
- package/apps/desktop/resources/locales/it-IT/common.json +32 -0
- package/apps/desktop/resources/locales/it-IT/dialog.json +31 -0
- package/apps/desktop/resources/locales/it-IT/menu.json +70 -0
- package/apps/desktop/resources/locales/ja-JP/common.json +32 -0
- package/apps/desktop/resources/locales/ja-JP/dialog.json +31 -0
- package/apps/desktop/resources/locales/ja-JP/menu.json +70 -0
- package/apps/desktop/resources/locales/ko-KR/common.json +32 -0
- package/apps/desktop/resources/locales/ko-KR/dialog.json +31 -0
- package/apps/desktop/resources/locales/ko-KR/menu.json +70 -0
- package/apps/desktop/resources/locales/nl-NL/common.json +32 -0
- package/apps/desktop/resources/locales/nl-NL/dialog.json +31 -0
- package/apps/desktop/resources/locales/nl-NL/menu.json +70 -0
- package/apps/desktop/resources/locales/pl-PL/common.json +32 -0
- package/apps/desktop/resources/locales/pl-PL/dialog.json +31 -0
- package/apps/desktop/resources/locales/pl-PL/menu.json +70 -0
- package/apps/desktop/resources/locales/pt-BR/common.json +32 -0
- package/apps/desktop/resources/locales/pt-BR/dialog.json +31 -0
- package/apps/desktop/resources/locales/pt-BR/menu.json +70 -0
- package/apps/desktop/resources/locales/ru-RU/common.json +32 -0
- package/apps/desktop/resources/locales/ru-RU/dialog.json +31 -0
- package/apps/desktop/resources/locales/ru-RU/menu.json +70 -0
- package/apps/desktop/resources/locales/tr-TR/common.json +32 -0
- package/apps/desktop/resources/locales/tr-TR/dialog.json +31 -0
- package/apps/desktop/resources/locales/tr-TR/menu.json +70 -0
- package/apps/desktop/resources/locales/vi-VN/common.json +32 -0
- package/apps/desktop/resources/locales/vi-VN/dialog.json +31 -0
- package/apps/desktop/resources/locales/vi-VN/menu.json +70 -0
- package/apps/desktop/resources/locales/zh-CN/common.json +32 -0
- package/apps/desktop/resources/locales/zh-CN/dialog.json +31 -0
- package/apps/desktop/resources/locales/zh-CN/menu.json +70 -0
- package/apps/desktop/resources/locales/zh-TW/common.json +32 -0
- package/apps/desktop/resources/locales/zh-TW/dialog.json +31 -0
- package/apps/desktop/resources/locales/zh-TW/menu.json +70 -0
- package/apps/desktop/resources/splash.html +88 -0
- package/apps/desktop/scripts/i18nWorkflow/const.ts +18 -0
- package/apps/desktop/scripts/i18nWorkflow/genDefaultLocale.ts +35 -0
- package/apps/desktop/scripts/i18nWorkflow/genDiff.ts +57 -0
- package/apps/desktop/scripts/i18nWorkflow/index.ts +35 -0
- package/apps/desktop/scripts/i18nWorkflow/utils.ts +54 -0
- package/apps/desktop/scripts/pglite-server.ts +14 -0
- package/apps/desktop/src/common/routes.ts +78 -0
- package/apps/desktop/src/main/appBrowsers.ts +47 -0
- package/apps/desktop/src/main/const/dir.ts +29 -0
- package/apps/desktop/src/main/const/env.ts +3 -0
- package/apps/desktop/src/main/const/store.ts +22 -0
- package/apps/desktop/src/main/controllers/AuthCtr.ts +390 -0
- package/apps/desktop/src/main/controllers/BrowserWindowsCtr.ts +95 -0
- package/apps/desktop/src/main/controllers/DevtoolsCtr.ts +9 -0
- package/apps/desktop/src/main/controllers/LocalFileCtr.ts +380 -0
- package/apps/desktop/src/main/controllers/MenuCtr.ts +29 -0
- package/apps/desktop/src/main/controllers/RemoteServerConfigCtr.ts +335 -0
- package/apps/desktop/src/main/controllers/RemoteServerSyncCtr.ts +321 -0
- package/apps/desktop/src/main/controllers/ShortcutCtr.ts +19 -0
- package/apps/desktop/src/main/controllers/SystemCtr.ts +93 -0
- package/apps/desktop/src/main/controllers/UpdaterCtr.ts +43 -0
- package/apps/desktop/src/main/controllers/UploadFileCtr.ts +34 -0
- package/apps/desktop/src/main/controllers/_template.ts +9 -0
- package/apps/desktop/src/main/controllers/index.ts +58 -0
- package/apps/desktop/src/main/core/App.ts +370 -0
- package/apps/desktop/src/main/core/Browser.ts +345 -0
- package/apps/desktop/src/main/core/BrowserManager.ts +154 -0
- package/apps/desktop/src/main/core/I18nManager.ts +185 -0
- package/apps/desktop/src/main/core/IoCContainer.ts +12 -0
- package/apps/desktop/src/main/core/MenuManager.ts +64 -0
- package/apps/desktop/src/main/core/ShortcutManager.ts +173 -0
- package/apps/desktop/src/main/core/StoreManager.ts +89 -0
- package/apps/desktop/src/main/core/UpdaterManager.ts +321 -0
- package/apps/desktop/src/main/index.ts +5 -0
- package/apps/desktop/src/main/locales/default/common.ts +34 -0
- package/apps/desktop/src/main/locales/default/dialog.ts +33 -0
- package/apps/desktop/src/main/locales/default/index.ts +11 -0
- package/apps/desktop/src/main/locales/default/menu.ts +72 -0
- package/apps/desktop/src/main/locales/resources.ts +35 -0
- package/apps/desktop/src/main/menus/impls/BaseMenuPlatform.ts +10 -0
- package/apps/desktop/src/main/menus/impls/linux.ts +243 -0
- package/apps/desktop/src/main/menus/impls/macOS.ts +360 -0
- package/apps/desktop/src/main/menus/impls/windows.ts +226 -0
- package/apps/desktop/src/main/menus/index.ts +34 -0
- package/apps/desktop/src/main/menus/types.ts +28 -0
- package/apps/desktop/src/main/modules/fileSearch/impl/macOS.ts +577 -0
- package/apps/desktop/src/main/modules/fileSearch/index.ts +23 -0
- package/apps/desktop/src/main/modules/fileSearch/type.ts +27 -0
- package/apps/desktop/src/main/modules/updater/configs.ts +22 -0
- package/apps/desktop/src/main/modules/updater/utils.ts +33 -0
- package/apps/desktop/src/main/services/fileSearchSrv.ts +35 -0
- package/apps/desktop/src/main/services/fileSrv.ts +255 -0
- package/apps/desktop/src/main/services/index.ts +9 -0
- package/apps/desktop/src/main/shortcuts/config.ts +18 -0
- package/apps/desktop/src/main/shortcuts/index.ts +1 -0
- package/apps/desktop/src/main/types/fileSearch.ts +51 -0
- package/apps/desktop/src/main/types/store.ts +14 -0
- package/apps/desktop/src/main/utils/file-system.ts +15 -0
- package/apps/desktop/src/main/utils/logger.ts +44 -0
- package/apps/desktop/src/main/utils/next-electron-rsc.ts +383 -0
- package/apps/desktop/src/preload/electronApi.ts +18 -0
- package/apps/desktop/src/preload/index.ts +14 -0
- package/apps/desktop/src/preload/invoke.ts +10 -0
- package/apps/desktop/src/preload/routeInterceptor.ts +162 -0
- package/apps/desktop/tsconfig.json +21 -0
- package/changelog/v1.json +14 -0
- package/package.json +1 -1
- package/packages/electron-client-ipc/src/events/remoteServer.ts +11 -4
- package/packages/electron-client-ipc/src/types/dataSync.ts +15 -0
- package/packages/electron-client-ipc/src/types/index.ts +2 -1
- package/packages/electron-client-ipc/src/types/proxyTRPCRequest.ts +21 -0
- package/packages/electron-server-ipc/src/const.ts +3 -3
- package/packages/electron-server-ipc/src/ipcClient.test.ts +7 -6
- package/packages/electron-server-ipc/src/ipcClient.ts +17 -8
- package/packages/electron-server-ipc/src/ipcServer.ts +7 -3
- package/scripts/electronWorkflow/setDesktopVersion.ts +60 -43
- package/src/app/[variants]/(main)/_layout/Desktop/index.tsx +1 -1
- package/src/components/Analytics/Desktop.tsx +19 -0
- package/src/components/Analytics/index.tsx +3 -0
- package/src/database/core/db-adaptor.ts +4 -1
- package/src/database/core/electron.ts +317 -0
- package/src/{app/[variants]/(main)/_layout/Desktop/ElectronTitlebar/Connection/Mode.tsx → features/ElectronTitlebar/Connection/ConnectionMode.tsx} +24 -21
- package/src/{app/[variants]/(main)/_layout/Desktop → features}/ElectronTitlebar/Connection/Option.tsx +3 -5
- package/src/{app/[variants]/(main)/_layout/Desktop/ElectronTitlebar/Connection/Sync.tsx → features/ElectronTitlebar/Connection/RemoteStatus.tsx} +10 -7
- package/src/{app/[variants]/(main)/_layout/Desktop → features}/ElectronTitlebar/Connection/index.tsx +4 -4
- package/src/{app/[variants]/(main)/_layout/Desktop → features}/ElectronTitlebar/UpdateModal.tsx +2 -1
- package/src/libs/trpc/client/async.ts +6 -0
- package/src/libs/trpc/client/edge.ts +6 -0
- package/src/libs/trpc/client/helpers/desktopRemoteRPCFetch.ts +72 -0
- package/src/libs/trpc/client/index.ts +1 -0
- package/src/libs/trpc/client/lambda.ts +10 -1
- package/src/libs/trpc/client/tools.ts +6 -0
- package/src/server/globalConfig/index.ts +0 -3
- package/src/server/modules/ElectronIPCClient/index.ts +3 -1
- package/src/server/routers/desktop/index.ts +2 -0
- package/src/server/routers/desktop/mcp.ts +47 -0
- package/src/server/routers/lambda/user.ts +38 -23
- package/src/server/routers/tools/mcp.ts +0 -6
- package/src/services/electron/remoteServer.ts +4 -4
- package/src/services/mcp.ts +17 -7
- package/src/services/upload.ts +9 -0
- package/src/store/chat/slices/aiChat/actions/generateAIChat.ts +11 -2
- package/src/store/chat/slices/builtinTool/actions/localFile.ts +110 -53
- package/src/store/electron/actions/sync.ts +20 -19
- package/src/store/electron/initialState.ts +3 -3
- package/src/store/electron/selectors/sync.ts +6 -3
- package/src/store/electron/store.ts +2 -0
- package/src/store/file/slices/upload/action.ts +11 -3
- package/src/store/tool/selectors/tool.ts +10 -1
- package/src/utils/fetch/headers.ts +27 -0
- package/src/utils/fetch/index.ts +2 -0
- package/src/utils/fetch/request.ts +28 -0
- package/packages/electron-client-ipc/src/types/remoteServer.ts +0 -8
- /package/src/{app/[variants]/(main)/_layout/Desktop → features}/ElectronTitlebar/Connection/Waiting.tsx +0 -0
- /package/src/{app/[variants]/(main)/_layout/Desktop → features}/ElectronTitlebar/UpdateNotification.tsx +0 -0
- /package/src/{app/[variants]/(main)/_layout/Desktop → features}/ElectronTitlebar/index.tsx +0 -0
@@ -0,0 +1,32 @@
|
|
1
|
+
{
|
2
|
+
"actions": {
|
3
|
+
"add": "Aggiungi",
|
4
|
+
"back": "Indietro",
|
5
|
+
"cancel": "Annulla",
|
6
|
+
"close": "Chiudi",
|
7
|
+
"confirm": "Conferma",
|
8
|
+
"delete": "Elimina",
|
9
|
+
"edit": "Modifica",
|
10
|
+
"more": "Di più",
|
11
|
+
"next": "Avanti",
|
12
|
+
"ok": "OK",
|
13
|
+
"previous": "Indietro",
|
14
|
+
"refresh": "Aggiorna",
|
15
|
+
"remove": "Rimuovi",
|
16
|
+
"retry": "Riprova",
|
17
|
+
"save": "Salva",
|
18
|
+
"search": "Cerca",
|
19
|
+
"submit": "Invia"
|
20
|
+
},
|
21
|
+
"app": {
|
22
|
+
"description": "La tua piattaforma di collaborazione con assistente AI",
|
23
|
+
"name": "LobeHub"
|
24
|
+
},
|
25
|
+
"status": {
|
26
|
+
"error": "Errore",
|
27
|
+
"info": "Informazioni",
|
28
|
+
"loading": "Caricamento in corso",
|
29
|
+
"success": "Successo",
|
30
|
+
"warning": "Avviso"
|
31
|
+
}
|
32
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"about": {
|
3
|
+
"button": "Conferma",
|
4
|
+
"detail": "Un'app di chat basata su un grande modello linguistico",
|
5
|
+
"message": "{{appName}} {{appVersion}}",
|
6
|
+
"title": "Informazioni"
|
7
|
+
},
|
8
|
+
"confirm": {
|
9
|
+
"cancel": "Annulla",
|
10
|
+
"no": "No",
|
11
|
+
"title": "Conferma",
|
12
|
+
"yes": "Sì"
|
13
|
+
},
|
14
|
+
"error": {
|
15
|
+
"button": "Conferma",
|
16
|
+
"detail": "Si è verificato un errore durante l'operazione, riprovare più tardi",
|
17
|
+
"message": "Si è verificato un errore",
|
18
|
+
"title": "Errore"
|
19
|
+
},
|
20
|
+
"update": {
|
21
|
+
"downloadAndInstall": "Scarica e installa",
|
22
|
+
"downloadComplete": "Download completato",
|
23
|
+
"downloadCompleteMessage": "Il pacchetto di aggiornamento è stato scaricato, vuoi installarlo subito?",
|
24
|
+
"installLater": "Installa più tardi",
|
25
|
+
"installNow": "Installa ora",
|
26
|
+
"later": "Promemoria più tardi",
|
27
|
+
"newVersion": "Nuova versione disponibile",
|
28
|
+
"newVersionAvailable": "Nuova versione trovata: {{version}}",
|
29
|
+
"skipThisVersion": "Salta questa versione"
|
30
|
+
}
|
31
|
+
}
|
@@ -0,0 +1,70 @@
|
|
1
|
+
{
|
2
|
+
"common": {
|
3
|
+
"checkUpdates": "Controlla aggiornamenti..."
|
4
|
+
},
|
5
|
+
"dev": {
|
6
|
+
"devPanel": "Pannello sviluppatore",
|
7
|
+
"devTools": "Strumenti per sviluppatori",
|
8
|
+
"forceReload": "Ricarica forzata",
|
9
|
+
"openStore": "Apri il file di archiviazione",
|
10
|
+
"refreshMenu": "Aggiorna menu",
|
11
|
+
"reload": "Ricarica",
|
12
|
+
"title": "Sviluppo"
|
13
|
+
},
|
14
|
+
"edit": {
|
15
|
+
"copy": "Copia",
|
16
|
+
"cut": "Taglia",
|
17
|
+
"paste": "Incolla",
|
18
|
+
"redo": "Ripeti",
|
19
|
+
"selectAll": "Seleziona tutto",
|
20
|
+
"speech": "Voce",
|
21
|
+
"startSpeaking": "Inizia a leggere",
|
22
|
+
"stopSpeaking": "Ferma la lettura",
|
23
|
+
"title": "Modifica",
|
24
|
+
"undo": "Annulla"
|
25
|
+
},
|
26
|
+
"file": {
|
27
|
+
"preferences": "Preferenze",
|
28
|
+
"quit": "Esci",
|
29
|
+
"title": "File"
|
30
|
+
},
|
31
|
+
"help": {
|
32
|
+
"about": "Informazioni",
|
33
|
+
"githubRepo": "Repository GitHub",
|
34
|
+
"reportIssue": "Segnala un problema",
|
35
|
+
"title": "Aiuto",
|
36
|
+
"visitWebsite": "Visita il sito ufficiale"
|
37
|
+
},
|
38
|
+
"macOS": {
|
39
|
+
"about": "Informazioni su {{appName}}",
|
40
|
+
"devTools": "Strumenti per sviluppatori LobeHub",
|
41
|
+
"hide": "Nascondi {{appName}}",
|
42
|
+
"hideOthers": "Nascondi altri",
|
43
|
+
"preferences": "Impostazioni...",
|
44
|
+
"services": "Servizi",
|
45
|
+
"unhide": "Mostra tutto"
|
46
|
+
},
|
47
|
+
"tray": {
|
48
|
+
"open": "Apri {{appName}}",
|
49
|
+
"quit": "Esci",
|
50
|
+
"show": "Mostra {{appName}}"
|
51
|
+
},
|
52
|
+
"view": {
|
53
|
+
"forceReload": "Ricarica forzata",
|
54
|
+
"reload": "Ricarica",
|
55
|
+
"resetZoom": "Reimposta zoom",
|
56
|
+
"title": "Visualizza",
|
57
|
+
"toggleFullscreen": "Attiva/disattiva schermo intero",
|
58
|
+
"zoomIn": "Ingrandisci",
|
59
|
+
"zoomOut": "Riduci"
|
60
|
+
},
|
61
|
+
"window": {
|
62
|
+
"bringAllToFront": "Porta tutte le finestre in primo piano",
|
63
|
+
"close": "Chiudi",
|
64
|
+
"front": "Porta tutte le finestre in primo piano",
|
65
|
+
"minimize": "Minimizza",
|
66
|
+
"title": "Finestra",
|
67
|
+
"toggleFullscreen": "Attiva/disattiva schermo intero",
|
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": "OK",
|
13
|
+
"previous": "前へ",
|
14
|
+
"refresh": "更新",
|
15
|
+
"remove": "削除",
|
16
|
+
"retry": "再試行",
|
17
|
+
"save": "保存",
|
18
|
+
"search": "検索",
|
19
|
+
"submit": "送信"
|
20
|
+
},
|
21
|
+
"app": {
|
22
|
+
"description": "あなたのAIアシスタント協力プラットフォーム",
|
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": "추가",
|
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": "당신의 AI 비서 협업 플랫폼",
|
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": "Toevoegen",
|
4
|
+
"back": "Terug",
|
5
|
+
"cancel": "Annuleren",
|
6
|
+
"close": "Sluiten",
|
7
|
+
"confirm": "Bevestigen",
|
8
|
+
"delete": "Verwijderen",
|
9
|
+
"edit": "Bewerken",
|
10
|
+
"more": "Meer",
|
11
|
+
"next": "Volgende stap",
|
12
|
+
"ok": "OK",
|
13
|
+
"previous": "Vorige stap",
|
14
|
+
"refresh": "Vernieuwen",
|
15
|
+
"remove": "Verwijderen",
|
16
|
+
"retry": "Opnieuw proberen",
|
17
|
+
"save": "Opslaan",
|
18
|
+
"search": "Zoeken",
|
19
|
+
"submit": "Indienen"
|
20
|
+
},
|
21
|
+
"app": {
|
22
|
+
"description": "Jouw AI-assistent samenwerkingsplatform",
|
23
|
+
"name": "LobeHub"
|
24
|
+
},
|
25
|
+
"status": {
|
26
|
+
"error": "Fout",
|
27
|
+
"info": "Informatie",
|
28
|
+
"loading": "Laden",
|
29
|
+
"success": "Succes",
|
30
|
+
"warning": "Waarschuwing"
|
31
|
+
}
|
32
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"about": {
|
3
|
+
"button": "Bevestigen",
|
4
|
+
"detail": "Een chatapplicatie gebaseerd op een groot taalmodel",
|
5
|
+
"message": "{{appName}} {{appVersion}}",
|
6
|
+
"title": "Over"
|
7
|
+
},
|
8
|
+
"confirm": {
|
9
|
+
"cancel": "Annuleren",
|
10
|
+
"no": "Nee",
|
11
|
+
"title": "Bevestigen",
|
12
|
+
"yes": "Ja"
|
13
|
+
},
|
14
|
+
"error": {
|
15
|
+
"button": "Bevestigen",
|
16
|
+
"detail": "Er is een fout opgetreden tijdens de operatie, probeer het later opnieuw",
|
17
|
+
"message": "Er is een fout opgetreden",
|
18
|
+
"title": "Fout"
|
19
|
+
},
|
20
|
+
"update": {
|
21
|
+
"downloadAndInstall": "Downloaden en installeren",
|
22
|
+
"downloadComplete": "Download voltooid",
|
23
|
+
"downloadCompleteMessage": "Het updatepakket is gedownload, wilt u het nu installeren?",
|
24
|
+
"installLater": "Later installeren",
|
25
|
+
"installNow": "Nu installeren",
|
26
|
+
"later": "Later herinneren",
|
27
|
+
"newVersion": "Nieuwe versie gevonden",
|
28
|
+
"newVersionAvailable": "Nieuwe versie beschikbaar: {{version}}",
|
29
|
+
"skipThisVersion": "Deze versie overslaan"
|
30
|
+
}
|
31
|
+
}
|
@@ -0,0 +1,70 @@
|
|
1
|
+
{
|
2
|
+
"common": {
|
3
|
+
"checkUpdates": "Updates controleren..."
|
4
|
+
},
|
5
|
+
"dev": {
|
6
|
+
"devPanel": "Ontwikkelaarspaneel",
|
7
|
+
"devTools": "Ontwikkelaarstools",
|
8
|
+
"forceReload": "Forceer herladen",
|
9
|
+
"openStore": "Open opslagbestand",
|
10
|
+
"refreshMenu": "Menu verversen",
|
11
|
+
"reload": "Herladen",
|
12
|
+
"title": "Ontwikkeling"
|
13
|
+
},
|
14
|
+
"edit": {
|
15
|
+
"copy": "Kopiëren",
|
16
|
+
"cut": "Knippen",
|
17
|
+
"paste": "Plakken",
|
18
|
+
"redo": "Opnieuw doen",
|
19
|
+
"selectAll": "Alles selecteren",
|
20
|
+
"speech": "Spraak",
|
21
|
+
"startSpeaking": "Begin met voorlezen",
|
22
|
+
"stopSpeaking": "Stop met voorlezen",
|
23
|
+
"title": "Bewerken",
|
24
|
+
"undo": "Ongedaan maken"
|
25
|
+
},
|
26
|
+
"file": {
|
27
|
+
"preferences": "Voorkeuren",
|
28
|
+
"quit": "Afsluiten",
|
29
|
+
"title": "Bestand"
|
30
|
+
},
|
31
|
+
"help": {
|
32
|
+
"about": "Over",
|
33
|
+
"githubRepo": "GitHub-repo",
|
34
|
+
"reportIssue": "Probleem melden",
|
35
|
+
"title": "Hulp",
|
36
|
+
"visitWebsite": "Bezoek de website"
|
37
|
+
},
|
38
|
+
"macOS": {
|
39
|
+
"about": "Over {{appName}}",
|
40
|
+
"devTools": "LobeHub Ontwikkelaarstools",
|
41
|
+
"hide": "Verberg {{appName}}",
|
42
|
+
"hideOthers": "Verberg anderen",
|
43
|
+
"preferences": "Voorkeuren...",
|
44
|
+
"services": "Diensten",
|
45
|
+
"unhide": "Toon alles"
|
46
|
+
},
|
47
|
+
"tray": {
|
48
|
+
"open": "Open {{appName}}",
|
49
|
+
"quit": "Afsluiten",
|
50
|
+
"show": "Toon {{appName}}"
|
51
|
+
},
|
52
|
+
"view": {
|
53
|
+
"forceReload": "Forceer herladen",
|
54
|
+
"reload": "Herladen",
|
55
|
+
"resetZoom": "Zoom resetten",
|
56
|
+
"title": "Weergave",
|
57
|
+
"toggleFullscreen": "Schakel volledig scherm in/uit",
|
58
|
+
"zoomIn": "Inzoomen",
|
59
|
+
"zoomOut": "Uitzoomen"
|
60
|
+
},
|
61
|
+
"window": {
|
62
|
+
"bringAllToFront": "Breng alle vensters naar voren",
|
63
|
+
"close": "Sluiten",
|
64
|
+
"front": "Breng alle vensters naar voren",
|
65
|
+
"minimize": "Minimaliseren",
|
66
|
+
"title": "Venster",
|
67
|
+
"toggleFullscreen": "Schakel volledig scherm in/uit",
|
68
|
+
"zoom": "Inzoomen"
|
69
|
+
}
|
70
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
{
|
2
|
+
"actions": {
|
3
|
+
"add": "Dodaj",
|
4
|
+
"back": "Wstecz",
|
5
|
+
"cancel": "Anuluj",
|
6
|
+
"close": "Zamknij",
|
7
|
+
"confirm": "Potwierdź",
|
8
|
+
"delete": "Usuń",
|
9
|
+
"edit": "Edytuj",
|
10
|
+
"more": "Więcej",
|
11
|
+
"next": "Dalej",
|
12
|
+
"ok": "OK",
|
13
|
+
"previous": "Cofnij",
|
14
|
+
"refresh": "Odśwież",
|
15
|
+
"remove": "Usuń",
|
16
|
+
"retry": "Spróbuj ponownie",
|
17
|
+
"save": "Zapisz",
|
18
|
+
"search": "Szukaj",
|
19
|
+
"submit": "Wyślij"
|
20
|
+
},
|
21
|
+
"app": {
|
22
|
+
"description": "Twoja platforma współpracy z asystentem AI",
|
23
|
+
"name": "LobeHub"
|
24
|
+
},
|
25
|
+
"status": {
|
26
|
+
"error": "Błąd",
|
27
|
+
"info": "Informacja",
|
28
|
+
"loading": "Ładowanie",
|
29
|
+
"success": "Sukces",
|
30
|
+
"warning": "Ostrzeżenie"
|
31
|
+
}
|
32
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"about": {
|
3
|
+
"button": "OK",
|
4
|
+
"detail": "Aplikacja czatu oparta na dużym modelu językowym",
|
5
|
+
"message": "{{appName}} {{appVersion}}",
|
6
|
+
"title": "O aplikacji"
|
7
|
+
},
|
8
|
+
"confirm": {
|
9
|
+
"cancel": "Anuluj",
|
10
|
+
"no": "Nie",
|
11
|
+
"title": "Potwierdzenie",
|
12
|
+
"yes": "Tak"
|
13
|
+
},
|
14
|
+
"error": {
|
15
|
+
"button": "OK",
|
16
|
+
"detail": "Wystąpił błąd podczas operacji, spróbuj ponownie później",
|
17
|
+
"message": "Wystąpił błąd",
|
18
|
+
"title": "Błąd"
|
19
|
+
},
|
20
|
+
"update": {
|
21
|
+
"downloadAndInstall": "Pobierz i zainstaluj",
|
22
|
+
"downloadComplete": "Pobieranie zakończone",
|
23
|
+
"downloadCompleteMessage": "Pakiet aktualizacji został pobrany, czy chcesz go teraz zainstalować?",
|
24
|
+
"installLater": "Zainstaluj później",
|
25
|
+
"installNow": "Zainstaluj teraz",
|
26
|
+
"later": "Przypomnij później",
|
27
|
+
"newVersion": "Nowa wersja dostępna",
|
28
|
+
"newVersionAvailable": "Znaleziono nową wersję: {{version}}",
|
29
|
+
"skipThisVersion": "Pomiń tę wersję"
|
30
|
+
}
|
31
|
+
}
|