@lobehub/lobehub 2.0.0-next.47 → 2.0.0-next.48
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.example +11 -0
- package/CHANGELOG.md +17 -0
- package/apps/desktop/src/main/controllers/AuthCtr.ts +27 -2
- package/apps/desktop/src/main/core/infrastructure/ProtocolManager.ts +9 -4
- package/changelog/v1.json +5 -0
- package/docs/development/database-schema.dbml +2 -0
- package/docs/self-hosting/environment-variables/basic.mdx +49 -3
- package/docs/self-hosting/environment-variables/basic.zh-CN.mdx +49 -4
- package/locales/ar/discover.json +45 -0
- package/locales/ar/marketAuth.json +42 -0
- package/locales/ar/setting.json +94 -1
- package/locales/bg-BG/discover.json +45 -0
- package/locales/bg-BG/marketAuth.json +42 -0
- package/locales/bg-BG/setting.json +94 -1
- package/locales/de-DE/discover.json +45 -0
- package/locales/de-DE/marketAuth.json +42 -0
- package/locales/de-DE/setting.json +94 -1
- package/locales/en-US/discover.json +45 -0
- package/locales/en-US/marketAuth.json +42 -0
- package/locales/en-US/setting.json +94 -1
- package/locales/es-ES/discover.json +45 -0
- package/locales/es-ES/marketAuth.json +42 -0
- package/locales/es-ES/setting.json +94 -1
- package/locales/fa-IR/discover.json +45 -0
- package/locales/fa-IR/marketAuth.json +42 -0
- package/locales/fa-IR/setting.json +94 -1
- package/locales/fr-FR/discover.json +45 -0
- package/locales/fr-FR/marketAuth.json +42 -0
- package/locales/fr-FR/setting.json +94 -1
- package/locales/it-IT/discover.json +45 -0
- package/locales/it-IT/marketAuth.json +42 -0
- package/locales/it-IT/setting.json +94 -1
- package/locales/ja-JP/discover.json +45 -0
- package/locales/ja-JP/marketAuth.json +42 -0
- package/locales/ja-JP/setting.json +94 -1
- package/locales/ko-KR/discover.json +45 -0
- package/locales/ko-KR/marketAuth.json +42 -0
- package/locales/ko-KR/setting.json +94 -1
- package/locales/nl-NL/discover.json +45 -0
- package/locales/nl-NL/marketAuth.json +42 -0
- package/locales/nl-NL/setting.json +94 -1
- package/locales/pl-PL/discover.json +45 -0
- package/locales/pl-PL/marketAuth.json +42 -0
- package/locales/pl-PL/setting.json +94 -1
- package/locales/pt-BR/discover.json +45 -0
- package/locales/pt-BR/marketAuth.json +42 -0
- package/locales/pt-BR/setting.json +94 -1
- package/locales/ru-RU/discover.json +45 -0
- package/locales/ru-RU/marketAuth.json +42 -0
- package/locales/ru-RU/setting.json +94 -1
- package/locales/tr-TR/discover.json +45 -0
- package/locales/tr-TR/marketAuth.json +42 -0
- package/locales/tr-TR/setting.json +94 -1
- package/locales/vi-VN/discover.json +45 -0
- package/locales/vi-VN/marketAuth.json +42 -0
- package/locales/vi-VN/setting.json +94 -1
- package/locales/zh-CN/discover.json +45 -0
- package/locales/zh-CN/marketAuth.json +42 -0
- package/locales/zh-CN/setting.json +94 -1
- package/locales/zh-TW/discover.json +45 -0
- package/locales/zh-TW/marketAuth.json +42 -0
- package/locales/zh-TW/setting.json +94 -1
- package/package.json +27 -26
- package/packages/const/src/url.ts +1 -0
- package/packages/database/migrations/0044_add_tool_intervention.sql +1 -0
- package/packages/database/migrations/0044_high_toxin.sql +1 -0
- package/packages/database/migrations/0045_add_tool_intervention.sql +1 -0
- package/packages/database/migrations/meta/0039_snapshot.json +1 -1
- package/packages/database/migrations/meta/0044_snapshot.json +7813 -0
- package/packages/database/migrations/meta/0045_snapshot.json +8431 -0
- package/packages/database/migrations/meta/_journal.json +14 -0
- package/packages/database/src/core/migrations.json +36 -7
- package/packages/database/src/models/message.ts +1 -1
- package/packages/database/src/models/session.ts +42 -1
- package/packages/database/src/schemas/agent.ts +1 -0
- package/packages/database/src/schemas/message.ts +5 -8
- package/packages/electron-client-ipc/src/events/index.ts +6 -1
- package/packages/electron-client-ipc/src/events/remoteServer.ts +8 -0
- package/packages/fetch-sse/package.json +29 -0
- package/packages/{utils/src/fetch → fetch-sse/src}/__tests__/fetchSSE.test.ts +4 -4
- package/packages/{utils/src/fetch → fetch-sse/src}/__tests__/parseError.test.ts +7 -4
- package/packages/{utils/src/fetch → fetch-sse/src}/fetchSSE.ts +2 -2
- package/packages/{utils/src/fetch → fetch-sse/src}/parseError.ts +3 -3
- package/packages/model-bank/src/aiModels/mistral.ts +2 -1
- package/packages/model-runtime/src/core/contextBuilders/anthropic.test.ts +17 -11
- package/packages/model-runtime/src/core/contextBuilders/anthropic.ts +1 -1
- package/packages/model-runtime/src/core/contextBuilders/google.test.ts +1 -1
- package/packages/model-runtime/src/core/contextBuilders/google.ts +3 -6
- package/packages/model-runtime/src/core/contextBuilders/openai.test.ts +4 -2
- package/packages/model-runtime/src/core/contextBuilders/openai.ts +1 -1
- package/packages/model-runtime/src/core/openaiCompatibleFactory/createImage.test.ts +1 -1
- package/packages/model-runtime/src/core/openaiCompatibleFactory/createImage.ts +1 -1
- package/packages/model-runtime/src/core/openaiCompatibleFactory/index.test.ts +3 -6
- package/packages/model-runtime/src/core/streams/openai/responsesStream.test.ts +1 -1
- package/packages/model-runtime/src/helpers/mergeChatMethodOptions.ts +2 -1
- package/packages/model-runtime/src/providers/aihubmix/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/anthropic/generateObject.test.ts +1 -1
- package/packages/model-runtime/src/providers/anthropic/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/baichuan/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/bedrock/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/bfl/createImage.test.ts +4 -4
- package/packages/model-runtime/src/providers/bfl/createImage.ts +1 -1
- package/packages/model-runtime/src/providers/cloudflare/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/cohere/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/google/createImage.test.ts +2 -2
- package/packages/model-runtime/src/providers/google/createImage.ts +1 -1
- package/packages/model-runtime/src/providers/google/generateObject.test.ts +1 -1
- package/packages/model-runtime/src/providers/google/index.test.ts +1 -4
- package/packages/model-runtime/src/providers/groq/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/hunyuan/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/minimax/createImage.test.ts +1 -1
- package/packages/model-runtime/src/providers/mistral/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/moonshot/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/novita/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/ollama/index.test.ts +43 -32
- package/packages/model-runtime/src/providers/ollama/index.ts +31 -7
- package/packages/model-runtime/src/providers/openrouter/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/perplexity/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/ppio/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/qwen/createImage.test.ts +1 -1
- package/packages/model-runtime/src/providers/search1api/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/siliconcloud/createImage.ts +1 -1
- package/packages/model-runtime/src/providers/taichu/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/wenxin/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/zhipu/index.test.ts +1 -1
- package/packages/model-runtime/src/utils/errorResponse.test.ts +1 -1
- package/packages/ssrf-safe-fetch/index.browser.ts +14 -0
- package/packages/ssrf-safe-fetch/package.json +8 -1
- package/packages/types/src/discover/assistants.ts +16 -0
- package/packages/types/src/index.ts +1 -0
- package/packages/types/src/message/common/tools.ts +10 -0
- package/packages/types/src/message/db/item.ts +15 -1
- package/packages/types/src/message/ui/params.ts +15 -1
- package/packages/types/src/meta.ts +4 -0
- package/packages/types/src/session/agentSession.ts +2 -0
- package/packages/utils/src/imageToBase64.ts +17 -10
- package/packages/utils/src/index.ts +1 -1
- package/src/app/(backend)/market/agent/[[...segments]]/route.ts +153 -0
- package/src/app/(backend)/market/oidc/[[...segments]]/route.ts +207 -0
- package/src/app/[variants]/(main)/(mobile)/me/settings/features/useCategory.tsx +1 -0
- package/src/app/[variants]/(main)/_layout/Desktop/SideBar/PinList/index.tsx +4 -2
- package/src/app/[variants]/(main)/chat/settings/features/AgentInfoDescription/index.tsx +349 -0
- package/src/app/[variants]/(main)/chat/settings/features/HeaderContent.tsx +2 -2
- package/src/app/[variants]/(main)/chat/settings/features/PublishResultModal/index.tsx +64 -0
- package/src/app/[variants]/(main)/chat/settings/features/SmartAgentActionButton/MarketPublishButton.tsx +196 -0
- package/src/app/[variants]/(main)/chat/settings/features/SmartAgentActionButton/MarketPublishModal.tsx +358 -0
- package/src/app/[variants]/(main)/chat/settings/features/SmartAgentActionButton/index.tsx +75 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/AssistantDetailPage.tsx +11 -2
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/Client.tsx +12 -1
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Nav.tsx +19 -12
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Overview/TagList.tsx +14 -5
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Overview/index.tsx +2 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Related/index.tsx +14 -5
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/SystemRole/TagList.tsx +14 -5
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/SystemRole/index.tsx +43 -29
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Versions/index.tsx +137 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/index.tsx +2 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Header.tsx +9 -10
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/ActionButton/AddAgent.tsx +105 -14
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/Related/index.tsx +20 -6
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/StatusPage/index.tsx +113 -0
- package/src/app/[variants]/(main)/discover/(detail)/features/Breadcrumb.tsx +4 -3
- package/src/app/[variants]/(main)/discover/(list)/_layout/Desktop/Nav.tsx +3 -1
- package/src/app/[variants]/(main)/discover/(list)/assistant/AssistantPage.tsx +4 -1
- package/src/app/[variants]/(main)/discover/(list)/assistant/Client.tsx +6 -2
- package/src/app/[variants]/(main)/discover/(list)/assistant/features/Category/index.tsx +7 -3
- package/src/app/[variants]/(main)/discover/(list)/assistant/features/List/Item.tsx +13 -2
- package/src/app/[variants]/(main)/discover/(list)/assistant/features/MarketSourceSwitch.tsx +64 -0
- package/src/app/[variants]/(main)/discover/(list)/features/SortButton/index.tsx +26 -7
- package/src/app/[variants]/(main)/profile/_layout/Desktop/index.tsx +10 -10
- package/src/app/[variants]/(main)/settings/_layout/type.ts +1 -1
- package/src/app/[variants]/(main)/settings/agent/index.tsx +11 -10
- package/src/app/[variants]/(main)/settings/common/index.tsx +1 -1
- package/src/app/[variants]/(main)/settings/page.tsx +13 -10
- package/src/app/[variants]/(main)/settings/provider/ProviderMenu/Item.tsx +35 -36
- package/src/app/[variants]/(main)/settings/provider/ProviderMenu/SearchResult.tsx +5 -5
- package/src/app/[variants]/(main)/settings/provider/_layout/Desktop/Container.tsx +10 -4
- package/src/app/market-auth-callback/layout.tsx +15 -0
- package/src/app/market-auth-callback/page.tsx +196 -0
- package/src/features/AgentSetting/AgentPrompt/TokenTag.tsx +3 -2
- package/src/features/AgentSetting/AgentTTS/SelectWithTTSPreview.tsx +1 -1
- package/src/features/AgentSetting/store/action.ts +1 -1
- package/src/features/ChatInput/ActionBar/STT/browser.tsx +1 -1
- package/src/features/ChatInput/ActionBar/STT/openai.tsx +1 -1
- package/src/features/Conversation/components/Extras/TTS/InitPlayer.tsx +1 -1
- package/src/features/PluginTag/PluginStatus.tsx +1 -1
- package/src/hooks/useAgentOwnershipCheck.ts +143 -0
- package/src/instrumentation.node.ts +3 -2
- package/src/layout/AuthProvider/MarketAuth/MarketAuthProvider.tsx +364 -0
- package/src/layout/AuthProvider/MarketAuth/errors.ts +75 -0
- package/src/layout/AuthProvider/MarketAuth/index.ts +2 -0
- package/src/layout/AuthProvider/MarketAuth/oidc.ts +382 -0
- package/src/layout/AuthProvider/MarketAuth/types.ts +64 -0
- package/src/layout/AuthProvider/index.tsx +17 -4
- package/src/locales/default/discover.ts +46 -0
- package/src/locales/default/index.ts +2 -0
- package/src/locales/default/marketAuth.ts +42 -0
- package/src/locales/default/setting.ts +94 -1
- package/src/server/globalConfig/genServerAiProviderConfig.test.ts +5 -5
- package/src/server/globalConfig/genServerAiProviderConfig.ts +1 -1
- package/src/server/routers/lambda/market/index.ts +36 -14
- package/src/server/routers/lambda/message.ts +2 -2
- package/src/server/services/discover/index.test.ts +153 -11
- package/src/server/services/discover/index.ts +339 -40
- package/src/server/sitemap.ts +49 -35
- package/src/services/_url.ts +15 -1
- package/src/services/chat/chat.test.ts +5 -5
- package/src/services/chat/clientModelRuntime.test.ts +1 -1
- package/src/services/chat/index.ts +6 -6
- package/src/services/chat/types.ts +1 -2
- package/src/services/discover.ts +16 -5
- package/src/services/electron/remoteServer.ts +8 -1
- package/src/services/marketApi.ts +124 -0
- package/src/services/models.ts +2 -1
- package/src/store/discover/slices/assistant/action.ts +20 -7
- package/{packages/utils/src → src/utils}/electron/desktopRemoteRPCFetch.ts +1 -1
- package/{packages/utils/src → src/utils/server}/parseModels.ts +1 -2
- package/vitest.config.mts +2 -0
- package/packages/model-runtime/src/utils/imageToBase64.test.ts +0 -91
- package/packages/model-runtime/src/utils/imageToBase64.ts +0 -62
- package/src/app/[variants]/(main)/chat/settings/features/SubmitAgentButton/SubmitAgentModal.tsx +0 -98
- package/src/app/[variants]/(main)/chat/settings/features/SubmitAgentButton/index.tsx +0 -35
- package/src/app/[variants]/(main)/chat/settings/features/SubmitAgentButton/style.ts +0 -47
- /package/packages/{utils/src/fetch → fetch-sse/src}/headers.ts +0 -0
- /package/packages/{utils/src/fetch → fetch-sse/src}/index.ts +0 -0
- /package/packages/{utils/src/fetch → fetch-sse/src}/request.ts +0 -0
- /package/{packages/utils/src → src/utils/server}/__snapshots__/parseModels.test.ts.snap +0 -0
- /package/{packages/utils/src → src/utils/server}/parseModels.test.ts +0 -0
|
@@ -2,6 +2,45 @@
|
|
|
2
2
|
"about": {
|
|
3
3
|
"title": "정보"
|
|
4
4
|
},
|
|
5
|
+
"agentInfoDescription": {
|
|
6
|
+
"basic": {
|
|
7
|
+
"avatar": "아바타",
|
|
8
|
+
"description": "설명",
|
|
9
|
+
"name": "이름",
|
|
10
|
+
"tags": "태그",
|
|
11
|
+
"title": "도우미 정보"
|
|
12
|
+
},
|
|
13
|
+
"chat": {
|
|
14
|
+
"displayMode": "표시 모드",
|
|
15
|
+
"enableHistoryCount": "이전 메시지 수 카운트 활성화",
|
|
16
|
+
"historyCount": "이전 메시지 수",
|
|
17
|
+
"no": "아니오",
|
|
18
|
+
"searchMode": "검색 모드",
|
|
19
|
+
"title": "채팅 환경설정",
|
|
20
|
+
"yes": "예"
|
|
21
|
+
},
|
|
22
|
+
"model": {
|
|
23
|
+
"maxTokens": "최대 토큰 수",
|
|
24
|
+
"model": "모델",
|
|
25
|
+
"provider": "서비스 제공자",
|
|
26
|
+
"temperature": "온도",
|
|
27
|
+
"title": "모델 설정",
|
|
28
|
+
"topP": "Top P 값"
|
|
29
|
+
},
|
|
30
|
+
"plugins": {
|
|
31
|
+
"count": "플러그인 설정 ({{count}})",
|
|
32
|
+
"empty": "아직 설치된 플러그인이 없습니다",
|
|
33
|
+
"title": "설치된 플러그인"
|
|
34
|
+
},
|
|
35
|
+
"role": {
|
|
36
|
+
"systemRole": "시스템 프롬프트",
|
|
37
|
+
"title": "역할 설정"
|
|
38
|
+
},
|
|
39
|
+
"value": {
|
|
40
|
+
"unset": "설정되지 않음",
|
|
41
|
+
"untitled": "제목 없는 도우미"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
5
44
|
"agentTab": {
|
|
6
45
|
"chat": "채팅 환경설정",
|
|
7
46
|
"meta": "도우미 정보",
|
|
@@ -18,6 +57,8 @@
|
|
|
18
57
|
},
|
|
19
58
|
"title": "데이터 통계"
|
|
20
59
|
},
|
|
60
|
+
"checking": "확인 중...",
|
|
61
|
+
"checkingPermissions": "권한 확인 중...",
|
|
21
62
|
"danger": {
|
|
22
63
|
"clear": {
|
|
23
64
|
"action": "즉시 삭제",
|
|
@@ -146,6 +187,58 @@
|
|
|
146
187
|
},
|
|
147
188
|
"waitingForMore": "더 많은 모델이 <1>도입 예정</1>입니다. 기대해 주세요."
|
|
148
189
|
},
|
|
190
|
+
"marketPublish": {
|
|
191
|
+
"modal": {
|
|
192
|
+
"changelog": {
|
|
193
|
+
"extra": "이 버전의 주요 변경 사항과 개선 사항을 설명하세요",
|
|
194
|
+
"label": "변경 로그",
|
|
195
|
+
"maxLengthError": "변경 로그는 500자 이내여야 합니다",
|
|
196
|
+
"placeholder": "변경 로그를 입력하세요",
|
|
197
|
+
"required": "변경 로그를 입력해 주세요"
|
|
198
|
+
},
|
|
199
|
+
"comparison": {
|
|
200
|
+
"local": "현재 로컬 버전",
|
|
201
|
+
"remote": "현재 게시된 버전"
|
|
202
|
+
},
|
|
203
|
+
"identifier": {
|
|
204
|
+
"extra": "식별자는 도우미의 고유 식별자로 사용되며, 소문자, 숫자, 하이픈을 사용하는 것이 좋습니다",
|
|
205
|
+
"label": "도우미 식별자",
|
|
206
|
+
"lengthError": "식별자는 3자에서 50자 사이여야 합니다",
|
|
207
|
+
"patternError": "식별자는 소문자, 숫자, 하이픈만 포함할 수 있습니다",
|
|
208
|
+
"placeholder": "예: web-development 와 같은 고유 식별자를 입력하세요",
|
|
209
|
+
"required": "도우미 식별자를 입력해 주세요"
|
|
210
|
+
},
|
|
211
|
+
"loading": {
|
|
212
|
+
"fetchingRemote": "원격 데이터를 불러오는 중...",
|
|
213
|
+
"submit": "도우미 게시 중...",
|
|
214
|
+
"upload": "새 버전 게시 중..."
|
|
215
|
+
},
|
|
216
|
+
"messages": {
|
|
217
|
+
"createVersionFailed": "버전 생성 실패: {{message}}",
|
|
218
|
+
"fetchRemoteFailed": "원격 도우미 데이터를 가져오는 데 실패했습니다",
|
|
219
|
+
"missingIdentifier": "현재 도우미에 마켓 식별자가 없습니다",
|
|
220
|
+
"notAuthenticated": "먼저 마켓 계정에 로그인해 주세요",
|
|
221
|
+
"publishFailed": "게시 실패: {{message}}"
|
|
222
|
+
},
|
|
223
|
+
"submitButton": "게시",
|
|
224
|
+
"title": {
|
|
225
|
+
"submit": "도우미 마켓에 공유",
|
|
226
|
+
"upload": "새 버전 게시"
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"resultModal": {
|
|
230
|
+
"message": "도우미가 심사 대기 중입니다. 심사 통과 후 자동으로 게시됩니다. '마켓에서 보기'를 클릭하여 게시된 도우미를 확인하세요.",
|
|
231
|
+
"view": "마켓에서 보기"
|
|
232
|
+
},
|
|
233
|
+
"submit": {
|
|
234
|
+
"button": "마켓에 공유",
|
|
235
|
+
"tooltip": "도우미를 마켓에 공유합니다"
|
|
236
|
+
},
|
|
237
|
+
"upload": {
|
|
238
|
+
"button": "새 버전 게시",
|
|
239
|
+
"tooltip": "도우미 마켓에 새 버전을 게시합니다"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
149
242
|
"message": {
|
|
150
243
|
"success": "업데이트 성공"
|
|
151
244
|
},
|
|
@@ -561,7 +654,7 @@
|
|
|
561
654
|
},
|
|
562
655
|
"submitAgentModal": {
|
|
563
656
|
"button": "에이전트 제출",
|
|
564
|
-
"identifier": "
|
|
657
|
+
"identifier": "도우미 식별자(identifier)",
|
|
565
658
|
"metaMiss": "에이전트 정보를 입력한 후 제출하십시오. 이름, 설명 및 태그를 포함해야 합니다.",
|
|
566
659
|
"placeholder": "에이전트 식별자를 입력하세요. 고유해야 하며, 예: 웹 개발",
|
|
567
660
|
"tooltips": "에이전트 마켓에 공유"
|
|
@@ -41,9 +41,29 @@
|
|
|
41
41
|
"openingMessage": "Openingsbericht",
|
|
42
42
|
"openingQuestions": "Openingsvragen",
|
|
43
43
|
"title": "Assistent instellingen"
|
|
44
|
+
},
|
|
45
|
+
"version": {
|
|
46
|
+
"empty": "Geen eerdere versies beschikbaar",
|
|
47
|
+
"status": {
|
|
48
|
+
"archived": "Gearchiveerd",
|
|
49
|
+
"deprecated": "Afgewezen",
|
|
50
|
+
"unpublished": "In beoordeling"
|
|
51
|
+
},
|
|
52
|
+
"table": {
|
|
53
|
+
"isLatest": "Laatste versie",
|
|
54
|
+
"isValidated": "Geverifieerd",
|
|
55
|
+
"publishAt": "Publicatiedatum",
|
|
56
|
+
"version": "Versienummer"
|
|
57
|
+
},
|
|
58
|
+
"title": "Versiegeschiedenis"
|
|
44
59
|
}
|
|
45
60
|
},
|
|
46
61
|
"list": "Assistentenlijst",
|
|
62
|
+
"marketSource": {
|
|
63
|
+
"label": "Wissel van marktplaats",
|
|
64
|
+
"legacy": "Oude marktplaats",
|
|
65
|
+
"new": "Nieuwe marktplaats"
|
|
66
|
+
},
|
|
47
67
|
"more": "Meer",
|
|
48
68
|
"plugins": "Geïntegreerde plugins",
|
|
49
69
|
"recentSubmits": "Recent bijgewerkt",
|
|
@@ -51,10 +71,35 @@
|
|
|
51
71
|
"createdAt": "Recent gepubliceerd",
|
|
52
72
|
"identifier": "Assistent ID",
|
|
53
73
|
"knowledgeCount": "Aantal kennisbanken",
|
|
74
|
+
"myown": "Bekijk mijn assistenten",
|
|
54
75
|
"pluginCount": "Aantal plugins",
|
|
55
76
|
"title": "Assistent naam",
|
|
56
77
|
"tokenUsage": "Token gebruik"
|
|
57
78
|
},
|
|
79
|
+
"status": {
|
|
80
|
+
"archived": {
|
|
81
|
+
"reasons": {
|
|
82
|
+
"official": "De assistent is verwijderd door officiële instanties vanwege veiligheids- of politieke redenen",
|
|
83
|
+
"owner": "De eigenaar van de assistent heeft deze vrijwillig verwijderd of gearchiveerd"
|
|
84
|
+
},
|
|
85
|
+
"subtitle": "De assistent die je probeert te openen is gearchiveerd om een van de volgende redenen:",
|
|
86
|
+
"title": "Assistent is gearchiveerd"
|
|
87
|
+
},
|
|
88
|
+
"backToMarket": "Terug naar de assistentenmarktplaats",
|
|
89
|
+
"deprecated": {
|
|
90
|
+
"reasons": {
|
|
91
|
+
"official": "De assistent is verwijderd door officiële instanties vanwege veiligheids- of politieke redenen",
|
|
92
|
+
"owner": "De eigenaar van de assistent heeft deze vrijwillig verwijderd of afgewezen"
|
|
93
|
+
},
|
|
94
|
+
"subtitle": "De assistent die je probeert te openen is afgewezen om een van de volgende redenen:",
|
|
95
|
+
"title": "Assistent is afgewezen"
|
|
96
|
+
},
|
|
97
|
+
"support": "Bij vragen of problemen, kopieer de link en stuur deze naar <1>support@lobehub.com</1> voor ondersteuning.",
|
|
98
|
+
"unpublished": {
|
|
99
|
+
"subtitle": "De assistent die je probeert te openen wordt momenteel beoordeeld. Bij vragen, kopieer de link en stuur deze naar <1>support@lobehub.com</1> voor ondersteuning.",
|
|
100
|
+
"title": "Assistent in beoordeling"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
58
103
|
"suggestions": "Gerelateerde aanbevelingen",
|
|
59
104
|
"systemRole": "Assistent instellingen",
|
|
60
105
|
"tokenUsage": "Token gebruik van assistent prompt",
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"callback": {
|
|
3
|
+
"buttons": {
|
|
4
|
+
"close": "Venster sluiten"
|
|
5
|
+
},
|
|
6
|
+
"messages": {
|
|
7
|
+
"authFailed": "Autorisatie mislukt: {{error}}",
|
|
8
|
+
"missingParams": "Autorisatieparameters ontbreken",
|
|
9
|
+
"processing": "Bezig met autoriseren...",
|
|
10
|
+
"successWithCountdown": "{{message}} Het venster wordt automatisch gesloten over {{countdown}} seconden",
|
|
11
|
+
"successWithRedirect": "Autorisatie geslaagd! Bezig met doorverwijzen..."
|
|
12
|
+
},
|
|
13
|
+
"titles": {
|
|
14
|
+
"error": "Autorisatie mislukt",
|
|
15
|
+
"loading": "LobeHub Market Autorisatie",
|
|
16
|
+
"success": "Autorisatie geslaagd"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"errors": {
|
|
20
|
+
"authorizationFailed": "Autorisatie mislukt, probeer het opnieuw.",
|
|
21
|
+
"browserOnly": "Het autorisatieproces kan alleen in een browser worden gestart.",
|
|
22
|
+
"codeConsumed": "De autorisatiecode is al gebruikt, probeer het opnieuw.",
|
|
23
|
+
"codeVerifierMissing": "Ongeldige autorisatiesessie, start het inlogproces opnieuw.",
|
|
24
|
+
"general": "Er is een fout opgetreden bij de autorisatie, probeer het opnieuw.",
|
|
25
|
+
"handoffFailed": "Kan het autorisatieresultaat niet ophalen, probeer het opnieuw.",
|
|
26
|
+
"handoffTimeout": "Autorisatie verlopen, voltooi de actie in de browser en probeer het opnieuw.",
|
|
27
|
+
"oidcNotReady": "De autorisatiedienst is nog niet klaar, probeer het later opnieuw.",
|
|
28
|
+
"openBrowserFailed": "Kan de systeembrowser niet openen, probeer het opnieuw.",
|
|
29
|
+
"openPopupFailed": "Kan het autorisatievenster niet openen, controleer de pop-upblokkering van je browser.",
|
|
30
|
+
"popupClosed": "Het autorisatievenster is gesloten voordat het proces was voltooid.",
|
|
31
|
+
"sessionExpired": "De autorisatiesessie is verlopen, log opnieuw in.",
|
|
32
|
+
"stateMismatch": "Autorisatiestatus komt niet overeen, probeer het opnieuw.",
|
|
33
|
+
"stateMissing": "Autorisatiestatus niet gevonden, probeer het opnieuw."
|
|
34
|
+
},
|
|
35
|
+
"messages": {
|
|
36
|
+
"loading": "Autorisatieproces wordt gestart...",
|
|
37
|
+
"success": {
|
|
38
|
+
"submit": "Autorisatie geslaagd! Je kunt nu een assistent publiceren.",
|
|
39
|
+
"upload": "Autorisatie geslaagd! Je kunt nu een nieuwe versie publiceren."
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -2,6 +2,45 @@
|
|
|
2
2
|
"about": {
|
|
3
3
|
"title": "Over"
|
|
4
4
|
},
|
|
5
|
+
"agentInfoDescription": {
|
|
6
|
+
"basic": {
|
|
7
|
+
"avatar": "Profielfoto",
|
|
8
|
+
"description": "Beschrijving",
|
|
9
|
+
"name": "Naam",
|
|
10
|
+
"tags": "Tags",
|
|
11
|
+
"title": "Assistentinformatie"
|
|
12
|
+
},
|
|
13
|
+
"chat": {
|
|
14
|
+
"displayMode": "Weergavemodus",
|
|
15
|
+
"enableHistoryCount": "Aantal berichten in geschiedenis inschakelen",
|
|
16
|
+
"historyCount": "Aantal berichten in geschiedenis",
|
|
17
|
+
"no": "Nee",
|
|
18
|
+
"searchMode": "Zoekmodus",
|
|
19
|
+
"title": "Chatvoorkeuren",
|
|
20
|
+
"yes": "Ja"
|
|
21
|
+
},
|
|
22
|
+
"model": {
|
|
23
|
+
"maxTokens": "Maximaal aantal tokens",
|
|
24
|
+
"model": "Model",
|
|
25
|
+
"provider": "Aanbieder",
|
|
26
|
+
"temperature": "Temperatuur",
|
|
27
|
+
"title": "Modelinstellingen",
|
|
28
|
+
"topP": "Top P-waarde"
|
|
29
|
+
},
|
|
30
|
+
"plugins": {
|
|
31
|
+
"count": "Plugin-instellingen ({{count}})",
|
|
32
|
+
"empty": "Nog geen plugins geïnstalleerd",
|
|
33
|
+
"title": "Geïnstalleerde plugins"
|
|
34
|
+
},
|
|
35
|
+
"role": {
|
|
36
|
+
"systemRole": "Systeemprompt",
|
|
37
|
+
"title": "Rolinstellingen"
|
|
38
|
+
},
|
|
39
|
+
"value": {
|
|
40
|
+
"unset": "Niet ingesteld",
|
|
41
|
+
"untitled": "Naamloze assistent"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
5
44
|
"agentTab": {
|
|
6
45
|
"chat": "Chatvoorkeur",
|
|
7
46
|
"meta": "Assistentinformatie",
|
|
@@ -18,6 +57,8 @@
|
|
|
18
57
|
},
|
|
19
58
|
"title": "Analytics"
|
|
20
59
|
},
|
|
60
|
+
"checking": "Bezig met controleren...",
|
|
61
|
+
"checkingPermissions": "Bezig met controleren van rechten...",
|
|
21
62
|
"danger": {
|
|
22
63
|
"clear": {
|
|
23
64
|
"action": "Direct verwijderen",
|
|
@@ -146,6 +187,58 @@
|
|
|
146
187
|
},
|
|
147
188
|
"waitingForMore": "Meer modellen worden <1>gepland om te worden toegevoegd</1>, dus blijf op de hoogte"
|
|
148
189
|
},
|
|
190
|
+
"marketPublish": {
|
|
191
|
+
"modal": {
|
|
192
|
+
"changelog": {
|
|
193
|
+
"extra": "Beschrijf de belangrijkste wijzigingen en verbeteringen in deze versie",
|
|
194
|
+
"label": "Wijzigingslogboek",
|
|
195
|
+
"maxLengthError": "Het wijzigingslogboek mag niet meer dan 500 tekens bevatten",
|
|
196
|
+
"placeholder": "Voer het wijzigingslogboek in",
|
|
197
|
+
"required": "Voer het wijzigingslogboek in"
|
|
198
|
+
},
|
|
199
|
+
"comparison": {
|
|
200
|
+
"local": "Huidige lokale versie",
|
|
201
|
+
"remote": "Huidige gepubliceerde versie"
|
|
202
|
+
},
|
|
203
|
+
"identifier": {
|
|
204
|
+
"extra": "De identifier dient als unieke identificatie van de assistent. Gebruik bij voorkeur kleine letters, cijfers en koppeltekens",
|
|
205
|
+
"label": "Assistentidentifier",
|
|
206
|
+
"lengthError": "De identifier moet tussen 3 en 50 tekens lang zijn",
|
|
207
|
+
"patternError": "De identifier mag alleen kleine letters, cijfers en koppeltekens bevatten",
|
|
208
|
+
"placeholder": "Voer een unieke identifier in, bijv.: web-development",
|
|
209
|
+
"required": "Voer een assistentidentifier in"
|
|
210
|
+
},
|
|
211
|
+
"loading": {
|
|
212
|
+
"fetchingRemote": "Bezig met laden van externe gegevens...",
|
|
213
|
+
"submit": "Bezig met publiceren van assistent...",
|
|
214
|
+
"upload": "Bezig met publiceren van nieuwe versie..."
|
|
215
|
+
},
|
|
216
|
+
"messages": {
|
|
217
|
+
"createVersionFailed": "Versie aanmaken mislukt: {{message}}",
|
|
218
|
+
"fetchRemoteFailed": "Ophalen van externe assistentgegevens mislukt",
|
|
219
|
+
"missingIdentifier": "Deze assistent heeft nog geen marktplaatsidentifier",
|
|
220
|
+
"notAuthenticated": "Log eerst in op je marktplaatsaccount",
|
|
221
|
+
"publishFailed": "Publicatie mislukt: {{message}}"
|
|
222
|
+
},
|
|
223
|
+
"submitButton": "Publiceren",
|
|
224
|
+
"title": {
|
|
225
|
+
"submit": "Delen op de assistentenmarktplaats",
|
|
226
|
+
"upload": "Nieuwe versie publiceren"
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"resultModal": {
|
|
230
|
+
"message": "De assistent is ter beoordeling ingediend. Na goedkeuring wordt deze automatisch gepubliceerd. Klik op 'Bekijk in marktplaats' om de gepubliceerde assistent te bekijken.",
|
|
231
|
+
"view": "Bekijk in marktplaats"
|
|
232
|
+
},
|
|
233
|
+
"submit": {
|
|
234
|
+
"button": "Delen op marktplaats",
|
|
235
|
+
"tooltip": "Deel de assistent op de marktplaats"
|
|
236
|
+
},
|
|
237
|
+
"upload": {
|
|
238
|
+
"button": "Nieuwe versie publiceren",
|
|
239
|
+
"tooltip": "Publiceer een nieuwe versie op de assistentenmarktplaats"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
149
242
|
"message": {
|
|
150
243
|
"success": "Succesvol bijgewerkt"
|
|
151
244
|
},
|
|
@@ -561,7 +654,7 @@
|
|
|
561
654
|
},
|
|
562
655
|
"submitAgentModal": {
|
|
563
656
|
"button": "Assistent indienen",
|
|
564
|
-
"identifier": "
|
|
657
|
+
"identifier": "Assistentidentifier (identifier)",
|
|
565
658
|
"metaMiss": "Vul alstublieft de assistentinformatie in voordat u deze indient. Dit moet de naam, beschrijving en labels bevatten",
|
|
566
659
|
"placeholder": "Voer de identificatie van de assistent in, deze moet uniek zijn, bijvoorbeeld web-ontwikkeling",
|
|
567
660
|
"tooltips": "Delen op de assistentenmarkt"
|
|
@@ -41,9 +41,29 @@
|
|
|
41
41
|
"openingMessage": "Wiadomość powitalna",
|
|
42
42
|
"openingQuestions": "Pytania wstępne",
|
|
43
43
|
"title": "Ustawienia asystenta"
|
|
44
|
+
},
|
|
45
|
+
"version": {
|
|
46
|
+
"empty": "Brak dostępnych wersji historycznych",
|
|
47
|
+
"status": {
|
|
48
|
+
"archived": "Zarchiwizowano",
|
|
49
|
+
"deprecated": "Odrzucono",
|
|
50
|
+
"unpublished": "W trakcie przeglądu"
|
|
51
|
+
},
|
|
52
|
+
"table": {
|
|
53
|
+
"isLatest": "Najnowsza wersja",
|
|
54
|
+
"isValidated": "Zweryfikowano",
|
|
55
|
+
"publishAt": "Data publikacji",
|
|
56
|
+
"version": "Wersja"
|
|
57
|
+
},
|
|
58
|
+
"title": "Historia wersji"
|
|
44
59
|
}
|
|
45
60
|
},
|
|
46
61
|
"list": "Lista asystentów",
|
|
62
|
+
"marketSource": {
|
|
63
|
+
"label": "Przełącz źródło rynku",
|
|
64
|
+
"legacy": "Stary rynek",
|
|
65
|
+
"new": "Nowy rynek"
|
|
66
|
+
},
|
|
47
67
|
"more": "Więcej",
|
|
48
68
|
"plugins": "Zintegrowane wtyczki",
|
|
49
69
|
"recentSubmits": "Ostatnie aktualizacje",
|
|
@@ -51,10 +71,35 @@
|
|
|
51
71
|
"createdAt": "Najnowsze publikacje",
|
|
52
72
|
"identifier": "ID asystenta",
|
|
53
73
|
"knowledgeCount": "Liczba baz wiedzy",
|
|
74
|
+
"myown": "Zobacz moje",
|
|
54
75
|
"pluginCount": "Liczba wtyczek",
|
|
55
76
|
"title": "Nazwa asystenta",
|
|
56
77
|
"tokenUsage": "Zużycie tokenów"
|
|
57
78
|
},
|
|
79
|
+
"status": {
|
|
80
|
+
"archived": {
|
|
81
|
+
"reasons": {
|
|
82
|
+
"official": "Asystent został usunięty przez administratorów z powodu problemów z bezpieczeństwem lub polityką",
|
|
83
|
+
"owner": "Właściciel asystenta samodzielnie go usunął lub zarchiwizował"
|
|
84
|
+
},
|
|
85
|
+
"subtitle": "Asystent, którego próbujesz odwiedzić, został zarchiwizowany z jednego z poniższych powodów:",
|
|
86
|
+
"title": "Asystent został zarchiwizowany"
|
|
87
|
+
},
|
|
88
|
+
"backToMarket": "Powrót do rynku asystentów",
|
|
89
|
+
"deprecated": {
|
|
90
|
+
"reasons": {
|
|
91
|
+
"official": "Asystent został usunięty przez administratorów z powodu problemów z bezpieczeństwem lub polityką",
|
|
92
|
+
"owner": "Właściciel asystenta samodzielnie go usunął lub odrzucił"
|
|
93
|
+
},
|
|
94
|
+
"subtitle": "Asystent, którego próbujesz odwiedzić, został odrzucony z jednego z poniższych powodów:",
|
|
95
|
+
"title": "Asystent został odrzucony"
|
|
96
|
+
},
|
|
97
|
+
"support": "W przypadku jakichkolwiek problemów skopiuj link i wyślij zapytanie na adres <1>support@lobehub.com</1>.",
|
|
98
|
+
"unpublished": {
|
|
99
|
+
"subtitle": "Asystent, którego próbujesz odwiedzić, jest obecnie w trakcie przeglądu wersji. W razie pytań skopiuj link i wyślij zapytanie na adres <1>support@lobehub.com</1>.",
|
|
100
|
+
"title": "Asystent w trakcie przeglądu"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
58
103
|
"suggestions": "Podobne rekomendacje",
|
|
59
104
|
"systemRole": "Ustawienia asystenta",
|
|
60
105
|
"tokenUsage": "Zużycie tokenów w promptach asystenta",
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"callback": {
|
|
3
|
+
"buttons": {
|
|
4
|
+
"close": "Zamknij okno"
|
|
5
|
+
},
|
|
6
|
+
"messages": {
|
|
7
|
+
"authFailed": "Autoryzacja nie powiodła się: {{error}}",
|
|
8
|
+
"missingParams": "Brakujące parametry autoryzacji",
|
|
9
|
+
"processing": "Trwa przetwarzanie autoryzacji...",
|
|
10
|
+
"successWithCountdown": "{{message}} Okno zostanie automatycznie zamknięte za {{countdown}} sekund",
|
|
11
|
+
"successWithRedirect": "Autoryzacja zakończona sukcesem! Przekierowywanie..."
|
|
12
|
+
},
|
|
13
|
+
"titles": {
|
|
14
|
+
"error": "Autoryzacja nie powiodła się",
|
|
15
|
+
"loading": "Autoryzacja LobeHub Market",
|
|
16
|
+
"success": "Autoryzacja zakończona sukcesem"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"errors": {
|
|
20
|
+
"authorizationFailed": "Autoryzacja nie powiodła się, spróbuj ponownie.",
|
|
21
|
+
"browserOnly": "Proces autoryzacji może być uruchomiony tylko w przeglądarce.",
|
|
22
|
+
"codeConsumed": "Kod autoryzacyjny został już użyty, spróbuj ponownie.",
|
|
23
|
+
"codeVerifierMissing": "Sesja autoryzacyjna jest nieważna, rozpocznij proces logowania od nowa.",
|
|
24
|
+
"general": "Wystąpił błąd podczas autoryzacji, spróbuj ponownie.",
|
|
25
|
+
"handoffFailed": "Nie udało się uzyskać wyniku autoryzacji, spróbuj ponownie.",
|
|
26
|
+
"handoffTimeout": "Przekroczono czas autoryzacji, spróbuj ponownie po zakończeniu operacji w przeglądarce.",
|
|
27
|
+
"oidcNotReady": "Usługa autoryzacji nie jest jeszcze gotowa, spróbuj ponownie później.",
|
|
28
|
+
"openBrowserFailed": "Nie udało się otworzyć przeglądarki systemowej, spróbuj ponownie.",
|
|
29
|
+
"openPopupFailed": "Nie udało się otworzyć okna autoryzacji, sprawdź ustawienia blokowania wyskakujących okienek w przeglądarce.",
|
|
30
|
+
"popupClosed": "Okno autoryzacji zostało zamknięte przed zakończeniem procesu.",
|
|
31
|
+
"sessionExpired": "Sesja autoryzacyjna wygasła, zaloguj się ponownie.",
|
|
32
|
+
"stateMismatch": "Stan autoryzacji nie pasuje, spróbuj ponownie.",
|
|
33
|
+
"stateMissing": "Nie znaleziono stanu autoryzacji, spróbuj ponownie."
|
|
34
|
+
},
|
|
35
|
+
"messages": {
|
|
36
|
+
"loading": "Uruchamianie procesu autoryzacji...",
|
|
37
|
+
"success": {
|
|
38
|
+
"submit": "Autoryzacja zakończona sukcesem! Możesz teraz opublikować asystenta.",
|
|
39
|
+
"upload": "Autoryzacja zakończona sukcesem! Możesz teraz opublikować nową wersję."
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -2,6 +2,45 @@
|
|
|
2
2
|
"about": {
|
|
3
3
|
"title": "O nas"
|
|
4
4
|
},
|
|
5
|
+
"agentInfoDescription": {
|
|
6
|
+
"basic": {
|
|
7
|
+
"avatar": "Awatar",
|
|
8
|
+
"description": "Opis",
|
|
9
|
+
"name": "Nazwa",
|
|
10
|
+
"tags": "Tagi",
|
|
11
|
+
"title": "Informacje o Asystencie"
|
|
12
|
+
},
|
|
13
|
+
"chat": {
|
|
14
|
+
"displayMode": "Tryb wyświetlania",
|
|
15
|
+
"enableHistoryCount": "Włącz licznik historii wiadomości",
|
|
16
|
+
"historyCount": "Liczba wiadomości w historii",
|
|
17
|
+
"no": "Nie",
|
|
18
|
+
"searchMode": "Tryb wyszukiwania",
|
|
19
|
+
"title": "Preferencje czatu",
|
|
20
|
+
"yes": "Tak"
|
|
21
|
+
},
|
|
22
|
+
"model": {
|
|
23
|
+
"maxTokens": "Maksymalna liczba tokenów",
|
|
24
|
+
"model": "Model",
|
|
25
|
+
"provider": "Dostawca",
|
|
26
|
+
"temperature": "Temperatura",
|
|
27
|
+
"title": "Ustawienia modelu",
|
|
28
|
+
"topP": "Wartość Top P"
|
|
29
|
+
},
|
|
30
|
+
"plugins": {
|
|
31
|
+
"count": "Ustawienia wtyczek ({{count}})",
|
|
32
|
+
"empty": "Brak zainstalowanych wtyczek",
|
|
33
|
+
"title": "Zainstalowane wtyczki"
|
|
34
|
+
},
|
|
35
|
+
"role": {
|
|
36
|
+
"systemRole": "Systemowy prompt",
|
|
37
|
+
"title": "Ustawienia roli"
|
|
38
|
+
},
|
|
39
|
+
"value": {
|
|
40
|
+
"unset": "Nieustawione",
|
|
41
|
+
"untitled": "Asystent bez nazwy"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
5
44
|
"agentTab": {
|
|
6
45
|
"chat": "Preferencje czatu",
|
|
7
46
|
"meta": "Informacje o asystencie",
|
|
@@ -18,6 +57,8 @@
|
|
|
18
57
|
},
|
|
19
58
|
"title": "Analiza danych"
|
|
20
59
|
},
|
|
60
|
+
"checking": "Sprawdzanie...",
|
|
61
|
+
"checkingPermissions": "Sprawdzanie uprawnień...",
|
|
21
62
|
"danger": {
|
|
22
63
|
"clear": {
|
|
23
64
|
"action": "Wyczyść teraz",
|
|
@@ -146,6 +187,58 @@
|
|
|
146
187
|
},
|
|
147
188
|
"waitingForMore": "Więcej modeli jest obecnie w <1>planach dołączenia</1>, prosimy o cierpliwość"
|
|
148
189
|
},
|
|
190
|
+
"marketPublish": {
|
|
191
|
+
"modal": {
|
|
192
|
+
"changelog": {
|
|
193
|
+
"extra": "Opisz główne zmiany i ulepszenia w tej wersji",
|
|
194
|
+
"label": "Dziennik zmian",
|
|
195
|
+
"maxLengthError": "Dziennik zmian nie może przekraczać 500 znaków",
|
|
196
|
+
"placeholder": "Wprowadź dziennik zmian",
|
|
197
|
+
"required": "Wprowadź dziennik zmian"
|
|
198
|
+
},
|
|
199
|
+
"comparison": {
|
|
200
|
+
"local": "Lokalna wersja",
|
|
201
|
+
"remote": "Opublikowana wersja"
|
|
202
|
+
},
|
|
203
|
+
"identifier": {
|
|
204
|
+
"extra": "Identyfikator będzie unikalnym identyfikatorem asystenta. Zalecane są małe litery, cyfry i myślniki",
|
|
205
|
+
"label": "Identyfikator asystenta",
|
|
206
|
+
"lengthError": "Identyfikator powinien mieć od 3 do 50 znaków",
|
|
207
|
+
"patternError": "Identyfikator może zawierać tylko małe litery, cyfry i myślniki",
|
|
208
|
+
"placeholder": "Wprowadź unikalny identyfikator asystenta, np.: web-development",
|
|
209
|
+
"required": "Wprowadź identyfikator asystenta"
|
|
210
|
+
},
|
|
211
|
+
"loading": {
|
|
212
|
+
"fetchingRemote": "Ładowanie danych zdalnych...",
|
|
213
|
+
"submit": "Publikowanie asystenta...",
|
|
214
|
+
"upload": "Publikowanie nowej wersji..."
|
|
215
|
+
},
|
|
216
|
+
"messages": {
|
|
217
|
+
"createVersionFailed": "Nie udało się utworzyć wersji: {{message}}",
|
|
218
|
+
"fetchRemoteFailed": "Nie udało się pobrać danych zdalnego asystenta",
|
|
219
|
+
"missingIdentifier": "Obecny asystent nie ma identyfikatora rynkowego",
|
|
220
|
+
"notAuthenticated": "Zaloguj się na konto rynkowe",
|
|
221
|
+
"publishFailed": "Publikacja nie powiodła się: {{message}}"
|
|
222
|
+
},
|
|
223
|
+
"submitButton": "Opublikuj",
|
|
224
|
+
"title": {
|
|
225
|
+
"submit": "Udostępnij w Rynku Asystentów",
|
|
226
|
+
"upload": "Opublikuj nową wersję"
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"resultModal": {
|
|
230
|
+
"message": "Asystent został przesłany do weryfikacji. Po zatwierdzeniu zostanie automatycznie opublikowany. Kliknij „Zobacz w Rynku”, aby zobaczyć opublikowanego asystenta.",
|
|
231
|
+
"view": "Zobacz w Rynku"
|
|
232
|
+
},
|
|
233
|
+
"submit": {
|
|
234
|
+
"button": "Udostępnij w Rynku",
|
|
235
|
+
"tooltip": "Udostępnij asystenta w Rynku"
|
|
236
|
+
},
|
|
237
|
+
"upload": {
|
|
238
|
+
"button": "Opublikuj nową wersję",
|
|
239
|
+
"tooltip": "Opublikuj nową wersję w Rynku Asystentów"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
149
242
|
"message": {
|
|
150
243
|
"success": "Pomyślnie zaktualizowano"
|
|
151
244
|
},
|
|
@@ -561,7 +654,7 @@
|
|
|
561
654
|
},
|
|
562
655
|
"submitAgentModal": {
|
|
563
656
|
"button": "Prześlij asystenta",
|
|
564
|
-
"identifier": "Identyfikator asystenta",
|
|
657
|
+
"identifier": "Identyfikator asystenta (identifier)",
|
|
565
658
|
"metaMiss": "Proszę uzupełnić informacje o asystencie przed przesłaniem, należy podać nazwę, opis i tagi",
|
|
566
659
|
"placeholder": "Wprowadź identyfikator asystenta, musi być unikalny, na przykład web-development",
|
|
567
660
|
"tooltips": "Udostępnij na rynku asystentów"
|
|
@@ -41,9 +41,29 @@
|
|
|
41
41
|
"openingMessage": "Mensagem de Abertura",
|
|
42
42
|
"openingQuestions": "Perguntas Iniciais",
|
|
43
43
|
"title": "Configuração do Assistente"
|
|
44
|
+
},
|
|
45
|
+
"version": {
|
|
46
|
+
"empty": "Nenhuma versão histórica disponível",
|
|
47
|
+
"status": {
|
|
48
|
+
"archived": "Arquivado",
|
|
49
|
+
"deprecated": "Rejeitado",
|
|
50
|
+
"unpublished": "Em revisão"
|
|
51
|
+
},
|
|
52
|
+
"table": {
|
|
53
|
+
"isLatest": "Versão mais recente",
|
|
54
|
+
"isValidated": "Validado",
|
|
55
|
+
"publishAt": "Data de publicação",
|
|
56
|
+
"version": "Número da versão"
|
|
57
|
+
},
|
|
58
|
+
"title": "Histórico de versões"
|
|
44
59
|
}
|
|
45
60
|
},
|
|
46
61
|
"list": "Lista de Assistentes",
|
|
62
|
+
"marketSource": {
|
|
63
|
+
"label": "Alternar fonte do mercado",
|
|
64
|
+
"legacy": "Mercado antigo",
|
|
65
|
+
"new": "Novo mercado"
|
|
66
|
+
},
|
|
47
67
|
"more": "Mais",
|
|
48
68
|
"plugins": "Integrar plugins",
|
|
49
69
|
"recentSubmits": "Atualizações Recentes",
|
|
@@ -51,10 +71,35 @@
|
|
|
51
71
|
"createdAt": "Publicado Recentemente",
|
|
52
72
|
"identifier": "ID do Assistente",
|
|
53
73
|
"knowledgeCount": "Quantidade de Bases de Conhecimento",
|
|
74
|
+
"myown": "Ver meus",
|
|
54
75
|
"pluginCount": "Quantidade de Plugins",
|
|
55
76
|
"title": "Nome do Assistente",
|
|
56
77
|
"tokenUsage": "Uso de Tokens"
|
|
57
78
|
},
|
|
79
|
+
"status": {
|
|
80
|
+
"archived": {
|
|
81
|
+
"reasons": {
|
|
82
|
+
"official": "O assistente foi removido oficialmente por questões de segurança/política",
|
|
83
|
+
"owner": "O proprietário do assistente o arquivou ou removeu voluntariamente"
|
|
84
|
+
},
|
|
85
|
+
"subtitle": "O assistente que você está tentando acessar foi arquivado pelos seguintes motivos possíveis:",
|
|
86
|
+
"title": "Assistente arquivado"
|
|
87
|
+
},
|
|
88
|
+
"backToMarket": "Voltar ao mercado de assistentes",
|
|
89
|
+
"deprecated": {
|
|
90
|
+
"reasons": {
|
|
91
|
+
"official": "O assistente foi removido oficialmente por questões de segurança/política",
|
|
92
|
+
"owner": "O proprietário do assistente o rejeitou ou removeu voluntariamente"
|
|
93
|
+
},
|
|
94
|
+
"subtitle": "O assistente que você está tentando acessar foi rejeitado pelos seguintes motivos possíveis:",
|
|
95
|
+
"title": "Assistente rejeitado"
|
|
96
|
+
},
|
|
97
|
+
"support": "Se tiver qualquer problema, copie o link e envie para <1>support@lobehub.com</1> para obter suporte.",
|
|
98
|
+
"unpublished": {
|
|
99
|
+
"subtitle": "O assistente que você está tentando acessar está passando por revisão de versão. Se tiver dúvidas, copie o link e envie para <1>support@lobehub.com</1> para obter suporte.",
|
|
100
|
+
"title": "Assistente em revisão"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
58
103
|
"suggestions": "Sugestões Relacionadas",
|
|
59
104
|
"systemRole": "Configuração do Assistente",
|
|
60
105
|
"tokenUsage": "Uso de Tokens no Prompt do Assistente",
|