@agent-native/core 0.119.2 → 0.119.4
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 +19 -0
- package/corpus/core/package.json +3 -3
- package/corpus/core/src/agent/production-agent.ts +107 -125
- package/corpus/core/src/agent/run-manager.ts +45 -2
- package/corpus/core/src/agent/thread-data-builder.ts +85 -8
- package/corpus/core/src/cli/create.ts +44 -5
- package/corpus/core/src/client/AssistantChat.tsx +37 -9
- package/corpus/core/src/client/chat/message-components.tsx +9 -1
- package/corpus/core/src/client/chat/repo-helpers.ts +77 -0
- package/corpus/core/src/client/chat/tool-call-display.tsx +51 -15
- package/corpus/core/src/server/agent-chat/framework-prompts.ts +3 -1
- package/corpus/core/src/server/agent-chat/plugin-options.ts +9 -0
- package/corpus/core/src/server/agent-chat-plugin.ts +12 -3
- package/corpus/core/src/templates/chat/.agents/skills/actions/SKILL.md +512 -0
- package/corpus/core/src/templates/chat/.agents/skills/adding-a-feature/SKILL.md +189 -0
- package/corpus/core/src/templates/chat/.agents/skills/agent-native-docs/SKILL.md +115 -0
- package/corpus/core/src/templates/chat/.agents/skills/agent-native-toolkit/SKILL.md +177 -0
- package/corpus/core/src/templates/chat/.agents/skills/capture-learnings/SKILL.md +89 -0
- package/corpus/core/src/templates/chat/.agents/skills/create-skill/SKILL.md +221 -0
- package/corpus/core/src/templates/chat/.agents/skills/customizing-agent-native/SKILL.md +220 -0
- package/corpus/core/src/templates/chat/.agents/skills/delegate-to-agent/SKILL.md +263 -0
- package/corpus/core/src/templates/chat/.agents/skills/feature-flags/SKILL.md +169 -0
- package/corpus/core/src/templates/chat/.agents/skills/frontend-design/SKILL.md +160 -0
- package/corpus/core/src/templates/chat/.agents/skills/real-time-sync/SKILL.md +232 -0
- package/corpus/core/src/templates/chat/.agents/skills/security/SKILL.md +280 -0
- package/corpus/core/src/templates/chat/.agents/skills/self-modifying-code/SKILL.md +118 -0
- package/corpus/core/src/templates/chat/.agents/skills/shadcn-ui/SKILL.md +119 -0
- package/corpus/core/src/templates/chat/.agents/skills/upgrade-agent-native/SKILL.md +100 -0
- package/corpus/core/src/templates/chat/.env.example +5 -0
- package/corpus/core/src/templates/chat/.ignore +0 -0
- package/corpus/core/src/templates/chat/.oxfmtrc.json +8 -0
- package/corpus/core/src/templates/chat/AGENTS.md +69 -0
- package/corpus/core/src/templates/chat/CHANGELOG.md +10 -0
- package/corpus/core/src/templates/chat/DEVELOPING.md +185 -0
- package/corpus/core/src/templates/chat/README.md +32 -0
- package/corpus/core/src/templates/chat/_gitignore +43 -0
- package/corpus/core/src/templates/chat/actions/hello.ts +13 -0
- package/corpus/core/src/templates/chat/actions/navigate.ts +41 -0
- package/corpus/core/src/templates/chat/actions/run.ts +2 -0
- package/corpus/core/src/templates/chat/actions/view-screen.ts +31 -0
- package/corpus/core/src/templates/chat/app/components/layout/Header.tsx +60 -0
- package/corpus/core/src/templates/chat/app/components/layout/Layout.tsx +185 -0
- package/corpus/core/src/templates/chat/app/components/layout/Sidebar.tsx +450 -0
- package/corpus/core/src/templates/chat/app/components/ui/button.tsx +1 -0
- package/corpus/core/src/templates/chat/app/components/ui/card.tsx +1 -0
- package/corpus/core/src/templates/chat/app/components/ui/dropdown-menu.tsx +1 -0
- package/corpus/core/src/templates/chat/app/components/ui/input.tsx +1 -0
- package/corpus/core/src/templates/chat/app/components/ui/label.tsx +1 -0
- package/corpus/core/src/templates/chat/app/components/ui/sheet.tsx +1 -0
- package/corpus/core/src/templates/chat/app/components/ui/toolkit-provider.tsx +17 -0
- package/corpus/core/src/templates/chat/app/components/ui/tooltip.tsx +1 -0
- package/corpus/core/src/templates/chat/app/design-system.ts +3 -0
- package/corpus/core/src/templates/chat/app/entry.client.tsx +19 -0
- package/corpus/core/src/templates/chat/app/entry.server.tsx +10 -0
- package/corpus/core/src/templates/chat/app/global.css +93 -0
- package/corpus/core/src/templates/chat/app/hooks/use-navigation-state.ts +93 -0
- package/corpus/core/src/templates/chat/app/i18n/ar-SA.ts +68 -0
- package/corpus/core/src/templates/chat/app/i18n/de-DE.ts +71 -0
- package/corpus/core/src/templates/chat/app/i18n/en-US.ts +70 -0
- package/corpus/core/src/templates/chat/app/i18n/es-ES.ts +71 -0
- package/corpus/core/src/templates/chat/app/i18n/fr-FR.ts +71 -0
- package/corpus/core/src/templates/chat/app/i18n/hi-IN.ts +69 -0
- package/corpus/core/src/templates/chat/app/i18n/index.ts +34 -0
- package/corpus/core/src/templates/chat/app/i18n/ja-JP.ts +70 -0
- package/corpus/core/src/templates/chat/app/i18n/ko-KR.ts +70 -0
- package/corpus/core/src/templates/chat/app/i18n/pt-BR.ts +71 -0
- package/corpus/core/src/templates/chat/app/i18n/zh-CN.ts +66 -0
- package/corpus/core/src/templates/chat/app/i18n/zh-TW.ts +66 -0
- package/corpus/core/src/templates/chat/app/i18n-data.ts +556 -0
- package/corpus/core/src/templates/chat/app/lib/agent-page.tsx +49 -0
- package/corpus/core/src/templates/chat/app/lib/app-config.ts +11 -0
- package/corpus/core/src/templates/chat/app/lib/tab-id.ts +1 -0
- package/corpus/core/src/templates/chat/app/lib/utils.ts +1 -0
- package/corpus/core/src/templates/chat/app/root.tsx +173 -0
- package/corpus/core/src/templates/chat/app/routes/_index.tsx +94 -0
- package/corpus/core/src/templates/chat/app/routes/agent.tsx +24 -0
- package/corpus/core/src/templates/chat/app/routes/chat.$threadId.tsx +1 -0
- package/corpus/core/src/templates/chat/app/routes/database.tsx +17 -0
- package/corpus/core/src/templates/chat/app/routes/extensions.$id.$slug.tsx +2 -0
- package/corpus/core/src/templates/chat/app/routes/extensions.$id.tsx +11 -0
- package/corpus/core/src/templates/chat/app/routes/extensions._index.tsx +11 -0
- package/corpus/core/src/templates/chat/app/routes/extensions.tsx +5 -0
- package/corpus/core/src/templates/chat/app/routes/observability.tsx +19 -0
- package/corpus/core/src/templates/chat/app/routes/settings.tsx +89 -0
- package/corpus/core/src/templates/chat/app/routes/team.tsx +11 -0
- package/corpus/core/src/templates/chat/app/routes.ts +4 -0
- package/corpus/core/src/templates/chat/app/vite-env.d.ts +6 -0
- package/corpus/core/src/templates/chat/changelog/2026-06-24-a-new-settings-page-gives-quick-access-to-language-workspace.md +6 -0
- package/corpus/core/src/templates/chat/changelog/2026-06-24-added-a-language-picker-and-localized-app-chrome-for-support.md +6 -0
- package/corpus/core/src/templates/chat/changelog/2026-06-27-traditional-chinese-copy-uses-taiwan-terminology.md +6 -0
- package/corpus/core/src/templates/chat/changelog/2026-06-28-left-sidebar-collapse-motion-and-footer-chrome-are-quieter.md +6 -0
- package/corpus/core/src/templates/chat/changelog/2026-06-29-chat-layouts-adapt-when-the-agent-sidebar-is-open.md +6 -0
- package/corpus/core/src/templates/chat/changelog/2026-07-08-settings-are-cleaner-and-searchable.md +5 -0
- package/corpus/core/src/templates/chat/changelog/2026-07-10-chat-now-makes-ai-connection-setup-clear-without-shifting-th.md +6 -0
- package/corpus/core/src/templates/chat/changelog/2026-07-13-a-full-agent-page-now-brings-context-files-connections-jobs-.md +6 -0
- package/corpus/core/src/templates/chat/changelog/2026-07-14-chat-opens-reliably-on-hosted-deployments-instead-of-failing.md +6 -0
- package/corpus/core/src/templates/chat/changelog/2026-07-14-fixed-chat-template-startup-with-older-core-versions.md +6 -0
- package/corpus/core/src/templates/chat/changelog/2026-07-15-chat-navigation-focuses-on-chat-and-agent.md +6 -0
- package/corpus/core/src/templates/chat/changelog/2026-07-17-the-agent-chat-sidebar-stays-closed-until-you-open-it-or-sta.md +6 -0
- package/corpus/core/src/templates/chat/changelog/2026-07-22-compact-sidebar-footer.md +6 -0
- package/corpus/core/src/templates/chat/changelog/2026-07-22-full-page-chat-keeps-the-active-conversation-when-moving-to-.md +6 -0
- package/corpus/core/src/templates/chat/changelog/2026-07-22-manage-agent-navigation-now-uses-the-connected-nodes-icon.md +6 -0
- package/corpus/core/src/templates/chat/changelog/2026-07-22-recent-chats-are-easier-to-scan-and-expand.md +6 -0
- package/corpus/core/src/templates/chat/changelog/2026-07-23-full-page-chat-is-better-centered-with-quieter-chat-history-.md +6 -0
- package/corpus/core/src/templates/chat/components.json +20 -0
- package/corpus/core/src/templates/chat/learnings.defaults.md +5 -0
- package/corpus/core/src/templates/chat/netlify.toml +10 -0
- package/corpus/core/src/templates/chat/package.json +92 -0
- package/corpus/core/src/templates/chat/public/agent-native-icon-dark.svg +10 -0
- package/corpus/core/src/templates/chat/public/agent-native-icon-light.svg +10 -0
- package/corpus/core/src/templates/chat/public/agent-native-logo-dark.svg +21 -0
- package/corpus/core/src/templates/chat/public/agent-native-logo-light.svg +21 -0
- package/corpus/core/src/templates/chat/public/favicon.svg +1 -0
- package/corpus/core/src/templates/chat/public/icon-180.svg +1 -0
- package/corpus/core/src/templates/chat/public/icon-192.svg +1 -0
- package/corpus/core/src/templates/chat/public/icon-512.svg +1 -0
- package/corpus/core/src/templates/chat/public/manifest.json +21 -0
- package/corpus/core/src/templates/chat/react-router.config.ts +7 -0
- package/corpus/core/src/templates/chat/server/middleware/auth.ts +15 -0
- package/corpus/core/src/templates/chat/server/plugins/agent-chat.ts +21 -0
- package/corpus/core/src/templates/chat/server/plugins/auth.ts +17 -0
- package/corpus/core/src/templates/chat/server/routes/[...page].get.ts +5 -0
- package/corpus/core/src/templates/chat/ssr-entry.ts +15 -0
- package/corpus/core/src/templates/chat/tsconfig.json +21 -0
- package/corpus/core/src/templates/chat/vite.config.ts +19 -0
- package/corpus/templates/analytics/AGENTS.md +19 -11
- package/corpus/templates/analytics/actions/list-data-dictionary.ts +3 -1
- package/corpus/templates/analytics/actions/save-data-dictionary-entry.ts +14 -0
- package/corpus/templates/analytics/actions/search-analytics-query-catalog.ts +41 -0
- package/corpus/templates/analytics/app/components/dashboard/DashboardPanelSkeleton.tsx +13 -0
- package/corpus/templates/analytics/app/components/dashboard/SqlChart.tsx +12 -11
- package/corpus/templates/analytics/app/pages/adhoc/DashboardSkeleton.tsx +3 -3
- package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/index.tsx +7 -1
- package/corpus/templates/analytics/app/pages/analyses/AnalysisDetail.tsx +8 -1
- package/corpus/templates/analytics/changelog/2026-07-22-fixed-dashboards-and-analyses-missing-a-copyable-share-link.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-23-dashboard-chart-loading-placeholders-are-easier-to-see-in-da.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-23-routine-analytics-lookups-reuse-existing-query-definitions.md +6 -0
- package/corpus/templates/analytics/server/lib/agent-chat-plan-mode.ts +1 -12
- package/corpus/templates/analytics/server/lib/analytics-query-catalog.ts +405 -0
- package/corpus/templates/analytics/server/plugins/agent-chat.ts +11 -16
- package/corpus/templates/content/changelog/2026-07-23-database-toolbar-sort-and-filter-controls-open-reliably.md +6 -0
- package/corpus/templates/forms/app/lib/public-form-link.ts +14 -0
- package/corpus/templates/forms/app/pages/FormBuilderPage.tsx +6 -14
- package/corpus/templates/forms/changelog/2026-07-23-published-form-links-can-be-copied-without-being-asked-to-re.md +6 -0
- package/corpus/templates/mail/changelog/2026-07-23-scheduled-emails-now-send-only-once-when-multiple-requests-r.md +6 -0
- package/corpus/templates/mail/server/lib/jobs.ts +13 -4
- package/corpus/templates/mail/server/plugins/mail-jobs.ts +1 -1
- package/corpus/templates/slides/app/components/editor/EditorSidebar.tsx +7 -18
- package/corpus/templates/slides/app/lib/agent-visible-message.ts +28 -0
- package/corpus/templates/slides/app/pages/Index.tsx +6 -34
- package/corpus/templates/slides/changelog/2026-07-23-full-prompts-stay-visible-in-chat-when-creating-decks-or-add.md +6 -0
- package/corpus/toolkit/CHANGELOG.md +13 -0
- package/corpus/toolkit/package.json +1 -1
- package/corpus/toolkit/src/editor/SharedRichEditor.tsx +23 -2
- package/corpus/toolkit/src/editor/SlashCommandMenu.tsx +68 -2
- package/corpus/toolkit/src/editor/index.ts +1 -0
- package/corpus/toolkit/src/editor.css +75 -0
- package/corpus/toolkit/src/ui/button.tsx +3 -2
- package/dist/agent/production-agent.d.ts.map +1 -1
- package/dist/agent/production-agent.js +96 -115
- package/dist/agent/production-agent.js.map +1 -1
- package/dist/agent/run-manager.d.ts +9 -1
- package/dist/agent/run-manager.d.ts.map +1 -1
- package/dist/agent/run-manager.js +26 -0
- package/dist/agent/run-manager.js.map +1 -1
- package/dist/agent/thread-data-builder.d.ts +2 -0
- package/dist/agent/thread-data-builder.d.ts.map +1 -1
- package/dist/agent/thread-data-builder.js +69 -9
- package/dist/agent/thread-data-builder.js.map +1 -1
- package/dist/cli/create.d.ts +2 -1
- package/dist/cli/create.d.ts.map +1 -1
- package/dist/cli/create.js +43 -6
- package/dist/cli/create.js.map +1 -1
- package/dist/client/AssistantChat.d.ts.map +1 -1
- package/dist/client/AssistantChat.js +32 -10
- package/dist/client/AssistantChat.js.map +1 -1
- package/dist/client/chat/message-components.d.ts +2 -1
- package/dist/client/chat/message-components.d.ts.map +1 -1
- package/dist/client/chat/message-components.js +9 -3
- package/dist/client/chat/message-components.js.map +1 -1
- package/dist/client/chat/repo-helpers.d.ts +4 -0
- package/dist/client/chat/repo-helpers.d.ts.map +1 -1
- package/dist/client/chat/repo-helpers.js +61 -0
- package/dist/client/chat/repo-helpers.js.map +1 -1
- package/dist/client/chat/tool-call-display.d.ts +2 -1
- package/dist/client/chat/tool-call-display.d.ts.map +1 -1
- package/dist/client/chat/tool-call-display.js +10 -9
- package/dist/client/chat/tool-call-display.js.map +1 -1
- package/dist/collab/awareness.d.ts +2 -2
- package/dist/collab/awareness.d.ts.map +1 -1
- package/dist/collab/routes.d.ts +1 -1
- package/dist/collab/struct-routes.d.ts +1 -1
- package/dist/notifications/routes.d.ts +2 -2
- package/dist/observability/routes.d.ts +3 -3
- package/dist/provider-api/actions/custom-provider-registration.d.ts +7 -7
- package/dist/provider-api/actions/provider-api.d.ts +7 -7
- 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/agent-chat/framework-prompts.d.ts.map +1 -1
- package/dist/server/agent-chat/framework-prompts.js +3 -1
- package/dist/server/agent-chat/framework-prompts.js.map +1 -1
- package/dist/server/agent-chat/plugin-options.d.ts +9 -0
- package/dist/server/agent-chat/plugin-options.d.ts.map +1 -1
- package/dist/server/agent-chat/plugin-options.js.map +1 -1
- package/dist/server/agent-chat-plugin.d.ts.map +1 -1
- package/dist/server/agent-chat-plugin.js +11 -2
- package/dist/server/agent-chat-plugin.js.map +1 -1
- package/dist/server/agent-engine-api-key-route.d.ts +1 -1
- package/dist/server/realtime-token.d.ts +1 -1
- package/dist/server/transcribe-voice.d.ts +1 -1
- package/package.json +4 -4
- package/src/agent/production-agent.ts +107 -125
- package/src/agent/run-manager.ts +45 -2
- package/src/agent/thread-data-builder.ts +85 -8
- package/src/cli/create.ts +44 -5
- package/src/client/AssistantChat.tsx +37 -9
- package/src/client/chat/message-components.tsx +9 -1
- package/src/client/chat/repo-helpers.ts +77 -0
- package/src/client/chat/tool-call-display.tsx +51 -15
- package/src/server/agent-chat/framework-prompts.ts +3 -1
- package/src/server/agent-chat/plugin-options.ts +9 -0
- package/src/server/agent-chat-plugin.ts +12 -3
- package/src/templates/chat/actions/hello.spec.ts +0 -23
- package/src/templates/chat/actions/navigate.spec.ts +0 -68
- package/src/templates/chat/actions/view-screen.spec.ts +0 -40
- package/src/templates/chat/app/lib/agent-page.spec.tsx +0 -61
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { appBasePath, appPath } from "@agent-native/core/client/api-path";
|
|
2
|
+
import { useAgentRouteState } from "@agent-native/core/client/navigation";
|
|
3
|
+
|
|
4
|
+
import { TAB_ID } from "@/lib/tab-id";
|
|
5
|
+
|
|
6
|
+
export interface NavigationState {
|
|
7
|
+
view: string;
|
|
8
|
+
path?: string;
|
|
9
|
+
threadId?: string;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export function useNavigationState() {
|
|
13
|
+
useAgentRouteState<NavigationState>({
|
|
14
|
+
browserTabId: TAB_ID,
|
|
15
|
+
requestSource: TAB_ID,
|
|
16
|
+
getNavigationState: ({ pathname }) => {
|
|
17
|
+
const threadId = threadIdFromPath(pathname);
|
|
18
|
+
return {
|
|
19
|
+
view: viewForPath(pathname),
|
|
20
|
+
path: appPath(pathname),
|
|
21
|
+
...(threadId ? { threadId } : {}),
|
|
22
|
+
};
|
|
23
|
+
},
|
|
24
|
+
getCommandPath: (command) =>
|
|
25
|
+
routerPath(command.path || pathForCommand(command)),
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
function threadIdFromPath(pathname: string): string | null {
|
|
30
|
+
const match = pathname.match(/^\/chat\/([^/]+)/);
|
|
31
|
+
if (!match) return null;
|
|
32
|
+
try {
|
|
33
|
+
const value = decodeURIComponent(match[1]).trim();
|
|
34
|
+
return value || null;
|
|
35
|
+
} catch {
|
|
36
|
+
return null;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
function viewForPath(pathname: string): string {
|
|
41
|
+
if (isChatPath(pathname)) return "chat";
|
|
42
|
+
if (pathname.startsWith("/database")) return "database";
|
|
43
|
+
if (pathname.startsWith("/extensions")) return "extensions";
|
|
44
|
+
if (pathname.startsWith("/observability")) return "observability";
|
|
45
|
+
if (pathname.startsWith("/agent")) return "agent";
|
|
46
|
+
if (pathname.startsWith("/team")) return "settings";
|
|
47
|
+
return "chat";
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
function pathForView(view?: string): string {
|
|
51
|
+
switch (view) {
|
|
52
|
+
case "chat":
|
|
53
|
+
case "home":
|
|
54
|
+
case "ask":
|
|
55
|
+
return "/";
|
|
56
|
+
case "database":
|
|
57
|
+
return "/database";
|
|
58
|
+
case "extensions":
|
|
59
|
+
return "/extensions";
|
|
60
|
+
case "observability":
|
|
61
|
+
return "/observability";
|
|
62
|
+
case "agent":
|
|
63
|
+
return "/agent";
|
|
64
|
+
case "settings":
|
|
65
|
+
return "/settings";
|
|
66
|
+
case "team":
|
|
67
|
+
return "/settings#organization";
|
|
68
|
+
default:
|
|
69
|
+
return "/";
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
function pathForCommand(command: any): string {
|
|
74
|
+
const path = pathForView(command?.view);
|
|
75
|
+
if (path !== "/") return path;
|
|
76
|
+
const threadId =
|
|
77
|
+
typeof command?.threadId === "string" ? command.threadId.trim() : "";
|
|
78
|
+
return threadId ? `/chat/${encodeURIComponent(threadId)}` : "/";
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
function routerPath(path: string): string {
|
|
82
|
+
const basePath = appBasePath();
|
|
83
|
+
if (!basePath) return path;
|
|
84
|
+
if (path === basePath) return "/";
|
|
85
|
+
if (path.startsWith(`${basePath}/`)) {
|
|
86
|
+
return path.slice(basePath.length) || "/";
|
|
87
|
+
}
|
|
88
|
+
return path;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
function isChatPath(pathname: string): boolean {
|
|
92
|
+
return pathname === "/" || pathname.startsWith("/chat/");
|
|
93
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
const messages = {
|
|
2
|
+
settings: {
|
|
3
|
+
title: "الإعدادات",
|
|
4
|
+
description: "تفضيلات اللغة ومساحة العمل لهذا التطبيق.",
|
|
5
|
+
languageTitle: "اللغة",
|
|
6
|
+
languageDescription: "اختر لغة الواجهة. يتم حفظ هذا التفضيل في حسابك.",
|
|
7
|
+
languageLabel: "لغة الواجهة",
|
|
8
|
+
workspaceTitle: "مساحة العمل",
|
|
9
|
+
workspaceDescription:
|
|
10
|
+
"إدارة أعضاء الفريق ووصول المؤسسة وتفضيلات مساحة العمل المشتركة.",
|
|
11
|
+
openTeamSettings: "فتح إعدادات الفريق",
|
|
12
|
+
openResourceSettings: "فتح إعدادات الموارد",
|
|
13
|
+
agentTitle: "إدارة الوكيل",
|
|
14
|
+
agentDescription:
|
|
15
|
+
"أدر نموذج الوكيل ومفاتيح API والأتمتة والصوت وعناصر التحكم الأخرى.",
|
|
16
|
+
openAgentSettings: "إدارة الوكيل",
|
|
17
|
+
},
|
|
18
|
+
chat: {
|
|
19
|
+
archiveChat: "أرشفة المحادثة",
|
|
20
|
+
archiveFailed: "فشلت الأرشفة",
|
|
21
|
+
chats: "المحادثات",
|
|
22
|
+
composerPlaceholder: "اسأل الوكيل...",
|
|
23
|
+
emptyState: "اسألني أي شيء",
|
|
24
|
+
heroDescription: "اطلب من الوكيل فحص هذا التطبيق أو شرحه أو تغييره.",
|
|
25
|
+
heroTitle: "كيف يمكنني المساعدة؟",
|
|
26
|
+
inspectEmptyState: "اسألني أي شيء عن هذا التطبيق",
|
|
27
|
+
inspectSuggestionAction: "إظهار الإجراءات المتاحة",
|
|
28
|
+
inspectSuggestionCapabilities: "ما الذي يمكن لهذا التطبيق فعله؟",
|
|
29
|
+
inspectSuggestionHello: "ساعدني على البدء",
|
|
30
|
+
newChat: "محادثة جديدة",
|
|
31
|
+
optionsFor: "خيارات لـ",
|
|
32
|
+
pinChat: "تثبيت المحادثة",
|
|
33
|
+
renameChat: "إعادة تسمية المحادثة",
|
|
34
|
+
renameFailed: "فشلت إعادة التسمية",
|
|
35
|
+
renameThread: "إعادة تسمية السلسلة",
|
|
36
|
+
suggestionActions: "أرني الإجراءات المتاحة",
|
|
37
|
+
suggestionCapabilities: "ما الذي يمكن لهذا التطبيق فعله؟",
|
|
38
|
+
suggestionCustomize: "ساعدني في تخصيص هذا التطبيق",
|
|
39
|
+
unpinChat: "إلغاء تثبيت المحادثة",
|
|
40
|
+
},
|
|
41
|
+
navigation: {
|
|
42
|
+
chat: "المحادثة",
|
|
43
|
+
collapseSidebar: "طي الشريط الجانبي",
|
|
44
|
+
database: "قاعدة البيانات",
|
|
45
|
+
expandSidebar: "توسيع الشريط الجانبي",
|
|
46
|
+
extensions: "الإضافات",
|
|
47
|
+
navigation: "التنقل",
|
|
48
|
+
navigationDescription: "التنقل الرئيسي",
|
|
49
|
+
observability: "قابلية المراقبة",
|
|
50
|
+
openNavigation: "فتح التنقل",
|
|
51
|
+
settings: "الإعدادات",
|
|
52
|
+
team: "الفريق",
|
|
53
|
+
},
|
|
54
|
+
pages: {
|
|
55
|
+
databaseTitle: "قاعدة البيانات",
|
|
56
|
+
observabilityPageTitle: "قابلية ملاحظة الوكيل",
|
|
57
|
+
teamTitle: "الفريق",
|
|
58
|
+
teamCreateOrgDescription: "أنشئ مؤسسة لدعوة الزملاء ومشاركة هذا التطبيق.",
|
|
59
|
+
},
|
|
60
|
+
root: {
|
|
61
|
+
commandActions: "الإجراءات",
|
|
62
|
+
commandAppearance: "المظهر",
|
|
63
|
+
commandSearch: "بحث",
|
|
64
|
+
toggleTheme: "تبديل السمة",
|
|
65
|
+
},
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
export default messages;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
const messages = {
|
|
2
|
+
settings: {
|
|
3
|
+
title: "Einstellungen",
|
|
4
|
+
description: "Sprach- und Arbeitsbereichseinstellungen für diese App.",
|
|
5
|
+
languageTitle: "Sprache",
|
|
6
|
+
languageDescription:
|
|
7
|
+
"Wähle die Sprache der Oberfläche. Diese Einstellung wird in deinem Konto gespeichert.",
|
|
8
|
+
languageLabel: "Oberflächensprache",
|
|
9
|
+
workspaceTitle: "Arbeitsbereich",
|
|
10
|
+
workspaceDescription:
|
|
11
|
+
"Verwalte Teammitglieder, Organisationszugriff und gemeinsame Arbeitsbereichseinstellungen.",
|
|
12
|
+
openTeamSettings: "Teameinstellungen öffnen",
|
|
13
|
+
openResourceSettings: "Ressourceneinstellungen öffnen",
|
|
14
|
+
agentTitle: "Agent verwalten",
|
|
15
|
+
agentDescription:
|
|
16
|
+
"Verwalte das Modell, die API-Schlüssel, Automatisierungen, Sprache und weitere Steuerungen des Agents.",
|
|
17
|
+
openAgentSettings: "Agent verwalten",
|
|
18
|
+
},
|
|
19
|
+
chat: {
|
|
20
|
+
archiveChat: "Chat archivieren",
|
|
21
|
+
archiveFailed: "Archivieren fehlgeschlagen",
|
|
22
|
+
chats: "Chats",
|
|
23
|
+
composerPlaceholder: "Frag den Agenten...",
|
|
24
|
+
emptyState: "Frag mich alles",
|
|
25
|
+
heroDescription:
|
|
26
|
+
"Bitte den Agenten, diese App zu prüfen, zu erklären oder zu ändern.",
|
|
27
|
+
heroTitle: "Wie kann ich helfen?",
|
|
28
|
+
inspectEmptyState: "Frag mich alles über diese App",
|
|
29
|
+
inspectSuggestionAction: "Verfügbare Aktionen anzeigen",
|
|
30
|
+
inspectSuggestionCapabilities: "Was kann diese App?",
|
|
31
|
+
inspectSuggestionHello: "Hilf mir beim Einstieg",
|
|
32
|
+
newChat: "Neuer Chat",
|
|
33
|
+
optionsFor: "Optionen für",
|
|
34
|
+
pinChat: "Chat anheften",
|
|
35
|
+
renameChat: "Chat umbenennen",
|
|
36
|
+
renameFailed: "Umbenennen fehlgeschlagen",
|
|
37
|
+
renameThread: "Thread umbenennen",
|
|
38
|
+
suggestionActions: "Zeig mir die verfügbaren Aktionen",
|
|
39
|
+
suggestionCapabilities: "Was kann diese App?",
|
|
40
|
+
suggestionCustomize: "Hilf mir, diese App anzupassen",
|
|
41
|
+
unpinChat: "Chat lösen",
|
|
42
|
+
},
|
|
43
|
+
navigation: {
|
|
44
|
+
chat: "Chat",
|
|
45
|
+
collapseSidebar: "Seitenleiste einklappen",
|
|
46
|
+
database: "Datenbank",
|
|
47
|
+
expandSidebar: "Seitenleiste ausklappen",
|
|
48
|
+
extensions: "Erweiterungen",
|
|
49
|
+
navigation: "Navigation",
|
|
50
|
+
navigationDescription: "Hauptnavigation",
|
|
51
|
+
observability: "Beobachtbarkeit",
|
|
52
|
+
openNavigation: "Navigation öffnen",
|
|
53
|
+
settings: "Einstellungen",
|
|
54
|
+
team: "Team",
|
|
55
|
+
},
|
|
56
|
+
pages: {
|
|
57
|
+
databaseTitle: "Datenbank",
|
|
58
|
+
observabilityPageTitle: "Agent-Beobachtbarkeit",
|
|
59
|
+
teamTitle: "Team",
|
|
60
|
+
teamCreateOrgDescription:
|
|
61
|
+
"Erstelle eine Organisation, um Teammitglieder einzuladen und diese App zu teilen.",
|
|
62
|
+
},
|
|
63
|
+
root: {
|
|
64
|
+
commandActions: "Aktionen",
|
|
65
|
+
commandAppearance: "Darstellung",
|
|
66
|
+
commandSearch: "Suchen",
|
|
67
|
+
toggleTheme: "Design wechseln",
|
|
68
|
+
},
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
export default messages;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
const messages = {
|
|
2
|
+
settings: {
|
|
3
|
+
title: "Settings",
|
|
4
|
+
description: "Language and workspace preferences for this app.",
|
|
5
|
+
languageTitle: "Language",
|
|
6
|
+
languageDescription:
|
|
7
|
+
"Choose the interface language. This preference is saved for your account.",
|
|
8
|
+
languageLabel: "Interface language",
|
|
9
|
+
workspaceTitle: "Workspace",
|
|
10
|
+
workspaceDescription:
|
|
11
|
+
"Manage team members, organization access, and shared workspace preferences.",
|
|
12
|
+
openTeamSettings: "Open team settings",
|
|
13
|
+
openResourceSettings: "Open resource settings",
|
|
14
|
+
agentTitle: "Manage agent",
|
|
15
|
+
agentDescription:
|
|
16
|
+
"Manage the agent's model, API keys, automations, voice, and other controls.",
|
|
17
|
+
openAgentSettings: "Manage agent",
|
|
18
|
+
},
|
|
19
|
+
chat: {
|
|
20
|
+
archiveChat: "Archive Chat",
|
|
21
|
+
archiveFailed: "Archive Failed",
|
|
22
|
+
chats: "Chats",
|
|
23
|
+
composerPlaceholder: "Ask the agent...",
|
|
24
|
+
emptyState: "Ask me anything",
|
|
25
|
+
heroDescription: "Ask the agent to inspect, explain, or change this app.",
|
|
26
|
+
heroTitle: "How can I help?",
|
|
27
|
+
inspectEmptyState: "Ask me anything about this app",
|
|
28
|
+
inspectSuggestionAction: "Show available actions",
|
|
29
|
+
inspectSuggestionCapabilities: "What can this app do?",
|
|
30
|
+
inspectSuggestionHello: "Help me get started",
|
|
31
|
+
newChat: "New Chat",
|
|
32
|
+
optionsFor: "Options For",
|
|
33
|
+
pinChat: "Pin Chat",
|
|
34
|
+
renameChat: "Rename Chat",
|
|
35
|
+
renameFailed: "Rename Failed",
|
|
36
|
+
renameThread: "Rename Thread",
|
|
37
|
+
suggestionActions: "Show me the available actions",
|
|
38
|
+
suggestionCapabilities: "What can this app do?",
|
|
39
|
+
suggestionCustomize: "Help me customize this app",
|
|
40
|
+
unpinChat: "Unpin Chat",
|
|
41
|
+
},
|
|
42
|
+
navigation: {
|
|
43
|
+
chat: "Chat",
|
|
44
|
+
collapseSidebar: "Collapse Sidebar",
|
|
45
|
+
database: "Database",
|
|
46
|
+
expandSidebar: "Expand Sidebar",
|
|
47
|
+
extensions: "Extensions",
|
|
48
|
+
navigation: "Navigation",
|
|
49
|
+
navigationDescription: "Main navigation",
|
|
50
|
+
observability: "Observability",
|
|
51
|
+
openNavigation: "Open navigation",
|
|
52
|
+
settings: "Settings",
|
|
53
|
+
team: "Team",
|
|
54
|
+
},
|
|
55
|
+
pages: {
|
|
56
|
+
databaseTitle: "Database",
|
|
57
|
+
observabilityPageTitle: "Agent Observability",
|
|
58
|
+
teamTitle: "Team",
|
|
59
|
+
teamCreateOrgDescription:
|
|
60
|
+
"Create an organization to invite teammates and share this app.",
|
|
61
|
+
},
|
|
62
|
+
root: {
|
|
63
|
+
commandActions: "Actions",
|
|
64
|
+
commandAppearance: "Appearance",
|
|
65
|
+
commandSearch: "Search",
|
|
66
|
+
toggleTheme: "Toggle theme",
|
|
67
|
+
},
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
export default messages;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
const messages = {
|
|
2
|
+
settings: {
|
|
3
|
+
title: "Ajustes",
|
|
4
|
+
description: "Preferencias de idioma y espacio de trabajo para esta app.",
|
|
5
|
+
languageTitle: "Idioma",
|
|
6
|
+
languageDescription:
|
|
7
|
+
"Elige el idioma de la interfaz. Esta preferencia se guarda en tu cuenta.",
|
|
8
|
+
languageLabel: "Idioma de la interfaz",
|
|
9
|
+
workspaceTitle: "Espacio de trabajo",
|
|
10
|
+
workspaceDescription:
|
|
11
|
+
"Gestiona miembros del equipo, acceso de la organización y preferencias compartidas.",
|
|
12
|
+
openTeamSettings: "Abrir ajustes del equipo",
|
|
13
|
+
openResourceSettings: "Abrir ajustes de recursos",
|
|
14
|
+
agentTitle: "Gestionar agente",
|
|
15
|
+
agentDescription:
|
|
16
|
+
"Gestiona el modelo del agente, claves API, automatizaciones, voz y otros controles.",
|
|
17
|
+
openAgentSettings: "Gestionar agente",
|
|
18
|
+
},
|
|
19
|
+
chat: {
|
|
20
|
+
archiveChat: "Archivar chat",
|
|
21
|
+
archiveFailed: "No se pudo archivar",
|
|
22
|
+
chats: "Chats",
|
|
23
|
+
composerPlaceholder: "Pregunta al agente...",
|
|
24
|
+
emptyState: "Pregúntame lo que quieras",
|
|
25
|
+
heroDescription:
|
|
26
|
+
"Pide al agente que inspeccione, explique o cambie esta app.",
|
|
27
|
+
heroTitle: "¿Cómo puedo ayudarte?",
|
|
28
|
+
inspectEmptyState: "Pregúntame cualquier cosa sobre esta app",
|
|
29
|
+
inspectSuggestionAction: "Mostrar acciones disponibles",
|
|
30
|
+
inspectSuggestionCapabilities: "¿Qué puede hacer esta app?",
|
|
31
|
+
inspectSuggestionHello: "Ayúdame a empezar",
|
|
32
|
+
newChat: "Nuevo chat",
|
|
33
|
+
optionsFor: "Opciones para",
|
|
34
|
+
pinChat: "Fijar chat",
|
|
35
|
+
renameChat: "Renombrar chat",
|
|
36
|
+
renameFailed: "No se pudo renombrar",
|
|
37
|
+
renameThread: "Renombrar hilo",
|
|
38
|
+
suggestionActions: "Muéstrame las acciones disponibles",
|
|
39
|
+
suggestionCapabilities: "¿Qué puede hacer esta app?",
|
|
40
|
+
suggestionCustomize: "Ayúdame a personalizar esta app",
|
|
41
|
+
unpinChat: "Desfijar chat",
|
|
42
|
+
},
|
|
43
|
+
navigation: {
|
|
44
|
+
chat: "Chat",
|
|
45
|
+
collapseSidebar: "Contraer barra lateral",
|
|
46
|
+
database: "Base de datos",
|
|
47
|
+
expandSidebar: "Expandir barra lateral",
|
|
48
|
+
extensions: "Extensiones",
|
|
49
|
+
navigation: "Navegación",
|
|
50
|
+
navigationDescription: "Navegación principal",
|
|
51
|
+
observability: "Observabilidad",
|
|
52
|
+
openNavigation: "Abrir navegación",
|
|
53
|
+
settings: "Ajustes",
|
|
54
|
+
team: "Equipo",
|
|
55
|
+
},
|
|
56
|
+
pages: {
|
|
57
|
+
databaseTitle: "Base de datos",
|
|
58
|
+
observabilityPageTitle: "Observabilidad del agente",
|
|
59
|
+
teamTitle: "Equipo",
|
|
60
|
+
teamCreateOrgDescription:
|
|
61
|
+
"Crea una organización para invitar compañeros y compartir esta app.",
|
|
62
|
+
},
|
|
63
|
+
root: {
|
|
64
|
+
commandActions: "Acciones",
|
|
65
|
+
commandAppearance: "Apariencia",
|
|
66
|
+
commandSearch: "Buscar",
|
|
67
|
+
toggleTheme: "Cambiar tema",
|
|
68
|
+
},
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
export default messages;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
const messages = {
|
|
2
|
+
settings: {
|
|
3
|
+
title: "Paramètres",
|
|
4
|
+
description: "Préférences de langue et d’espace de travail pour cette app.",
|
|
5
|
+
languageTitle: "Langue",
|
|
6
|
+
languageDescription:
|
|
7
|
+
"Choisissez la langue de l’interface. Cette préférence est enregistrée dans votre compte.",
|
|
8
|
+
languageLabel: "Langue de l’interface",
|
|
9
|
+
workspaceTitle: "Espace de travail",
|
|
10
|
+
workspaceDescription:
|
|
11
|
+
"Gérez les membres, l’accès de l’organisation et les préférences partagées.",
|
|
12
|
+
openTeamSettings: "Ouvrir les paramètres d’équipe",
|
|
13
|
+
openResourceSettings: "Ouvrir les paramètres des ressources",
|
|
14
|
+
agentTitle: "Gérer l’agent",
|
|
15
|
+
agentDescription:
|
|
16
|
+
"Gérez le modèle de l’agent, les clés API, les automatisations, la voix et les autres contrôles.",
|
|
17
|
+
openAgentSettings: "Gérer l’agent",
|
|
18
|
+
},
|
|
19
|
+
chat: {
|
|
20
|
+
archiveChat: "Archiver le chat",
|
|
21
|
+
archiveFailed: "Échec de l’archivage",
|
|
22
|
+
chats: "Discussions",
|
|
23
|
+
composerPlaceholder: "Demandez à l’agent...",
|
|
24
|
+
emptyState: "Posez-moi une question",
|
|
25
|
+
heroDescription:
|
|
26
|
+
"Demandez à l’agent d’inspecter, d’expliquer ou de modifier cette app.",
|
|
27
|
+
heroTitle: "Comment puis-je aider ?",
|
|
28
|
+
inspectEmptyState: "Posez-moi une question sur cette app",
|
|
29
|
+
inspectSuggestionAction: "Afficher les actions disponibles",
|
|
30
|
+
inspectSuggestionCapabilities: "Que peut faire cette app ?",
|
|
31
|
+
inspectSuggestionHello: "Aidez-moi à démarrer",
|
|
32
|
+
newChat: "Nouveau chat",
|
|
33
|
+
optionsFor: "Options pour",
|
|
34
|
+
pinChat: "Épingler le chat",
|
|
35
|
+
renameChat: "Renommer le chat",
|
|
36
|
+
renameFailed: "Échec du renommage",
|
|
37
|
+
renameThread: "Renommer le fil",
|
|
38
|
+
suggestionActions: "Montrez-moi les actions disponibles",
|
|
39
|
+
suggestionCapabilities: "Que peut faire cette app ?",
|
|
40
|
+
suggestionCustomize: "Aidez-moi à personnaliser cette app",
|
|
41
|
+
unpinChat: "Désépingler le chat",
|
|
42
|
+
},
|
|
43
|
+
navigation: {
|
|
44
|
+
chat: "Chat",
|
|
45
|
+
collapseSidebar: "Réduire la barre latérale",
|
|
46
|
+
database: "Base de données",
|
|
47
|
+
expandSidebar: "Développer la barre latérale",
|
|
48
|
+
extensions: "Rallonges",
|
|
49
|
+
navigation: "Navigation",
|
|
50
|
+
navigationDescription: "Navigation principale",
|
|
51
|
+
observability: "Observabilité",
|
|
52
|
+
openNavigation: "Ouvrir la navigation",
|
|
53
|
+
settings: "Paramètres",
|
|
54
|
+
team: "Équipe",
|
|
55
|
+
},
|
|
56
|
+
pages: {
|
|
57
|
+
databaseTitle: "Base de données",
|
|
58
|
+
observabilityPageTitle: "Observabilité de l'agent",
|
|
59
|
+
teamTitle: "Équipe",
|
|
60
|
+
teamCreateOrgDescription:
|
|
61
|
+
"Créez une organisation pour inviter des coéquipiers et partager cette app.",
|
|
62
|
+
},
|
|
63
|
+
root: {
|
|
64
|
+
commandActions: "Opérations",
|
|
65
|
+
commandAppearance: "Apparence",
|
|
66
|
+
commandSearch: "Rechercher",
|
|
67
|
+
toggleTheme: "Changer de thème",
|
|
68
|
+
},
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
export default messages;
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
const messages = {
|
|
2
|
+
settings: {
|
|
3
|
+
title: "सेटिंग्स",
|
|
4
|
+
description: "इस ऐप के लिए भाषा और कार्यस्थान प्राथमिकताएं।",
|
|
5
|
+
languageTitle: "भाषा",
|
|
6
|
+
languageDescription: "इंटरफ़ेस भाषा चुनें। यह पसंद आपके खाते में सहेजी जाती है।",
|
|
7
|
+
languageLabel: "इंटरफ़ेस भाषा",
|
|
8
|
+
workspaceTitle: "कार्यस्थान",
|
|
9
|
+
workspaceDescription:
|
|
10
|
+
"टीम सदस्यों, संगठन पहुंच और साझा कार्यस्थान प्राथमिकताओं को प्रबंधित करें।",
|
|
11
|
+
openTeamSettings: "टीम सेटिंग्स खोलें",
|
|
12
|
+
openResourceSettings: "संसाधन सेटिंग्स खोलें",
|
|
13
|
+
agentTitle: "एजेंट प्रबंधित करें",
|
|
14
|
+
agentDescription:
|
|
15
|
+
"एजेंट के मॉडल, API कुंजियों, ऑटोमेशन, आवाज़ और अन्य नियंत्रणों को प्रबंधित करें।",
|
|
16
|
+
openAgentSettings: "एजेंट प्रबंधित करें",
|
|
17
|
+
},
|
|
18
|
+
chat: {
|
|
19
|
+
archiveChat: "चैट आर्काइव करें",
|
|
20
|
+
archiveFailed: "आर्काइव विफल",
|
|
21
|
+
chats: "चैट",
|
|
22
|
+
composerPlaceholder: "एजेंट से पूछें...",
|
|
23
|
+
emptyState: "मुझसे कुछ भी पूछें",
|
|
24
|
+
heroDescription: "एजेंट से इस ऐप की जांच, व्याख्या या बदलाव करने को कहें।",
|
|
25
|
+
heroTitle: "मैं कैसे मदद कर सकता हूं?",
|
|
26
|
+
inspectEmptyState: "इस ऐप के बारे में मुझसे कुछ भी पूछें",
|
|
27
|
+
inspectSuggestionAction: "उपलब्ध क्रियाएं दिखाएं",
|
|
28
|
+
inspectSuggestionCapabilities: "यह ऐप क्या कर सकता है?",
|
|
29
|
+
inspectSuggestionHello: "शुरू करने में मेरी मदद करें",
|
|
30
|
+
newChat: "नई चैट",
|
|
31
|
+
optionsFor: "इसके लिए विकल्प",
|
|
32
|
+
pinChat: "चैट पिन करें",
|
|
33
|
+
renameChat: "चैट का नाम बदलें",
|
|
34
|
+
renameFailed: "नाम बदलना विफल",
|
|
35
|
+
renameThread: "थ्रेड का नाम बदलें",
|
|
36
|
+
suggestionActions: "मुझे उपलब्ध क्रियाएं दिखाएं",
|
|
37
|
+
suggestionCapabilities: "यह ऐप क्या कर सकता है?",
|
|
38
|
+
suggestionCustomize: "इस ऐप को कस्टमाइज करने में मेरी मदद करें",
|
|
39
|
+
unpinChat: "चैट अनपिन करें",
|
|
40
|
+
},
|
|
41
|
+
navigation: {
|
|
42
|
+
chat: "चैट",
|
|
43
|
+
collapseSidebar: "साइडबार संक्षिप्त करें",
|
|
44
|
+
database: "डेटाबेस",
|
|
45
|
+
expandSidebar: "साइडबार विस्तृत करें",
|
|
46
|
+
extensions: "एक्सटेंशन",
|
|
47
|
+
navigation: "नेविगेशन",
|
|
48
|
+
navigationDescription: "मुख्य नेविगेशन",
|
|
49
|
+
observability: "अवलोकनक्षमता",
|
|
50
|
+
openNavigation: "नेविगेशन खोलें",
|
|
51
|
+
settings: "सेटिंग्स",
|
|
52
|
+
team: "टीम",
|
|
53
|
+
},
|
|
54
|
+
pages: {
|
|
55
|
+
databaseTitle: "डेटाबेस",
|
|
56
|
+
observabilityPageTitle: "एजेंट ऑब्ज़र्वेबिलिटी",
|
|
57
|
+
teamTitle: "टीम",
|
|
58
|
+
teamCreateOrgDescription:
|
|
59
|
+
"टीम के सदस्यों को आमंत्रित करने और यह ऐप साझा करने के लिए संगठन बनाएं।",
|
|
60
|
+
},
|
|
61
|
+
root: {
|
|
62
|
+
commandActions: "कार्रवाइयाँ",
|
|
63
|
+
commandAppearance: "दिखावट",
|
|
64
|
+
commandSearch: "खोजें",
|
|
65
|
+
toggleTheme: "थीम बदलें",
|
|
66
|
+
},
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
export default messages;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { type AgentNativeI18nCatalog } from "@agent-native/core/client/i18n";
|
|
2
|
+
|
|
3
|
+
import enUS from "./en-US";
|
|
4
|
+
|
|
5
|
+
export const i18nCatalog = {
|
|
6
|
+
sourceLocale: "en-US",
|
|
7
|
+
messages: enUS,
|
|
8
|
+
loadMessages: async (locale) => {
|
|
9
|
+
switch (locale) {
|
|
10
|
+
case "zh-CN":
|
|
11
|
+
return (await import("./zh-CN")).default;
|
|
12
|
+
case "zh-TW":
|
|
13
|
+
return (await import("./zh-TW")).default;
|
|
14
|
+
case "es-ES":
|
|
15
|
+
return (await import("./es-ES")).default;
|
|
16
|
+
case "fr-FR":
|
|
17
|
+
return (await import("./fr-FR")).default;
|
|
18
|
+
case "de-DE":
|
|
19
|
+
return (await import("./de-DE")).default;
|
|
20
|
+
case "ja-JP":
|
|
21
|
+
return (await import("./ja-JP")).default;
|
|
22
|
+
case "ko-KR":
|
|
23
|
+
return (await import("./ko-KR")).default;
|
|
24
|
+
case "pt-BR":
|
|
25
|
+
return (await import("./pt-BR")).default;
|
|
26
|
+
case "hi-IN":
|
|
27
|
+
return (await import("./hi-IN")).default;
|
|
28
|
+
case "ar-SA":
|
|
29
|
+
return (await import("./ar-SA")).default;
|
|
30
|
+
default:
|
|
31
|
+
return null;
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
} satisfies AgentNativeI18nCatalog;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
const messages = {
|
|
2
|
+
settings: {
|
|
3
|
+
title: "設定",
|
|
4
|
+
description: "このアプリの言語とワークスペース設定。",
|
|
5
|
+
languageTitle: "言語",
|
|
6
|
+
languageDescription:
|
|
7
|
+
"インターフェース言語を選択します。この設定はアカウントに保存されます。",
|
|
8
|
+
languageLabel: "インターフェース言語",
|
|
9
|
+
workspaceTitle: "ワークスペース",
|
|
10
|
+
workspaceDescription:
|
|
11
|
+
"チームメンバー、組織アクセス、共有ワークスペース設定を管理します。",
|
|
12
|
+
openTeamSettings: "チーム設定を開く",
|
|
13
|
+
openResourceSettings: "リソース設定を開く",
|
|
14
|
+
agentTitle: "エージェントを管理",
|
|
15
|
+
agentDescription:
|
|
16
|
+
"エージェントのモデル、API キー、自動化、音声などを管理します。",
|
|
17
|
+
openAgentSettings: "エージェントを管理",
|
|
18
|
+
},
|
|
19
|
+
chat: {
|
|
20
|
+
archiveChat: "チャットをアーカイブ",
|
|
21
|
+
archiveFailed: "アーカイブに失敗しました",
|
|
22
|
+
chats: "チャット",
|
|
23
|
+
composerPlaceholder: "エージェントに質問...",
|
|
24
|
+
emptyState: "何でも聞いてください",
|
|
25
|
+
heroDescription: "このアプリの確認、説明、変更をエージェントに依頼します。",
|
|
26
|
+
heroTitle: "どのようにお手伝いできますか?",
|
|
27
|
+
inspectEmptyState: "このアプリについて何でも聞いてください",
|
|
28
|
+
inspectSuggestionAction: "利用可能なアクションを表示",
|
|
29
|
+
inspectSuggestionCapabilities: "このアプリで何ができますか?",
|
|
30
|
+
inspectSuggestionHello: "使い始めを手伝って",
|
|
31
|
+
newChat: "新しいチャット",
|
|
32
|
+
optionsFor: "オプション:",
|
|
33
|
+
pinChat: "チャットをピン留め",
|
|
34
|
+
renameChat: "チャット名を変更",
|
|
35
|
+
renameFailed: "名前の変更に失敗しました",
|
|
36
|
+
renameThread: "スレッド名を変更",
|
|
37
|
+
suggestionActions: "利用可能なアクションを表示して",
|
|
38
|
+
suggestionCapabilities: "このアプリで何ができますか?",
|
|
39
|
+
suggestionCustomize: "このアプリのカスタマイズを手伝って",
|
|
40
|
+
unpinChat: "チャットのピン留めを解除",
|
|
41
|
+
},
|
|
42
|
+
navigation: {
|
|
43
|
+
chat: "チャット",
|
|
44
|
+
collapseSidebar: "サイドバーを折りたたむ",
|
|
45
|
+
database: "データベース",
|
|
46
|
+
expandSidebar: "サイドバーを展開",
|
|
47
|
+
extensions: "拡張機能",
|
|
48
|
+
navigation: "ナビゲーション",
|
|
49
|
+
navigationDescription: "メインナビゲーション",
|
|
50
|
+
observability: "可観測性",
|
|
51
|
+
openNavigation: "ナビゲーションを開く",
|
|
52
|
+
settings: "設定",
|
|
53
|
+
team: "チーム",
|
|
54
|
+
},
|
|
55
|
+
pages: {
|
|
56
|
+
databaseTitle: "データベース",
|
|
57
|
+
observabilityPageTitle: "エージェント可観測性",
|
|
58
|
+
teamTitle: "チーム",
|
|
59
|
+
teamCreateOrgDescription:
|
|
60
|
+
"チームメイトを招待してこのアプリを共有するための組織を作成します。",
|
|
61
|
+
},
|
|
62
|
+
root: {
|
|
63
|
+
commandActions: "操作",
|
|
64
|
+
commandAppearance: "外観",
|
|
65
|
+
commandSearch: "検索",
|
|
66
|
+
toggleTheme: "テーマを切り替え",
|
|
67
|
+
},
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
export default messages;
|