@lobehub/chat 1.82.9 → 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.
- package/.env.desktop +1 -2
- package/.github/workflows/{release-desktop.yml → desktop-pr-build.yml} +59 -137
- package/.github/workflows/release-desktop-beta.yml +196 -0
- package/CHANGELOG.md +50 -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 +18 -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/config/aiModels/wenxin.ts +95 -8
- 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,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
|
+
}
|
@@ -0,0 +1,70 @@
|
|
1
|
+
{
|
2
|
+
"common": {
|
3
|
+
"checkUpdates": "Sprawdzanie aktualizacji..."
|
4
|
+
},
|
5
|
+
"dev": {
|
6
|
+
"devPanel": "Panel dewelopera",
|
7
|
+
"devTools": "Narzędzia dewelopera",
|
8
|
+
"forceReload": "Wymuś ponowne załadowanie",
|
9
|
+
"openStore": "Otwórz plik magazynu",
|
10
|
+
"refreshMenu": "Odśwież menu",
|
11
|
+
"reload": "Przeładuj",
|
12
|
+
"title": "Rozwój"
|
13
|
+
},
|
14
|
+
"edit": {
|
15
|
+
"copy": "Kopiuj",
|
16
|
+
"cut": "Wytnij",
|
17
|
+
"paste": "Wklej",
|
18
|
+
"redo": "Ponów",
|
19
|
+
"selectAll": "Zaznacz wszystko",
|
20
|
+
"speech": "Mowa",
|
21
|
+
"startSpeaking": "Rozpocznij czytanie",
|
22
|
+
"stopSpeaking": "Zatrzymaj czytanie",
|
23
|
+
"title": "Edycja",
|
24
|
+
"undo": "Cofnij"
|
25
|
+
},
|
26
|
+
"file": {
|
27
|
+
"preferences": "Preferencje",
|
28
|
+
"quit": "Zakończ",
|
29
|
+
"title": "Plik"
|
30
|
+
},
|
31
|
+
"help": {
|
32
|
+
"about": "O",
|
33
|
+
"githubRepo": "Repozytorium GitHub",
|
34
|
+
"reportIssue": "Zgłoś problem",
|
35
|
+
"title": "Pomoc",
|
36
|
+
"visitWebsite": "Odwiedź stronę internetową"
|
37
|
+
},
|
38
|
+
"macOS": {
|
39
|
+
"about": "O {{appName}}",
|
40
|
+
"devTools": "Narzędzia dewelopera LobeHub",
|
41
|
+
"hide": "Ukryj {{appName}}",
|
42
|
+
"hideOthers": "Ukryj inne",
|
43
|
+
"preferences": "Ustawienia...",
|
44
|
+
"services": "Usługi",
|
45
|
+
"unhide": "Pokaż wszystko"
|
46
|
+
},
|
47
|
+
"tray": {
|
48
|
+
"open": "Otwórz {{appName}}",
|
49
|
+
"quit": "Zakończ",
|
50
|
+
"show": "Pokaż {{appName}}"
|
51
|
+
},
|
52
|
+
"view": {
|
53
|
+
"forceReload": "Wymuś ponowne załadowanie",
|
54
|
+
"reload": "Przeładuj",
|
55
|
+
"resetZoom": "Zresetuj powiększenie",
|
56
|
+
"title": "Widok",
|
57
|
+
"toggleFullscreen": "Przełącz tryb pełnoekranowy",
|
58
|
+
"zoomIn": "Powiększ",
|
59
|
+
"zoomOut": "Pomniejsz"
|
60
|
+
},
|
61
|
+
"window": {
|
62
|
+
"bringAllToFront": "Przenieś wszystkie okna na wierzch",
|
63
|
+
"close": "Zamknij",
|
64
|
+
"front": "Przenieś wszystkie okna na wierzch",
|
65
|
+
"minimize": "Zminimalizuj",
|
66
|
+
"title": "Okno",
|
67
|
+
"toggleFullscreen": "Przełącz tryb pełnoekranowy",
|
68
|
+
"zoom": "Powiększenie"
|
69
|
+
}
|
70
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
{
|
2
|
+
"actions": {
|
3
|
+
"add": "Adicionar",
|
4
|
+
"back": "Voltar",
|
5
|
+
"cancel": "Cancelar",
|
6
|
+
"close": "Fechar",
|
7
|
+
"confirm": "Confirmar",
|
8
|
+
"delete": "Excluir",
|
9
|
+
"edit": "Editar",
|
10
|
+
"more": "Mais",
|
11
|
+
"next": "Próximo",
|
12
|
+
"ok": "OK",
|
13
|
+
"previous": "Anterior",
|
14
|
+
"refresh": "Atualizar",
|
15
|
+
"remove": "Remover",
|
16
|
+
"retry": "Tentar novamente",
|
17
|
+
"save": "Salvar",
|
18
|
+
"search": "Pesquisar",
|
19
|
+
"submit": "Enviar"
|
20
|
+
},
|
21
|
+
"app": {
|
22
|
+
"description": "Sua plataforma de colaboração com assistente de IA",
|
23
|
+
"name": "LobeHub"
|
24
|
+
},
|
25
|
+
"status": {
|
26
|
+
"error": "Erro",
|
27
|
+
"info": "Informação",
|
28
|
+
"loading": "Carregando",
|
29
|
+
"success": "Sucesso",
|
30
|
+
"warning": "Aviso"
|
31
|
+
}
|
32
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"about": {
|
3
|
+
"button": "Confirmar",
|
4
|
+
"detail": "Um aplicativo de chat baseado em um grande modelo de linguagem",
|
5
|
+
"message": "{{appName}} {{appVersion}}",
|
6
|
+
"title": "Sobre"
|
7
|
+
},
|
8
|
+
"confirm": {
|
9
|
+
"cancel": "Cancelar",
|
10
|
+
"no": "Não",
|
11
|
+
"title": "Confirmar",
|
12
|
+
"yes": "Sim"
|
13
|
+
},
|
14
|
+
"error": {
|
15
|
+
"button": "Confirmar",
|
16
|
+
"detail": "Ocorreu um erro durante a operação, por favor tente novamente mais tarde",
|
17
|
+
"message": "Ocorreu um erro",
|
18
|
+
"title": "Erro"
|
19
|
+
},
|
20
|
+
"update": {
|
21
|
+
"downloadAndInstall": "Baixar e instalar",
|
22
|
+
"downloadComplete": "Download completo",
|
23
|
+
"downloadCompleteMessage": "O pacote de atualização foi baixado com sucesso, deseja instalá-lo agora?",
|
24
|
+
"installLater": "Instalar depois",
|
25
|
+
"installNow": "Instalar agora",
|
26
|
+
"later": "Lembrar mais tarde",
|
27
|
+
"newVersion": "Nova versão disponível",
|
28
|
+
"newVersionAvailable": "Nova versão encontrada: {{version}}",
|
29
|
+
"skipThisVersion": "Ignorar esta versão"
|
30
|
+
}
|
31
|
+
}
|
@@ -0,0 +1,70 @@
|
|
1
|
+
{
|
2
|
+
"common": {
|
3
|
+
"checkUpdates": "Verificando atualizações..."
|
4
|
+
},
|
5
|
+
"dev": {
|
6
|
+
"devPanel": "Painel do Desenvolvedor",
|
7
|
+
"devTools": "Ferramentas do Desenvolvedor",
|
8
|
+
"forceReload": "Recarregar Forçadamente",
|
9
|
+
"openStore": "Abrir arquivo de armazenamento",
|
10
|
+
"refreshMenu": "Atualizar menu",
|
11
|
+
"reload": "Recarregar",
|
12
|
+
"title": "Desenvolvimento"
|
13
|
+
},
|
14
|
+
"edit": {
|
15
|
+
"copy": "Copiar",
|
16
|
+
"cut": "Cortar",
|
17
|
+
"paste": "Colar",
|
18
|
+
"redo": "Refazer",
|
19
|
+
"selectAll": "Selecionar Tudo",
|
20
|
+
"speech": "Fala",
|
21
|
+
"startSpeaking": "Começar a Ler",
|
22
|
+
"stopSpeaking": "Parar de Ler",
|
23
|
+
"title": "Edição",
|
24
|
+
"undo": "Desfazer"
|
25
|
+
},
|
26
|
+
"file": {
|
27
|
+
"preferences": "Preferências",
|
28
|
+
"quit": "Sair",
|
29
|
+
"title": "Arquivo"
|
30
|
+
},
|
31
|
+
"help": {
|
32
|
+
"about": "Sobre",
|
33
|
+
"githubRepo": "Repositório do GitHub",
|
34
|
+
"reportIssue": "Reportar Problema",
|
35
|
+
"title": "Ajuda",
|
36
|
+
"visitWebsite": "Visitar o Site"
|
37
|
+
},
|
38
|
+
"macOS": {
|
39
|
+
"about": "Sobre {{appName}}",
|
40
|
+
"devTools": "Ferramentas do Desenvolvedor LobeHub",
|
41
|
+
"hide": "Ocultar {{appName}}",
|
42
|
+
"hideOthers": "Ocultar Outros",
|
43
|
+
"preferences": "Configurações...",
|
44
|
+
"services": "Serviços",
|
45
|
+
"unhide": "Mostrar Todos"
|
46
|
+
},
|
47
|
+
"tray": {
|
48
|
+
"open": "Abrir {{appName}}",
|
49
|
+
"quit": "Sair",
|
50
|
+
"show": "Mostrar {{appName}}"
|
51
|
+
},
|
52
|
+
"view": {
|
53
|
+
"forceReload": "Recarregar Forçadamente",
|
54
|
+
"reload": "Recarregar",
|
55
|
+
"resetZoom": "Redefinir Zoom",
|
56
|
+
"title": "Visualização",
|
57
|
+
"toggleFullscreen": "Alternar Tela Cheia",
|
58
|
+
"zoomIn": "Aumentar",
|
59
|
+
"zoomOut": "Diminuir"
|
60
|
+
},
|
61
|
+
"window": {
|
62
|
+
"bringAllToFront": "Trazer Todas as Janelas para Frente",
|
63
|
+
"close": "Fechar",
|
64
|
+
"front": "Trazer Todas as Janelas para Frente",
|
65
|
+
"minimize": "Minimizar",
|
66
|
+
"title": "Janela",
|
67
|
+
"toggleFullscreen": "Alternar Tela Cheia",
|
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": "Ekle",
|
4
|
+
"back": "Geri",
|
5
|
+
"cancel": "İptal",
|
6
|
+
"close": "Kapat",
|
7
|
+
"confirm": "Onayla",
|
8
|
+
"delete": "Sil",
|
9
|
+
"edit": "Düzenle",
|
10
|
+
"more": "Daha Fazla",
|
11
|
+
"next": "Sonraki",
|
12
|
+
"ok": "Tamam",
|
13
|
+
"previous": "Önceki",
|
14
|
+
"refresh": "Yenile",
|
15
|
+
"remove": "Kaldır",
|
16
|
+
"retry": "Yeniden Dene",
|
17
|
+
"save": "Kaydet",
|
18
|
+
"search": "Ara",
|
19
|
+
"submit": "Gönder"
|
20
|
+
},
|
21
|
+
"app": {
|
22
|
+
"description": "AI asistanınız için işbirliği platformu",
|
23
|
+
"name": "LobeHub"
|
24
|
+
},
|
25
|
+
"status": {
|
26
|
+
"error": "Hata",
|
27
|
+
"info": "Bilgi",
|
28
|
+
"loading": "Yükleniyor",
|
29
|
+
"success": "Başarılı",
|
30
|
+
"warning": "Uyarı"
|
31
|
+
}
|
32
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"about": {
|
3
|
+
"button": "Tamam",
|
4
|
+
"detail": "Büyük dil modeli tabanlı bir sohbet uygulaması",
|
5
|
+
"message": "{{appName}} {{appVersion}}",
|
6
|
+
"title": "Hakkında"
|
7
|
+
},
|
8
|
+
"confirm": {
|
9
|
+
"cancel": "İptal",
|
10
|
+
"no": "Hayır",
|
11
|
+
"title": "Onay",
|
12
|
+
"yes": "Evet"
|
13
|
+
},
|
14
|
+
"error": {
|
15
|
+
"button": "Tamam",
|
16
|
+
"detail": "İşlem sırasında bir hata oluştu, lütfen daha sonra tekrar deneyin",
|
17
|
+
"message": "Hata oluştu",
|
18
|
+
"title": "Hata"
|
19
|
+
},
|
20
|
+
"update": {
|
21
|
+
"downloadAndInstall": "İndir ve Yükle",
|
22
|
+
"downloadComplete": "İndirme tamamlandı",
|
23
|
+
"downloadCompleteMessage": "Güncelleme paketi indirildi, hemen yüklemek ister misiniz?",
|
24
|
+
"installLater": "Sonra yükle",
|
25
|
+
"installNow": "Şimdi yükle",
|
26
|
+
"later": "Sonra hatırlat",
|
27
|
+
"newVersion": "Yeni sürüm bulundu",
|
28
|
+
"newVersionAvailable": "Yeni sürüm bulundu: {{version}}",
|
29
|
+
"skipThisVersion": "Bu sürümü atla"
|
30
|
+
}
|
31
|
+
}
|
@@ -0,0 +1,70 @@
|
|
1
|
+
{
|
2
|
+
"common": {
|
3
|
+
"checkUpdates": "Güncellemeleri kontrol et..."
|
4
|
+
},
|
5
|
+
"dev": {
|
6
|
+
"devPanel": "Geliştirici Paneli",
|
7
|
+
"devTools": "Geliştirici Araçları",
|
8
|
+
"forceReload": "Zorla Yenile",
|
9
|
+
"openStore": "Depolama dosyasını aç",
|
10
|
+
"refreshMenu": "Menüyü yenile",
|
11
|
+
"reload": "Yenile",
|
12
|
+
"title": "Geliştir"
|
13
|
+
},
|
14
|
+
"edit": {
|
15
|
+
"copy": "Kopyala",
|
16
|
+
"cut": "Kes",
|
17
|
+
"paste": "Yapıştır",
|
18
|
+
"redo": "Yinele",
|
19
|
+
"selectAll": "Tümünü Seç",
|
20
|
+
"speech": "Ses",
|
21
|
+
"startSpeaking": "Okumaya Başla",
|
22
|
+
"stopSpeaking": "Okumayı Durdur",
|
23
|
+
"title": "Düzenle",
|
24
|
+
"undo": "Geri Al"
|
25
|
+
},
|
26
|
+
"file": {
|
27
|
+
"preferences": "Tercihler",
|
28
|
+
"quit": "Çık",
|
29
|
+
"title": "Dosya"
|
30
|
+
},
|
31
|
+
"help": {
|
32
|
+
"about": "Hakkında",
|
33
|
+
"githubRepo": "GitHub Deposu",
|
34
|
+
"reportIssue": "Sorun Bildir",
|
35
|
+
"title": "Yardım",
|
36
|
+
"visitWebsite": "Resmi Web Sitesini Ziyaret Et"
|
37
|
+
},
|
38
|
+
"macOS": {
|
39
|
+
"about": "{{appName}} Hakkında",
|
40
|
+
"devTools": "LobeHub Geliştirici Araçları",
|
41
|
+
"hide": "{{appName}}'i Gizle",
|
42
|
+
"hideOthers": "Diğerlerini Gizle",
|
43
|
+
"preferences": "Tercihler...",
|
44
|
+
"services": "Hizmetler",
|
45
|
+
"unhide": "Hepsini Göster"
|
46
|
+
},
|
47
|
+
"tray": {
|
48
|
+
"open": "{{appName}}'i Aç",
|
49
|
+
"quit": "Çık",
|
50
|
+
"show": "{{appName}}'i Göster"
|
51
|
+
},
|
52
|
+
"view": {
|
53
|
+
"forceReload": "Zorla Yenile",
|
54
|
+
"reload": "Yenile",
|
55
|
+
"resetZoom": "Yakınlaştırmayı Sıfırla",
|
56
|
+
"title": "Görünüm",
|
57
|
+
"toggleFullscreen": "Tam Ekrana Geç",
|
58
|
+
"zoomIn": "Büyüt",
|
59
|
+
"zoomOut": "Küçült"
|
60
|
+
},
|
61
|
+
"window": {
|
62
|
+
"bringAllToFront": "Tüm Pencereleri Öne Getir",
|
63
|
+
"close": "Kapat",
|
64
|
+
"front": "Tüm Pencereleri Öne Getir",
|
65
|
+
"minimize": "Küçült",
|
66
|
+
"title": "Pencere",
|
67
|
+
"toggleFullscreen": "Tam Ekrana Geç",
|
68
|
+
"zoom": "Yakınlaştır"
|
69
|
+
}
|
70
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
{
|
2
|
+
"actions": {
|
3
|
+
"add": "Thêm",
|
4
|
+
"back": "Quay lại",
|
5
|
+
"cancel": "Hủy",
|
6
|
+
"close": "Đóng",
|
7
|
+
"confirm": "Xác nhận",
|
8
|
+
"delete": "Xóa",
|
9
|
+
"edit": "Chỉnh sửa",
|
10
|
+
"more": "Thêm nữa",
|
11
|
+
"next": "Tiếp theo",
|
12
|
+
"ok": "Đồng ý",
|
13
|
+
"previous": "Quay lại",
|
14
|
+
"refresh": "Tải lại",
|
15
|
+
"remove": "Gỡ bỏ",
|
16
|
+
"retry": "Thử lại",
|
17
|
+
"save": "Lưu",
|
18
|
+
"search": "Tìm kiếm",
|
19
|
+
"submit": "Gửi"
|
20
|
+
},
|
21
|
+
"app": {
|
22
|
+
"description": "Nền tảng hợp tác trợ lý AI của bạn",
|
23
|
+
"name": "LobeHub"
|
24
|
+
},
|
25
|
+
"status": {
|
26
|
+
"error": "Lỗi",
|
27
|
+
"info": "Thông tin",
|
28
|
+
"loading": "Đang tải",
|
29
|
+
"success": "Thành công",
|
30
|
+
"warning": "Cảnh báo"
|
31
|
+
}
|
32
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"about": {
|
3
|
+
"button": "Xác nhận",
|
4
|
+
"detail": "Một ứng dụng trò chuyện dựa trên mô hình ngôn ngữ lớn",
|
5
|
+
"message": "{{appName}} {{appVersion}}",
|
6
|
+
"title": "Về"
|
7
|
+
},
|
8
|
+
"confirm": {
|
9
|
+
"cancel": "Hủy",
|
10
|
+
"no": "Không",
|
11
|
+
"title": "Xác nhận",
|
12
|
+
"yes": "Có"
|
13
|
+
},
|
14
|
+
"error": {
|
15
|
+
"button": "Xác nhận",
|
16
|
+
"detail": "Đã xảy ra lỗi trong quá trình thực hiện, vui lòng thử lại sau",
|
17
|
+
"message": "Đã xảy ra lỗi",
|
18
|
+
"title": "Lỗi"
|
19
|
+
},
|
20
|
+
"update": {
|
21
|
+
"downloadAndInstall": "Tải xuống và cài đặt",
|
22
|
+
"downloadComplete": "Tải xuống hoàn tất",
|
23
|
+
"downloadCompleteMessage": "Gói cập nhật đã tải xuống hoàn tất, có muốn cài đặt ngay không?",
|
24
|
+
"installLater": "Cài đặt sau",
|
25
|
+
"installNow": "Cài đặt ngay",
|
26
|
+
"later": "Nhắc nhở sau",
|
27
|
+
"newVersion": "Phát hiện phiên bản mới",
|
28
|
+
"newVersionAvailable": "Phát hiện phiên bản mới: {{version}}",
|
29
|
+
"skipThisVersion": "Bỏ qua phiên bản này"
|
30
|
+
}
|
31
|
+
}
|
@@ -0,0 +1,70 @@
|
|
1
|
+
{
|
2
|
+
"common": {
|
3
|
+
"checkUpdates": "Kiểm tra cập nhật..."
|
4
|
+
},
|
5
|
+
"dev": {
|
6
|
+
"devPanel": "Bảng điều khiển nhà phát triển",
|
7
|
+
"devTools": "Công cụ phát triển",
|
8
|
+
"forceReload": "Tải lại cưỡng bức",
|
9
|
+
"openStore": "Mở tệp lưu trữ",
|
10
|
+
"refreshMenu": "Làm mới menu",
|
11
|
+
"reload": "Tải lại",
|
12
|
+
"title": "Phát triển"
|
13
|
+
},
|
14
|
+
"edit": {
|
15
|
+
"copy": "Sao chép",
|
16
|
+
"cut": "Cắt",
|
17
|
+
"paste": "Dán",
|
18
|
+
"redo": "Làm lại",
|
19
|
+
"selectAll": "Chọn tất cả",
|
20
|
+
"speech": "Giọng nói",
|
21
|
+
"startSpeaking": "Bắt đầu đọc",
|
22
|
+
"stopSpeaking": "Dừng đọc",
|
23
|
+
"title": "Chỉnh sửa",
|
24
|
+
"undo": "Hoàn tác"
|
25
|
+
},
|
26
|
+
"file": {
|
27
|
+
"preferences": "Tùy chọn",
|
28
|
+
"quit": "Thoát",
|
29
|
+
"title": "Tập tin"
|
30
|
+
},
|
31
|
+
"help": {
|
32
|
+
"about": "Về",
|
33
|
+
"githubRepo": "Kho lưu trữ GitHub",
|
34
|
+
"reportIssue": "Báo cáo sự cố",
|
35
|
+
"title": "Trợ giúp",
|
36
|
+
"visitWebsite": "Truy cập trang web"
|
37
|
+
},
|
38
|
+
"macOS": {
|
39
|
+
"about": "Về {{appName}}",
|
40
|
+
"devTools": "Công cụ phát triển LobeHub",
|
41
|
+
"hide": "Ẩn {{appName}}",
|
42
|
+
"hideOthers": "Ẩn khác",
|
43
|
+
"preferences": "Cài đặt ưu tiên...",
|
44
|
+
"services": "Dịch vụ",
|
45
|
+
"unhide": "Hiện tất cả"
|
46
|
+
},
|
47
|
+
"tray": {
|
48
|
+
"open": "Mở {{appName}}",
|
49
|
+
"quit": "Thoát",
|
50
|
+
"show": "Hiện {{appName}}"
|
51
|
+
},
|
52
|
+
"view": {
|
53
|
+
"forceReload": "Tải lại cưỡng bức",
|
54
|
+
"reload": "Tải lại",
|
55
|
+
"resetZoom": "Đặt lại thu phóng",
|
56
|
+
"title": "Xem",
|
57
|
+
"toggleFullscreen": "Chuyển đổi toàn màn hình",
|
58
|
+
"zoomIn": "Phóng to",
|
59
|
+
"zoomOut": "Thu nhỏ"
|
60
|
+
},
|
61
|
+
"window": {
|
62
|
+
"bringAllToFront": "Đưa tất cả cửa sổ lên trước",
|
63
|
+
"close": "Đóng",
|
64
|
+
"front": "Đưa tất cả cửa sổ lên trước",
|
65
|
+
"minimize": "Thu nhỏ",
|
66
|
+
"title": "Cửa sổ",
|
67
|
+
"toggleFullscreen": "Chuyển đổi toàn màn hình",
|
68
|
+
"zoom": "Thu phóng"
|
69
|
+
}
|
70
|
+
}
|