@agent-native/core 0.101.13 → 0.101.14
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 +1 -1
- package/corpus/core/CHANGELOG.md +7 -0
- package/corpus/core/package.json +4 -2
- package/corpus/core/src/cli/create.ts +32 -10
- package/corpus/core/src/client/AgentPanel.tsx +61 -48
- package/corpus/core/src/client/chat/message-components.tsx +1 -0
- package/corpus/core/src/client/chat/tool-call-display.tsx +12 -2
- package/corpus/templates/clips/app/components/player/share-dialog.tsx +1 -1
- package/corpus/templates/clips/app/i18n/ar-SA.ts +1 -0
- package/corpus/templates/clips/app/i18n/de-DE.ts +1 -0
- package/corpus/templates/clips/app/i18n/en-US.ts +1 -0
- package/corpus/templates/clips/app/i18n/es-ES.ts +1 -0
- package/corpus/templates/clips/app/i18n/fr-FR.ts +1 -0
- package/corpus/templates/clips/app/i18n/hi-IN.ts +1 -0
- package/corpus/templates/clips/app/i18n/ja-JP.ts +1 -0
- package/corpus/templates/clips/app/i18n/ko-KR.ts +1 -0
- package/corpus/templates/clips/app/i18n/pt-BR.ts +1 -0
- package/corpus/templates/clips/app/i18n/zh-CN.ts +1 -0
- package/corpus/templates/clips/app/i18n/zh-TW.ts +1 -0
- package/corpus/templates/clips/changelog/2026-07-15-public-clip-links-are-labeled-share-with-humans-for-clarity.md +6 -0
- package/corpus/templates/forms/actions/delete-form.ts +4 -0
- package/corpus/templates/forms/actions/patch-form-fields.ts +3 -0
- package/corpus/templates/forms/actions/restore-form.ts +3 -0
- package/corpus/templates/forms/actions/update-form.ts +3 -0
- package/corpus/templates/forms/app/pages/FormBuilderPage.tsx +2 -2
- package/corpus/templates/forms/app/pages/ResponsesPage.tsx +2 -2
- package/corpus/templates/forms/changelog/2026-07-15-published-forms-now-reflect-field-updates-immediately-at-the.md +6 -0
- package/corpus/templates/forms/changelog/2026-07-15-response-rows-now-keep-every-column-aligned-to-the-top-for-c.md +6 -0
- package/corpus/templates/forms/server/handlers/forms.ts +1 -0
- package/corpus/templates/forms/server/lib/public-form-ssr.ts +47 -4
- package/corpus/templates/slides/app/components/editor/SlideEditor.tsx +189 -82
- package/corpus/templates/slides/app/pages/DeckEditor.tsx +1 -1
- package/dist/cli/create.d.ts +5 -2
- package/dist/cli/create.d.ts.map +1 -1
- package/dist/cli/create.js +22 -11
- package/dist/cli/create.js.map +1 -1
- package/dist/client/AgentPanel.d.ts +2 -0
- package/dist/client/AgentPanel.d.ts.map +1 -1
- package/dist/client/AgentPanel.js +24 -13
- package/dist/client/AgentPanel.js.map +1 -1
- package/dist/client/chat/message-components.d.ts.map +1 -1
- package/dist/client/chat/message-components.js +1 -1
- package/dist/client/chat/message-components.js.map +1 -1
- package/dist/client/chat/tool-call-display.d.ts +3 -1
- package/dist/client/chat/tool-call-display.d.ts.map +1 -1
- package/dist/client/chat/tool-call-display.js +6 -5
- package/dist/client/chat/tool-call-display.js.map +1 -1
- package/dist/notifications/routes.d.ts +2 -2
- package/dist/resources/handlers.d.ts +1 -1
- package/dist/templates/chat/.agents/skills/actions/SKILL.md +492 -0
- package/dist/templates/chat/.agents/skills/adding-a-feature/SKILL.md +189 -0
- package/dist/templates/chat/.agents/skills/agent-native-docs/SKILL.md +76 -0
- package/dist/templates/chat/.agents/skills/capture-learnings/SKILL.md +89 -0
- package/dist/templates/chat/.agents/skills/create-skill/SKILL.md +221 -0
- package/dist/templates/chat/.agents/skills/delegate-to-agent/SKILL.md +263 -0
- package/dist/templates/chat/.agents/skills/frontend-design/SKILL.md +112 -0
- package/dist/templates/chat/.agents/skills/real-time-sync/SKILL.md +232 -0
- package/dist/templates/chat/.agents/skills/security/SKILL.md +280 -0
- package/dist/templates/chat/.agents/skills/self-modifying-code/SKILL.md +106 -0
- package/dist/templates/chat/.agents/skills/shadcn-ui/SKILL.md +95 -0
- package/dist/templates/chat/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/dist/templates/chat/.env.example +5 -0
- package/dist/templates/chat/.ignore +0 -0
- package/dist/templates/chat/.oxfmtrc.json +8 -0
- package/dist/templates/chat/.react-router/types/+server-build.d.ts +18 -0
- package/dist/templates/chat/.react-router/types/app/+types/root.ts +68 -0
- package/dist/templates/chat/AGENTS.md +62 -0
- package/dist/templates/chat/CHANGELOG.md +10 -0
- package/dist/templates/chat/DEVELOPING.md +185 -0
- package/dist/templates/chat/README.md +32 -0
- package/dist/templates/chat/_gitignore +43 -0
- package/dist/templates/chat/actions/hello.ts +13 -0
- package/dist/templates/chat/actions/navigate.ts +41 -0
- package/dist/templates/chat/actions/run.ts +2 -0
- package/dist/templates/chat/actions/view-screen.ts +31 -0
- package/dist/templates/chat/app/components/layout/Header.tsx +59 -0
- package/dist/templates/chat/app/components/layout/Layout.tsx +184 -0
- package/dist/templates/chat/app/components/layout/Sidebar.tsx +580 -0
- package/dist/templates/chat/app/components/ui/button.tsx +1 -0
- package/dist/templates/chat/app/components/ui/card.tsx +1 -0
- package/dist/templates/chat/app/components/ui/dropdown-menu.tsx +1 -0
- package/dist/templates/chat/app/components/ui/input.tsx +1 -0
- package/dist/templates/chat/app/components/ui/label.tsx +1 -0
- package/dist/templates/chat/app/components/ui/sheet.tsx +1 -0
- package/dist/templates/chat/app/components/ui/toolkit-provider.tsx +12 -0
- package/dist/templates/chat/app/components/ui/tooltip.tsx +1 -0
- package/dist/templates/chat/app/entry.client.tsx +19 -0
- package/dist/templates/chat/app/entry.server.tsx +10 -0
- package/dist/templates/chat/app/global.css +93 -0
- package/dist/templates/chat/app/hooks/use-navigation-state.ts +111 -0
- package/dist/templates/chat/app/i18n/ar-SA.ts +68 -0
- package/dist/templates/chat/app/i18n/de-DE.ts +71 -0
- package/dist/templates/chat/app/i18n/en-US.ts +70 -0
- package/dist/templates/chat/app/i18n/es-ES.ts +71 -0
- package/dist/templates/chat/app/i18n/fr-FR.ts +71 -0
- package/dist/templates/chat/app/i18n/hi-IN.ts +69 -0
- package/dist/templates/chat/app/i18n/index.ts +34 -0
- package/dist/templates/chat/app/i18n/ja-JP.ts +70 -0
- package/dist/templates/chat/app/i18n/ko-KR.ts +70 -0
- package/dist/templates/chat/app/i18n/pt-BR.ts +71 -0
- package/dist/templates/chat/app/i18n/zh-CN.ts +67 -0
- package/dist/templates/chat/app/i18n/zh-TW.ts +67 -0
- package/dist/templates/chat/app/i18n-data.ts +556 -0
- package/dist/templates/chat/app/lib/agent-page.tsx +40 -0
- package/dist/templates/chat/app/lib/app-config.ts +11 -0
- package/dist/templates/chat/app/lib/tab-id.ts +1 -0
- package/dist/templates/chat/app/lib/utils.ts +1 -0
- package/dist/templates/chat/app/root.tsx +172 -0
- package/dist/templates/chat/app/routes/_index.tsx +91 -0
- package/dist/templates/chat/app/routes/agent.tsx +17 -0
- package/dist/templates/chat/app/routes/chat.$threadId.tsx +1 -0
- package/dist/templates/chat/app/routes/database.tsx +17 -0
- package/dist/templates/chat/app/routes/extensions.$id.$slug.tsx +2 -0
- package/dist/templates/chat/app/routes/extensions.$id.tsx +11 -0
- package/dist/templates/chat/app/routes/extensions._index.tsx +11 -0
- package/dist/templates/chat/app/routes/extensions.tsx +5 -0
- package/dist/templates/chat/app/routes/observability.tsx +18 -0
- package/dist/templates/chat/app/routes/settings.tsx +88 -0
- package/dist/templates/chat/app/routes/team.tsx +11 -0
- package/dist/templates/chat/app/routes.ts +4 -0
- package/dist/templates/chat/app/vite-env.d.ts +6 -0
- package/dist/templates/chat/changelog/2026-06-24-a-new-settings-page-gives-quick-access-to-language-workspace.md +6 -0
- package/dist/templates/chat/changelog/2026-06-24-added-a-language-picker-and-localized-app-chrome-for-support.md +6 -0
- package/dist/templates/chat/changelog/2026-06-27-traditional-chinese-copy-uses-taiwan-terminology.md +6 -0
- package/dist/templates/chat/changelog/2026-06-28-left-sidebar-collapse-motion-and-footer-chrome-are-quieter.md +6 -0
- package/dist/templates/chat/changelog/2026-06-29-chat-layouts-adapt-when-the-agent-sidebar-is-open.md +6 -0
- package/dist/templates/chat/changelog/2026-07-08-settings-are-cleaner-and-searchable.md +5 -0
- package/dist/templates/chat/changelog/2026-07-10-chat-now-makes-ai-connection-setup-clear-without-shifting-th.md +6 -0
- package/dist/templates/chat/changelog/2026-07-13-a-full-agent-page-now-brings-context-files-connections-jobs-.md +6 -0
- package/dist/templates/chat/changelog/2026-07-14-chat-opens-reliably-on-hosted-deployments-instead-of-failing.md +6 -0
- package/dist/templates/chat/changelog/2026-07-14-fixed-chat-template-startup-with-older-core-versions.md +6 -0
- package/dist/templates/chat/changelog/2026-07-15-chat-navigation-focuses-on-chat-and-agent.md +6 -0
- package/dist/templates/chat/components.json +20 -0
- package/dist/templates/chat/data/.gitkeep +0 -0
- package/dist/templates/chat/data/sync-config.json +1 -0
- package/dist/templates/chat/learnings.defaults.md +5 -0
- package/dist/templates/chat/netlify.toml +10 -0
- package/dist/templates/chat/package.json +92 -0
- package/dist/templates/chat/public/agent-native-icon-dark.svg +10 -0
- package/dist/templates/chat/public/agent-native-icon-light.svg +10 -0
- package/dist/templates/chat/public/agent-native-logo-dark.svg +21 -0
- package/dist/templates/chat/public/agent-native-logo-light.svg +21 -0
- package/dist/templates/chat/public/favicon.svg +1 -0
- package/dist/templates/chat/public/icon-180.svg +1 -0
- package/dist/templates/chat/public/icon-192.svg +1 -0
- package/dist/templates/chat/public/icon-512.svg +1 -0
- package/dist/templates/chat/public/manifest.json +21 -0
- package/dist/templates/chat/react-router.config.ts +7 -0
- package/dist/templates/chat/server/middleware/auth.ts +15 -0
- package/dist/templates/chat/server/plugins/agent-chat.ts +21 -0
- package/dist/templates/chat/server/plugins/auth.ts +17 -0
- package/dist/templates/chat/server/routes/[...page].get.ts +5 -0
- package/dist/templates/chat/ssr-entry.ts +15 -0
- package/dist/templates/chat/tsconfig.json +21 -0
- package/dist/templates/chat/vite.config.ts +19 -0
- package/package.json +2 -1
- package/src/templates/chat/.agents/skills/actions/SKILL.md +492 -0
- package/src/templates/chat/.agents/skills/adding-a-feature/SKILL.md +189 -0
- package/src/templates/chat/.agents/skills/agent-native-docs/SKILL.md +76 -0
- package/src/templates/chat/.agents/skills/capture-learnings/SKILL.md +89 -0
- package/src/templates/chat/.agents/skills/create-skill/SKILL.md +221 -0
- package/src/templates/chat/.agents/skills/delegate-to-agent/SKILL.md +263 -0
- package/src/templates/chat/.agents/skills/frontend-design/SKILL.md +112 -0
- package/src/templates/chat/.agents/skills/real-time-sync/SKILL.md +232 -0
- package/src/templates/chat/.agents/skills/security/SKILL.md +280 -0
- package/src/templates/chat/.agents/skills/self-modifying-code/SKILL.md +106 -0
- package/src/templates/chat/.agents/skills/shadcn-ui/SKILL.md +95 -0
- package/src/templates/chat/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/src/templates/chat/.env.example +5 -0
- package/src/templates/chat/.ignore +0 -0
- package/src/templates/chat/.oxfmtrc.json +8 -0
- package/src/templates/chat/.react-router/types/+server-build.d.ts +18 -0
- package/src/templates/chat/.react-router/types/app/+types/root.ts +68 -0
- package/src/templates/chat/AGENTS.md +62 -0
- package/src/templates/chat/CHANGELOG.md +10 -0
- package/src/templates/chat/DEVELOPING.md +185 -0
- package/src/templates/chat/README.md +32 -0
- package/src/templates/chat/_gitignore +43 -0
- package/src/templates/chat/actions/hello.spec.ts +23 -0
- package/src/templates/chat/actions/hello.ts +13 -0
- package/src/templates/chat/actions/navigate.spec.ts +68 -0
- package/src/templates/chat/actions/navigate.ts +41 -0
- package/src/templates/chat/actions/run.ts +2 -0
- package/src/templates/chat/actions/view-screen.spec.ts +40 -0
- package/src/templates/chat/actions/view-screen.ts +31 -0
- package/src/templates/chat/app/components/layout/Header.tsx +59 -0
- package/src/templates/chat/app/components/layout/Layout.tsx +184 -0
- package/src/templates/chat/app/components/layout/Sidebar.tsx +580 -0
- package/src/templates/chat/app/components/ui/button.tsx +1 -0
- package/src/templates/chat/app/components/ui/card.tsx +1 -0
- package/src/templates/chat/app/components/ui/dropdown-menu.tsx +1 -0
- package/src/templates/chat/app/components/ui/input.tsx +1 -0
- package/src/templates/chat/app/components/ui/label.tsx +1 -0
- package/src/templates/chat/app/components/ui/sheet.tsx +1 -0
- package/src/templates/chat/app/components/ui/toolkit-provider.tsx +12 -0
- package/src/templates/chat/app/components/ui/tooltip.tsx +1 -0
- package/src/templates/chat/app/entry.client.tsx +19 -0
- package/src/templates/chat/app/entry.server.tsx +10 -0
- package/src/templates/chat/app/global.css +93 -0
- package/src/templates/chat/app/hooks/use-navigation-state.ts +111 -0
- package/src/templates/chat/app/i18n/ar-SA.ts +68 -0
- package/src/templates/chat/app/i18n/de-DE.ts +71 -0
- package/src/templates/chat/app/i18n/en-US.ts +70 -0
- package/src/templates/chat/app/i18n/es-ES.ts +71 -0
- package/src/templates/chat/app/i18n/fr-FR.ts +71 -0
- package/src/templates/chat/app/i18n/hi-IN.ts +69 -0
- package/src/templates/chat/app/i18n/index.ts +34 -0
- package/src/templates/chat/app/i18n/ja-JP.ts +70 -0
- package/src/templates/chat/app/i18n/ko-KR.ts +70 -0
- package/src/templates/chat/app/i18n/pt-BR.ts +71 -0
- package/src/templates/chat/app/i18n/zh-CN.ts +67 -0
- package/src/templates/chat/app/i18n/zh-TW.ts +67 -0
- package/src/templates/chat/app/i18n-data.ts +556 -0
- package/src/templates/chat/app/lib/agent-page.spec.tsx +52 -0
- package/src/templates/chat/app/lib/agent-page.tsx +40 -0
- package/src/templates/chat/app/lib/app-config.ts +11 -0
- package/src/templates/chat/app/lib/tab-id.ts +1 -0
- package/src/templates/chat/app/lib/utils.ts +1 -0
- package/src/templates/chat/app/root.tsx +172 -0
- package/src/templates/chat/app/routes/_index.tsx +91 -0
- package/src/templates/chat/app/routes/agent.tsx +17 -0
- package/src/templates/chat/app/routes/chat.$threadId.tsx +1 -0
- package/src/templates/chat/app/routes/database.tsx +17 -0
- package/src/templates/chat/app/routes/extensions.$id.$slug.tsx +2 -0
- package/src/templates/chat/app/routes/extensions.$id.tsx +11 -0
- package/src/templates/chat/app/routes/extensions._index.tsx +11 -0
- package/src/templates/chat/app/routes/extensions.tsx +5 -0
- package/src/templates/chat/app/routes/observability.tsx +18 -0
- package/src/templates/chat/app/routes/settings.tsx +88 -0
- package/src/templates/chat/app/routes/team.tsx +11 -0
- package/src/templates/chat/app/routes.ts +4 -0
- package/src/templates/chat/app/vite-env.d.ts +6 -0
- package/src/templates/chat/changelog/2026-06-24-a-new-settings-page-gives-quick-access-to-language-workspace.md +6 -0
- package/src/templates/chat/changelog/2026-06-24-added-a-language-picker-and-localized-app-chrome-for-support.md +6 -0
- package/src/templates/chat/changelog/2026-06-27-traditional-chinese-copy-uses-taiwan-terminology.md +6 -0
- package/src/templates/chat/changelog/2026-06-28-left-sidebar-collapse-motion-and-footer-chrome-are-quieter.md +6 -0
- package/src/templates/chat/changelog/2026-06-29-chat-layouts-adapt-when-the-agent-sidebar-is-open.md +6 -0
- package/src/templates/chat/changelog/2026-07-08-settings-are-cleaner-and-searchable.md +5 -0
- package/src/templates/chat/changelog/2026-07-10-chat-now-makes-ai-connection-setup-clear-without-shifting-th.md +6 -0
- package/src/templates/chat/changelog/2026-07-13-a-full-agent-page-now-brings-context-files-connections-jobs-.md +6 -0
- package/src/templates/chat/changelog/2026-07-14-chat-opens-reliably-on-hosted-deployments-instead-of-failing.md +6 -0
- package/src/templates/chat/changelog/2026-07-14-fixed-chat-template-startup-with-older-core-versions.md +6 -0
- package/src/templates/chat/changelog/2026-07-15-chat-navigation-focuses-on-chat-and-agent.md +6 -0
- package/src/templates/chat/components.json +20 -0
- package/src/templates/chat/data/.gitkeep +0 -0
- package/src/templates/chat/data/sync-config.json +1 -0
- package/src/templates/chat/learnings.defaults.md +5 -0
- package/src/templates/chat/netlify.toml +10 -0
- package/src/templates/chat/package.json +92 -0
- package/src/templates/chat/public/agent-native-icon-dark.svg +10 -0
- package/src/templates/chat/public/agent-native-icon-light.svg +10 -0
- package/src/templates/chat/public/agent-native-logo-dark.svg +21 -0
- package/src/templates/chat/public/agent-native-logo-light.svg +21 -0
- package/src/templates/chat/public/favicon.svg +1 -0
- package/src/templates/chat/public/icon-180.svg +1 -0
- package/src/templates/chat/public/icon-192.svg +1 -0
- package/src/templates/chat/public/icon-512.svg +1 -0
- package/src/templates/chat/public/manifest.json +21 -0
- package/src/templates/chat/react-router.config.ts +7 -0
- package/src/templates/chat/server/middleware/auth.ts +15 -0
- package/src/templates/chat/server/plugins/agent-chat.ts +21 -0
- package/src/templates/chat/server/plugins/auth.ts +17 -0
- package/src/templates/chat/server/routes/[...page].get.ts +5 -0
- package/src/templates/chat/ssr-entry.ts +15 -0
- package/src/templates/chat/tsconfig.json +21 -0
- package/src/templates/chat/vite.config.ts +19 -0
|
@@ -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;
|
|
@@ -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
|
+
"에이전트에게 이 앱을 살펴보고 설명하거나 변경하도록 요청하세요.",
|
|
27
|
+
heroTitle: "무엇을 도와드릴까요?",
|
|
28
|
+
inspectEmptyState: "이 앱에 대해 무엇이든 물어보세요",
|
|
29
|
+
inspectSuggestionAction: "사용 가능한 작업 보기",
|
|
30
|
+
inspectSuggestionCapabilities: "이 앱은 무엇을 할 수 있나요?",
|
|
31
|
+
inspectSuggestionHello: "시작할 수 있게 도와주세요",
|
|
32
|
+
newChat: "새 채팅",
|
|
33
|
+
optionsFor: "옵션 대상",
|
|
34
|
+
pinChat: "채팅 고정",
|
|
35
|
+
renameChat: "채팅 이름 바꾸기",
|
|
36
|
+
renameFailed: "이름 변경 실패",
|
|
37
|
+
renameThread: "스레드 이름 바꾸기",
|
|
38
|
+
suggestionActions: "사용 가능한 작업을 보여줘",
|
|
39
|
+
suggestionCapabilities: "이 앱은 무엇을 할 수 있나요?",
|
|
40
|
+
suggestionCustomize: "이 앱을 맞춤 설정하도록 도와줘",
|
|
41
|
+
unpinChat: "채팅 고정 해제",
|
|
42
|
+
},
|
|
43
|
+
navigation: {
|
|
44
|
+
chat: "채팅",
|
|
45
|
+
collapseSidebar: "사이드바 접기",
|
|
46
|
+
database: "데이터베이스",
|
|
47
|
+
expandSidebar: "사이드바 펼치기",
|
|
48
|
+
extensions: "확장 프로그램",
|
|
49
|
+
navigation: "탐색",
|
|
50
|
+
navigationDescription: "기본 탐색",
|
|
51
|
+
observability: "관찰성",
|
|
52
|
+
openNavigation: "탐색 열기",
|
|
53
|
+
settings: "설정",
|
|
54
|
+
team: "팀",
|
|
55
|
+
},
|
|
56
|
+
pages: {
|
|
57
|
+
databaseTitle: "데이터베이스",
|
|
58
|
+
observabilityPageTitle: "에이전트 관찰성",
|
|
59
|
+
teamTitle: "팀",
|
|
60
|
+
teamCreateOrgDescription: "팀원을 초대하고 이 앱을 공유할 조직을 만드세요.",
|
|
61
|
+
},
|
|
62
|
+
root: {
|
|
63
|
+
commandActions: "작업",
|
|
64
|
+
commandAppearance: "화면 표시",
|
|
65
|
+
commandSearch: "검색",
|
|
66
|
+
toggleTheme: "테마 전환",
|
|
67
|
+
},
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
export default messages;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
const messages = {
|
|
2
|
+
settings: {
|
|
3
|
+
title: "Configurações",
|
|
4
|
+
description: "Preferências de idioma e espaço de trabalho deste app.",
|
|
5
|
+
languageTitle: "Idioma",
|
|
6
|
+
languageDescription:
|
|
7
|
+
"Escolha o idioma da interface. Essa preferência é salva na sua conta.",
|
|
8
|
+
languageLabel: "Idioma da interface",
|
|
9
|
+
workspaceTitle: "Espaço de trabalho",
|
|
10
|
+
workspaceDescription:
|
|
11
|
+
"Gerencie membros da equipe, acesso da organização e preferências compartilhadas.",
|
|
12
|
+
openTeamSettings: "Abrir configurações da equipe",
|
|
13
|
+
openResourceSettings: "Abrir configurações de recursos",
|
|
14
|
+
agentTitle: "Configurações do agente",
|
|
15
|
+
agentDescription:
|
|
16
|
+
"Abra as configurações do agente na barra lateral para modelos, chaves de API, automações, voz e outros controles.",
|
|
17
|
+
openAgentSettings: "Abrir configurações do agente",
|
|
18
|
+
},
|
|
19
|
+
chat: {
|
|
20
|
+
archiveChat: "Arquivar chat",
|
|
21
|
+
archiveFailed: "Falha ao arquivar",
|
|
22
|
+
chats: "Chats",
|
|
23
|
+
composerPlaceholder: "Pergunte ao agente...",
|
|
24
|
+
emptyState: "Pergunte-me qualquer coisa",
|
|
25
|
+
heroDescription:
|
|
26
|
+
"Peça ao agente para inspecionar, explicar ou alterar este app.",
|
|
27
|
+
heroTitle: "Como posso ajudar?",
|
|
28
|
+
inspectEmptyState: "Pergunte-me qualquer coisa sobre este app",
|
|
29
|
+
inspectSuggestionAction: "Mostrar ações disponíveis",
|
|
30
|
+
inspectSuggestionCapabilities: "O que este app pode fazer?",
|
|
31
|
+
inspectSuggestionHello: "Ajude-me a começar",
|
|
32
|
+
newChat: "Novo chat",
|
|
33
|
+
optionsFor: "Opções para",
|
|
34
|
+
pinChat: "Fixar chat",
|
|
35
|
+
renameChat: "Renomear chat",
|
|
36
|
+
renameFailed: "Falha ao renomear",
|
|
37
|
+
renameThread: "Renomear conversa",
|
|
38
|
+
suggestionActions: "Mostre-me as ações disponíveis",
|
|
39
|
+
suggestionCapabilities: "O que este app pode fazer?",
|
|
40
|
+
suggestionCustomize: "Ajude-me a personalizar este app",
|
|
41
|
+
unpinChat: "Desafixar chat",
|
|
42
|
+
},
|
|
43
|
+
navigation: {
|
|
44
|
+
chat: "Chat",
|
|
45
|
+
collapseSidebar: "Recolher barra lateral",
|
|
46
|
+
database: "Banco de dados",
|
|
47
|
+
expandSidebar: "Expandir barra lateral",
|
|
48
|
+
extensions: "Extensões",
|
|
49
|
+
navigation: "Navegação",
|
|
50
|
+
navigationDescription: "Navegação principal",
|
|
51
|
+
observability: "Observabilidade",
|
|
52
|
+
openNavigation: "Abrir navegação",
|
|
53
|
+
settings: "Configurações",
|
|
54
|
+
team: "Equipe",
|
|
55
|
+
},
|
|
56
|
+
pages: {
|
|
57
|
+
databaseTitle: "Banco de dados",
|
|
58
|
+
observabilityPageTitle: "Observabilidade do agente",
|
|
59
|
+
teamTitle: "Equipe",
|
|
60
|
+
teamCreateOrgDescription:
|
|
61
|
+
"Crie uma organização para convidar colegas e compartilhar este app.",
|
|
62
|
+
},
|
|
63
|
+
root: {
|
|
64
|
+
commandActions: "Ações",
|
|
65
|
+
commandAppearance: "Aparência",
|
|
66
|
+
commandSearch: "Pesquisar",
|
|
67
|
+
toggleTheme: "Alternar tema",
|
|
68
|
+
},
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
export default messages;
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
const messages = {
|
|
2
|
+
settings: {
|
|
3
|
+
title: "设置",
|
|
4
|
+
description: "此应用的语言和工作区偏好设置。",
|
|
5
|
+
languageTitle: "语言",
|
|
6
|
+
languageDescription: "选择界面语言。此偏好会保存到你的账户。",
|
|
7
|
+
languageLabel: "界面语言",
|
|
8
|
+
workspaceTitle: "工作区",
|
|
9
|
+
workspaceDescription: "管理团队成员、组织访问权限和共享工作区偏好。",
|
|
10
|
+
openTeamSettings: "打开团队设置",
|
|
11
|
+
openResourceSettings: "打开资源设置",
|
|
12
|
+
agentTitle: "代理设置",
|
|
13
|
+
agentDescription:
|
|
14
|
+
"打开代理侧边栏设置,管理模型、API 密钥、自动化、语音和其他代理控制项。",
|
|
15
|
+
openAgentSettings: "打开代理设置",
|
|
16
|
+
},
|
|
17
|
+
chat: {
|
|
18
|
+
archiveChat: "归档聊天",
|
|
19
|
+
archiveFailed: "归档失败",
|
|
20
|
+
chats: "聊天",
|
|
21
|
+
composerPlaceholder: "询问代理...",
|
|
22
|
+
emptyState: "问我任何问题",
|
|
23
|
+
heroDescription: "让代理检查、解释或更改此应用。",
|
|
24
|
+
heroTitle: "我能帮你什么?",
|
|
25
|
+
inspectEmptyState: "询问我有关此应用的任何问题",
|
|
26
|
+
inspectSuggestionAction: "显示可用操作",
|
|
27
|
+
inspectSuggestionCapabilities: "这个应用能做什么?",
|
|
28
|
+
inspectSuggestionHello: "帮我开始使用",
|
|
29
|
+
newChat: "新建聊天",
|
|
30
|
+
optionsFor: "选项:",
|
|
31
|
+
pinChat: "置顶聊天",
|
|
32
|
+
renameChat: "重命名聊天",
|
|
33
|
+
renameFailed: "重命名失败",
|
|
34
|
+
renameThread: "重命名对话",
|
|
35
|
+
suggestionActions: "显示可用操作",
|
|
36
|
+
suggestionCapabilities: "这个应用能做什么?",
|
|
37
|
+
suggestionCustomize: "帮我自定义此应用",
|
|
38
|
+
unpinChat: "取消置顶聊天",
|
|
39
|
+
},
|
|
40
|
+
navigation: {
|
|
41
|
+
chat: "聊天",
|
|
42
|
+
collapseSidebar: "收起侧边栏",
|
|
43
|
+
database: "数据库",
|
|
44
|
+
expandSidebar: "展开侧边栏",
|
|
45
|
+
extensions: "扩展",
|
|
46
|
+
navigation: "导航",
|
|
47
|
+
navigationDescription: "主导航",
|
|
48
|
+
observability: "可观测性",
|
|
49
|
+
openNavigation: "打开导航",
|
|
50
|
+
settings: "设置",
|
|
51
|
+
team: "团队",
|
|
52
|
+
},
|
|
53
|
+
pages: {
|
|
54
|
+
databaseTitle: "数据库",
|
|
55
|
+
observabilityPageTitle: "代理可观测性",
|
|
56
|
+
teamTitle: "团队",
|
|
57
|
+
teamCreateOrgDescription: "创建组织以邀请队友并共享此应用。",
|
|
58
|
+
},
|
|
59
|
+
root: {
|
|
60
|
+
commandActions: "操作",
|
|
61
|
+
commandAppearance: "外观",
|
|
62
|
+
commandSearch: "搜索",
|
|
63
|
+
toggleTheme: "切换主题",
|
|
64
|
+
},
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
export default messages;
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
const messages = {
|
|
2
|
+
settings: {
|
|
3
|
+
title: "設定",
|
|
4
|
+
description: "此應用的語言和工作區偏好設定。",
|
|
5
|
+
languageTitle: "語言",
|
|
6
|
+
languageDescription: "選取介面語言。此偏好會儲存到你的帳戶。",
|
|
7
|
+
languageLabel: "介面語言",
|
|
8
|
+
workspaceTitle: "工作區",
|
|
9
|
+
workspaceDescription: "管理團隊成員、組織存取權限和共用工作區偏好。",
|
|
10
|
+
openTeamSettings: "開啟團隊設定",
|
|
11
|
+
openResourceSettings: "開啟資源設定",
|
|
12
|
+
agentTitle: "代理設定",
|
|
13
|
+
agentDescription:
|
|
14
|
+
"開啟代理側邊欄設定,管理模型、API 金鑰、自動化、語音和其他代理控制項。",
|
|
15
|
+
openAgentSettings: "開啟代理設定",
|
|
16
|
+
},
|
|
17
|
+
chat: {
|
|
18
|
+
archiveChat: "封存聊天",
|
|
19
|
+
archiveFailed: "封存失敗",
|
|
20
|
+
chats: "聊天",
|
|
21
|
+
composerPlaceholder: "詢問代理...",
|
|
22
|
+
emptyState: "問我任何問題",
|
|
23
|
+
heroDescription: "讓代理檢查、解釋或更改此應用。",
|
|
24
|
+
heroTitle: "我能幫你什麼?",
|
|
25
|
+
inspectEmptyState: "詢問我有關此應用的任何問題",
|
|
26
|
+
inspectSuggestionAction: "顯示可用操作",
|
|
27
|
+
inspectSuggestionCapabilities: "這個應用能做什麼?",
|
|
28
|
+
inspectSuggestionHello: "幫我開始使用",
|
|
29
|
+
newChat: "新建聊天",
|
|
30
|
+
optionsFor: "選項:",
|
|
31
|
+
pinChat: "置頂聊天",
|
|
32
|
+
renameChat: "重新命名聊天",
|
|
33
|
+
renameFailed: "重新命名失敗",
|
|
34
|
+
renameThread: "重新命名對話",
|
|
35
|
+
suggestionActions: "顯示可用操作",
|
|
36
|
+
suggestionCapabilities: "這個應用能做什麼?",
|
|
37
|
+
suggestionCustomize: "幫我自訂此應用",
|
|
38
|
+
unpinChat: "取消置頂聊天",
|
|
39
|
+
},
|
|
40
|
+
navigation: {
|
|
41
|
+
chat: "聊天",
|
|
42
|
+
collapseSidebar: "收起側邊欄",
|
|
43
|
+
database: "資料庫",
|
|
44
|
+
expandSidebar: "展開側邊欄",
|
|
45
|
+
extensions: "擴充功能",
|
|
46
|
+
navigation: "導覽",
|
|
47
|
+
navigationDescription: "主導覽",
|
|
48
|
+
observability: "可觀測性",
|
|
49
|
+
openNavigation: "開啟導覽",
|
|
50
|
+
settings: "設定",
|
|
51
|
+
team: "團隊",
|
|
52
|
+
},
|
|
53
|
+
pages: {
|
|
54
|
+
databaseTitle: "資料庫",
|
|
55
|
+
observabilityPageTitle: "代理可觀測性",
|
|
56
|
+
teamTitle: "團隊",
|
|
57
|
+
teamCreateOrgDescription: "建立組織以邀請隊友並共用此應用。",
|
|
58
|
+
},
|
|
59
|
+
root: {
|
|
60
|
+
commandActions: "操作",
|
|
61
|
+
commandAppearance: "外觀",
|
|
62
|
+
commandSearch: "搜尋",
|
|
63
|
+
toggleTheme: "切換主題",
|
|
64
|
+
},
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
export default messages;
|