@agent-native/core 0.91.1 → 0.91.2
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/blueprints/action/crud.md +1 -1
- package/blueprints/channel/discord.md +1 -1
- package/blueprints/provider/stripe.md +1 -1
- package/blueprints/sandbox/docker.md +1 -1
- package/corpus/README.md +1 -1
- package/corpus/core/CHANGELOG.md +14 -0
- package/corpus/core/blueprints/action/crud.md +1 -1
- package/corpus/core/blueprints/channel/discord.md +1 -1
- package/corpus/core/blueprints/provider/stripe.md +1 -1
- package/corpus/core/blueprints/sandbox/docker.md +1 -1
- package/corpus/core/package.json +6 -5
- package/corpus/core/src/agent/run-manager.ts +23 -2
- package/corpus/core/src/agent/run-store.ts +2 -2
- package/corpus/core/src/cli/add.ts +1 -1
- package/corpus/core/src/cli/create.ts +8 -3
- package/corpus/core/src/cli/index.ts +5 -4
- package/corpus/core/src/client/extensions/ExtensionSlot.tsx +7 -0
- package/corpus/core/src/client/session-replay.ts +97 -3
- package/corpus/core/src/jobs/scheduler.ts +30 -1
- package/corpus/core/src/localization/default-messages.ts +21 -0
- package/corpus/core/src/templates/default/app/i18n/ar-SA.ts +21 -0
- package/corpus/core/src/templates/default/app/i18n/de-DE.ts +21 -0
- package/corpus/core/src/templates/default/app/i18n/en-US.ts +21 -0
- package/corpus/core/src/templates/default/app/i18n/es-ES.ts +21 -0
- package/corpus/core/src/templates/default/app/i18n/fr-FR.ts +21 -0
- package/corpus/core/src/templates/default/app/i18n/hi-IN.ts +20 -0
- package/corpus/core/src/templates/default/app/i18n/ja-JP.ts +21 -0
- package/corpus/core/src/templates/default/app/i18n/ko-KR.ts +20 -0
- package/corpus/core/src/templates/default/app/i18n/pt-BR.ts +21 -0
- package/corpus/core/src/templates/default/app/i18n/zh-CN.ts +20 -0
- package/corpus/core/src/templates/default/app/i18n/zh-TW.ts +19 -0
- package/corpus/core/src/templates/default/package.json +2 -2
- package/corpus/core/src/templates/headless/package.json +3 -3
- package/corpus/core/src/templates/workspace-core/package.json +6 -6
- package/corpus/core/src/templates/workspace-root/package.json +2 -2
- package/corpus/core/src/triggers/dispatcher.ts +30 -2
- package/corpus/core/src/vite/client.ts +96 -1
- package/corpus/templates/analytics/.agents/skills/session-replay/SKILL.md +21 -2
- package/corpus/templates/analytics/app/global.css +26 -10
- package/corpus/templates/analytics/app/i18n/zh-TW.ts +2 -0
- package/corpus/templates/analytics/app/i18n-data.ts +25 -0
- package/corpus/templates/analytics/app/pages/sessions/SessionDetailPage.tsx +548 -237
- package/corpus/templates/analytics/app/pages/sessions/SessionDevToolsPanel.tsx +285 -294
- package/corpus/templates/analytics/changelog/2026-07-08-console-details-expand-inline-under-each-row-and-the-event-t.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-08-session-replay-clamps-ultra-wide-viewports-while-keeping-the.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-08-session-replay-keeps-a-usable-stage-when-dev-tools-is-open-a.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-08-session-replay-resumes-after-scrubbing-and-expands-console-r.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-08-session-replays-wait-for-full-load-keep-a-normal-viewport-an.md +6 -0
- package/corpus/templates/analytics/package.json +2 -2
- package/corpus/templates/assets/package.json +2 -2
- package/corpus/templates/brain/package.json +2 -2
- package/corpus/templates/calendar/AGENTS.md +10 -0
- package/corpus/templates/calendar/actions/create-event.ts +5 -1
- package/corpus/templates/calendar/actions/event-action-helpers.ts +41 -0
- package/corpus/templates/calendar/actions/get-attendee-timezones.ts +28 -0
- package/corpus/templates/calendar/actions/set-attendee-timezone.ts +68 -0
- package/corpus/templates/calendar/app/components/calendar/EventAttendeesSection.tsx +150 -11
- package/corpus/templates/calendar/app/components/calendar/EventDetailPanel.tsx +36 -1
- package/corpus/templates/calendar/app/components/calendar/EventDetailPopover.tsx +32 -0
- package/corpus/templates/calendar/app/hooks/use-attendee-timezones.ts +24 -0
- package/corpus/templates/calendar/app/i18n/zh-TW.ts +2 -0
- package/corpus/templates/calendar/app/i18n-data.ts +20 -0
- package/corpus/templates/calendar/app/lib/attendee-local-time.ts +122 -0
- package/corpus/templates/calendar/changelog/2026-07-08-event-details-now-support-extension-widgets-and-you-can-see-.md +6 -0
- package/corpus/templates/calendar/changelog/2026-07-08-when-you-invite-guests-to-a-new-event-you-now-appear-in.md +6 -0
- package/corpus/templates/calendar/package.json +2 -2
- package/corpus/templates/calendar/server/handlers/events.ts +5 -1
- package/corpus/templates/calendar/shared/api.ts +6 -0
- package/corpus/templates/chat/package.json +2 -2
- package/corpus/templates/clips/.agents/skills/meetings/SKILL.md +6 -2
- package/corpus/templates/clips/actions/create-meeting.ts +8 -3
- package/corpus/templates/clips/actions/list-meetings.ts +31 -3
- package/corpus/templates/clips/changelog/2026-07-08-after-finishing-a-desktop-recording-reopening-clips-restor.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-08-clips-now-pops-up-to-take-notes-when-you-join-an-adhoc-zoom-.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-08-desktop-clip-recordings-are-louder-after-capture-mic-only.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-08-meeting-reminders-now-appear-1-minute-before-start-stay-unti.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-08-the-desktop-meetings-panel-has-room-for-its-drop-shadow-and-.md +6 -0
- package/corpus/templates/clips/chrome-extension/package.json +2 -2
- package/corpus/templates/clips/desktop/package.json +2 -2
- package/corpus/templates/clips/desktop/src/app.tsx +91 -34
- package/corpus/templates/clips/desktop/src/hooks/useMeetingTranscription.ts +15 -5
- package/corpus/templates/clips/desktop/src/lib/meeting-notification-timing.ts +83 -0
- package/corpus/templates/clips/desktop/src/lib/native-recording-warm.ts +21 -0
- package/corpus/templates/clips/desktop/src/lib/recorder.ts +98 -20
- package/corpus/templates/clips/desktop/src/overlays/meeting-notification.tsx +174 -50
- package/corpus/templates/clips/desktop/src/styles.css +128 -53
- package/corpus/templates/clips/desktop/src-tauri/src/adhoc_meetings_watcher.rs +364 -0
- package/corpus/templates/clips/desktop/src-tauri/src/clips/mod.rs +1 -1
- package/corpus/templates/clips/desktop/src-tauri/src/lib.rs +5 -0
- package/corpus/templates/clips/desktop/src-tauri/src/meetings_watcher.rs +91 -11
- package/corpus/templates/clips/desktop/src-tauri/src/native_screen.rs +69 -19
- package/corpus/templates/clips/desktop/src-tauri/src/native_speech.rs +36 -1
- package/corpus/templates/clips/desktop/src-tauri/src/notifications.rs +62 -10
- package/corpus/templates/clips/desktop/src-tauri/src/silence_detector.rs +1 -24
- package/corpus/templates/clips/desktop/src-tauri/src/util.rs +36 -1
- package/corpus/templates/clips/package.json +2 -2
- package/corpus/templates/content/actions/_content-database-personal-view.ts +80 -0
- package/corpus/templates/content/actions/get-content-database-personal-view.ts +27 -0
- package/corpus/templates/content/actions/update-content-database-personal-view.ts +31 -0
- package/corpus/templates/content/actions/update-content-database-view.ts +3 -0
- package/corpus/templates/content/app/components/editor/DocumentProperties.tsx +1 -1
- package/corpus/templates/content/app/components/editor/database/DatabaseView.tsx +2584 -546
- package/corpus/templates/content/app/components/editor/database/filter-sort.ts +220 -18
- package/corpus/templates/content/app/hooks/use-content-database.ts +32 -0
- package/corpus/templates/content/app/i18n/zh-TW.ts +16 -0
- package/corpus/templates/content/app/i18n-data.ts +154 -0
- package/corpus/templates/content/changelog/2026-07-08-database-filters-now-support-notion-style-reset-save-for-eve.md +6 -0
- package/corpus/templates/content/changelog/2026-07-08-date-filters-can-now-target-a-between-range.md +6 -0
- package/corpus/templates/content/package.json +2 -2
- package/corpus/templates/content/parity/matrix.md +1 -1
- package/corpus/templates/content/parity/matrix.ts +2 -0
- package/corpus/templates/content/shared/api.ts +24 -0
- package/corpus/templates/design/package.json +2 -2
- package/corpus/templates/dispatch/app/i18n/zh-TW.ts +34 -1
- package/corpus/templates/dispatch/app/i18n-data.ts +387 -10
- package/corpus/templates/dispatch/app/routes/automations.tsx +1 -0
- package/corpus/templates/dispatch/changelog/2026-07-08-added-an-automations-page-to-review-pause-and-create.md +6 -0
- package/corpus/templates/dispatch/changelog/2026-07-08-destinations-now-shows-outbound-delivery-queue-health.md +6 -0
- package/corpus/templates/dispatch/package.json +2 -2
- package/corpus/templates/forms/package.json +2 -2
- package/corpus/templates/macros/package.json +2 -2
- package/corpus/templates/mail/app/hooks/use-emails.ts +56 -44
- package/corpus/templates/mail/app/lib/gmail-mutation-queue.ts +325 -0
- package/corpus/templates/mail/changelog/2026-07-08-rapid-archive-and-mark-read-now-batch-gmail-updates-so-the-i.md +6 -0
- package/corpus/templates/mail/package.json +2 -2
- package/corpus/templates/plan/package.json +2 -2
- package/corpus/templates/slides/app/components/editor/ImageDropPromptPopover.tsx +46 -29
- package/corpus/templates/slides/app/context/DeckContext.tsx +45 -18
- package/corpus/templates/slides/app/i18n/ar-SA.ts +4 -0
- package/corpus/templates/slides/app/i18n/de-DE.ts +4 -0
- package/corpus/templates/slides/app/i18n/en-US.ts +4 -0
- package/corpus/templates/slides/app/i18n/es-ES.ts +4 -0
- package/corpus/templates/slides/app/i18n/fr-FR.ts +4 -0
- package/corpus/templates/slides/app/i18n/hi-IN.ts +4 -0
- package/corpus/templates/slides/app/i18n/ja-JP.ts +4 -0
- package/corpus/templates/slides/app/i18n/ko-KR.ts +4 -0
- package/corpus/templates/slides/app/i18n/pt-BR.ts +4 -0
- package/corpus/templates/slides/app/i18n/zh-CN.ts +4 -0
- package/corpus/templates/slides/app/i18n/zh-TW.ts +4 -0
- package/corpus/templates/slides/app/lib/image-drop-to-agent.ts +115 -0
- package/corpus/templates/slides/app/pages/DeckEditor.tsx +22 -13
- package/corpus/templates/slides/changelog/2026-07-08-dropping-an-image-onto-a-slide-and-sending-it-to-the-agent-w.md +6 -0
- package/corpus/templates/slides/changelog/2026-07-08-undo-works-after-the-agent-edits-a-slide-so-you-can-reverse.md +6 -0
- package/corpus/templates/slides/package.json +2 -2
- package/dist/agent/run-manager.d.ts.map +1 -1
- package/dist/agent/run-manager.js +23 -2
- package/dist/agent/run-manager.js.map +1 -1
- package/dist/agent/run-store.js +2 -2
- package/dist/agent/run-store.js.map +1 -1
- package/dist/catalog.json +2 -2
- package/dist/cli/add.js +1 -1
- package/dist/cli/add.js.map +1 -1
- package/dist/cli/create.d.ts.map +1 -1
- package/dist/cli/create.js +8 -3
- package/dist/cli/create.js.map +1 -1
- package/dist/cli/index.js +5 -4
- package/dist/cli/index.js.map +1 -1
- package/dist/client/extensions/ExtensionSlot.js +6 -0
- package/dist/client/extensions/ExtensionSlot.js.map +1 -1
- package/dist/client/session-replay.d.ts +8 -0
- package/dist/client/session-replay.d.ts.map +1 -1
- package/dist/client/session-replay.js +80 -3
- package/dist/client/session-replay.js.map +1 -1
- package/dist/collab/struct-routes.d.ts +1 -1
- package/dist/file-upload/actions/upload-image.d.ts +1 -1
- package/dist/jobs/scheduler.js +26 -1
- package/dist/jobs/scheduler.js.map +1 -1
- package/dist/localization/default-messages.d.ts +19 -0
- package/dist/localization/default-messages.d.ts.map +1 -1
- package/dist/localization/default-messages.js +19 -0
- package/dist/localization/default-messages.js.map +1 -1
- package/dist/provider-api/corpus-jobs.d.ts +2 -2
- package/dist/resources/handlers.d.ts +2 -2
- package/dist/templates/default/app/i18n/ar-SA.ts +21 -0
- package/dist/templates/default/app/i18n/de-DE.ts +21 -0
- package/dist/templates/default/app/i18n/en-US.ts +21 -0
- package/dist/templates/default/app/i18n/es-ES.ts +21 -0
- package/dist/templates/default/app/i18n/fr-FR.ts +21 -0
- package/dist/templates/default/app/i18n/hi-IN.ts +20 -0
- package/dist/templates/default/app/i18n/ja-JP.ts +21 -0
- package/dist/templates/default/app/i18n/ko-KR.ts +20 -0
- package/dist/templates/default/app/i18n/pt-BR.ts +21 -0
- package/dist/templates/default/app/i18n/zh-CN.ts +20 -0
- package/dist/templates/default/app/i18n/zh-TW.ts +19 -0
- package/dist/templates/default/package.json +2 -2
- package/dist/templates/headless/package.json +3 -3
- package/dist/templates/workspace-core/package.json +6 -6
- package/dist/templates/workspace-root/package.json +2 -2
- package/dist/triggers/dispatcher.js +27 -2
- package/dist/triggers/dispatcher.js.map +1 -1
- package/dist/vite/client.d.ts.map +1 -1
- package/dist/vite/client.js +70 -1
- package/dist/vite/client.js.map +1 -1
- package/package.json +7 -6
- package/src/templates/default/app/i18n/ar-SA.ts +21 -0
- package/src/templates/default/app/i18n/de-DE.ts +21 -0
- package/src/templates/default/app/i18n/en-US.ts +21 -0
- package/src/templates/default/app/i18n/es-ES.ts +21 -0
- package/src/templates/default/app/i18n/fr-FR.ts +21 -0
- package/src/templates/default/app/i18n/hi-IN.ts +20 -0
- package/src/templates/default/app/i18n/ja-JP.ts +21 -0
- package/src/templates/default/app/i18n/ko-KR.ts +20 -0
- package/src/templates/default/app/i18n/pt-BR.ts +21 -0
- package/src/templates/default/app/i18n/zh-CN.ts +20 -0
- package/src/templates/default/app/i18n/zh-TW.ts +19 -0
- package/src/templates/default/package.json +2 -2
- package/src/templates/headless/package.json +3 -3
- package/src/templates/workspace-core/package.json +6 -6
- package/src/templates/workspace-root/package.json +2 -2
|
@@ -77,7 +77,6 @@
|
|
|
77
77
|
"@types/node": "^24.2.1",
|
|
78
78
|
"@types/react": "catalog:",
|
|
79
79
|
"@types/react-dom": "catalog:",
|
|
80
|
-
"@typescript/native-preview": "catalog:",
|
|
81
80
|
"@xterm/addon-fit": "^0.11.0",
|
|
82
81
|
"@xterm/addon-web-links": "^0.12.0",
|
|
83
82
|
"@xterm/xterm": "^6.0.0",
|
|
@@ -100,7 +99,8 @@
|
|
|
100
99
|
"tailwind-merge": "^3.5.0",
|
|
101
100
|
"tailwindcss": "catalog:",
|
|
102
101
|
"tsx": "^4.20.3",
|
|
103
|
-
"typescript": "
|
|
102
|
+
"typescript": "catalog:",
|
|
103
|
+
"typescript-7": "catalog:",
|
|
104
104
|
"vaul": "^1.1.2",
|
|
105
105
|
"vite": "catalog:",
|
|
106
106
|
"vitest": "catalog:"
|
|
@@ -22,9 +22,15 @@ const messages = {
|
|
|
22
22
|
workspaceDescription: "管理 Dispatch 的團隊存取權限和共用工作區資源。",
|
|
23
23
|
openTeamSettings: "開啟團隊設定",
|
|
24
24
|
openResourceSettings: "開啟資源設定",
|
|
25
|
+
automationsTitle: "自動化",
|
|
26
|
+
automationsDescription: "檢視、暫停並建立排程或事件觸發的工作。",
|
|
27
|
+
openAutomations: "開啟自動化",
|
|
28
|
+
deliveryTitle: "投遞",
|
|
29
|
+
deliveryDescription: "管理訊息目的地並查看出站投遞佇列。",
|
|
30
|
+
openDelivery: "開啟投遞",
|
|
25
31
|
agentTitle: "代理設定",
|
|
26
32
|
agentDescription:
|
|
27
|
-
"開啟代理側邊欄設定,管理模型、API
|
|
33
|
+
"開啟代理側邊欄設定,管理模型、API 金鑰、語音和其他代理控制項。排程與事件觸發的工作請使用自動化頁面。",
|
|
28
34
|
openAgentSettings: "開啟代理設定",
|
|
29
35
|
},
|
|
30
36
|
integrations: {
|
|
@@ -191,6 +197,33 @@ const messages = {
|
|
|
191
197
|
onboardingDescription:
|
|
192
198
|
"Dispatch 管理共用提供者帳戶。每個應用管理自己如何使用該帳戶。",
|
|
193
199
|
},
|
|
200
|
+
dispatch: {
|
|
201
|
+
nav: {
|
|
202
|
+
automations: "自動化",
|
|
203
|
+
approvals: "核准",
|
|
204
|
+
delivery: "投遞",
|
|
205
|
+
agents: "代理",
|
|
206
|
+
vault: "保管庫",
|
|
207
|
+
audit: "稽核",
|
|
208
|
+
},
|
|
209
|
+
pages: {
|
|
210
|
+
also: "還有",
|
|
211
|
+
workspaceShortcutsAria: "工作區快捷入口",
|
|
212
|
+
deliveryQueue: "投遞佇列",
|
|
213
|
+
failedLastHour: "過去一小時失敗 {{count}} 次",
|
|
214
|
+
processingCount: "{{count}} 個處理中",
|
|
215
|
+
queued: "排隊中",
|
|
216
|
+
active: "進行中",
|
|
217
|
+
done1h: "完成 1 小時",
|
|
218
|
+
failed1h: "失敗 1 小時",
|
|
219
|
+
oldestQueued: "最早排隊:{{age}}",
|
|
220
|
+
queueAgeNone: "無",
|
|
221
|
+
queueFailureHint: "請檢查憑證、目的地和最近的佇列錯誤。",
|
|
222
|
+
unknownPlatform: "未知",
|
|
223
|
+
attemptsCount: "{{count}} 次嘗試",
|
|
224
|
+
noErrorMessage: "(無錯誤訊息)",
|
|
225
|
+
},
|
|
226
|
+
},
|
|
194
227
|
};
|
|
195
228
|
|
|
196
229
|
export default messages;
|
|
@@ -28,9 +28,17 @@ const enUS = {
|
|
|
28
28
|
"Manage team access and shared workspace resources for Dispatch.",
|
|
29
29
|
openTeamSettings: "Open team settings",
|
|
30
30
|
openResourceSettings: "Open resource settings",
|
|
31
|
+
automationsTitle: "Automations",
|
|
32
|
+
automationsDescription:
|
|
33
|
+
"Review, pause, and create scheduled or event-triggered jobs.",
|
|
34
|
+
openAutomations: "Open automations",
|
|
35
|
+
deliveryTitle: "Delivery",
|
|
36
|
+
deliveryDescription:
|
|
37
|
+
"Manage message destinations and check the outbound delivery queue.",
|
|
38
|
+
openDelivery: "Open delivery",
|
|
31
39
|
agentTitle: "Agent settings",
|
|
32
40
|
agentDescription:
|
|
33
|
-
"Open the agent sidebar settings for model, API keys,
|
|
41
|
+
"Open the agent sidebar settings for model, API keys, voice, and other agent controls. Use the Automations page for scheduled and event-triggered jobs.",
|
|
34
42
|
openAgentSettings: "Open agent settings",
|
|
35
43
|
},
|
|
36
44
|
integrations: {
|
|
@@ -206,6 +214,34 @@ const enUS = {
|
|
|
206
214
|
onboardingDescription:
|
|
207
215
|
"Dispatch owns shared provider accounts. Each app owns how it uses the account.",
|
|
208
216
|
},
|
|
217
|
+
dispatch: {
|
|
218
|
+
nav: {
|
|
219
|
+
automations: "Automations",
|
|
220
|
+
approvals: "Approvals",
|
|
221
|
+
delivery: "Delivery",
|
|
222
|
+
agents: "Agents",
|
|
223
|
+
vault: "Vault",
|
|
224
|
+
audit: "Audit",
|
|
225
|
+
},
|
|
226
|
+
pages: {
|
|
227
|
+
also: "Also",
|
|
228
|
+
workspaceShortcutsAria: "Workspace shortcuts",
|
|
229
|
+
deliveryQueue: "Delivery queue",
|
|
230
|
+
failedLastHour: "{{count}} failed in the last hour",
|
|
231
|
+
processingCount: "{{count}} processing",
|
|
232
|
+
queued: "Queued",
|
|
233
|
+
active: "Active",
|
|
234
|
+
done1h: "Done 1h",
|
|
235
|
+
failed1h: "Failed 1h",
|
|
236
|
+
oldestQueued: "Oldest queued: {{age}}",
|
|
237
|
+
queueAgeNone: "none",
|
|
238
|
+
queueFailureHint:
|
|
239
|
+
"Check credentials, destinations, and recent queue errors.",
|
|
240
|
+
unknownPlatform: "unknown",
|
|
241
|
+
attemptsCount: "{{count}} attempts",
|
|
242
|
+
noErrorMessage: "(no error message)",
|
|
243
|
+
},
|
|
244
|
+
},
|
|
209
245
|
};
|
|
210
246
|
|
|
211
247
|
type Messages = typeof enUS;
|
|
@@ -238,6 +274,21 @@ function mergeMessages(overrides: PartialMessages): Messages {
|
|
|
238
274
|
...overrides.integrations?.time,
|
|
239
275
|
},
|
|
240
276
|
},
|
|
277
|
+
dispatch: {
|
|
278
|
+
...enUS.dispatch,
|
|
279
|
+
...overrides.dispatch,
|
|
280
|
+
nav: {
|
|
281
|
+
...enUS.dispatch.nav,
|
|
282
|
+
...(overrides.dispatch as { nav?: Record<string, string> } | undefined)
|
|
283
|
+
?.nav,
|
|
284
|
+
},
|
|
285
|
+
pages: {
|
|
286
|
+
...enUS.dispatch.pages,
|
|
287
|
+
...(
|
|
288
|
+
overrides.dispatch as { pages?: Record<string, string> } | undefined
|
|
289
|
+
)?.pages,
|
|
290
|
+
},
|
|
291
|
+
},
|
|
241
292
|
};
|
|
242
293
|
}
|
|
243
294
|
|
|
@@ -268,9 +319,15 @@ export const messagesByLocale = {
|
|
|
268
319
|
workspaceDescription: "管理 Dispatch 的团队访问权限和共享工作区资源。",
|
|
269
320
|
openTeamSettings: "打开团队设置",
|
|
270
321
|
openResourceSettings: "打开资源设置",
|
|
322
|
+
automationsTitle: "自动化",
|
|
323
|
+
automationsDescription: "查看、暂停并创建定时或事件触发的任务。",
|
|
324
|
+
openAutomations: "打开自动化",
|
|
325
|
+
deliveryTitle: "投递",
|
|
326
|
+
deliveryDescription: "管理消息目的地并查看出站投递队列。",
|
|
327
|
+
openDelivery: "打开投递",
|
|
271
328
|
agentTitle: "代理设置",
|
|
272
329
|
agentDescription:
|
|
273
|
-
"打开代理侧边栏设置,管理模型、API
|
|
330
|
+
"打开代理侧边栏设置,管理模型、API 密钥、语音和其他代理控制项。定时与事件触发的任务请使用自动化页面。",
|
|
274
331
|
openAgentSettings: "打开代理设置",
|
|
275
332
|
},
|
|
276
333
|
integrations: {
|
|
@@ -439,6 +496,34 @@ export const messagesByLocale = {
|
|
|
439
496
|
onboardingDescription:
|
|
440
497
|
"Dispatch 管理共享提供商账户。每个应用管理自己如何使用该账户。",
|
|
441
498
|
},
|
|
499
|
+
|
|
500
|
+
dispatch: {
|
|
501
|
+
nav: {
|
|
502
|
+
automations: "自动化",
|
|
503
|
+
approvals: "批准",
|
|
504
|
+
delivery: "投递",
|
|
505
|
+
agents: "代理",
|
|
506
|
+
vault: "保险库",
|
|
507
|
+
audit: "审计",
|
|
508
|
+
},
|
|
509
|
+
pages: {
|
|
510
|
+
also: "还有",
|
|
511
|
+
workspaceShortcutsAria: "工作区快捷入口",
|
|
512
|
+
deliveryQueue: "投递队列",
|
|
513
|
+
failedLastHour: "过去一小时失败 {{count}} 次",
|
|
514
|
+
processingCount: "{{count}} 个处理中",
|
|
515
|
+
queued: "排队中",
|
|
516
|
+
active: "进行中",
|
|
517
|
+
done1h: "完成 1 小时",
|
|
518
|
+
failed1h: "失败 1 小时",
|
|
519
|
+
oldestQueued: "最早排队:{{age}}",
|
|
520
|
+
queueAgeNone: "无",
|
|
521
|
+
queueFailureHint: "请检查凭据、目的地和最近的队列错误。",
|
|
522
|
+
unknownPlatform: "未知",
|
|
523
|
+
attemptsCount: "{{count}} 次尝试",
|
|
524
|
+
noErrorMessage: "(无错误消息)",
|
|
525
|
+
},
|
|
526
|
+
},
|
|
442
527
|
}),
|
|
443
528
|
"es-ES": mergeMessages({
|
|
444
529
|
routeTitles: {
|
|
@@ -467,9 +552,17 @@ export const messagesByLocale = {
|
|
|
467
552
|
"Gestiona el acceso del equipo y los recursos compartidos de Dispatch.",
|
|
468
553
|
openTeamSettings: "Abrir ajustes del equipo",
|
|
469
554
|
openResourceSettings: "Abrir ajustes de recursos",
|
|
555
|
+
automationsTitle: "Automatizaciones",
|
|
556
|
+
automationsDescription:
|
|
557
|
+
"Revisa, pausa y crea trabajos programados o activados por eventos.",
|
|
558
|
+
openAutomations: "Abrir automatizaciones",
|
|
559
|
+
deliveryTitle: "Entrega",
|
|
560
|
+
deliveryDescription:
|
|
561
|
+
"Gestiona destinos de mensajes y revisa la cola de entrega saliente.",
|
|
562
|
+
openDelivery: "Abrir entrega",
|
|
470
563
|
agentTitle: "Ajustes del agente",
|
|
471
564
|
agentDescription:
|
|
472
|
-
"Abre los ajustes del agente en la barra lateral para modelos, claves API,
|
|
565
|
+
"Abre los ajustes del agente en la barra lateral para modelos, claves API, voz y otros controles. Usa la página de Automatizaciones para trabajos programados y activados por eventos.",
|
|
473
566
|
openAgentSettings: "Abrir ajustes del agente",
|
|
474
567
|
},
|
|
475
568
|
integrations: {
|
|
@@ -658,6 +751,35 @@ export const messagesByLocale = {
|
|
|
658
751
|
onboardingDescription:
|
|
659
752
|
"Dispatch posee las cuentas compartidas de proveedores. Cada app posee cómo usa la cuenta.",
|
|
660
753
|
},
|
|
754
|
+
|
|
755
|
+
dispatch: {
|
|
756
|
+
nav: {
|
|
757
|
+
automations: "Automatizaciones",
|
|
758
|
+
approvals: "Aprobaciones",
|
|
759
|
+
delivery: "Entrega",
|
|
760
|
+
agents: "Agentes",
|
|
761
|
+
vault: "Bóveda",
|
|
762
|
+
audit: "Auditoría",
|
|
763
|
+
},
|
|
764
|
+
pages: {
|
|
765
|
+
also: "También",
|
|
766
|
+
workspaceShortcutsAria: "Accesos directos del espacio de trabajo",
|
|
767
|
+
deliveryQueue: "Cola de entrega",
|
|
768
|
+
failedLastHour: "{{count}} fallos en la última hora",
|
|
769
|
+
processingCount: "{{count}} en proceso",
|
|
770
|
+
queued: "En cola",
|
|
771
|
+
active: "Activo",
|
|
772
|
+
done1h: "Hecho 1 h",
|
|
773
|
+
failed1h: "Fallido 1 h",
|
|
774
|
+
oldestQueued: "Más antiguo en cola: {{age}}",
|
|
775
|
+
queueAgeNone: "ninguno",
|
|
776
|
+
queueFailureHint:
|
|
777
|
+
"Revisa las credenciales, los destinos y los errores recientes de la cola.",
|
|
778
|
+
unknownPlatform: "desconocido",
|
|
779
|
+
attemptsCount: "{{count}} intentos",
|
|
780
|
+
noErrorMessage: "(sin mensaje de error)",
|
|
781
|
+
},
|
|
782
|
+
},
|
|
661
783
|
}),
|
|
662
784
|
"fr-FR": mergeMessages({
|
|
663
785
|
routeTitles: {
|
|
@@ -686,9 +808,17 @@ export const messagesByLocale = {
|
|
|
686
808
|
"Gérez l’accès de l’équipe et les ressources partagées de Dispatch.",
|
|
687
809
|
openTeamSettings: "Ouvrir les paramètres d’équipe",
|
|
688
810
|
openResourceSettings: "Ouvrir les paramètres des ressources",
|
|
811
|
+
automationsTitle: "Automatisations",
|
|
812
|
+
automationsDescription:
|
|
813
|
+
"Consultez, mettez en pause et créez des tâches planifiées ou déclenchées par des événements.",
|
|
814
|
+
openAutomations: "Ouvrir les automatisations",
|
|
815
|
+
deliveryTitle: "Livraison",
|
|
816
|
+
deliveryDescription:
|
|
817
|
+
"Gérez les destinations de messages et consultez la file d’attente sortante.",
|
|
818
|
+
openDelivery: "Ouvrir la livraison",
|
|
689
819
|
agentTitle: "Paramètres de l’agent",
|
|
690
820
|
agentDescription:
|
|
691
|
-
"Ouvrez les paramètres de l’agent dans la barre latérale pour les modèles, clés API,
|
|
821
|
+
"Ouvrez les paramètres de l’agent dans la barre latérale pour les modèles, clés API, voix et autres contrôles. Utilisez la page Automatisations pour les tâches planifiées et déclenchées par des événements.",
|
|
692
822
|
openAgentSettings: "Ouvrir les paramètres de l’agent",
|
|
693
823
|
},
|
|
694
824
|
integrations: {
|
|
@@ -877,6 +1007,35 @@ export const messagesByLocale = {
|
|
|
877
1007
|
onboardingDescription:
|
|
878
1008
|
"Dispatch possède les comptes fournisseurs partagés. Chaque app possède la façon dont elle utilise le compte.",
|
|
879
1009
|
},
|
|
1010
|
+
|
|
1011
|
+
dispatch: {
|
|
1012
|
+
nav: {
|
|
1013
|
+
automations: "Automatisations",
|
|
1014
|
+
approvals: "Approbations",
|
|
1015
|
+
delivery: "Livraison",
|
|
1016
|
+
agents: "Agents",
|
|
1017
|
+
vault: "Coffre",
|
|
1018
|
+
audit: "Audit",
|
|
1019
|
+
},
|
|
1020
|
+
pages: {
|
|
1021
|
+
also: "Aussi",
|
|
1022
|
+
workspaceShortcutsAria: "Raccourcis de l’espace de travail",
|
|
1023
|
+
deliveryQueue: "File de livraison",
|
|
1024
|
+
failedLastHour: "{{count}} échecs au cours de la dernière heure",
|
|
1025
|
+
processingCount: "{{count}} en cours",
|
|
1026
|
+
queued: "En file",
|
|
1027
|
+
active: "Actif",
|
|
1028
|
+
done1h: "Terminé 1 h",
|
|
1029
|
+
failed1h: "Échoué 1 h",
|
|
1030
|
+
oldestQueued: "Plus ancien en file : {{age}}",
|
|
1031
|
+
queueAgeNone: "aucun",
|
|
1032
|
+
queueFailureHint:
|
|
1033
|
+
"Vérifiez les identifiants, les destinations et les erreurs récentes de la file.",
|
|
1034
|
+
unknownPlatform: "inconnu",
|
|
1035
|
+
attemptsCount: "{{count}} tentatives",
|
|
1036
|
+
noErrorMessage: "(aucun message d’erreur)",
|
|
1037
|
+
},
|
|
1038
|
+
},
|
|
880
1039
|
}),
|
|
881
1040
|
"de-DE": mergeMessages({
|
|
882
1041
|
routeTitles: {
|
|
@@ -905,9 +1064,17 @@ export const messagesByLocale = {
|
|
|
905
1064
|
"Verwalte Teamzugriff und gemeinsam genutzte Dispatch-Ressourcen.",
|
|
906
1065
|
openTeamSettings: "Teameinstellungen öffnen",
|
|
907
1066
|
openResourceSettings: "Ressourceneinstellungen öffnen",
|
|
1067
|
+
automationsTitle: "Automatisierungen",
|
|
1068
|
+
automationsDescription:
|
|
1069
|
+
"Geplante oder ereignisgesteuerte Jobs prüfen, pausieren und erstellen.",
|
|
1070
|
+
openAutomations: "Automatisierungen öffnen",
|
|
1071
|
+
deliveryTitle: "Zustellung",
|
|
1072
|
+
deliveryDescription:
|
|
1073
|
+
"Nachrichtenziele verwalten und die ausgehende Zustellungswarteschlange prüfen.",
|
|
1074
|
+
openDelivery: "Zustellung öffnen",
|
|
908
1075
|
agentTitle: "Agent-Einstellungen",
|
|
909
1076
|
agentDescription:
|
|
910
|
-
"Öffne die Agent-Einstellungen in der Seitenleiste für Modell, API-Schlüssel,
|
|
1077
|
+
"Öffne die Agent-Einstellungen in der Seitenleiste für Modell, API-Schlüssel, Sprache und weitere Steuerungen. Für geplante und ereignisgesteuerte Jobs die Automatisierungen-Seite verwenden.",
|
|
911
1078
|
openAgentSettings: "Agent-Einstellungen öffnen",
|
|
912
1079
|
},
|
|
913
1080
|
integrations: {
|
|
@@ -1086,6 +1253,35 @@ export const messagesByLocale = {
|
|
|
1086
1253
|
onboardingDescription:
|
|
1087
1254
|
"Dispatch besitzt gemeinsame Anbieter-Konten. Jede App besitzt, wie sie das Konto verwendet.",
|
|
1088
1255
|
},
|
|
1256
|
+
|
|
1257
|
+
dispatch: {
|
|
1258
|
+
nav: {
|
|
1259
|
+
automations: "Automatisierungen",
|
|
1260
|
+
approvals: "Freigaben",
|
|
1261
|
+
delivery: "Zustellung",
|
|
1262
|
+
agents: "Agenten",
|
|
1263
|
+
vault: "Tresor",
|
|
1264
|
+
audit: "Audit",
|
|
1265
|
+
},
|
|
1266
|
+
pages: {
|
|
1267
|
+
also: "Außerdem",
|
|
1268
|
+
workspaceShortcutsAria: "Workspace-Kurzbefehle",
|
|
1269
|
+
deliveryQueue: "Zustellungswarteschlange",
|
|
1270
|
+
failedLastHour: "{{count}} fehlgeschlagen in der letzten Stunde",
|
|
1271
|
+
processingCount: "{{count}} in Bearbeitung",
|
|
1272
|
+
queued: "Warteschlange",
|
|
1273
|
+
active: "Aktiv",
|
|
1274
|
+
done1h: "Erledigt 1 Std.",
|
|
1275
|
+
failed1h: "Fehlgeschlagen 1 Std.",
|
|
1276
|
+
oldestQueued: "Älteste Warteschlange: {{age}}",
|
|
1277
|
+
queueAgeNone: "keine",
|
|
1278
|
+
queueFailureHint:
|
|
1279
|
+
"Prüfe Anmeldedaten, Ziele und aktuelle Warteschlangenfehler.",
|
|
1280
|
+
unknownPlatform: "unbekannt",
|
|
1281
|
+
attemptsCount: "{{count}} Versuche",
|
|
1282
|
+
noErrorMessage: "(keine Fehlermeldung)",
|
|
1283
|
+
},
|
|
1284
|
+
},
|
|
1089
1285
|
}),
|
|
1090
1286
|
"ja-JP": mergeMessages({
|
|
1091
1287
|
routeTitles: {
|
|
@@ -1113,9 +1309,17 @@ export const messagesByLocale = {
|
|
|
1113
1309
|
"Dispatch のチームアクセスと共有ワークスペースリソースを管理します。",
|
|
1114
1310
|
openTeamSettings: "チーム設定を開く",
|
|
1115
1311
|
openResourceSettings: "リソース設定を開く",
|
|
1312
|
+
automationsTitle: "自動化",
|
|
1313
|
+
automationsDescription:
|
|
1314
|
+
"スケジュールまたはイベント駆動のジョブを確認、一時停止、作成します。",
|
|
1315
|
+
openAutomations: "自動化を開く",
|
|
1316
|
+
deliveryTitle: "配信",
|
|
1317
|
+
deliveryDescription:
|
|
1318
|
+
"メッセージの送信先を管理し、送信キューを確認します。",
|
|
1319
|
+
openDelivery: "配信を開く",
|
|
1116
1320
|
agentTitle: "エージェント設定",
|
|
1117
1321
|
agentDescription:
|
|
1118
|
-
"右サイドバーのエージェント設定を開き、モデル、API
|
|
1322
|
+
"右サイドバーのエージェント設定を開き、モデル、API キー、音声などを管理します。スケジュールおよびイベント駆動のジョブは自動化ページを使用してください。",
|
|
1119
1323
|
openAgentSettings: "エージェント設定を開く",
|
|
1120
1324
|
},
|
|
1121
1325
|
integrations: {
|
|
@@ -1293,6 +1497,35 @@ export const messagesByLocale = {
|
|
|
1293
1497
|
onboardingDescription:
|
|
1294
1498
|
"Dispatch は共有プロバイダーアカウントを管理します。各アプリはそのアカウントの使い方を管理します。",
|
|
1295
1499
|
},
|
|
1500
|
+
|
|
1501
|
+
dispatch: {
|
|
1502
|
+
nav: {
|
|
1503
|
+
automations: "自動化",
|
|
1504
|
+
approvals: "承認",
|
|
1505
|
+
delivery: "配信",
|
|
1506
|
+
agents: "エージェント",
|
|
1507
|
+
vault: "ボールト",
|
|
1508
|
+
audit: "監査",
|
|
1509
|
+
},
|
|
1510
|
+
pages: {
|
|
1511
|
+
also: "その他",
|
|
1512
|
+
workspaceShortcutsAria: "ワークスペースのショートカット",
|
|
1513
|
+
deliveryQueue: "配信キュー",
|
|
1514
|
+
failedLastHour: "過去 1 時間で {{count}} 件失敗",
|
|
1515
|
+
processingCount: "{{count}} 件処理中",
|
|
1516
|
+
queued: "待機中",
|
|
1517
|
+
active: "実行中",
|
|
1518
|
+
done1h: "完了 1h",
|
|
1519
|
+
failed1h: "失敗 1h",
|
|
1520
|
+
oldestQueued: "最古の待機: {{age}}",
|
|
1521
|
+
queueAgeNone: "なし",
|
|
1522
|
+
queueFailureHint:
|
|
1523
|
+
"認証情報、送信先、最近のキューエラーを確認してください。",
|
|
1524
|
+
unknownPlatform: "不明",
|
|
1525
|
+
attemptsCount: "{{count}} 回試行",
|
|
1526
|
+
noErrorMessage: "(エラーメッセージなし)",
|
|
1527
|
+
},
|
|
1528
|
+
},
|
|
1296
1529
|
}),
|
|
1297
1530
|
"ko-KR": mergeMessages({
|
|
1298
1531
|
routeTitles: {
|
|
@@ -1320,9 +1553,17 @@ export const messagesByLocale = {
|
|
|
1320
1553
|
"Dispatch의 팀 접근 권한과 공유 워크스페이스 리소스를 관리합니다.",
|
|
1321
1554
|
openTeamSettings: "팀 설정 열기",
|
|
1322
1555
|
openResourceSettings: "리소스 설정 열기",
|
|
1556
|
+
automationsTitle: "자동화",
|
|
1557
|
+
automationsDescription:
|
|
1558
|
+
"예약 또는 이벤트 트리거 작업을 검토, 일시 중지, 생성합니다.",
|
|
1559
|
+
openAutomations: "자동화 열기",
|
|
1560
|
+
deliveryTitle: "전달",
|
|
1561
|
+
deliveryDescription:
|
|
1562
|
+
"메시지 대상을 관리하고 발신 전달 대기열을 확인합니다.",
|
|
1563
|
+
openDelivery: "전달 열기",
|
|
1323
1564
|
agentTitle: "에이전트 설정",
|
|
1324
1565
|
agentDescription:
|
|
1325
|
-
"오른쪽 사이드바의 에이전트 설정을 열어 모델, API 키,
|
|
1566
|
+
"오른쪽 사이드바의 에이전트 설정을 열어 모델, API 키, 음성 및 기타 제어를 관리합니다. 예약 및 이벤트 트리거 작업은 자동화 페이지를 사용하세요.",
|
|
1326
1567
|
openAgentSettings: "에이전트 설정 열기",
|
|
1327
1568
|
},
|
|
1328
1569
|
integrations: {
|
|
@@ -1497,6 +1738,34 @@ export const messagesByLocale = {
|
|
|
1497
1738
|
onboardingDescription:
|
|
1498
1739
|
"Dispatch는 공유 공급자 계정을 소유합니다. 각 앱은 계정 사용 방식을 소유합니다.",
|
|
1499
1740
|
},
|
|
1741
|
+
|
|
1742
|
+
dispatch: {
|
|
1743
|
+
nav: {
|
|
1744
|
+
automations: "자동화",
|
|
1745
|
+
approvals: "승인",
|
|
1746
|
+
delivery: "전달",
|
|
1747
|
+
agents: "에이전트",
|
|
1748
|
+
vault: "볼트",
|
|
1749
|
+
audit: "감사",
|
|
1750
|
+
},
|
|
1751
|
+
pages: {
|
|
1752
|
+
also: "또한",
|
|
1753
|
+
workspaceShortcutsAria: "워크스페이스 바로가기",
|
|
1754
|
+
deliveryQueue: "전달 대기열",
|
|
1755
|
+
failedLastHour: "지난 1시간 동안 {{count}}건 실패",
|
|
1756
|
+
processingCount: "{{count}}건 처리 중",
|
|
1757
|
+
queued: "대기 중",
|
|
1758
|
+
active: "진행 중",
|
|
1759
|
+
done1h: "완료 1시간",
|
|
1760
|
+
failed1h: "실패 1시간",
|
|
1761
|
+
oldestQueued: "가장 오래된 대기: {{age}}",
|
|
1762
|
+
queueAgeNone: "없음",
|
|
1763
|
+
queueFailureHint: "자격 증명, 대상, 최근 대기열 오류를 확인하세요.",
|
|
1764
|
+
unknownPlatform: "알 수 없음",
|
|
1765
|
+
attemptsCount: "{{count}}회 시도",
|
|
1766
|
+
noErrorMessage: "(오류 메시지 없음)",
|
|
1767
|
+
},
|
|
1768
|
+
},
|
|
1500
1769
|
}),
|
|
1501
1770
|
"pt-BR": mergeMessages({
|
|
1502
1771
|
routeTitles: {
|
|
@@ -1525,9 +1794,17 @@ export const messagesByLocale = {
|
|
|
1525
1794
|
"Gerencie acesso da equipe e recursos compartilhados do Dispatch.",
|
|
1526
1795
|
openTeamSettings: "Abrir configurações da equipe",
|
|
1527
1796
|
openResourceSettings: "Abrir configurações de recursos",
|
|
1797
|
+
automationsTitle: "Automações",
|
|
1798
|
+
automationsDescription:
|
|
1799
|
+
"Revise, pause e crie trabalhos agendados ou acionados por eventos.",
|
|
1800
|
+
openAutomations: "Abrir automações",
|
|
1801
|
+
deliveryTitle: "Entrega",
|
|
1802
|
+
deliveryDescription:
|
|
1803
|
+
"Gerencie destinos de mensagens e verifique a fila de entrega de saída.",
|
|
1804
|
+
openDelivery: "Abrir entrega",
|
|
1528
1805
|
agentTitle: "Configurações do agente",
|
|
1529
1806
|
agentDescription:
|
|
1530
|
-
"Abra as configurações do agente na barra lateral para modelos, chaves de API,
|
|
1807
|
+
"Abra as configurações do agente na barra lateral para modelos, chaves de API, voz e outros controles. Use a página de Automações para trabalhos agendados e acionados por eventos.",
|
|
1531
1808
|
openAgentSettings: "Abrir configurações do agente",
|
|
1532
1809
|
},
|
|
1533
1810
|
integrations: {
|
|
@@ -1712,6 +1989,35 @@ export const messagesByLocale = {
|
|
|
1712
1989
|
onboardingDescription:
|
|
1713
1990
|
"Dispatch possui as contas compartilhadas de provedores. Cada app possui como usa a conta.",
|
|
1714
1991
|
},
|
|
1992
|
+
|
|
1993
|
+
dispatch: {
|
|
1994
|
+
nav: {
|
|
1995
|
+
automations: "Automações",
|
|
1996
|
+
approvals: "Aprovações",
|
|
1997
|
+
delivery: "Entrega",
|
|
1998
|
+
agents: "Agentes",
|
|
1999
|
+
vault: "Cofre",
|
|
2000
|
+
audit: "Auditoria",
|
|
2001
|
+
},
|
|
2002
|
+
pages: {
|
|
2003
|
+
also: "Também",
|
|
2004
|
+
workspaceShortcutsAria: "Atalhos do espaço de trabalho",
|
|
2005
|
+
deliveryQueue: "Fila de entrega",
|
|
2006
|
+
failedLastHour: "{{count}} falhas na última hora",
|
|
2007
|
+
processingCount: "{{count}} em processamento",
|
|
2008
|
+
queued: "Na fila",
|
|
2009
|
+
active: "Ativo",
|
|
2010
|
+
done1h: "Concluído 1 h",
|
|
2011
|
+
failed1h: "Falhou 1 h",
|
|
2012
|
+
oldestQueued: "Mais antigo na fila: {{age}}",
|
|
2013
|
+
queueAgeNone: "nenhum",
|
|
2014
|
+
queueFailureHint:
|
|
2015
|
+
"Verifique credenciais, destinos e erros recentes da fila.",
|
|
2016
|
+
unknownPlatform: "desconhecido",
|
|
2017
|
+
attemptsCount: "{{count}} tentativas",
|
|
2018
|
+
noErrorMessage: "(sem mensagem de erro)",
|
|
2019
|
+
},
|
|
2020
|
+
},
|
|
1715
2021
|
}),
|
|
1716
2022
|
"hi-IN": mergeMessages({
|
|
1717
2023
|
routeTitles: {
|
|
@@ -1738,9 +2044,16 @@ export const messagesByLocale = {
|
|
|
1738
2044
|
"Dispatch के लिए टीम पहुंच और साझा कार्यस्थान संसाधनों को प्रबंधित करें।",
|
|
1739
2045
|
openTeamSettings: "टीम सेटिंग्स खोलें",
|
|
1740
2046
|
openResourceSettings: "संसाधन सेटिंग्स खोलें",
|
|
2047
|
+
automationsTitle: "ऑटोमेशन",
|
|
2048
|
+
automationsDescription:
|
|
2049
|
+
"शेड्यूल या इवेंट-ट्रिगर जॉब्स की समीक्षा करें, रोकें और बनाएं।",
|
|
2050
|
+
openAutomations: "ऑटोमेशन खोलें",
|
|
2051
|
+
deliveryTitle: "डिलीवरी",
|
|
2052
|
+
deliveryDescription: "संदेश गंतव्य प्रबंधित करें और आउटबाउंड डिलीवरी कतार जांचें।",
|
|
2053
|
+
openDelivery: "डिलीवरी खोलें",
|
|
1741
2054
|
agentTitle: "एजेंट सेटिंग्स",
|
|
1742
2055
|
agentDescription:
|
|
1743
|
-
"मॉडल, API कुंजियों,
|
|
2056
|
+
"मॉडल, API कुंजियों, आवाज़ और अन्य एजेंट नियंत्रणों के लिए साइडबार सेटिंग्स खोलें। शेड्यूल और इवेंट-ट्रिगर जॉब्स के लिए ऑटोमेशन पेज का उपयोग करें।",
|
|
1744
2057
|
openAgentSettings: "एजेंट सेटिंग्स खोलें",
|
|
1745
2058
|
},
|
|
1746
2059
|
integrations: {
|
|
@@ -1911,6 +2224,34 @@ export const messagesByLocale = {
|
|
|
1911
2224
|
onboardingDescription:
|
|
1912
2225
|
"Dispatch साझा प्रदाता खातों का स्वामी है। हर ऐप खाते का उपयोग कैसे करता है, यह वही संभालता है।",
|
|
1913
2226
|
},
|
|
2227
|
+
|
|
2228
|
+
dispatch: {
|
|
2229
|
+
nav: {
|
|
2230
|
+
automations: "ऑटोमेशन",
|
|
2231
|
+
approvals: "अनुमोदन",
|
|
2232
|
+
delivery: "डिलीवरी",
|
|
2233
|
+
agents: "एजेंट",
|
|
2234
|
+
vault: "वॉल्ट",
|
|
2235
|
+
audit: "ऑडिट",
|
|
2236
|
+
},
|
|
2237
|
+
pages: {
|
|
2238
|
+
also: "और भी",
|
|
2239
|
+
workspaceShortcutsAria: "कार्यस्थान शॉर्टकट",
|
|
2240
|
+
deliveryQueue: "डिलीवरी कतार",
|
|
2241
|
+
failedLastHour: "पिछले घंटे में {{count}} विफल",
|
|
2242
|
+
processingCount: "{{count}} प्रोसेस हो रहे हैं",
|
|
2243
|
+
queued: "कतार में",
|
|
2244
|
+
active: "सक्रिय",
|
|
2245
|
+
done1h: "पूर्ण 1घं",
|
|
2246
|
+
failed1h: "विफल 1घं",
|
|
2247
|
+
oldestQueued: "सबसे पुराना कतार में: {{age}}",
|
|
2248
|
+
queueAgeNone: "कोई नहीं",
|
|
2249
|
+
queueFailureHint: "क्रेडेंशियल, गंतव्य और हाल की कतार त्रुटियाँ जाँचें।",
|
|
2250
|
+
unknownPlatform: "अज्ञात",
|
|
2251
|
+
attemptsCount: "{{count}} प्रयास",
|
|
2252
|
+
noErrorMessage: "(कोई त्रुटि संदेश नहीं)",
|
|
2253
|
+
},
|
|
2254
|
+
},
|
|
1914
2255
|
}),
|
|
1915
2256
|
"ar-SA": mergeMessages({
|
|
1916
2257
|
routeTitles: {
|
|
@@ -1937,9 +2278,16 @@ export const messagesByLocale = {
|
|
|
1937
2278
|
"إدارة وصول الفريق وموارد مساحة العمل المشتركة في Dispatch.",
|
|
1938
2279
|
openTeamSettings: "فتح إعدادات الفريق",
|
|
1939
2280
|
openResourceSettings: "فتح إعدادات الموارد",
|
|
2281
|
+
automationsTitle: "الأتمتة",
|
|
2282
|
+
automationsDescription: "راجع وأوقف وأنشئ مهامًا مجدولة أو مُشغَّلة بالأحداث.",
|
|
2283
|
+
openAutomations: "فتح الأتمتة",
|
|
2284
|
+
deliveryTitle: "التسليم",
|
|
2285
|
+
deliveryDescription:
|
|
2286
|
+
"إدارة وجهات الرسائل وفحص قائمة انتظار التسليم الصادرة.",
|
|
2287
|
+
openDelivery: "فتح التسليم",
|
|
1940
2288
|
agentTitle: "إعدادات الوكيل",
|
|
1941
2289
|
agentDescription:
|
|
1942
|
-
"افتح إعدادات الوكيل في الشريط الجانبي لإدارة النموذج ومفاتيح API
|
|
2290
|
+
"افتح إعدادات الوكيل في الشريط الجانبي لإدارة النموذج ومفاتيح API والصوت وعناصر التحكم الأخرى. استخدم صفحة الأتمتة للمهام المجدولة والمُشغَّلة بالأحداث.",
|
|
1943
2291
|
openAgentSettings: "فتح إعدادات الوكيل",
|
|
1944
2292
|
},
|
|
1945
2293
|
integrations: {
|
|
@@ -2145,5 +2493,34 @@ export const messagesByLocale = {
|
|
|
2145
2493
|
onboardingDescription:
|
|
2146
2494
|
"يمتلك Dispatch حسابات المزوّدين المشتركة. ويمتلك كل تطبيق طريقة استخدامه للحساب.",
|
|
2147
2495
|
},
|
|
2496
|
+
|
|
2497
|
+
dispatch: {
|
|
2498
|
+
nav: {
|
|
2499
|
+
automations: "الأتمتة",
|
|
2500
|
+
approvals: "الموافقات",
|
|
2501
|
+
delivery: "التسليم",
|
|
2502
|
+
agents: "الوكلاء",
|
|
2503
|
+
vault: "الخزنة",
|
|
2504
|
+
audit: "التدقيق",
|
|
2505
|
+
},
|
|
2506
|
+
pages: {
|
|
2507
|
+
also: "أيضًا",
|
|
2508
|
+
workspaceShortcutsAria: "اختصارات مساحة العمل",
|
|
2509
|
+
deliveryQueue: "قائمة انتظار التسليم",
|
|
2510
|
+
failedLastHour: "{{count}} فشل خلال الساعة الماضية",
|
|
2511
|
+
processingCount: "{{count}} قيد المعالجة",
|
|
2512
|
+
queued: "في الانتظار",
|
|
2513
|
+
active: "نشط",
|
|
2514
|
+
done1h: "تم خلال ساعة",
|
|
2515
|
+
failed1h: "فشل خلال ساعة",
|
|
2516
|
+
oldestQueued: "الأقدم في الانتظار: {{age}}",
|
|
2517
|
+
queueAgeNone: "لا شيء",
|
|
2518
|
+
queueFailureHint:
|
|
2519
|
+
"تحقق من بيانات الاعتماد والوجهات وأخطاء قائمة الانتظار الأخيرة.",
|
|
2520
|
+
unknownPlatform: "غير معروف",
|
|
2521
|
+
attemptsCount: "{{count}} محاولات",
|
|
2522
|
+
noErrorMessage: "(لا توجد رسالة خطأ)",
|
|
2523
|
+
},
|
|
2524
|
+
},
|
|
2148
2525
|
}),
|
|
2149
2526
|
} satisfies Record<LocaleCode, Messages>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default, meta } from "@agent-native/dispatch/routes/pages/automations";
|
|
@@ -34,14 +34,14 @@
|
|
|
34
34
|
"@types/node": "^24.2.1",
|
|
35
35
|
"@types/react": "catalog:",
|
|
36
36
|
"@types/react-dom": "catalog:",
|
|
37
|
-
"@typescript/native-preview": "catalog:",
|
|
38
37
|
"oxfmt": "catalog:",
|
|
39
38
|
"react": "catalog:",
|
|
40
39
|
"react-dom": "catalog:",
|
|
41
40
|
"react-router": "^8.1.0",
|
|
42
41
|
"tailwindcss": "catalog:",
|
|
43
42
|
"tsx": "^4.20.3",
|
|
44
|
-
"typescript": "
|
|
43
|
+
"typescript": "catalog:",
|
|
44
|
+
"typescript-7": "catalog:",
|
|
45
45
|
"vite": "catalog:",
|
|
46
46
|
"vitest": "catalog:"
|
|
47
47
|
}
|