@agent-native/core 0.75.5 → 0.76.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/corpus/README.md +2 -2
- package/corpus/core/CHANGELOG.md +48 -0
- package/corpus/core/docs/AGENTS.md +1 -0
- package/corpus/core/docs/content/client.md +15 -0
- package/corpus/core/docs/content/internationalization.md +145 -0
- package/corpus/core/docs/content/locales/ar-SA/internationalization.md +102 -0
- package/corpus/core/docs/content/locales/de-DE/internationalization.md +102 -0
- package/corpus/core/docs/content/locales/es-ES/internationalization.md +102 -0
- package/corpus/core/docs/content/locales/fr-FR/internationalization.md +102 -0
- package/corpus/core/docs/content/locales/hi-IN/internationalization.md +102 -0
- package/corpus/core/docs/content/locales/ja-JP/internationalization.md +114 -0
- package/corpus/core/docs/content/locales/ko-KR/internationalization.md +102 -0
- package/corpus/core/docs/content/locales/pt-BR/internationalization.md +102 -0
- package/corpus/core/docs/content/locales/zh-CN/internationalization.md +102 -0
- package/corpus/core/docs/content/skills-guide.md +19 -18
- package/corpus/core/package.json +7 -1
- package/corpus/core/src/agent/durable-background.ts +38 -2
- package/corpus/core/src/agent/production-agent.ts +54 -0
- package/corpus/core/src/agent/run-manager.ts +27 -0
- package/corpus/core/src/agent/run-store.ts +185 -4
- package/corpus/core/src/client/CommandMenu.tsx +16 -0
- package/corpus/core/src/client/app-providers.tsx +26 -1
- package/corpus/core/src/client/i18n.tsx +605 -0
- package/corpus/core/src/client/index.ts +28 -0
- package/corpus/core/src/index.browser.ts +25 -0
- package/corpus/core/src/localization/actions/get-localization-preference.ts +23 -0
- package/corpus/core/src/localization/actions/set-localization-preference.ts +30 -0
- package/corpus/core/src/localization/index.ts +2 -0
- package/corpus/core/src/localization/server.ts +131 -0
- package/corpus/core/src/localization/shared.ts +163 -0
- package/corpus/core/src/server/action-discovery.ts +8 -0
- package/corpus/core/src/server/agent-chat-plugin.ts +71 -0
- package/corpus/core/src/server/auth.ts +13 -0
- package/corpus/core/src/server/index.ts +8 -0
- package/corpus/core/src/templates/default/.agents/skills/adding-a-feature/SKILL.md +5 -0
- package/corpus/core/src/templates/default/.agents/skills/internationalization/SKILL.md +77 -0
- package/corpus/core/src/templates/default/.agents/skills/self-modifying-code/SKILL.md +6 -0
- package/corpus/core/src/templates/default/AGENTS.md +16 -15
- package/corpus/core/src/templates/default/app/i18n/en-US.ts +29 -0
- package/corpus/core/src/templates/default/app/i18n/index.ts +13 -0
- package/corpus/core/src/templates/default/app/root.tsx +20 -1
- package/corpus/core/src/templates/default/app/routes/_index.tsx +24 -9
- package/corpus/core/src/templates/default/app/routes/settings.tsx +67 -0
- package/corpus/core/src/templates/workspace-core/.agents/skills/adding-a-feature/SKILL.md +5 -0
- package/corpus/core/src/templates/workspace-core/.agents/skills/internationalization/SKILL.md +77 -0
- package/corpus/core/src/templates/workspace-core/.agents/skills/self-modifying-code/SKILL.md +6 -0
- package/corpus/core/src/vite/action-types-plugin.ts +10 -0
- package/corpus/templates/analytics/.agents/skills/self-modifying-code/SKILL.md +6 -0
- package/corpus/templates/analytics/app/components/layout/CommandPalette.tsx +12 -12
- package/corpus/templates/analytics/app/components/layout/Header.tsx +18 -15
- package/corpus/templates/analytics/app/components/layout/Layout.tsx +7 -5
- package/corpus/templates/analytics/app/components/layout/MobileNav.tsx +9 -3
- package/corpus/templates/analytics/app/components/layout/Sidebar.tsx +28 -26
- package/corpus/templates/analytics/app/i18n/ar-SA.ts +3 -0
- package/corpus/templates/analytics/app/i18n/de-DE.ts +3 -0
- package/corpus/templates/analytics/app/i18n/en-US.ts +3 -0
- package/corpus/templates/analytics/app/i18n/es-ES.ts +3 -0
- package/corpus/templates/analytics/app/i18n/fr-FR.ts +3 -0
- package/corpus/templates/analytics/app/i18n/hi-IN.ts +3 -0
- package/corpus/templates/analytics/app/i18n/index.ts +31 -0
- package/corpus/templates/analytics/app/i18n/ja-JP.ts +3 -0
- package/corpus/templates/analytics/app/i18n/ko-KR.ts +3 -0
- package/corpus/templates/analytics/app/i18n/pt-BR.ts +3 -0
- package/corpus/templates/analytics/app/i18n/zh-CN.ts +3 -0
- package/corpus/templates/analytics/app/i18n-data.ts +433 -0
- package/corpus/templates/analytics/app/pages/Settings.tsx +50 -16
- package/corpus/templates/analytics/app/pages/analyses/AnalysesList.tsx +2 -2
- package/corpus/templates/analytics/app/root.tsx +14 -1
- package/corpus/templates/analytics/changelog/2026-06-24-added-a-language-picker-and-localized-app-chrome-for-support.md +6 -0
- package/corpus/templates/analytics/changelog/2026-06-24-settings-now-link-directly-to-agent-settings-for-model-api-k.md +6 -0
- package/corpus/templates/assets/.agents/skills/self-modifying-code/SKILL.md +6 -0
- package/corpus/templates/assets/app/components/layout/Header.tsx +17 -8
- package/corpus/templates/assets/app/components/layout/Layout.tsx +10 -6
- package/corpus/templates/assets/app/components/layout/Sidebar.tsx +40 -23
- package/corpus/templates/assets/app/i18n/ar-SA.ts +3 -0
- package/corpus/templates/assets/app/i18n/de-DE.ts +3 -0
- package/corpus/templates/assets/app/i18n/en-US.ts +3 -0
- package/corpus/templates/assets/app/i18n/es-ES.ts +3 -0
- package/corpus/templates/assets/app/i18n/fr-FR.ts +3 -0
- package/corpus/templates/assets/app/i18n/hi-IN.ts +3 -0
- package/corpus/templates/assets/app/i18n/index.ts +31 -0
- package/corpus/templates/assets/app/i18n/ja-JP.ts +3 -0
- package/corpus/templates/assets/app/i18n/ko-KR.ts +3 -0
- package/corpus/templates/assets/app/i18n/pt-BR.ts +3 -0
- package/corpus/templates/assets/app/i18n/zh-CN.ts +3 -0
- package/corpus/templates/assets/app/i18n-data.ts +668 -0
- package/corpus/templates/assets/app/root.tsx +40 -15
- package/corpus/templates/assets/app/routes/_index.tsx +9 -10
- package/corpus/templates/assets/app/routes/settings.tsx +37 -6
- package/corpus/templates/assets/changelog/2026-06-24-added-a-language-picker-and-localized-app-chrome-for-support.md +6 -0
- package/corpus/templates/assets/changelog/2026-06-24-settings-now-link-directly-to-agent-settings-for-model-api-k.md +6 -0
- package/corpus/templates/brain/.agents/skills/adding-a-feature/SKILL.md +5 -0
- package/corpus/templates/brain/.agents/skills/self-modifying-code/SKILL.md +6 -0
- package/corpus/templates/brain/app/components/layout/Layout.tsx +12 -8
- package/corpus/templates/brain/app/components/layout/Sidebar.tsx +23 -12
- package/corpus/templates/brain/app/i18n/ar-SA.ts +3 -0
- package/corpus/templates/brain/app/i18n/de-DE.ts +3 -0
- package/corpus/templates/brain/app/i18n/en-US.ts +3 -0
- package/corpus/templates/brain/app/i18n/es-ES.ts +3 -0
- package/corpus/templates/brain/app/i18n/fr-FR.ts +3 -0
- package/corpus/templates/brain/app/i18n/hi-IN.ts +3 -0
- package/corpus/templates/brain/app/i18n/index.ts +31 -0
- package/corpus/templates/brain/app/i18n/ja-JP.ts +3 -0
- package/corpus/templates/brain/app/i18n/ko-KR.ts +3 -0
- package/corpus/templates/brain/app/i18n/pt-BR.ts +3 -0
- package/corpus/templates/brain/app/i18n/zh-CN.ts +3 -0
- package/corpus/templates/brain/app/i18n-data.ts +624 -0
- package/corpus/templates/brain/app/root.tsx +27 -12
- package/corpus/templates/brain/app/routes/knowledge.tsx +6 -6
- package/corpus/templates/brain/app/routes/ops.tsx +4 -4
- package/corpus/templates/brain/app/routes/search.tsx +4 -4
- package/corpus/templates/brain/app/routes/settings.tsx +48 -11
- package/corpus/templates/brain/app/routes/sources.tsx +3 -3
- package/corpus/templates/brain/changelog/2026-06-24-added-a-language-picker-and-localized-app-chrome-for-support.md +6 -0
- package/corpus/templates/brain/changelog/2026-06-24-settings-now-link-directly-to-agent-settings-for-model-api-k.md +6 -0
- package/corpus/templates/calendar/.agents/skills/self-modifying-code/SKILL.md +6 -0
- package/corpus/templates/calendar/app/components/layout/AppLayout.tsx +2 -0
- package/corpus/templates/calendar/app/components/layout/Sidebar.tsx +16 -9
- package/corpus/templates/calendar/app/i18n/ar-SA.ts +57 -0
- package/corpus/templates/calendar/app/i18n/de-DE.ts +58 -0
- package/corpus/templates/calendar/app/i18n/en-US.ts +57 -0
- package/corpus/templates/calendar/app/i18n/es-ES.ts +58 -0
- package/corpus/templates/calendar/app/i18n/fr-FR.ts +58 -0
- package/corpus/templates/calendar/app/i18n/hi-IN.ts +57 -0
- package/corpus/templates/calendar/app/i18n/index.ts +31 -0
- package/corpus/templates/calendar/app/i18n/ja-JP.ts +58 -0
- package/corpus/templates/calendar/app/i18n/ko-KR.ts +57 -0
- package/corpus/templates/calendar/app/i18n/pt-BR.ts +57 -0
- package/corpus/templates/calendar/app/i18n/zh-CN.ts +57 -0
- package/corpus/templates/calendar/app/i18n-data.ts +516 -0
- package/corpus/templates/calendar/app/pages/CalendarView.tsx +2 -0
- package/corpus/templates/calendar/app/pages/Settings.tsx +63 -28
- package/corpus/templates/calendar/app/root.tsx +78 -7
- package/corpus/templates/calendar/changelog/2026-06-24-added-a-language-picker-and-localized-app-chrome-for-support.md +6 -0
- package/corpus/templates/calendar/changelog/2026-06-24-settings-now-link-directly-to-agent-settings-for-model-api-k.md +6 -0
- package/corpus/templates/chat/.agents/skills/adding-a-feature/SKILL.md +5 -0
- package/corpus/templates/chat/.agents/skills/self-modifying-code/SKILL.md +6 -0
- package/corpus/templates/chat/app/components/layout/Header.tsx +17 -11
- package/corpus/templates/chat/app/components/layout/Layout.tsx +12 -8
- package/corpus/templates/chat/app/components/layout/Sidebar.tsx +47 -18
- package/corpus/templates/chat/app/i18n/ar-SA.ts +62 -0
- package/corpus/templates/chat/app/i18n/de-DE.ts +63 -0
- package/corpus/templates/chat/app/i18n/en-US.ts +63 -0
- package/corpus/templates/chat/app/i18n/es-ES.ts +63 -0
- package/corpus/templates/chat/app/i18n/fr-FR.ts +63 -0
- package/corpus/templates/chat/app/i18n/hi-IN.ts +63 -0
- package/corpus/templates/chat/app/i18n/index.ts +31 -0
- package/corpus/templates/chat/app/i18n/ja-JP.ts +63 -0
- package/corpus/templates/chat/app/i18n/ko-KR.ts +63 -0
- package/corpus/templates/chat/app/i18n/pt-BR.ts +63 -0
- package/corpus/templates/chat/app/i18n/zh-CN.ts +61 -0
- package/corpus/templates/chat/app/i18n-data.ts +475 -0
- package/corpus/templates/chat/app/root.tsx +18 -5
- package/corpus/templates/chat/app/routes/_index.tsx +9 -8
- package/corpus/templates/chat/app/routes/settings.tsx +86 -0
- package/corpus/templates/chat/changelog/2026-06-24-a-new-settings-page-gives-quick-access-to-language-workspace.md +6 -0
- package/corpus/templates/chat/changelog/2026-06-24-added-a-language-picker-and-localized-app-chrome-for-support.md +6 -0
- package/corpus/templates/clips/.agents/skills/self-modifying-code/SKILL.md +6 -0
- package/corpus/templates/clips/app/components/layout/Header.tsx +23 -17
- package/corpus/templates/clips/app/components/library/empty-state.tsx +10 -34
- package/corpus/templates/clips/app/components/library/library-layout.tsx +45 -34
- package/corpus/templates/clips/app/i18n/ar-SA.ts +182 -0
- package/corpus/templates/clips/app/i18n/de-DE.ts +184 -0
- package/corpus/templates/clips/app/i18n/en-US.ts +179 -0
- package/corpus/templates/clips/app/i18n/es-ES.ts +183 -0
- package/corpus/templates/clips/app/i18n/fr-FR.ts +184 -0
- package/corpus/templates/clips/app/i18n/hi-IN.ts +180 -0
- package/corpus/templates/clips/app/i18n/index.ts +41 -0
- package/corpus/templates/clips/app/i18n/ja-JP.ts +180 -0
- package/corpus/templates/clips/app/i18n/ko-KR.ts +178 -0
- package/corpus/templates/clips/app/i18n/pt-BR.ts +183 -0
- package/corpus/templates/clips/app/i18n/zh-CN.ts +173 -0
- package/corpus/templates/clips/app/root.tsx +104 -10
- package/corpus/templates/clips/app/routes/_app.settings._index.tsx +154 -95
- package/corpus/templates/clips/changelog/2026-06-24-added-a-language-picker-and-localized-app-chrome-for-support.md +6 -0
- package/corpus/templates/clips/changelog/2026-06-24-clips-now-includes-a-language-picker-and-simplified-chinese-ui.md +6 -0
- package/corpus/templates/clips/changelog/2026-06-24-settings-now-link-directly-to-agent-settings-for-model-api-k.md +6 -0
- package/corpus/templates/content/.agents/skills/self-modifying-code/SKILL.md +6 -0
- package/corpus/templates/content/app/components/EmptyState.tsx +7 -5
- package/corpus/templates/content/app/components/ThemeToggle.tsx +4 -2
- package/corpus/templates/content/app/components/layout/Header.tsx +2 -0
- package/corpus/templates/content/app/components/layout/Layout.tsx +8 -7
- package/corpus/templates/content/app/components/sidebar/DocumentSidebar.tsx +41 -1
- package/corpus/templates/content/app/i18n/ar-SA.ts +3 -0
- package/corpus/templates/content/app/i18n/de-DE.ts +3 -0
- package/corpus/templates/content/app/i18n/en-US.ts +3 -0
- package/corpus/templates/content/app/i18n/es-ES.ts +3 -0
- package/corpus/templates/content/app/i18n/fr-FR.ts +3 -0
- package/corpus/templates/content/app/i18n/hi-IN.ts +3 -0
- package/corpus/templates/content/app/i18n/index.ts +31 -0
- package/corpus/templates/content/app/i18n/ja-JP.ts +3 -0
- package/corpus/templates/content/app/i18n/ko-KR.ts +3 -0
- package/corpus/templates/content/app/i18n/pt-BR.ts +3 -0
- package/corpus/templates/content/app/i18n/zh-CN.ts +3 -0
- package/corpus/templates/content/app/i18n-data.ts +490 -0
- package/corpus/templates/content/app/root.tsx +110 -23
- package/corpus/templates/content/app/routes/_app.settings.tsx +84 -0
- package/corpus/templates/content/changelog/2026-06-24-a-new-settings-page-gives-quick-access-to-language-workspace.md +6 -0
- package/corpus/templates/content/changelog/2026-06-24-added-a-language-picker-and-localized-app-chrome-for-support.md +6 -0
- package/corpus/templates/design/.agents/skills/self-modifying-code/SKILL.md +6 -0
- package/corpus/templates/design/app/components/layout/Header.tsx +16 -8
- package/corpus/templates/design/app/components/layout/Layout.tsx +8 -6
- package/corpus/templates/design/app/components/layout/Sidebar.tsx +25 -9
- package/corpus/templates/design/app/i18n/ar-SA.ts +3 -0
- package/corpus/templates/design/app/i18n/de-DE.ts +3 -0
- package/corpus/templates/design/app/i18n/en-US.ts +3 -0
- package/corpus/templates/design/app/i18n/es-ES.ts +3 -0
- package/corpus/templates/design/app/i18n/fr-FR.ts +3 -0
- package/corpus/templates/design/app/i18n/hi-IN.ts +3 -0
- package/corpus/templates/design/app/i18n/index.ts +31 -0
- package/corpus/templates/design/app/i18n/ja-JP.ts +3 -0
- package/corpus/templates/design/app/i18n/ko-KR.ts +3 -0
- package/corpus/templates/design/app/i18n/pt-BR.ts +3 -0
- package/corpus/templates/design/app/i18n/zh-CN.ts +3 -0
- package/corpus/templates/design/app/i18n-data.ts +350 -0
- package/corpus/templates/design/app/root.tsx +40 -15
- package/corpus/templates/design/app/routes/settings.tsx +43 -0
- package/corpus/templates/design/changelog/2026-06-24-added-a-language-picker-and-localized-app-chrome-for-support.md +6 -0
- package/corpus/templates/design/changelog/2026-06-24-settings-now-link-directly-to-agent-settings-for-model-api-k.md +6 -0
- package/corpus/templates/dispatch/.agents/skills/self-modifying-code/SKILL.md +6 -0
- package/corpus/templates/dispatch/app/i18n/ar-SA.ts +3 -0
- package/corpus/templates/dispatch/app/i18n/de-DE.ts +3 -0
- package/corpus/templates/dispatch/app/i18n/en-US.ts +3 -0
- package/corpus/templates/dispatch/app/i18n/es-ES.ts +3 -0
- package/corpus/templates/dispatch/app/i18n/fr-FR.ts +3 -0
- package/corpus/templates/dispatch/app/i18n/hi-IN.ts +3 -0
- package/corpus/templates/dispatch/app/i18n/index.ts +31 -0
- package/corpus/templates/dispatch/app/i18n/ja-JP.ts +3 -0
- package/corpus/templates/dispatch/app/i18n/ko-KR.ts +3 -0
- package/corpus/templates/dispatch/app/i18n/pt-BR.ts +3 -0
- package/corpus/templates/dispatch/app/i18n/zh-CN.ts +3 -0
- package/corpus/templates/dispatch/app/i18n-data.ts +267 -0
- package/corpus/templates/dispatch/app/root.tsx +18 -4
- package/corpus/templates/dispatch/app/routes/settings.tsx +86 -0
- package/corpus/templates/dispatch/changelog/2026-06-24-a-new-settings-page-gives-quick-access-to-language-workspace.md +6 -0
- package/corpus/templates/dispatch/changelog/2026-06-24-added-a-language-picker-and-localized-app-chrome-for-support.md +6 -0
- package/corpus/templates/forms/.agents/skills/self-modifying-code/SKILL.md +6 -0
- package/corpus/templates/forms/app/components/layout/Header.tsx +16 -9
- package/corpus/templates/forms/app/components/layout/Layout.tsx +6 -4
- package/corpus/templates/forms/app/components/layout/Sidebar.tsx +34 -17
- package/corpus/templates/forms/app/i18n/ar-SA.ts +58 -0
- package/corpus/templates/forms/app/i18n/de-DE.ts +59 -0
- package/corpus/templates/forms/app/i18n/en-US.ts +59 -0
- package/corpus/templates/forms/app/i18n/es-ES.ts +59 -0
- package/corpus/templates/forms/app/i18n/fr-FR.ts +59 -0
- package/corpus/templates/forms/app/i18n/hi-IN.ts +59 -0
- package/corpus/templates/forms/app/i18n/index.ts +31 -0
- package/corpus/templates/forms/app/i18n/ja-JP.ts +59 -0
- package/corpus/templates/forms/app/i18n/ko-KR.ts +59 -0
- package/corpus/templates/forms/app/i18n/pt-BR.ts +59 -0
- package/corpus/templates/forms/app/i18n/zh-CN.ts +56 -0
- package/corpus/templates/forms/app/root.tsx +65 -16
- package/corpus/templates/forms/app/routes/_app.settings.tsx +85 -0
- package/corpus/templates/forms/changelog/2026-06-24-a-new-settings-page-gives-quick-access-to-language-workspace.md +6 -0
- package/corpus/templates/forms/changelog/2026-06-24-added-a-language-picker-and-localized-app-chrome-for-support.md +6 -0
- package/corpus/templates/macros/app/components/layout/AppLayout.tsx +29 -17
- package/corpus/templates/macros/app/components/layout/Header.tsx +16 -10
- package/corpus/templates/macros/app/i18n/ar-SA.ts +54 -0
- package/corpus/templates/macros/app/i18n/de-DE.ts +55 -0
- package/corpus/templates/macros/app/i18n/en-US.ts +55 -0
- package/corpus/templates/macros/app/i18n/es-ES.ts +55 -0
- package/corpus/templates/macros/app/i18n/fr-FR.ts +55 -0
- package/corpus/templates/macros/app/i18n/hi-IN.ts +55 -0
- package/corpus/templates/macros/app/i18n/index.ts +31 -0
- package/corpus/templates/macros/app/i18n/ja-JP.ts +55 -0
- package/corpus/templates/macros/app/i18n/ko-KR.ts +55 -0
- package/corpus/templates/macros/app/i18n/pt-BR.ts +55 -0
- package/corpus/templates/macros/app/i18n/zh-CN.ts +53 -0
- package/corpus/templates/macros/app/root.tsx +65 -15
- package/corpus/templates/macros/app/routes/settings.tsx +85 -0
- package/corpus/templates/macros/changelog/2026-06-24-a-new-settings-page-gives-quick-access-to-language-workspace.md +6 -0
- package/corpus/templates/macros/changelog/2026-06-24-added-a-language-picker-and-localized-app-chrome-for-support.md +6 -0
- package/corpus/templates/mail/.agents/skills/self-modifying-code/SKILL.md +6 -0
- package/corpus/templates/mail/app/components/layout/AppLayout.tsx +9 -4
- package/corpus/templates/mail/app/i18n/ar-SA.ts +33 -0
- package/corpus/templates/mail/app/i18n/de-DE.ts +33 -0
- package/corpus/templates/mail/app/i18n/en-US.ts +32 -0
- package/corpus/templates/mail/app/i18n/es-ES.ts +33 -0
- package/corpus/templates/mail/app/i18n/fr-FR.ts +33 -0
- package/corpus/templates/mail/app/i18n/hi-IN.ts +32 -0
- package/corpus/templates/mail/app/i18n/index.ts +31 -0
- package/corpus/templates/mail/app/i18n/ja-JP.ts +32 -0
- package/corpus/templates/mail/app/i18n/ko-KR.ts +33 -0
- package/corpus/templates/mail/app/i18n/pt-BR.ts +34 -0
- package/corpus/templates/mail/app/i18n/zh-CN.ts +32 -0
- package/corpus/templates/mail/app/pages/SettingsPage.tsx +67 -13
- package/corpus/templates/mail/app/root.tsx +20 -0
- package/corpus/templates/mail/changelog/2026-06-24-added-a-language-picker-and-localized-app-chrome-for-support.md +6 -0
- package/corpus/templates/mail/changelog/2026-06-24-settings-now-link-directly-to-agent-settings-for-model-api-k.md +6 -0
- package/corpus/templates/plan/.agents/skills/adding-a-feature/SKILL.md +5 -0
- package/corpus/templates/plan/.agents/skills/self-modifying-code/SKILL.md +6 -0
- package/corpus/templates/plan/app/components/layout/Header.tsx +19 -12
- package/corpus/templates/plan/app/components/layout/Layout.tsx +11 -7
- package/corpus/templates/plan/app/components/layout/Sidebar.tsx +41 -28
- package/corpus/templates/plan/app/i18n/ar-SA.ts +77 -0
- package/corpus/templates/plan/app/i18n/de-DE.ts +78 -0
- package/corpus/templates/plan/app/i18n/en-US.ts +78 -0
- package/corpus/templates/plan/app/i18n/es-ES.ts +78 -0
- package/corpus/templates/plan/app/i18n/fr-FR.ts +78 -0
- package/corpus/templates/plan/app/i18n/hi-IN.ts +78 -0
- package/corpus/templates/plan/app/i18n/index.ts +31 -0
- package/corpus/templates/plan/app/i18n/ja-JP.ts +79 -0
- package/corpus/templates/plan/app/i18n/ko-KR.ts +77 -0
- package/corpus/templates/plan/app/i18n/pt-BR.ts +78 -0
- package/corpus/templates/plan/app/i18n/zh-CN.ts +74 -0
- package/corpus/templates/plan/app/root.tsx +45 -8
- package/corpus/templates/plan/app/routes/settings.tsx +86 -0
- package/corpus/templates/plan/changelog/2026-06-24-a-new-settings-page-gives-quick-access-to-language-workspace.md +6 -0
- package/corpus/templates/plan/changelog/2026-06-24-added-a-language-picker-and-localized-app-chrome-for-support.md +6 -0
- package/corpus/templates/slides/.agents/skills/self-modifying-code/SKILL.md +6 -0
- package/corpus/templates/slides/app/components/layout/Header.tsx +23 -11
- package/corpus/templates/slides/app/components/layout/Layout.tsx +7 -6
- package/corpus/templates/slides/app/components/layout/Sidebar.tsx +23 -11
- package/corpus/templates/slides/app/i18n/ar-SA.ts +54 -0
- package/corpus/templates/slides/app/i18n/de-DE.ts +56 -0
- package/corpus/templates/slides/app/i18n/en-US.ts +55 -0
- package/corpus/templates/slides/app/i18n/es-ES.ts +55 -0
- package/corpus/templates/slides/app/i18n/fr-FR.ts +55 -0
- package/corpus/templates/slides/app/i18n/hi-IN.ts +55 -0
- package/corpus/templates/slides/app/i18n/index.ts +31 -0
- package/corpus/templates/slides/app/i18n/ja-JP.ts +55 -0
- package/corpus/templates/slides/app/i18n/ko-KR.ts +55 -0
- package/corpus/templates/slides/app/i18n/pt-BR.ts +55 -0
- package/corpus/templates/slides/app/i18n/zh-CN.ts +53 -0
- package/corpus/templates/slides/app/root.tsx +50 -8
- package/corpus/templates/slides/app/routes/settings.tsx +85 -0
- package/corpus/templates/slides/changelog/2026-06-24-a-new-settings-page-gives-quick-access-to-language-workspace.md +6 -0
- package/corpus/templates/slides/changelog/2026-06-24-added-a-language-picker-and-localized-app-chrome-for-support.md +6 -0
- package/corpus/templates/videos/.agents/skills/self-modifying-code/SKILL.md +6 -0
- package/corpus/templates/videos/app/components/NewCompositionPopover.tsx +14 -9
- package/corpus/templates/videos/app/components/Sidebar.tsx +16 -9
- package/corpus/templates/videos/app/components/StudioHeader.tsx +12 -8
- package/corpus/templates/videos/app/components/layout/Header.tsx +21 -15
- package/corpus/templates/videos/app/components/layout/Layout.tsx +10 -7
- package/corpus/templates/videos/app/components/layout/NavSidebar.tsx +21 -6
- package/corpus/templates/videos/app/i18n/ar-SA.ts +73 -0
- package/corpus/templates/videos/app/i18n/de-DE.ts +75 -0
- package/corpus/templates/videos/app/i18n/en-US.ts +74 -0
- package/corpus/templates/videos/app/i18n/es-ES.ts +75 -0
- package/corpus/templates/videos/app/i18n/fr-FR.ts +75 -0
- package/corpus/templates/videos/app/i18n/hi-IN.ts +74 -0
- package/corpus/templates/videos/app/i18n/index.ts +31 -0
- package/corpus/templates/videos/app/i18n/ja-JP.ts +74 -0
- package/corpus/templates/videos/app/i18n/ko-KR.ts +74 -0
- package/corpus/templates/videos/app/i18n/pt-BR.ts +75 -0
- package/corpus/templates/videos/app/i18n/zh-CN.ts +72 -0
- package/corpus/templates/videos/app/pages/Index.tsx +11 -9
- package/corpus/templates/videos/app/root.tsx +45 -7
- package/corpus/templates/videos/app/routes/settings.tsx +85 -0
- package/corpus/templates/videos/changelog/2026-06-24-a-new-settings-page-gives-quick-access-to-language-workspace.md +6 -0
- package/corpus/templates/videos/changelog/2026-06-24-added-a-language-picker-and-localized-app-chrome-for-support.md +6 -0
- package/dist/agent/durable-background.d.ts +15 -0
- package/dist/agent/durable-background.d.ts.map +1 -1
- package/dist/agent/durable-background.js +28 -2
- package/dist/agent/durable-background.js.map +1 -1
- package/dist/agent/production-agent.d.ts.map +1 -1
- package/dist/agent/production-agent.js +34 -1
- package/dist/agent/production-agent.js.map +1 -1
- package/dist/agent/run-manager.d.ts +8 -0
- package/dist/agent/run-manager.d.ts.map +1 -1
- package/dist/agent/run-manager.js +18 -1
- package/dist/agent/run-manager.js.map +1 -1
- package/dist/agent/run-store.d.ts +99 -0
- package/dist/agent/run-store.d.ts.map +1 -1
- package/dist/agent/run-store.js +155 -4
- package/dist/agent/run-store.js.map +1 -1
- package/dist/client/CommandMenu.d.ts +3 -0
- package/dist/client/CommandMenu.d.ts.map +1 -1
- package/dist/client/CommandMenu.js +9 -0
- package/dist/client/CommandMenu.js.map +1 -1
- package/dist/client/app-providers.d.ts +8 -1
- package/dist/client/app-providers.d.ts.map +1 -1
- package/dist/client/app-providers.js +7 -5
- package/dist/client/app-providers.js.map +1 -1
- package/dist/client/i18n.d.ts +54 -0
- package/dist/client/i18n.d.ts.map +1 -0
- package/dist/client/i18n.js +354 -0
- package/dist/client/i18n.js.map +1 -0
- package/dist/client/index.d.ts +2 -1
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +2 -1
- package/dist/client/index.js.map +1 -1
- package/dist/index.browser.d.ts +1 -1
- package/dist/index.browser.d.ts.map +1 -1
- package/dist/index.browser.js +1 -1
- package/dist/index.browser.js.map +1 -1
- package/dist/localization/actions/get-localization-preference.d.ts +4 -0
- package/dist/localization/actions/get-localization-preference.d.ts.map +1 -0
- package/dist/localization/actions/get-localization-preference.js +16 -0
- package/dist/localization/actions/get-localization-preference.js.map +1 -0
- package/dist/localization/actions/set-localization-preference.d.ts +6 -0
- package/dist/localization/actions/set-localization-preference.d.ts.map +1 -0
- package/dist/localization/actions/set-localization-preference.js +24 -0
- package/dist/localization/actions/set-localization-preference.js.map +1 -0
- package/dist/localization/index.d.ts +3 -0
- package/dist/localization/index.d.ts.map +1 -0
- package/dist/localization/index.js +3 -0
- package/dist/localization/index.js.map +1 -0
- package/dist/localization/server.d.ts +25 -0
- package/dist/localization/server.d.ts.map +1 -0
- package/dist/localization/server.js +69 -0
- package/dist/localization/server.js.map +1 -0
- package/dist/localization/shared.d.ts +25 -0
- package/dist/localization/shared.d.ts.map +1 -0
- package/dist/localization/shared.js +134 -0
- package/dist/localization/shared.js.map +1 -0
- package/dist/server/action-discovery.d.ts.map +1 -1
- package/dist/server/action-discovery.js +8 -0
- package/dist/server/action-discovery.js.map +1 -1
- package/dist/server/agent-chat-plugin.d.ts.map +1 -1
- package/dist/server/agent-chat-plugin.js +58 -1
- package/dist/server/agent-chat-plugin.js.map +1 -1
- package/dist/server/auth.d.ts.map +1 -1
- package/dist/server/auth.js +12 -0
- package/dist/server/auth.js.map +1 -1
- package/dist/server/index.d.ts +1 -0
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js +1 -0
- package/dist/server/index.js.map +1 -1
- package/dist/templates/default/.agents/skills/adding-a-feature/SKILL.md +5 -0
- package/dist/templates/default/.agents/skills/internationalization/SKILL.md +77 -0
- package/dist/templates/default/.agents/skills/self-modifying-code/SKILL.md +6 -0
- package/dist/templates/default/AGENTS.md +16 -15
- package/dist/templates/default/app/i18n/en-US.ts +29 -0
- package/dist/templates/default/app/i18n/index.ts +13 -0
- package/dist/templates/default/app/root.tsx +20 -1
- package/dist/templates/default/app/routes/_index.tsx +24 -9
- package/dist/templates/default/app/routes/settings.tsx +67 -0
- package/dist/templates/workspace-core/.agents/skills/adding-a-feature/SKILL.md +5 -0
- package/dist/templates/workspace-core/.agents/skills/internationalization/SKILL.md +77 -0
- package/dist/templates/workspace-core/.agents/skills/self-modifying-code/SKILL.md +6 -0
- package/dist/vite/action-types-plugin.d.ts.map +1 -1
- package/dist/vite/action-types-plugin.js +8 -0
- package/dist/vite/action-types-plugin.js.map +1 -1
- package/docs/AGENTS.md +1 -0
- package/docs/content/client.md +15 -0
- package/docs/content/internationalization.md +145 -0
- package/docs/content/locales/ar-SA/internationalization.md +102 -0
- package/docs/content/locales/de-DE/internationalization.md +102 -0
- package/docs/content/locales/es-ES/internationalization.md +102 -0
- package/docs/content/locales/fr-FR/internationalization.md +102 -0
- package/docs/content/locales/hi-IN/internationalization.md +102 -0
- package/docs/content/locales/ja-JP/internationalization.md +114 -0
- package/docs/content/locales/ko-KR/internationalization.md +102 -0
- package/docs/content/locales/pt-BR/internationalization.md +102 -0
- package/docs/content/locales/zh-CN/internationalization.md +102 -0
- package/docs/content/skills-guide.md +19 -18
- package/package.json +7 -1
- package/src/templates/default/.agents/skills/adding-a-feature/SKILL.md +5 -0
- package/src/templates/default/.agents/skills/internationalization/SKILL.md +77 -0
- package/src/templates/default/.agents/skills/self-modifying-code/SKILL.md +6 -0
- package/src/templates/default/AGENTS.md +16 -15
- package/src/templates/default/app/i18n/en-US.ts +29 -0
- package/src/templates/default/app/i18n/index.ts +13 -0
- package/src/templates/default/app/root.tsx +20 -1
- package/src/templates/default/app/routes/_index.tsx +24 -9
- package/src/templates/default/app/routes/settings.tsx +67 -0
- package/src/templates/workspace-core/.agents/skills/adding-a-feature/SKILL.md +5 -0
- package/src/templates/workspace-core/.agents/skills/internationalization/SKILL.md +77 -0
- package/src/templates/workspace-core/.agents/skills/self-modifying-code/SKILL.md +6 -0
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
const messages = {
|
|
2
|
+
root: {
|
|
3
|
+
commandActions: "الإجراءات",
|
|
4
|
+
search: "بحث",
|
|
5
|
+
appearance: "المظهر",
|
|
6
|
+
toggleTheme: "تبديل السمة",
|
|
7
|
+
},
|
|
8
|
+
header: {
|
|
9
|
+
entry: "الإدخال",
|
|
10
|
+
analytics: "التحليلات",
|
|
11
|
+
settings: "الإعدادات",
|
|
12
|
+
extensions: "الإضافات",
|
|
13
|
+
macros: "Macros",
|
|
14
|
+
},
|
|
15
|
+
navigation: {
|
|
16
|
+
brand: "Macros",
|
|
17
|
+
entry: "الإدخال",
|
|
18
|
+
analytics: "التحليلات",
|
|
19
|
+
settings: "الإعدادات",
|
|
20
|
+
},
|
|
21
|
+
settings: {
|
|
22
|
+
title: "الإعدادات",
|
|
23
|
+
description: "تفضيلات اللغة ومساحة العمل لهذا التطبيق.",
|
|
24
|
+
languageTitle: "اللغة",
|
|
25
|
+
languageDescription: "اختر لغة الواجهة. يتم حفظ هذا التفضيل في حسابك.",
|
|
26
|
+
languageLabel: "لغة الواجهة",
|
|
27
|
+
workspaceTitle: "مساحة العمل",
|
|
28
|
+
workspaceDescription:
|
|
29
|
+
"إدارة أعضاء الفريق ووصول المؤسسة وتفضيلات مساحة العمل المشتركة.",
|
|
30
|
+
openTeamSettings: "فتح إعدادات الفريق",
|
|
31
|
+
openResourceSettings: "فتح إعدادات الموارد",
|
|
32
|
+
agentTitle: "إعدادات الوكيل",
|
|
33
|
+
agentDescription:
|
|
34
|
+
"افتح إعدادات الوكيل في الشريط الجانبي لإدارة النموذج ومفاتيح API والأتمتة والصوت وعناصر التحكم الأخرى.",
|
|
35
|
+
openAgentSettings: "فتح إعدادات الوكيل",
|
|
36
|
+
},
|
|
37
|
+
agent: {
|
|
38
|
+
emptyState: "أخبرني بما أكلته وسأقدر وحدات الماكرو",
|
|
39
|
+
suggestionLunch: "وعاء بوريتو دجاج للغداء",
|
|
40
|
+
suggestionMacros: "ما وحدات الماكرو الخاصة بي اليوم؟",
|
|
41
|
+
suggestionRun: "ركضت 30 دقيقة هذا الصباح",
|
|
42
|
+
},
|
|
43
|
+
sidebar: {
|
|
44
|
+
openMenu: "فتح القائمة",
|
|
45
|
+
navigation: "التنقل",
|
|
46
|
+
expandLeftSidebar: "توسيع الشريط الجانبي الأيسر",
|
|
47
|
+
collapseLeftSidebar: "طي الشريط الجانبي الأيسر",
|
|
48
|
+
expand: "توسيع الشريط الجانبي",
|
|
49
|
+
collapse: "طي الشريط الجانبي",
|
|
50
|
+
syncing: "جار المزامنة...",
|
|
51
|
+
},
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
export default messages;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
const messages = {
|
|
2
|
+
root: {
|
|
3
|
+
commandActions: "Aktionen",
|
|
4
|
+
search: "Suchen",
|
|
5
|
+
appearance: "Darstellung",
|
|
6
|
+
toggleTheme: "Design wechseln",
|
|
7
|
+
},
|
|
8
|
+
header: {
|
|
9
|
+
entry: "Eintrag",
|
|
10
|
+
analytics: "Analysen",
|
|
11
|
+
settings: "Einstellungen",
|
|
12
|
+
extensions: "Erweiterungen",
|
|
13
|
+
macros: "Macros",
|
|
14
|
+
},
|
|
15
|
+
navigation: {
|
|
16
|
+
brand: "Macros",
|
|
17
|
+
entry: "Eintrag",
|
|
18
|
+
analytics: "Analysen",
|
|
19
|
+
settings: "Einstellungen",
|
|
20
|
+
},
|
|
21
|
+
settings: {
|
|
22
|
+
title: "Einstellungen",
|
|
23
|
+
description: "Sprach- und Arbeitsbereichseinstellungen für diese App.",
|
|
24
|
+
languageTitle: "Sprache",
|
|
25
|
+
languageDescription:
|
|
26
|
+
"Wähle die Sprache der Oberfläche. Diese Einstellung wird in deinem Konto gespeichert.",
|
|
27
|
+
languageLabel: "Oberflächensprache",
|
|
28
|
+
workspaceTitle: "Arbeitsbereich",
|
|
29
|
+
workspaceDescription:
|
|
30
|
+
"Verwalte Teammitglieder, Organisationszugriff und gemeinsame Arbeitsbereichseinstellungen.",
|
|
31
|
+
openTeamSettings: "Teameinstellungen öffnen",
|
|
32
|
+
openResourceSettings: "Ressourceneinstellungen öffnen",
|
|
33
|
+
agentTitle: "Agent-Einstellungen",
|
|
34
|
+
agentDescription:
|
|
35
|
+
"Öffne die Agent-Einstellungen in der Seitenleiste für Modell, API-Schlüssel, Automatisierungen, Sprache und weitere Steuerungen.",
|
|
36
|
+
openAgentSettings: "Agent-Einstellungen öffnen",
|
|
37
|
+
},
|
|
38
|
+
agent: {
|
|
39
|
+
emptyState: "Sag mir, was du gegessen hast - ich schatze die Makros",
|
|
40
|
+
suggestionLunch: "Chicken-Burrito-Bowl zum Mittagessen",
|
|
41
|
+
suggestionMacros: "Was sind meine Makros heute?",
|
|
42
|
+
suggestionRun: "Ich bin heute Morgen 30 Minuten gelaufen",
|
|
43
|
+
},
|
|
44
|
+
sidebar: {
|
|
45
|
+
openMenu: "Menu offnen",
|
|
46
|
+
navigation: "Navigation",
|
|
47
|
+
expandLeftSidebar: "Linke Seitenleiste erweitern",
|
|
48
|
+
collapseLeftSidebar: "Linke Seitenleiste einklappen",
|
|
49
|
+
expand: "Seitenleiste erweitern",
|
|
50
|
+
collapse: "Seitenleiste einklappen",
|
|
51
|
+
syncing: "Synchronisieren...",
|
|
52
|
+
},
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
export default messages;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
const messages = {
|
|
2
|
+
root: {
|
|
3
|
+
commandActions: "Actions",
|
|
4
|
+
search: "Search",
|
|
5
|
+
appearance: "Appearance",
|
|
6
|
+
toggleTheme: "Toggle theme",
|
|
7
|
+
},
|
|
8
|
+
header: {
|
|
9
|
+
entry: "Entry",
|
|
10
|
+
analytics: "Analytics",
|
|
11
|
+
settings: "Settings",
|
|
12
|
+
extensions: "Extensions",
|
|
13
|
+
macros: "Macros",
|
|
14
|
+
},
|
|
15
|
+
navigation: {
|
|
16
|
+
brand: "Macros",
|
|
17
|
+
entry: "Entry",
|
|
18
|
+
analytics: "Analytics",
|
|
19
|
+
settings: "Settings",
|
|
20
|
+
},
|
|
21
|
+
settings: {
|
|
22
|
+
title: "Settings",
|
|
23
|
+
description: "Language and workspace preferences for this app.",
|
|
24
|
+
languageTitle: "Language",
|
|
25
|
+
languageDescription:
|
|
26
|
+
"Choose the interface language. This preference is saved for your account.",
|
|
27
|
+
languageLabel: "Interface language",
|
|
28
|
+
workspaceTitle: "Workspace",
|
|
29
|
+
workspaceDescription:
|
|
30
|
+
"Manage team members, organization access, and shared workspace preferences.",
|
|
31
|
+
openTeamSettings: "Open team settings",
|
|
32
|
+
openResourceSettings: "Open resource settings",
|
|
33
|
+
agentTitle: "Agent settings",
|
|
34
|
+
agentDescription:
|
|
35
|
+
"Open the agent sidebar settings for model, API keys, automations, voice, and other agent controls.",
|
|
36
|
+
openAgentSettings: "Open agent settings",
|
|
37
|
+
},
|
|
38
|
+
agent: {
|
|
39
|
+
emptyState: "Just tell me what you ate — I'll estimate the macros",
|
|
40
|
+
suggestionLunch: "Chicken burrito bowl for lunch",
|
|
41
|
+
suggestionMacros: "What are my macros today?",
|
|
42
|
+
suggestionRun: "I ran 30 minutes this morning",
|
|
43
|
+
},
|
|
44
|
+
sidebar: {
|
|
45
|
+
openMenu: "Open menu",
|
|
46
|
+
navigation: "Navigation",
|
|
47
|
+
expandLeftSidebar: "Expand left sidebar",
|
|
48
|
+
collapseLeftSidebar: "Collapse left sidebar",
|
|
49
|
+
expand: "Expand sidebar",
|
|
50
|
+
collapse: "Collapse sidebar",
|
|
51
|
+
syncing: "Syncing…",
|
|
52
|
+
},
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
export default messages;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
const messages = {
|
|
2
|
+
root: {
|
|
3
|
+
commandActions: "Acciones",
|
|
4
|
+
search: "Buscar",
|
|
5
|
+
appearance: "Apariencia",
|
|
6
|
+
toggleTheme: "Cambiar tema",
|
|
7
|
+
},
|
|
8
|
+
header: {
|
|
9
|
+
entry: "Registro",
|
|
10
|
+
analytics: "Analitica",
|
|
11
|
+
settings: "Configuracion",
|
|
12
|
+
extensions: "Extensiones",
|
|
13
|
+
macros: "Macros",
|
|
14
|
+
},
|
|
15
|
+
navigation: {
|
|
16
|
+
brand: "Macros",
|
|
17
|
+
entry: "Registro",
|
|
18
|
+
analytics: "Analitica",
|
|
19
|
+
settings: "Configuracion",
|
|
20
|
+
},
|
|
21
|
+
settings: {
|
|
22
|
+
title: "Ajustes",
|
|
23
|
+
description: "Preferencias de idioma y espacio de trabajo para esta app.",
|
|
24
|
+
languageTitle: "Idioma",
|
|
25
|
+
languageDescription:
|
|
26
|
+
"Elige el idioma de la interfaz. Esta preferencia se guarda en tu cuenta.",
|
|
27
|
+
languageLabel: "Idioma de la interfaz",
|
|
28
|
+
workspaceTitle: "Espacio de trabajo",
|
|
29
|
+
workspaceDescription:
|
|
30
|
+
"Gestiona miembros del equipo, acceso de la organización y preferencias compartidas.",
|
|
31
|
+
openTeamSettings: "Abrir ajustes del equipo",
|
|
32
|
+
openResourceSettings: "Abrir ajustes de recursos",
|
|
33
|
+
agentTitle: "Ajustes del agente",
|
|
34
|
+
agentDescription:
|
|
35
|
+
"Abre los ajustes del agente en la barra lateral para modelos, claves API, automatizaciones, voz y otros controles.",
|
|
36
|
+
openAgentSettings: "Abrir ajustes del agente",
|
|
37
|
+
},
|
|
38
|
+
agent: {
|
|
39
|
+
emptyState: "Dime que comiste y estimare tus macros",
|
|
40
|
+
suggestionLunch: "Bowl de burrito de pollo para comer",
|
|
41
|
+
suggestionMacros: "Cuales son mis macros hoy?",
|
|
42
|
+
suggestionRun: "Corri 30 minutos esta manana",
|
|
43
|
+
},
|
|
44
|
+
sidebar: {
|
|
45
|
+
openMenu: "Abrir menu",
|
|
46
|
+
navigation: "Navegacion",
|
|
47
|
+
expandLeftSidebar: "Expandir barra lateral izquierda",
|
|
48
|
+
collapseLeftSidebar: "Contraer barra lateral izquierda",
|
|
49
|
+
expand: "Expandir barra lateral",
|
|
50
|
+
collapse: "Contraer barra lateral",
|
|
51
|
+
syncing: "Sincronizando...",
|
|
52
|
+
},
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
export default messages;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
const messages = {
|
|
2
|
+
root: {
|
|
3
|
+
commandActions: "Actions",
|
|
4
|
+
search: "Rechercher",
|
|
5
|
+
appearance: "Apparence",
|
|
6
|
+
toggleTheme: "Changer de theme",
|
|
7
|
+
},
|
|
8
|
+
header: {
|
|
9
|
+
entry: "Saisie",
|
|
10
|
+
analytics: "Analyses",
|
|
11
|
+
settings: "Parametres",
|
|
12
|
+
extensions: "Extensions",
|
|
13
|
+
macros: "Macros",
|
|
14
|
+
},
|
|
15
|
+
navigation: {
|
|
16
|
+
brand: "Macros",
|
|
17
|
+
entry: "Saisie",
|
|
18
|
+
analytics: "Analyses",
|
|
19
|
+
settings: "Parametres",
|
|
20
|
+
},
|
|
21
|
+
settings: {
|
|
22
|
+
title: "Paramètres",
|
|
23
|
+
description: "Préférences de langue et d’espace de travail pour cette app.",
|
|
24
|
+
languageTitle: "Langue",
|
|
25
|
+
languageDescription:
|
|
26
|
+
"Choisissez la langue de l’interface. Cette préférence est enregistrée dans votre compte.",
|
|
27
|
+
languageLabel: "Langue de l’interface",
|
|
28
|
+
workspaceTitle: "Espace de travail",
|
|
29
|
+
workspaceDescription:
|
|
30
|
+
"Gérez les membres, l’accès de l’organisation et les préférences partagées.",
|
|
31
|
+
openTeamSettings: "Ouvrir les paramètres d’équipe",
|
|
32
|
+
openResourceSettings: "Ouvrir les paramètres des ressources",
|
|
33
|
+
agentTitle: "Paramètres de l’agent",
|
|
34
|
+
agentDescription:
|
|
35
|
+
"Ouvrez les paramètres de l’agent dans la barre latérale pour les modèles, clés API, automatisations, voix et autres contrôles.",
|
|
36
|
+
openAgentSettings: "Ouvrir les paramètres de l’agent",
|
|
37
|
+
},
|
|
38
|
+
agent: {
|
|
39
|
+
emptyState: "Dites-moi ce que vous avez mange, j'estimerai les macros",
|
|
40
|
+
suggestionLunch: "Bol burrito au poulet pour le dejeuner",
|
|
41
|
+
suggestionMacros: "Quelles sont mes macros aujourd'hui?",
|
|
42
|
+
suggestionRun: "J'ai couru 30 minutes ce matin",
|
|
43
|
+
},
|
|
44
|
+
sidebar: {
|
|
45
|
+
openMenu: "Ouvrir le menu",
|
|
46
|
+
navigation: "Navigation",
|
|
47
|
+
expandLeftSidebar: "Developper la barre laterale gauche",
|
|
48
|
+
collapseLeftSidebar: "Reduire la barre laterale gauche",
|
|
49
|
+
expand: "Developper la barre laterale",
|
|
50
|
+
collapse: "Reduire la barre laterale",
|
|
51
|
+
syncing: "Synchronisation...",
|
|
52
|
+
},
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
export default messages;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
const messages = {
|
|
2
|
+
root: {
|
|
3
|
+
commandActions: "एक्शन",
|
|
4
|
+
search: "खोजें",
|
|
5
|
+
appearance: "दिखावट",
|
|
6
|
+
toggleTheme: "थीम बदलें",
|
|
7
|
+
},
|
|
8
|
+
header: {
|
|
9
|
+
entry: "एंट्री",
|
|
10
|
+
analytics: "एनालिटिक्स",
|
|
11
|
+
settings: "सेटिंग्स",
|
|
12
|
+
extensions: "एक्सटेंशन",
|
|
13
|
+
macros: "Macros",
|
|
14
|
+
},
|
|
15
|
+
navigation: {
|
|
16
|
+
brand: "Macros",
|
|
17
|
+
entry: "एंट्री",
|
|
18
|
+
analytics: "एनालिटिक्स",
|
|
19
|
+
settings: "सेटिंग्स",
|
|
20
|
+
},
|
|
21
|
+
settings: {
|
|
22
|
+
title: "सेटिंग्स",
|
|
23
|
+
description: "इस ऐप के लिए भाषा और कार्यस्थान प्राथमिकताएं।",
|
|
24
|
+
languageTitle: "भाषा",
|
|
25
|
+
languageDescription:
|
|
26
|
+
"इंटरफ़ेस भाषा चुनें। यह पसंद आपके खाते में सहेजी जाती है।",
|
|
27
|
+
languageLabel: "इंटरफ़ेस भाषा",
|
|
28
|
+
workspaceTitle: "कार्यस्थान",
|
|
29
|
+
workspaceDescription:
|
|
30
|
+
"टीम सदस्यों, संगठन पहुंच और साझा कार्यस्थान प्राथमिकताओं को प्रबंधित करें।",
|
|
31
|
+
openTeamSettings: "टीम सेटिंग्स खोलें",
|
|
32
|
+
openResourceSettings: "संसाधन सेटिंग्स खोलें",
|
|
33
|
+
agentTitle: "एजेंट सेटिंग्स",
|
|
34
|
+
agentDescription:
|
|
35
|
+
"मॉडल, API कुंजियों, ऑटोमेशन, आवाज़ और अन्य एजेंट नियंत्रणों के लिए साइडबार सेटिंग्स खोलें।",
|
|
36
|
+
openAgentSettings: "एजेंट सेटिंग्स खोलें",
|
|
37
|
+
},
|
|
38
|
+
agent: {
|
|
39
|
+
emptyState: "आपने क्या खाया बताएं — मैं macros का अनुमान लगाऊंगा",
|
|
40
|
+
suggestionLunch: "Lunch में chicken burrito bowl",
|
|
41
|
+
suggestionMacros: "आज मेरे macros क्या हैं?",
|
|
42
|
+
suggestionRun: "मैं आज सुबह 30 मिनट दौड़ा",
|
|
43
|
+
},
|
|
44
|
+
sidebar: {
|
|
45
|
+
openMenu: "Menu खोलें",
|
|
46
|
+
navigation: "Navigation",
|
|
47
|
+
expandLeftSidebar: "Left sidebar फैलाएं",
|
|
48
|
+
collapseLeftSidebar: "Left sidebar समेटें",
|
|
49
|
+
expand: "Sidebar फैलाएं",
|
|
50
|
+
collapse: "Sidebar समेटें",
|
|
51
|
+
syncing: "Sync हो रहा है...",
|
|
52
|
+
},
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
export default messages;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import enUS from "./en-US";
|
|
2
|
+
import type { AgentNativeI18nCatalog } from "@agent-native/core/client";
|
|
3
|
+
|
|
4
|
+
export const i18nCatalog = {
|
|
5
|
+
sourceLocale: "en-US",
|
|
6
|
+
messages: enUS,
|
|
7
|
+
loadMessages: async (locale) => {
|
|
8
|
+
switch (locale) {
|
|
9
|
+
case "zh-CN":
|
|
10
|
+
return (await import("./zh-CN")).default;
|
|
11
|
+
case "es-ES":
|
|
12
|
+
return (await import("./es-ES")).default;
|
|
13
|
+
case "fr-FR":
|
|
14
|
+
return (await import("./fr-FR")).default;
|
|
15
|
+
case "de-DE":
|
|
16
|
+
return (await import("./de-DE")).default;
|
|
17
|
+
case "ja-JP":
|
|
18
|
+
return (await import("./ja-JP")).default;
|
|
19
|
+
case "ko-KR":
|
|
20
|
+
return (await import("./ko-KR")).default;
|
|
21
|
+
case "pt-BR":
|
|
22
|
+
return (await import("./pt-BR")).default;
|
|
23
|
+
case "hi-IN":
|
|
24
|
+
return (await import("./hi-IN")).default;
|
|
25
|
+
case "ar-SA":
|
|
26
|
+
return (await import("./ar-SA")).default;
|
|
27
|
+
default:
|
|
28
|
+
return null;
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
} satisfies AgentNativeI18nCatalog;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
const messages = {
|
|
2
|
+
root: {
|
|
3
|
+
commandActions: "操作",
|
|
4
|
+
search: "検索",
|
|
5
|
+
appearance: "表示",
|
|
6
|
+
toggleTheme: "テーマを切り替え",
|
|
7
|
+
},
|
|
8
|
+
header: {
|
|
9
|
+
entry: "記録",
|
|
10
|
+
analytics: "分析",
|
|
11
|
+
settings: "設定",
|
|
12
|
+
extensions: "拡張機能",
|
|
13
|
+
macros: "Macros",
|
|
14
|
+
},
|
|
15
|
+
navigation: {
|
|
16
|
+
brand: "Macros",
|
|
17
|
+
entry: "記録",
|
|
18
|
+
analytics: "分析",
|
|
19
|
+
settings: "設定",
|
|
20
|
+
},
|
|
21
|
+
settings: {
|
|
22
|
+
title: "設定",
|
|
23
|
+
description: "このアプリの言語とワークスペース設定。",
|
|
24
|
+
languageTitle: "言語",
|
|
25
|
+
languageDescription:
|
|
26
|
+
"インターフェース言語を選択します。この設定はアカウントに保存されます。",
|
|
27
|
+
languageLabel: "インターフェース言語",
|
|
28
|
+
workspaceTitle: "ワークスペース",
|
|
29
|
+
workspaceDescription:
|
|
30
|
+
"チームメンバー、組織アクセス、共有ワークスペース設定を管理します。",
|
|
31
|
+
openTeamSettings: "チーム設定を開く",
|
|
32
|
+
openResourceSettings: "リソース設定を開く",
|
|
33
|
+
agentTitle: "エージェント設定",
|
|
34
|
+
agentDescription:
|
|
35
|
+
"右サイドバーのエージェント設定を開き、モデル、API キー、自動化、音声などを管理します。",
|
|
36
|
+
openAgentSettings: "エージェント設定を開く",
|
|
37
|
+
},
|
|
38
|
+
agent: {
|
|
39
|
+
emptyState: "食べたものを教えてください。マクロを見積もります",
|
|
40
|
+
suggestionLunch: "昼食にチキンブリトーボウル",
|
|
41
|
+
suggestionMacros: "今日のマクロは?",
|
|
42
|
+
suggestionRun: "今朝 30 分走りました",
|
|
43
|
+
},
|
|
44
|
+
sidebar: {
|
|
45
|
+
openMenu: "メニューを開く",
|
|
46
|
+
navigation: "ナビゲーション",
|
|
47
|
+
expandLeftSidebar: "左サイドバーを展開",
|
|
48
|
+
collapseLeftSidebar: "左サイドバーを折りたたむ",
|
|
49
|
+
expand: "サイドバーを展開",
|
|
50
|
+
collapse: "サイドバーを折りたたむ",
|
|
51
|
+
syncing: "同期中…",
|
|
52
|
+
},
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
export default messages;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
const messages = {
|
|
2
|
+
root: {
|
|
3
|
+
commandActions: "작업",
|
|
4
|
+
search: "검색",
|
|
5
|
+
appearance: "모양",
|
|
6
|
+
toggleTheme: "테마 전환",
|
|
7
|
+
},
|
|
8
|
+
header: {
|
|
9
|
+
entry: "기록",
|
|
10
|
+
analytics: "분석",
|
|
11
|
+
settings: "설정",
|
|
12
|
+
extensions: "확장",
|
|
13
|
+
macros: "Macros",
|
|
14
|
+
},
|
|
15
|
+
navigation: {
|
|
16
|
+
brand: "Macros",
|
|
17
|
+
entry: "기록",
|
|
18
|
+
analytics: "분석",
|
|
19
|
+
settings: "설정",
|
|
20
|
+
},
|
|
21
|
+
settings: {
|
|
22
|
+
title: "설정",
|
|
23
|
+
description: "이 앱의 언어 및 워크스페이스 환경설정입니다.",
|
|
24
|
+
languageTitle: "언어",
|
|
25
|
+
languageDescription:
|
|
26
|
+
"인터페이스 언어를 선택하세요. 이 기본 설정은 계정에 저장됩니다.",
|
|
27
|
+
languageLabel: "인터페이스 언어",
|
|
28
|
+
workspaceTitle: "워크스페이스",
|
|
29
|
+
workspaceDescription:
|
|
30
|
+
"팀원, 조직 접근 권한, 공유 워크스페이스 환경설정을 관리합니다.",
|
|
31
|
+
openTeamSettings: "팀 설정 열기",
|
|
32
|
+
openResourceSettings: "리소스 설정 열기",
|
|
33
|
+
agentTitle: "에이전트 설정",
|
|
34
|
+
agentDescription:
|
|
35
|
+
"오른쪽 사이드바의 에이전트 설정을 열어 모델, API 키, 자동화, 음성 및 기타 제어를 관리합니다.",
|
|
36
|
+
openAgentSettings: "에이전트 설정 열기",
|
|
37
|
+
},
|
|
38
|
+
agent: {
|
|
39
|
+
emptyState: "무엇을 먹었는지 알려주시면 매크로를 추정할게요",
|
|
40
|
+
suggestionLunch: "점심으로 치킨 부리토 볼",
|
|
41
|
+
suggestionMacros: "오늘 내 매크로는 어떻게 되나요?",
|
|
42
|
+
suggestionRun: "오늘 아침 30분 달렸어요",
|
|
43
|
+
},
|
|
44
|
+
sidebar: {
|
|
45
|
+
openMenu: "메뉴 열기",
|
|
46
|
+
navigation: "내비게이션",
|
|
47
|
+
expandLeftSidebar: "왼쪽 사이드바 펼치기",
|
|
48
|
+
collapseLeftSidebar: "왼쪽 사이드바 접기",
|
|
49
|
+
expand: "사이드바 펼치기",
|
|
50
|
+
collapse: "사이드바 접기",
|
|
51
|
+
syncing: "동기화 중…",
|
|
52
|
+
},
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
export default messages;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
const messages = {
|
|
2
|
+
root: {
|
|
3
|
+
commandActions: "Acoes",
|
|
4
|
+
search: "Pesquisar",
|
|
5
|
+
appearance: "Aparencia",
|
|
6
|
+
toggleTheme: "Alternar tema",
|
|
7
|
+
},
|
|
8
|
+
header: {
|
|
9
|
+
entry: "Registro",
|
|
10
|
+
analytics: "Analises",
|
|
11
|
+
settings: "Configuracoes",
|
|
12
|
+
extensions: "Extensoes",
|
|
13
|
+
macros: "Macros",
|
|
14
|
+
},
|
|
15
|
+
navigation: {
|
|
16
|
+
brand: "Macros",
|
|
17
|
+
entry: "Registro",
|
|
18
|
+
analytics: "Analises",
|
|
19
|
+
settings: "Configuracoes",
|
|
20
|
+
},
|
|
21
|
+
settings: {
|
|
22
|
+
title: "Configurações",
|
|
23
|
+
description: "Preferências de idioma e espaço de trabalho deste app.",
|
|
24
|
+
languageTitle: "Idioma",
|
|
25
|
+
languageDescription:
|
|
26
|
+
"Escolha o idioma da interface. Essa preferência é salva na sua conta.",
|
|
27
|
+
languageLabel: "Idioma da interface",
|
|
28
|
+
workspaceTitle: "Espaço de trabalho",
|
|
29
|
+
workspaceDescription:
|
|
30
|
+
"Gerencie membros da equipe, acesso da organização e preferências compartilhadas.",
|
|
31
|
+
openTeamSettings: "Abrir configurações da equipe",
|
|
32
|
+
openResourceSettings: "Abrir configurações de recursos",
|
|
33
|
+
agentTitle: "Configurações do agente",
|
|
34
|
+
agentDescription:
|
|
35
|
+
"Abra as configurações do agente na barra lateral para modelos, chaves de API, automações, voz e outros controles.",
|
|
36
|
+
openAgentSettings: "Abrir configurações do agente",
|
|
37
|
+
},
|
|
38
|
+
agent: {
|
|
39
|
+
emptyState: "Diga o que voce comeu; eu estimo os macros",
|
|
40
|
+
suggestionLunch: "Bowl de burrito de frango no almoco",
|
|
41
|
+
suggestionMacros: "Quais sao meus macros hoje?",
|
|
42
|
+
suggestionRun: "Corri 30 minutos esta manha",
|
|
43
|
+
},
|
|
44
|
+
sidebar: {
|
|
45
|
+
openMenu: "Abrir menu",
|
|
46
|
+
navigation: "Navegacao",
|
|
47
|
+
expandLeftSidebar: "Expandir barra lateral esquerda",
|
|
48
|
+
collapseLeftSidebar: "Recolher barra lateral esquerda",
|
|
49
|
+
expand: "Expandir barra lateral",
|
|
50
|
+
collapse: "Recolher barra lateral",
|
|
51
|
+
syncing: "Sincronizando...",
|
|
52
|
+
},
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
export default messages;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
const messages = {
|
|
2
|
+
root: {
|
|
3
|
+
commandActions: "操作",
|
|
4
|
+
search: "搜索",
|
|
5
|
+
appearance: "外观",
|
|
6
|
+
toggleTheme: "切换主题",
|
|
7
|
+
},
|
|
8
|
+
header: {
|
|
9
|
+
entry: "记录",
|
|
10
|
+
analytics: "分析",
|
|
11
|
+
settings: "设置",
|
|
12
|
+
extensions: "扩展",
|
|
13
|
+
macros: "Macros",
|
|
14
|
+
},
|
|
15
|
+
navigation: {
|
|
16
|
+
brand: "Macros",
|
|
17
|
+
entry: "记录",
|
|
18
|
+
analytics: "分析",
|
|
19
|
+
settings: "设置",
|
|
20
|
+
},
|
|
21
|
+
settings: {
|
|
22
|
+
title: "设置",
|
|
23
|
+
description: "此应用的语言和工作区偏好设置。",
|
|
24
|
+
languageTitle: "语言",
|
|
25
|
+
languageDescription: "选择界面语言。此偏好会保存到你的账户。",
|
|
26
|
+
languageLabel: "界面语言",
|
|
27
|
+
workspaceTitle: "工作区",
|
|
28
|
+
workspaceDescription: "管理团队成员、组织访问权限和共享工作区偏好。",
|
|
29
|
+
openTeamSettings: "打开团队设置",
|
|
30
|
+
openResourceSettings: "打开资源设置",
|
|
31
|
+
agentTitle: "代理设置",
|
|
32
|
+
agentDescription:
|
|
33
|
+
"打开代理侧边栏设置,管理模型、API 密钥、自动化、语音和其他代理控制项。",
|
|
34
|
+
openAgentSettings: "打开代理设置",
|
|
35
|
+
},
|
|
36
|
+
agent: {
|
|
37
|
+
emptyState: "告诉我你吃了什么,我会估算宏量营养",
|
|
38
|
+
suggestionLunch: "午餐吃了鸡肉卷饼碗",
|
|
39
|
+
suggestionMacros: "我今天的宏量营养是多少?",
|
|
40
|
+
suggestionRun: "我今天早上跑了 30 分钟",
|
|
41
|
+
},
|
|
42
|
+
sidebar: {
|
|
43
|
+
openMenu: "打开菜单",
|
|
44
|
+
navigation: "导航",
|
|
45
|
+
expandLeftSidebar: "展开左侧边栏",
|
|
46
|
+
collapseLeftSidebar: "收起左侧边栏",
|
|
47
|
+
expand: "展开侧边栏",
|
|
48
|
+
collapse: "收起侧边栏",
|
|
49
|
+
syncing: "正在同步…",
|
|
50
|
+
},
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
export default messages;
|