@agent-native/core 0.86.0 → 0.86.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/corpus/README.md +2 -2
- package/corpus/core/CHANGELOG.md +9 -0
- package/corpus/core/package.json +2 -1
- package/corpus/core/src/client/AgentPanel.tsx +10 -0
- package/corpus/core/src/client/AssistantChat.tsx +91 -27
- package/corpus/core/src/client/ErrorBoundary.tsx +67 -12
- package/corpus/core/src/client/ErrorReportActions.tsx +69 -0
- package/corpus/core/src/client/FeedbackButton.tsx +8 -4
- package/corpus/core/src/client/db-admin/DbAdminPage.tsx +41 -13
- package/corpus/core/src/client/db-admin/SqlEditor.tsx +10 -3
- package/corpus/core/src/client/db-admin/TableEditor.tsx +12 -5
- package/corpus/core/src/client/db-admin/useAgentSync.ts +10 -3
- package/corpus/core/src/client/db-admin/useDbAdmin.ts +65 -16
- package/corpus/core/src/client/error-reporting.ts +100 -0
- package/corpus/core/src/client/index.ts +11 -0
- package/corpus/core/src/client/org/RequireActiveOrg.tsx +12 -0
- package/corpus/core/src/client/visual-style-controls.tsx +615 -2
- package/corpus/core/src/db-admin/index.ts +26 -0
- package/corpus/core/src/db-admin/operations.ts +87 -49
- package/corpus/core/src/localization/default-messages.ts +4 -0
- package/corpus/core/src/server/builder-design-systems.ts +328 -9
- package/corpus/core/src/server/index.ts +15 -0
- package/corpus/core/src/templates/default/app/root.tsx +47 -0
- package/corpus/templates/analytics/AGENTS.md +6 -4
- package/corpus/templates/analytics/actions/delete-db-admin-connection.ts +19 -0
- package/corpus/templates/analytics/actions/list-db-admin-connections.ts +18 -0
- package/corpus/templates/analytics/actions/navigate.ts +17 -3
- package/corpus/templates/analytics/actions/save-db-admin-connection.ts +33 -0
- package/corpus/templates/analytics/actions/view-screen.ts +11 -3
- package/corpus/templates/analytics/app/hooks/use-navigation-state.ts +11 -2
- package/corpus/templates/analytics/app/i18n/zh-TW.ts +23 -2
- package/corpus/templates/analytics/app/i18n-data.ts +230 -20
- package/corpus/templates/analytics/app/pages/Agents.tsx +398 -4
- package/corpus/templates/analytics/changelog/2026-07-03-connect-other-app-databases-from-analytics.md +6 -0
- package/corpus/templates/analytics/server/db/schema.ts +27 -0
- package/corpus/templates/analytics/server/lib/db-admin-connections.ts +458 -0
- package/corpus/templates/analytics/server/plugins/db.ts +35 -0
- package/corpus/templates/analytics/server/routes/[base]/_agent-native/analytics-db-admin/[...path].ts +1 -0
- package/corpus/templates/analytics/server/routes/_agent-native/analytics-db-admin/[...path].ts +160 -0
- package/corpus/templates/content/app/root.tsx +9 -0
- package/corpus/templates/content/changelog/2026-07-03-error-screens-now-include-a-feedback-button-with-debug-info.md +6 -0
- package/corpus/templates/design/AGENTS.md +13 -7
- package/corpus/templates/design/actions/get-design-system.ts +21 -0
- package/corpus/templates/design/actions/index-design-system-with-builder.ts +14 -37
- package/corpus/templates/design/app/components/design/code-workbench/CodeWorkbench.tsx +3 -3
- package/corpus/templates/design/app/components/design/code-workbench/SideBar.tsx +70 -9
- package/corpus/templates/design/app/components/design/code-workbench/editor/EditorTabs.tsx +11 -2
- package/corpus/templates/design/app/components/design/code-workbench/editor/MonacoHost.tsx +1 -1
- package/corpus/templates/design/app/components/design/code-workbench/editor/StatusBar.tsx +1 -1
- package/corpus/templates/design/app/components/design/code-workbench/explorer/ExplorerView.tsx +8 -2
- package/corpus/templates/design/app/components/design/code-workbench/explorer/FileTree.tsx +7 -3
- package/corpus/templates/design/app/components/design/code-workbench/store.tsx +48 -0
- package/corpus/templates/design/app/hooks/useDesignHotkeys.ts +6 -0
- package/corpus/templates/design/app/i18n/zh-TW.ts +15 -14
- package/corpus/templates/design/app/i18n-data.ts +154 -142
- package/corpus/templates/design/app/pages/DesignSystemSetup.tsx +32 -14
- package/corpus/templates/design/changelog/2026-07-03-design-system-setup-now-indexes-figma-code-and-design-md-sou.md +6 -0
- package/corpus/templates/design/changelog/2026-07-03-the-code-editor-is-easier-to-use-with-top-sidebar-tabs-clear.md +6 -0
- package/corpus/templates/design/server/lib/builder-design-system-proxy.ts +16 -106
- package/corpus/templates/mail/app/root.tsx +60 -1
- package/corpus/templates/mail/changelog/2026-07-03-error-screens-now-include-a-feedback-button-with-debug-info.md +6 -0
- package/corpus/templates/plan/app/i18n/ar-SA.ts +3 -0
- package/corpus/templates/plan/app/i18n/de-DE.ts +4 -0
- package/corpus/templates/plan/app/i18n/en-US.ts +4 -0
- package/corpus/templates/plan/app/i18n/es-ES.ts +4 -0
- package/corpus/templates/plan/app/i18n/fr-FR.ts +4 -0
- package/corpus/templates/plan/app/i18n/hi-IN.ts +3 -0
- package/corpus/templates/plan/app/i18n/ja-JP.ts +4 -0
- package/corpus/templates/plan/app/i18n/ko-KR.ts +4 -0
- package/corpus/templates/plan/app/i18n/pt-BR.ts +4 -0
- package/corpus/templates/plan/app/i18n/zh-CN.ts +3 -0
- package/corpus/templates/plan/app/i18n/zh-TW.ts +3 -0
- package/corpus/templates/plan/app/pages/PlansPage.tsx +74 -3
- package/corpus/templates/plan/changelog/2026-07-03-error-screens-now-include-a-feedback-button-with-debug-info.md +6 -0
- package/corpus/templates/slides/AGENTS.md +7 -3
- package/corpus/templates/slides/actions/get-design-system.ts +21 -0
- package/corpus/templates/slides/actions/import-file.ts +15 -7
- package/corpus/templates/slides/actions/index-design-system-with-builder.ts +14 -37
- package/corpus/templates/slides/app/components/design-system/DesignSystemSetup.tsx +32 -8
- package/corpus/templates/slides/app/components/editor/EditorSidebar.tsx +2 -2
- package/corpus/templates/slides/app/components/editor/EditorToolbar.tsx +2 -4
- package/corpus/templates/slides/app/components/editor/SlideEditor.tsx +163 -154
- package/corpus/templates/slides/app/components/editor/SlideStyleInspector.tsx +19 -15
- package/corpus/templates/slides/app/components/editor/SpeakerNotesPanel.tsx +56 -6
- package/corpus/templates/slides/app/components/layout/Layout.tsx +6 -1
- package/corpus/templates/slides/app/i18n/ar-SA.ts +8 -7
- package/corpus/templates/slides/app/i18n/de-DE.ts +7 -8
- package/corpus/templates/slides/app/i18n/en-US.ts +8 -7
- package/corpus/templates/slides/app/i18n/es-ES.ts +7 -8
- package/corpus/templates/slides/app/i18n/fr-FR.ts +7 -8
- package/corpus/templates/slides/app/i18n/hi-IN.ts +8 -7
- package/corpus/templates/slides/app/i18n/ja-JP.ts +7 -8
- package/corpus/templates/slides/app/i18n/ko-KR.ts +7 -7
- package/corpus/templates/slides/app/i18n/pt-BR.ts +7 -8
- package/corpus/templates/slides/app/i18n/zh-CN.ts +8 -7
- package/corpus/templates/slides/app/i18n/zh-TW.ts +8 -7
- package/corpus/templates/slides/app/lib/canvas-zoom.ts +16 -1
- package/corpus/templates/slides/app/pages/DeckEditor.tsx +3 -3
- package/corpus/templates/slides/changelog/2026-07-03-design-system-setup-now-indexes-figma-code-and-design-md-sou.md +6 -0
- package/corpus/templates/slides/changelog/2026-07-03-slide-editing-now-keeps-thumbnails-speaker-notes-styling-and.md +6 -0
- package/corpus/templates/slides/server/lib/builder-design-system-proxy.ts +16 -104
- package/dist/client/AgentPanel.d.ts.map +1 -1
- package/dist/client/AgentPanel.js +2 -1
- package/dist/client/AgentPanel.js.map +1 -1
- package/dist/client/AssistantChat.d.ts.map +1 -1
- package/dist/client/AssistantChat.js +77 -25
- package/dist/client/AssistantChat.js.map +1 -1
- package/dist/client/ErrorBoundary.d.ts.map +1 -1
- package/dist/client/ErrorBoundary.js +37 -2
- package/dist/client/ErrorBoundary.js.map +1 -1
- package/dist/client/ErrorReportActions.d.ts +13 -0
- package/dist/client/ErrorReportActions.d.ts.map +1 -0
- package/dist/client/ErrorReportActions.js +14 -0
- package/dist/client/ErrorReportActions.js.map +1 -0
- package/dist/client/FeedbackButton.d.ts +3 -1
- package/dist/client/FeedbackButton.d.ts.map +1 -1
- package/dist/client/FeedbackButton.js +6 -5
- package/dist/client/FeedbackButton.js.map +1 -1
- package/dist/client/db-admin/DbAdminPage.d.ts +9 -1
- package/dist/client/db-admin/DbAdminPage.d.ts.map +1 -1
- package/dist/client/db-admin/DbAdminPage.js +17 -13
- package/dist/client/db-admin/DbAdminPage.js.map +1 -1
- package/dist/client/db-admin/SqlEditor.d.ts +3 -1
- package/dist/client/db-admin/SqlEditor.d.ts.map +1 -1
- package/dist/client/db-admin/SqlEditor.js +3 -3
- package/dist/client/db-admin/SqlEditor.js.map +1 -1
- package/dist/client/db-admin/TableEditor.d.ts +3 -1
- package/dist/client/db-admin/TableEditor.d.ts.map +1 -1
- package/dist/client/db-admin/TableEditor.js +6 -6
- package/dist/client/db-admin/TableEditor.js.map +1 -1
- package/dist/client/db-admin/useAgentSync.d.ts +3 -2
- package/dist/client/db-admin/useAgentSync.d.ts.map +1 -1
- package/dist/client/db-admin/useAgentSync.js +8 -4
- package/dist/client/db-admin/useAgentSync.js.map +1 -1
- package/dist/client/db-admin/useDbAdmin.d.ts +11 -7
- package/dist/client/db-admin/useDbAdmin.d.ts.map +1 -1
- package/dist/client/db-admin/useDbAdmin.js +45 -20
- package/dist/client/db-admin/useDbAdmin.js.map +1 -1
- package/dist/client/error-reporting.d.ts +19 -0
- package/dist/client/error-reporting.d.ts.map +1 -0
- package/dist/client/error-reporting.js +71 -0
- package/dist/client/error-reporting.js.map +1 -0
- package/dist/client/index.d.ts +3 -1
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +3 -1
- package/dist/client/index.js.map +1 -1
- package/dist/client/org/RequireActiveOrg.d.ts.map +1 -1
- package/dist/client/org/RequireActiveOrg.js +2 -1
- package/dist/client/org/RequireActiveOrg.js.map +1 -1
- package/dist/client/visual-style-controls.d.ts +11 -0
- package/dist/client/visual-style-controls.d.ts.map +1 -1
- package/dist/client/visual-style-controls.js +350 -1
- package/dist/client/visual-style-controls.js.map +1 -1
- package/dist/collab/routes.d.ts +1 -1
- package/dist/collab/struct-routes.d.ts +1 -1
- package/dist/db-admin/index.d.ts +3 -0
- package/dist/db-admin/index.d.ts.map +1 -0
- package/dist/db-admin/index.js +2 -0
- package/dist/db-admin/index.js.map +1 -0
- package/dist/db-admin/operations.d.ts +26 -5
- package/dist/db-admin/operations.d.ts.map +1 -1
- package/dist/db-admin/operations.js +66 -55
- package/dist/db-admin/operations.js.map +1 -1
- package/dist/localization/default-messages.d.ts +3 -0
- package/dist/localization/default-messages.d.ts.map +1 -1
- package/dist/localization/default-messages.js +3 -0
- package/dist/localization/default-messages.js.map +1 -1
- package/dist/notifications/routes.d.ts +1 -1
- package/dist/provider-api/corpus-jobs.d.ts +2 -2
- package/dist/resources/handlers.d.ts +1 -1
- package/dist/secrets/routes.d.ts +9 -9
- package/dist/server/builder-design-systems.d.ts +61 -0
- package/dist/server/builder-design-systems.d.ts.map +1 -1
- package/dist/server/builder-design-systems.js +219 -14
- package/dist/server/builder-design-systems.js.map +1 -1
- package/dist/server/index.d.ts +1 -1
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js +1 -1
- package/dist/server/index.js.map +1 -1
- package/dist/server/transcribe-voice.d.ts +1 -1
- package/dist/templates/default/app/root.tsx +47 -0
- package/package.json +2 -1
- package/src/templates/default/app/root.tsx +47 -0
|
@@ -197,6 +197,9 @@ export default defineAction({
|
|
|
197
197
|
} else if (nav?.view === "agents") {
|
|
198
198
|
screen.page = "agents";
|
|
199
199
|
screen.agentsView = nav?.agentsView || "monitoring";
|
|
200
|
+
if (nav?.dbAdminConnectionId) {
|
|
201
|
+
screen.dbAdminConnectionId = nav.dbAdminConnectionId;
|
|
202
|
+
}
|
|
200
203
|
screen.agentAdminSurfaces = [
|
|
201
204
|
{
|
|
202
205
|
id: "monitoring",
|
|
@@ -212,11 +215,16 @@ export default defineAction({
|
|
|
212
215
|
},
|
|
213
216
|
{
|
|
214
217
|
id: "database",
|
|
215
|
-
label: "
|
|
218
|
+
label: "App Databases",
|
|
216
219
|
path: "/agents?view=database",
|
|
217
220
|
advanced: true,
|
|
218
|
-
|
|
219
|
-
includes: [
|
|
221
|
+
adminOnly: true,
|
|
222
|
+
includes: [
|
|
223
|
+
"connected agent-native app databases",
|
|
224
|
+
"table browser",
|
|
225
|
+
"row editor",
|
|
226
|
+
"SQL editor",
|
|
227
|
+
],
|
|
220
228
|
},
|
|
221
229
|
];
|
|
222
230
|
const email = getRequestUserEmail();
|
|
@@ -18,6 +18,7 @@ interface NavigationState {
|
|
|
18
18
|
extensionId?: string;
|
|
19
19
|
recordingId?: string;
|
|
20
20
|
agentsView?: string;
|
|
21
|
+
dbAdminConnectionId?: string;
|
|
21
22
|
filters?: Record<string, string>;
|
|
22
23
|
}
|
|
23
24
|
|
|
@@ -76,6 +77,11 @@ export function useNavigationState() {
|
|
|
76
77
|
} else if (pathname === "/agents") {
|
|
77
78
|
state.view = "agents";
|
|
78
79
|
state.agentsView = searchParams.get("view") || "monitoring";
|
|
80
|
+
if (state.agentsView === "database") {
|
|
81
|
+
const dbAdminConnectionId = searchParams.get("db");
|
|
82
|
+
if (dbAdminConnectionId)
|
|
83
|
+
state.dbAdminConnectionId = dbAdminConnectionId;
|
|
84
|
+
}
|
|
79
85
|
} else if (pathname === "/data-sources") {
|
|
80
86
|
state.view = "data-sources";
|
|
81
87
|
} else if (pathname === "/data-dictionary") {
|
|
@@ -100,8 +106,11 @@ export function useNavigationState() {
|
|
|
100
106
|
if (cmd.view === "sessions" && cmd.recordingId)
|
|
101
107
|
return `/sessions/${encodeURIComponent(cmd.recordingId)}`;
|
|
102
108
|
if (cmd.view === "sessions") return "/sessions";
|
|
103
|
-
if (cmd.view === "agents" && cmd.agentsView === "database")
|
|
104
|
-
|
|
109
|
+
if (cmd.view === "agents" && cmd.agentsView === "database") {
|
|
110
|
+
const params = new URLSearchParams({ view: "database" });
|
|
111
|
+
if (cmd.dbAdminConnectionId) params.set("db", cmd.dbAdminConnectionId);
|
|
112
|
+
return `/agents?${params.toString()}`;
|
|
113
|
+
}
|
|
105
114
|
if (cmd.view === "agents") return "/agents";
|
|
106
115
|
if (cmd.view === "data-sources") return "/data-sources";
|
|
107
116
|
if (cmd.view === "data-dictionary") return "/data-dictionary";
|
|
@@ -584,13 +584,34 @@ const messages = {
|
|
|
584
584
|
agents: {
|
|
585
585
|
title: "代理",
|
|
586
586
|
description:
|
|
587
|
-
"
|
|
587
|
+
"監控代理執行、評估、實驗、回饋,以及只有管理員可檢查的已連接應用程式資料庫。",
|
|
588
588
|
monitoring: "監控",
|
|
589
589
|
monitoringDescription:
|
|
590
590
|
"核心可觀測性集中在這裡:執行、追蹤、評估、實驗與回饋。若需要第一方 token、延遲與成本圖表,請從目錄安裝 LLM 可觀測性儀表板。",
|
|
591
591
|
advanced: "進階",
|
|
592
|
-
database: "
|
|
592
|
+
database: "應用程式資料庫",
|
|
593
593
|
openCatalog: "開啟目錄",
|
|
594
|
+
dbConnectionsTitle: "已連接的應用程式資料庫",
|
|
595
|
+
dbConnectionsDescription:
|
|
596
|
+
"連接其他 agent-native 應用程式資料庫,供管理員檢查與修復。這不會把 Analytics 資料開放給所有使用者。",
|
|
597
|
+
selectConnection: "選擇資料庫",
|
|
598
|
+
connectDatabase: "連接資料庫",
|
|
599
|
+
connectDatabaseDescription:
|
|
600
|
+
"使用目標應用程式的資料庫連線字串。只有組織擁有者與管理員可以讀寫已連接資料庫資料。",
|
|
601
|
+
connectedDatabase: "已連接資料庫",
|
|
602
|
+
noConnections: "尚未連接應用程式資料庫",
|
|
603
|
+
noConnectionsDescription:
|
|
604
|
+
"新增 agent-native 應用程式資料庫,即可在 Analytics 中瀏覽資料表、檢查資料列或執行 SQL。",
|
|
605
|
+
connectionName: "名稱",
|
|
606
|
+
connectionAppId: "應用程式 ID",
|
|
607
|
+
connectionAppUrl: "應用程式 URL",
|
|
608
|
+
connectionDatabaseUrl: "資料庫 URL",
|
|
609
|
+
connectionAuthToken: "驗證權杖(選填)",
|
|
610
|
+
saveConnection: "儲存連線",
|
|
611
|
+
deleteConnection: "刪除連線",
|
|
612
|
+
deleteConnectionTitle: "刪除資料庫連線?",
|
|
613
|
+
deleteConnectionDescription:
|
|
614
|
+
"這會從 Analytics 移除 {{name}} 並刪除儲存的連線密鑰。目標應用程式資料庫不會被修改。",
|
|
594
615
|
},
|
|
595
616
|
providerCorpusNotifier: {
|
|
596
617
|
completed: "提供者語料庫作業已完成",
|
|
@@ -347,13 +347,34 @@ const enUS = {
|
|
|
347
347
|
agents: {
|
|
348
348
|
title: "Agents",
|
|
349
349
|
description:
|
|
350
|
-
"Monitor agent runs, evals, experiments, feedback, and
|
|
350
|
+
"Monitor agent runs, evals, experiments, feedback, and connected app databases that admins can inspect behind the scenes.",
|
|
351
351
|
monitoring: "Monitoring",
|
|
352
352
|
monitoringDescription:
|
|
353
353
|
"Core observability stays here: runs, traces, evals, experiments, and feedback. Install the LLM observability dashboard from the catalog when you want first-party token, latency, and cost charts.",
|
|
354
354
|
advanced: "Advanced",
|
|
355
|
-
database: "
|
|
355
|
+
database: "App Databases",
|
|
356
356
|
openCatalog: "Open catalog",
|
|
357
|
+
dbConnectionsTitle: "Connected app databases",
|
|
358
|
+
dbConnectionsDescription:
|
|
359
|
+
"Connect other agent-native app databases for admin-only inspection and repair. This does not expose Analytics data to every user.",
|
|
360
|
+
selectConnection: "Select database",
|
|
361
|
+
connectDatabase: "Connect database",
|
|
362
|
+
connectDatabaseDescription:
|
|
363
|
+
"Use the target app's database connection string. Only organization owners and admins can read or write connected database data.",
|
|
364
|
+
connectedDatabase: "Connected database",
|
|
365
|
+
noConnections: "No app databases connected",
|
|
366
|
+
noConnectionsDescription:
|
|
367
|
+
"Add an agent-native app database to browse tables, inspect rows, or run SQL from Analytics.",
|
|
368
|
+
connectionName: "Name",
|
|
369
|
+
connectionAppId: "App ID",
|
|
370
|
+
connectionAppUrl: "App URL",
|
|
371
|
+
connectionDatabaseUrl: "Database URL",
|
|
372
|
+
connectionAuthToken: "Auth token (optional)",
|
|
373
|
+
saveConnection: "Save connection",
|
|
374
|
+
deleteConnection: "Delete connection",
|
|
375
|
+
deleteConnectionTitle: "Delete database connection?",
|
|
376
|
+
deleteConnectionDescription:
|
|
377
|
+
"This removes {{name}} from Analytics and deletes its stored connection secrets. The target app database is not modified.",
|
|
357
378
|
},
|
|
358
379
|
providerCorpusNotifier: {
|
|
359
380
|
completed: "Provider corpus job completed",
|
|
@@ -5450,13 +5471,34 @@ const translatedAnalyticsDebtTranslations = {
|
|
|
5450
5471
|
agents: {
|
|
5451
5472
|
title: "代理",
|
|
5452
5473
|
description:
|
|
5453
|
-
"
|
|
5474
|
+
"监控代理运行、评估、实验、反馈,以及只有管理员可检查的已连接应用数据库。",
|
|
5454
5475
|
monitoring: "监控",
|
|
5455
5476
|
monitoringDescription:
|
|
5456
5477
|
"核心可观测性集中在这里:运行、追踪、评估、实验和反馈。需要第一方 token、延迟和成本图表时,请从目录安装 LLM 可观测性仪表板。",
|
|
5457
5478
|
advanced: "高级",
|
|
5458
|
-
database: "
|
|
5479
|
+
database: "应用数据库",
|
|
5459
5480
|
openCatalog: "打开目录",
|
|
5481
|
+
dbConnectionsTitle: "已连接的应用数据库",
|
|
5482
|
+
dbConnectionsDescription:
|
|
5483
|
+
"连接其他 agent-native 应用数据库,供管理员专用检查和修复。这不会向所有用户公开 Analytics 数据。",
|
|
5484
|
+
selectConnection: "选择数据库",
|
|
5485
|
+
connectDatabase: "连接数据库",
|
|
5486
|
+
connectDatabaseDescription:
|
|
5487
|
+
"使用目标应用的数据库连接字符串。只有组织所有者和管理员可以读取或写入已连接的数据库数据。",
|
|
5488
|
+
connectedDatabase: "已连接数据库",
|
|
5489
|
+
noConnections: "尚未连接应用数据库",
|
|
5490
|
+
noConnectionsDescription:
|
|
5491
|
+
"添加 agent-native 应用数据库,以便从 Analytics 浏览表、检查行或运行 SQL。",
|
|
5492
|
+
connectionName: "名称",
|
|
5493
|
+
connectionAppId: "应用 ID",
|
|
5494
|
+
connectionAppUrl: "应用 URL",
|
|
5495
|
+
connectionDatabaseUrl: "数据库 URL",
|
|
5496
|
+
connectionAuthToken: "认证令牌(可选)",
|
|
5497
|
+
saveConnection: "保存连接",
|
|
5498
|
+
deleteConnection: "删除连接",
|
|
5499
|
+
deleteConnectionTitle: "删除数据库连接?",
|
|
5500
|
+
deleteConnectionDescription:
|
|
5501
|
+
"这会从 Analytics 移除 {{name}} 并删除其存储的连接密钥。目标应用数据库不会被修改。",
|
|
5460
5502
|
},
|
|
5461
5503
|
sqlDashboard: {
|
|
5462
5504
|
addDescriptionPlaceholder: "添加描述",
|
|
@@ -5638,13 +5680,34 @@ const translatedAnalyticsDebtTranslations = {
|
|
|
5638
5680
|
agents: {
|
|
5639
5681
|
title: "Agentes",
|
|
5640
5682
|
description:
|
|
5641
|
-
"Supervisa ejecuciones de agentes, evaluaciones, experimentos, comentarios y
|
|
5683
|
+
"Supervisa ejecuciones de agentes, evaluaciones, experimentos, comentarios y bases de datos de apps conectadas que solo los administradores pueden inspeccionar.",
|
|
5642
5684
|
monitoring: "Monitorización",
|
|
5643
5685
|
monitoringDescription:
|
|
5644
5686
|
"La observabilidad principal vive aquí: ejecuciones, trazas, evaluaciones, experimentos y comentarios. Instala el panel de observabilidad LLM desde el catálogo cuando necesites gráficos propios de tokens, latencia y coste.",
|
|
5645
5687
|
advanced: "Avanzado",
|
|
5646
|
-
database: "
|
|
5688
|
+
database: "Bases de datos de apps",
|
|
5647
5689
|
openCatalog: "Abrir catálogo",
|
|
5690
|
+
dbConnectionsTitle: "Bases de datos de apps conectadas",
|
|
5691
|
+
dbConnectionsDescription:
|
|
5692
|
+
"Conecta bases de datos de otras apps agent-native para inspección y reparación solo de administradores. Esto no expone los datos de Analytics a todos los usuarios.",
|
|
5693
|
+
selectConnection: "Seleccionar base de datos",
|
|
5694
|
+
connectDatabase: "Conectar base de datos",
|
|
5695
|
+
connectDatabaseDescription:
|
|
5696
|
+
"Usa la cadena de conexión de la base de datos de la app destino. Solo propietarios y administradores de la organización pueden leer o escribir datos conectados.",
|
|
5697
|
+
connectedDatabase: "Base de datos conectada",
|
|
5698
|
+
noConnections: "No hay bases de datos de apps conectadas",
|
|
5699
|
+
noConnectionsDescription:
|
|
5700
|
+
"Añade una base de datos de app agent-native para explorar tablas, inspeccionar filas o ejecutar SQL desde Analytics.",
|
|
5701
|
+
connectionName: "Nombre",
|
|
5702
|
+
connectionAppId: "ID de app",
|
|
5703
|
+
connectionAppUrl: "URL de app",
|
|
5704
|
+
connectionDatabaseUrl: "URL de base de datos",
|
|
5705
|
+
connectionAuthToken: "Token de autenticación (opcional)",
|
|
5706
|
+
saveConnection: "Guardar conexión",
|
|
5707
|
+
deleteConnection: "Eliminar conexión",
|
|
5708
|
+
deleteConnectionTitle: "¿Eliminar conexión de base de datos?",
|
|
5709
|
+
deleteConnectionDescription:
|
|
5710
|
+
"Esto quita {{name}} de Analytics y elimina sus secretos de conexión guardados. La base de datos de la app destino no se modifica.",
|
|
5648
5711
|
},
|
|
5649
5712
|
sqlDashboard: {
|
|
5650
5713
|
addDescriptionPlaceholder: "Agregar una descripción",
|
|
@@ -5831,13 +5894,34 @@ const translatedAnalyticsDebtTranslations = {
|
|
|
5831
5894
|
agents: {
|
|
5832
5895
|
title: "Agents",
|
|
5833
5896
|
description:
|
|
5834
|
-
"Surveillez les exécutions d'agents, les évaluations, les expériences, les retours et les
|
|
5897
|
+
"Surveillez les exécutions d'agents, les évaluations, les expériences, les retours et les bases de données d'apps connectées que seuls les administrateurs peuvent inspecter.",
|
|
5835
5898
|
monitoring: "Surveillance",
|
|
5836
5899
|
monitoringDescription:
|
|
5837
5900
|
"L'observabilité principale est ici : exécutions, traces, évaluations, expériences et retours. Installez le tableau de bord d'observabilité LLM depuis le catalogue lorsque vous voulez des graphiques de tokens, latence et coût de première partie.",
|
|
5838
5901
|
advanced: "Avancé",
|
|
5839
|
-
database: "
|
|
5902
|
+
database: "Bases de données d'apps",
|
|
5840
5903
|
openCatalog: "Ouvrir le catalogue",
|
|
5904
|
+
dbConnectionsTitle: "Bases de données d'apps connectées",
|
|
5905
|
+
dbConnectionsDescription:
|
|
5906
|
+
"Connectez des bases de données d'autres apps agent-native pour une inspection et une réparation réservées aux administrateurs. Cela n'expose pas les données Analytics à tous les utilisateurs.",
|
|
5907
|
+
selectConnection: "Sélectionner une base de données",
|
|
5908
|
+
connectDatabase: "Connecter une base de données",
|
|
5909
|
+
connectDatabaseDescription:
|
|
5910
|
+
"Utilisez la chaîne de connexion de la base de données de l'app cible. Seuls les propriétaires et administrateurs de l'organisation peuvent lire ou modifier les données connectées.",
|
|
5911
|
+
connectedDatabase: "Base de données connectée",
|
|
5912
|
+
noConnections: "Aucune base de données d'app connectée",
|
|
5913
|
+
noConnectionsDescription:
|
|
5914
|
+
"Ajoutez une base de données d'app agent-native pour parcourir les tables, inspecter les lignes ou exécuter du SQL depuis Analytics.",
|
|
5915
|
+
connectionName: "Nom",
|
|
5916
|
+
connectionAppId: "ID de l'app",
|
|
5917
|
+
connectionAppUrl: "URL de l'app",
|
|
5918
|
+
connectionDatabaseUrl: "URL de la base de données",
|
|
5919
|
+
connectionAuthToken: "Jeton d'authentification (facultatif)",
|
|
5920
|
+
saveConnection: "Enregistrer la connexion",
|
|
5921
|
+
deleteConnection: "Supprimer la connexion",
|
|
5922
|
+
deleteConnectionTitle: "Supprimer la connexion à la base de données ?",
|
|
5923
|
+
deleteConnectionDescription:
|
|
5924
|
+
"Cela retire {{name}} d'Analytics et supprime ses secrets de connexion stockés. La base de données de l'app cible n'est pas modifiée.",
|
|
5841
5925
|
},
|
|
5842
5926
|
sqlDashboard: {
|
|
5843
5927
|
addDescriptionPlaceholder: "Ajouter une description",
|
|
@@ -6025,13 +6109,34 @@ const translatedAnalyticsDebtTranslations = {
|
|
|
6025
6109
|
agents: {
|
|
6026
6110
|
title: "Agenten",
|
|
6027
6111
|
description:
|
|
6028
|
-
"Überwache Agentenläufe, Evals, Experimente, Feedback und
|
|
6112
|
+
"Überwache Agentenläufe, Evals, Experimente, Feedback und verbundene App-Datenbanken, die nur Admins prüfen können.",
|
|
6029
6113
|
monitoring: "Monitoring",
|
|
6030
6114
|
monitoringDescription:
|
|
6031
6115
|
"Die zentrale Observability liegt hier: Läufe, Traces, Evals, Experimente und Feedback. Installiere das LLM-Observability-Dashboard aus dem Katalog, wenn du First-Party-Diagramme zu Tokens, Latenz und Kosten brauchst.",
|
|
6032
6116
|
advanced: "Erweitert",
|
|
6033
|
-
database: "
|
|
6117
|
+
database: "App-Datenbanken",
|
|
6034
6118
|
openCatalog: "Katalog öffnen",
|
|
6119
|
+
dbConnectionsTitle: "Verbundene App-Datenbanken",
|
|
6120
|
+
dbConnectionsDescription:
|
|
6121
|
+
"Verbinde Datenbanken anderer agent-native Apps für admin-exklusive Prüfung und Reparatur. Dadurch werden Analytics-Daten nicht für alle Benutzer offengelegt.",
|
|
6122
|
+
selectConnection: "Datenbank auswählen",
|
|
6123
|
+
connectDatabase: "Datenbank verbinden",
|
|
6124
|
+
connectDatabaseDescription:
|
|
6125
|
+
"Verwende die Datenbank-Verbindungszeichenfolge der Ziel-App. Nur Organisationsinhaber und Admins können verbundene Daten lesen oder schreiben.",
|
|
6126
|
+
connectedDatabase: "Verbundene Datenbank",
|
|
6127
|
+
noConnections: "Keine App-Datenbanken verbunden",
|
|
6128
|
+
noConnectionsDescription:
|
|
6129
|
+
"Füge eine agent-native App-Datenbank hinzu, um Tabellen zu durchsuchen, Zeilen zu prüfen oder SQL aus Analytics auszuführen.",
|
|
6130
|
+
connectionName: "Name",
|
|
6131
|
+
connectionAppId: "App-ID",
|
|
6132
|
+
connectionAppUrl: "App-URL",
|
|
6133
|
+
connectionDatabaseUrl: "Datenbank-URL",
|
|
6134
|
+
connectionAuthToken: "Authentifizierungstoken (optional)",
|
|
6135
|
+
saveConnection: "Verbindung speichern",
|
|
6136
|
+
deleteConnection: "Verbindung löschen",
|
|
6137
|
+
deleteConnectionTitle: "Datenbankverbindung löschen?",
|
|
6138
|
+
deleteConnectionDescription:
|
|
6139
|
+
"Dadurch wird {{name}} aus Analytics entfernt und die gespeicherten Verbindungsgeheimnisse werden gelöscht. Die Ziel-App-Datenbank wird nicht geändert.",
|
|
6035
6140
|
},
|
|
6036
6141
|
sqlDashboard: {
|
|
6037
6142
|
addDescriptionPlaceholder: "Fügen Sie eine Beschreibung hinzu",
|
|
@@ -6214,13 +6319,34 @@ const translatedAnalyticsDebtTranslations = {
|
|
|
6214
6319
|
agents: {
|
|
6215
6320
|
title: "エージェント",
|
|
6216
6321
|
description:
|
|
6217
|
-
"
|
|
6322
|
+
"エージェントの実行、評価、実験、フィードバック、管理者だけが確認できる接続済みアプリデータベースを監視します。",
|
|
6218
6323
|
monitoring: "監視",
|
|
6219
6324
|
monitoringDescription:
|
|
6220
6325
|
"主要な可観測性はここに集約されます: 実行、トレース、評価、実験、フィードバック。ファーストパーティのトークン、レイテンシ、コストのグラフが必要な場合は、カタログから LLM 可観測性ダッシュボードをインストールしてください。",
|
|
6221
6326
|
advanced: "詳細",
|
|
6222
|
-
database: "
|
|
6327
|
+
database: "アプリデータベース",
|
|
6223
6328
|
openCatalog: "カタログを開く",
|
|
6329
|
+
dbConnectionsTitle: "接続済みアプリデータベース",
|
|
6330
|
+
dbConnectionsDescription:
|
|
6331
|
+
"他の agent-native アプリのデータベースを接続し、管理者専用の確認と修復に使います。Analytics データがすべてのユーザーに公開されることはありません。",
|
|
6332
|
+
selectConnection: "データベースを選択",
|
|
6333
|
+
connectDatabase: "データベースを接続",
|
|
6334
|
+
connectDatabaseDescription:
|
|
6335
|
+
"対象アプリのデータベース接続文字列を使用します。接続済みデータを読み書きできるのは組織のオーナーと管理者のみです。",
|
|
6336
|
+
connectedDatabase: "接続済みデータベース",
|
|
6337
|
+
noConnections: "接続済みのアプリデータベースはありません",
|
|
6338
|
+
noConnectionsDescription:
|
|
6339
|
+
"agent-native アプリデータベースを追加すると、Analytics からテーブルの参照、行の確認、SQL の実行ができます。",
|
|
6340
|
+
connectionName: "名前",
|
|
6341
|
+
connectionAppId: "アプリ ID",
|
|
6342
|
+
connectionAppUrl: "アプリ URL",
|
|
6343
|
+
connectionDatabaseUrl: "データベース URL",
|
|
6344
|
+
connectionAuthToken: "認証トークン(任意)",
|
|
6345
|
+
saveConnection: "接続を保存",
|
|
6346
|
+
deleteConnection: "接続を削除",
|
|
6347
|
+
deleteConnectionTitle: "データベース接続を削除しますか?",
|
|
6348
|
+
deleteConnectionDescription:
|
|
6349
|
+
"これにより {{name}} が Analytics から削除され、保存済みの接続シークレットも削除されます。対象アプリのデータベースは変更されません。",
|
|
6224
6350
|
},
|
|
6225
6351
|
sqlDashboard: {
|
|
6226
6352
|
addDescriptionPlaceholder: "説明を追加する",
|
|
@@ -6402,13 +6528,34 @@ const translatedAnalyticsDebtTranslations = {
|
|
|
6402
6528
|
agents: {
|
|
6403
6529
|
title: "에이전트",
|
|
6404
6530
|
description:
|
|
6405
|
-
"에이전트 실행, 평가, 실험, 피드백과
|
|
6531
|
+
"에이전트 실행, 평가, 실험, 피드백과 관리자만 점검할 수 있는 연결된 앱 데이터베이스를 모니터링합니다.",
|
|
6406
6532
|
monitoring: "모니터링",
|
|
6407
6533
|
monitoringDescription:
|
|
6408
6534
|
"핵심 관측성은 여기에 있습니다: 실행, 추적, 평가, 실험, 피드백. 퍼스트파티 토큰, 지연 시간, 비용 차트가 필요하면 카탈로그에서 LLM 관측성 대시보드를 설치하세요.",
|
|
6409
6535
|
advanced: "고급",
|
|
6410
|
-
database: "데이터베이스",
|
|
6536
|
+
database: "앱 데이터베이스",
|
|
6411
6537
|
openCatalog: "카탈로그 열기",
|
|
6538
|
+
dbConnectionsTitle: "연결된 앱 데이터베이스",
|
|
6539
|
+
dbConnectionsDescription:
|
|
6540
|
+
"다른 agent-native 앱 데이터베이스를 연결해 관리자 전용 점검과 복구에 사용합니다. Analytics 데이터가 모든 사용자에게 노출되지는 않습니다.",
|
|
6541
|
+
selectConnection: "데이터베이스 선택",
|
|
6542
|
+
connectDatabase: "데이터베이스 연결",
|
|
6543
|
+
connectDatabaseDescription:
|
|
6544
|
+
"대상 앱의 데이터베이스 연결 문자열을 사용합니다. 조직 소유자와 관리자만 연결된 데이터베이스 데이터를 읽거나 쓸 수 있습니다.",
|
|
6545
|
+
connectedDatabase: "연결된 데이터베이스",
|
|
6546
|
+
noConnections: "연결된 앱 데이터베이스 없음",
|
|
6547
|
+
noConnectionsDescription:
|
|
6548
|
+
"agent-native 앱 데이터베이스를 추가해 Analytics에서 테이블을 탐색하고 행을 점검하거나 SQL을 실행하세요.",
|
|
6549
|
+
connectionName: "이름",
|
|
6550
|
+
connectionAppId: "앱 ID",
|
|
6551
|
+
connectionAppUrl: "앱 URL",
|
|
6552
|
+
connectionDatabaseUrl: "데이터베이스 URL",
|
|
6553
|
+
connectionAuthToken: "인증 토큰(선택 사항)",
|
|
6554
|
+
saveConnection: "연결 저장",
|
|
6555
|
+
deleteConnection: "연결 삭제",
|
|
6556
|
+
deleteConnectionTitle: "데이터베이스 연결을 삭제할까요?",
|
|
6557
|
+
deleteConnectionDescription:
|
|
6558
|
+
"{{name}} 항목을 Analytics에서 제거하고 저장된 연결 비밀 값을 삭제합니다. 대상 앱 데이터베이스는 변경되지 않습니다.",
|
|
6412
6559
|
},
|
|
6413
6560
|
sqlDashboard: {
|
|
6414
6561
|
addDescriptionPlaceholder: "설명 추가",
|
|
@@ -6594,13 +6741,34 @@ const translatedAnalyticsDebtTranslations = {
|
|
|
6594
6741
|
agents: {
|
|
6595
6742
|
title: "Agentes",
|
|
6596
6743
|
description:
|
|
6597
|
-
"Monitore execuções de agentes, avaliações, experimentos, feedback e
|
|
6744
|
+
"Monitore execuções de agentes, avaliações, experimentos, feedback e bancos de dados de apps conectados que apenas administradores podem inspecionar.",
|
|
6598
6745
|
monitoring: "Monitoramento",
|
|
6599
6746
|
monitoringDescription:
|
|
6600
6747
|
"A observabilidade principal fica aqui: execuções, traces, avaliações, experimentos e feedback. Instale o dashboard de observabilidade LLM pelo catálogo quando quiser gráficos primários de tokens, latência e custo.",
|
|
6601
6748
|
advanced: "Avançado",
|
|
6602
|
-
database: "
|
|
6749
|
+
database: "Bancos de dados de apps",
|
|
6603
6750
|
openCatalog: "Abrir catálogo",
|
|
6751
|
+
dbConnectionsTitle: "Bancos de dados de apps conectados",
|
|
6752
|
+
dbConnectionsDescription:
|
|
6753
|
+
"Conecte bancos de dados de outros apps agent-native para inspeção e reparo apenas por administradores. Isso não expõe dados do Analytics a todos os usuários.",
|
|
6754
|
+
selectConnection: "Selecionar banco de dados",
|
|
6755
|
+
connectDatabase: "Conectar banco de dados",
|
|
6756
|
+
connectDatabaseDescription:
|
|
6757
|
+
"Use a string de conexão do banco de dados do app de destino. Somente proprietários e administradores da organização podem ler ou gravar dados conectados.",
|
|
6758
|
+
connectedDatabase: "Banco de dados conectado",
|
|
6759
|
+
noConnections: "Nenhum banco de dados de app conectado",
|
|
6760
|
+
noConnectionsDescription:
|
|
6761
|
+
"Adicione um banco de dados de app agent-native para navegar por tabelas, inspecionar linhas ou executar SQL no Analytics.",
|
|
6762
|
+
connectionName: "Nome",
|
|
6763
|
+
connectionAppId: "ID do app",
|
|
6764
|
+
connectionAppUrl: "URL do app",
|
|
6765
|
+
connectionDatabaseUrl: "URL do banco de dados",
|
|
6766
|
+
connectionAuthToken: "Token de autenticação (opcional)",
|
|
6767
|
+
saveConnection: "Salvar conexão",
|
|
6768
|
+
deleteConnection: "Excluir conexão",
|
|
6769
|
+
deleteConnectionTitle: "Excluir conexão de banco de dados?",
|
|
6770
|
+
deleteConnectionDescription:
|
|
6771
|
+
"Isso remove {{name}} do Analytics e exclui os segredos de conexão armazenados. O banco de dados do app de destino não é modificado.",
|
|
6604
6772
|
},
|
|
6605
6773
|
sqlDashboard: {
|
|
6606
6774
|
addDescriptionPlaceholder: "Adicione uma descrição",
|
|
@@ -6782,13 +6950,34 @@ const translatedAnalyticsDebtTranslations = {
|
|
|
6782
6950
|
agents: {
|
|
6783
6951
|
title: "एजेंट",
|
|
6784
6952
|
description:
|
|
6785
|
-
"एजेंट runs, evals, experiments, feedback, और
|
|
6953
|
+
"एजेंट runs, evals, experiments, feedback, और सिर्फ admins द्वारा देखे जा सकने वाले connected app databases को monitor करें।",
|
|
6786
6954
|
monitoring: "मॉनिटरिंग",
|
|
6787
6955
|
monitoringDescription:
|
|
6788
6956
|
"मुख्य observability यहां रहती है: runs, traces, evals, experiments, और feedback। first-party token, latency, और cost charts चाहिए हों तो catalog से LLM observability dashboard install करें।",
|
|
6789
6957
|
advanced: "उन्नत",
|
|
6790
|
-
database: "डेटाबेस",
|
|
6958
|
+
database: "ऐप डेटाबेस",
|
|
6791
6959
|
openCatalog: "कैटलॉग खोलें",
|
|
6960
|
+
dbConnectionsTitle: "कनेक्ट किए गए ऐप डेटाबेस",
|
|
6961
|
+
dbConnectionsDescription:
|
|
6962
|
+
"admin-only निरीक्षण और repair के लिए दूसरे agent-native ऐप डेटाबेस कनेक्ट करें। इससे Analytics डेटा हर उपयोगकर्ता के लिए expose नहीं होता।",
|
|
6963
|
+
selectConnection: "डेटाबेस चुनें",
|
|
6964
|
+
connectDatabase: "डेटाबेस कनेक्ट करें",
|
|
6965
|
+
connectDatabaseDescription:
|
|
6966
|
+
"target ऐप का database connection string उपयोग करें। केवल organization owners और admins connected database data पढ़ या लिख सकते हैं।",
|
|
6967
|
+
connectedDatabase: "कनेक्टेड डेटाबेस",
|
|
6968
|
+
noConnections: "कोई ऐप डेटाबेस कनेक्ट नहीं है",
|
|
6969
|
+
noConnectionsDescription:
|
|
6970
|
+
"Analytics से tables browse करने, rows inspect करने, या SQL चलाने के लिए agent-native ऐप डेटाबेस जोड़ें।",
|
|
6971
|
+
connectionName: "नाम",
|
|
6972
|
+
connectionAppId: "ऐप ID",
|
|
6973
|
+
connectionAppUrl: "ऐप URL",
|
|
6974
|
+
connectionDatabaseUrl: "डेटाबेस URL",
|
|
6975
|
+
connectionAuthToken: "Auth token (वैकल्पिक)",
|
|
6976
|
+
saveConnection: "कनेक्शन सहेजें",
|
|
6977
|
+
deleteConnection: "कनेक्शन हटाएं",
|
|
6978
|
+
deleteConnectionTitle: "डेटाबेस कनेक्शन हटाएं?",
|
|
6979
|
+
deleteConnectionDescription:
|
|
6980
|
+
"यह Analytics से {{name}} हटाता है और उसके stored connection secrets मिटाता है। target ऐप डेटाबेस बदला नहीं जाता।",
|
|
6792
6981
|
},
|
|
6793
6982
|
sqlDashboard: {
|
|
6794
6983
|
addDescriptionPlaceholder: "विवरण जोड़ें",
|
|
@@ -6969,13 +7158,34 @@ const translatedAnalyticsDebtTranslations = {
|
|
|
6969
7158
|
agents: {
|
|
6970
7159
|
title: "الوكلاء",
|
|
6971
7160
|
description:
|
|
6972
|
-
"راقب تشغيلات الوكلاء والتقييمات والتجارب والملاحظات
|
|
7161
|
+
"راقب تشغيلات الوكلاء والتقييمات والتجارب والملاحظات وقواعد بيانات التطبيقات المتصلة التي يمكن للمشرفين فقط فحصها.",
|
|
6973
7162
|
monitoring: "المراقبة",
|
|
6974
7163
|
monitoringDescription:
|
|
6975
7164
|
"توجد قابلية المراقبة الأساسية هنا: التشغيلات والتتبعات والتقييمات والتجارب والملاحظات. ثبّت لوحة مراقبة LLM من الكتالوج عندما تحتاج إلى مخططات الطرف الأول للرموز وزمن الاستجابة والتكلفة.",
|
|
6976
7165
|
advanced: "متقدم",
|
|
6977
|
-
database: "
|
|
7166
|
+
database: "قواعد بيانات التطبيقات",
|
|
6978
7167
|
openCatalog: "فتح الكتالوج",
|
|
7168
|
+
dbConnectionsTitle: "قواعد بيانات التطبيقات المتصلة",
|
|
7169
|
+
dbConnectionsDescription:
|
|
7170
|
+
"صِل قواعد بيانات تطبيقات agent-native أخرى للفحص والإصلاح المخصصين للمشرفين فقط. لا يؤدي ذلك إلى كشف بيانات Analytics لكل المستخدمين.",
|
|
7171
|
+
selectConnection: "تحديد قاعدة بيانات",
|
|
7172
|
+
connectDatabase: "توصيل قاعدة بيانات",
|
|
7173
|
+
connectDatabaseDescription:
|
|
7174
|
+
"استخدم سلسلة اتصال قاعدة بيانات التطبيق المستهدف. يمكن لمالكي المؤسسة والمشرفين فقط قراءة بيانات قاعدة البيانات المتصلة أو كتابتها.",
|
|
7175
|
+
connectedDatabase: "قاعدة بيانات متصلة",
|
|
7176
|
+
noConnections: "لا توجد قواعد بيانات تطبيقات متصلة",
|
|
7177
|
+
noConnectionsDescription:
|
|
7178
|
+
"أضف قاعدة بيانات تطبيق agent-native لتصفح الجداول أو فحص الصفوف أو تشغيل SQL من Analytics.",
|
|
7179
|
+
connectionName: "الاسم",
|
|
7180
|
+
connectionAppId: "معرّف التطبيق",
|
|
7181
|
+
connectionAppUrl: "رابط التطبيق",
|
|
7182
|
+
connectionDatabaseUrl: "رابط قاعدة البيانات",
|
|
7183
|
+
connectionAuthToken: "رمز المصادقة (اختياري)",
|
|
7184
|
+
saveConnection: "حفظ الاتصال",
|
|
7185
|
+
deleteConnection: "حذف الاتصال",
|
|
7186
|
+
deleteConnectionTitle: "هل تريد حذف اتصال قاعدة البيانات؟",
|
|
7187
|
+
deleteConnectionDescription:
|
|
7188
|
+
"سيؤدي ذلك إلى إزالة {{name}} من Analytics وحذف أسرار الاتصال المخزنة. لن يتم تعديل قاعدة بيانات التطبيق المستهدف.",
|
|
6979
7189
|
},
|
|
6980
7190
|
sqlDashboard: {
|
|
6981
7191
|
addDescriptionPlaceholder: "Add a description",
|