@agent-native/core 0.75.5 → 0.76.0
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 +7 -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/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/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/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 +5 -3
- 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/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/settings.tsx +45 -8
- 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/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/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,668 @@
|
|
|
1
|
+
import type { LocaleCode } from "@agent-native/core/client";
|
|
2
|
+
|
|
3
|
+
const enUS = {
|
|
4
|
+
root: {
|
|
5
|
+
commandActions: "Actions",
|
|
6
|
+
commandSearch: "Search",
|
|
7
|
+
commandAppearance: "Appearance",
|
|
8
|
+
toggleTheme: "Toggle theme",
|
|
9
|
+
},
|
|
10
|
+
navigation: {
|
|
11
|
+
brand: "Assets",
|
|
12
|
+
create: "Create",
|
|
13
|
+
library: "Library",
|
|
14
|
+
brandKits: "Brand Kits",
|
|
15
|
+
auditLog: "Audit log",
|
|
16
|
+
settings: "Settings",
|
|
17
|
+
extensions: "Extensions",
|
|
18
|
+
openNavigation: "Open navigation",
|
|
19
|
+
expandSidebar: "Expand sidebar",
|
|
20
|
+
collapseSidebar: "Collapse sidebar",
|
|
21
|
+
},
|
|
22
|
+
settings: {
|
|
23
|
+
agentTitle: "Agent settings",
|
|
24
|
+
agentDescription:
|
|
25
|
+
"Open the agent sidebar settings for model, API keys, automations, voice, and other agent controls.",
|
|
26
|
+
openAgentSettings: "Open agent settings",
|
|
27
|
+
title: "Settings",
|
|
28
|
+
description: "Asset generation, storage, and brand kit access.",
|
|
29
|
+
connections: "Connections",
|
|
30
|
+
connectionsDescription:
|
|
31
|
+
"Keep Assets ready to generate, save, and share brand-safe media. Builder is the simplest path; manual keys stay available when you need them.",
|
|
32
|
+
languageTitle: "Language",
|
|
33
|
+
languageDescription:
|
|
34
|
+
"Choose the interface language for this Assets workspace.",
|
|
35
|
+
languageLabel: "Interface language",
|
|
36
|
+
},
|
|
37
|
+
chat: {
|
|
38
|
+
emptyState: "Describe the asset you want to make",
|
|
39
|
+
suggestionBlogHeroes: "Generate 3 blog heroes from this brand kit",
|
|
40
|
+
suggestionProductVideo: "Make an 8-second product reveal video",
|
|
41
|
+
suggestionReferenceStyle: "Match the style of my reference assets",
|
|
42
|
+
chats: "Chats",
|
|
43
|
+
newChat: "New chat",
|
|
44
|
+
newAssetsChat: "New Assets chat",
|
|
45
|
+
renameChat: "Rename chat",
|
|
46
|
+
pinChat: "Pin chat",
|
|
47
|
+
unpinChat: "Unpin chat",
|
|
48
|
+
copyShareLink: "Copy share link",
|
|
49
|
+
archiveChat: "Archive chat",
|
|
50
|
+
archiveFailed: "Could not archive chat.",
|
|
51
|
+
renameFailed: "Could not rename chat.",
|
|
52
|
+
shareLinkFailed: "Could not create a share link.",
|
|
53
|
+
shareLinkCopied: "Chat share link copied.",
|
|
54
|
+
shareLinkReady: "Chat share link ready.",
|
|
55
|
+
optionsFor: "Chat options for {{title}}",
|
|
56
|
+
},
|
|
57
|
+
create: {
|
|
58
|
+
imageModel: "Image model",
|
|
59
|
+
emptyState: "Ask Assets what to create.",
|
|
60
|
+
composerPlaceholder:
|
|
61
|
+
"Describe the asset - attach images or text context with +",
|
|
62
|
+
heroTitle: "What asset should we make?",
|
|
63
|
+
heroDescription:
|
|
64
|
+
"Start with a hero image, product reveal, reference edit, or a direction you want to explore.",
|
|
65
|
+
starters: {
|
|
66
|
+
image: "image",
|
|
67
|
+
video: "video",
|
|
68
|
+
refine: "refine",
|
|
69
|
+
},
|
|
70
|
+
},
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
type Messages = typeof enUS;
|
|
74
|
+
type PartialMessages = {
|
|
75
|
+
[K in keyof Messages]?: Partial<Messages[K]> & {
|
|
76
|
+
starters?: Partial<Messages["create"]["starters"]>;
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
function mergeMessages(overrides: PartialMessages): Messages {
|
|
81
|
+
return {
|
|
82
|
+
root: { ...enUS.root, ...overrides.root },
|
|
83
|
+
navigation: { ...enUS.navigation, ...overrides.navigation },
|
|
84
|
+
settings: { ...enUS.settings, ...overrides.settings },
|
|
85
|
+
chat: { ...enUS.chat, ...overrides.chat },
|
|
86
|
+
create: {
|
|
87
|
+
...enUS.create,
|
|
88
|
+
...overrides.create,
|
|
89
|
+
starters: {
|
|
90
|
+
...enUS.create.starters,
|
|
91
|
+
...overrides.create?.starters,
|
|
92
|
+
},
|
|
93
|
+
},
|
|
94
|
+
};
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
export const messagesByLocale = {
|
|
98
|
+
"en-US": enUS,
|
|
99
|
+
"zh-CN": mergeMessages({
|
|
100
|
+
root: {
|
|
101
|
+
commandActions: "操作",
|
|
102
|
+
commandSearch: "搜索",
|
|
103
|
+
commandAppearance: "外观",
|
|
104
|
+
toggleTheme: "切换主题",
|
|
105
|
+
},
|
|
106
|
+
navigation: {
|
|
107
|
+
create: "创建",
|
|
108
|
+
library: "资料库",
|
|
109
|
+
brandKits: "品牌套件",
|
|
110
|
+
auditLog: "审计日志",
|
|
111
|
+
settings: "设置",
|
|
112
|
+
extensions: "扩展",
|
|
113
|
+
openNavigation: "打开导航",
|
|
114
|
+
expandSidebar: "展开侧边栏",
|
|
115
|
+
collapseSidebar: "收起侧边栏",
|
|
116
|
+
},
|
|
117
|
+
settings: {
|
|
118
|
+
agentTitle: "代理设置",
|
|
119
|
+
agentDescription:
|
|
120
|
+
"打开代理侧边栏设置,管理模型、API 密钥、自动化、语音和其他代理控制项。",
|
|
121
|
+
openAgentSettings: "打开代理设置",
|
|
122
|
+
title: "设置",
|
|
123
|
+
description: "资产生成、存储和品牌套件访问。",
|
|
124
|
+
connections: "连接",
|
|
125
|
+
connectionsDescription:
|
|
126
|
+
"让 Assets 随时可生成、保存并共享品牌安全媒体。Builder 是最简单的路径;需要时也可使用手动密钥。",
|
|
127
|
+
languageTitle: "语言",
|
|
128
|
+
languageDescription: "选择此 Assets 工作区的界面语言。",
|
|
129
|
+
languageLabel: "界面语言",
|
|
130
|
+
},
|
|
131
|
+
chat: {
|
|
132
|
+
emptyState: "描述你想制作的资产",
|
|
133
|
+
suggestionBlogHeroes: "从这个品牌套件生成 3 张博客头图",
|
|
134
|
+
suggestionProductVideo: "制作 8 秒产品展示视频",
|
|
135
|
+
suggestionReferenceStyle: "匹配我的参考资产风格",
|
|
136
|
+
chats: "聊天",
|
|
137
|
+
newChat: "新聊天",
|
|
138
|
+
newAssetsChat: "新建 Assets 聊天",
|
|
139
|
+
renameChat: "重命名聊天",
|
|
140
|
+
pinChat: "置顶聊天",
|
|
141
|
+
unpinChat: "取消置顶聊天",
|
|
142
|
+
copyShareLink: "复制分享链接",
|
|
143
|
+
archiveChat: "归档聊天",
|
|
144
|
+
archiveFailed: "无法归档聊天。",
|
|
145
|
+
renameFailed: "无法重命名聊天。",
|
|
146
|
+
shareLinkFailed: "无法创建分享链接。",
|
|
147
|
+
shareLinkCopied: "聊天分享链接已复制。",
|
|
148
|
+
shareLinkReady: "聊天分享链接已就绪。",
|
|
149
|
+
optionsFor: "{{title}} 的聊天选项",
|
|
150
|
+
},
|
|
151
|
+
create: {
|
|
152
|
+
imageModel: "图像模型",
|
|
153
|
+
emptyState: "询问 Assets 要创建什么。",
|
|
154
|
+
composerPlaceholder: "描述资产 - 用 + 附加图片或文本上下文",
|
|
155
|
+
heroTitle: "我们要制作什么资产?",
|
|
156
|
+
heroDescription: "从头图、产品展示、参考编辑或你想探索的方向开始。",
|
|
157
|
+
starters: { image: "图像", video: "视频", refine: "优化" },
|
|
158
|
+
},
|
|
159
|
+
}),
|
|
160
|
+
"es-ES": mergeMessages({
|
|
161
|
+
root: {
|
|
162
|
+
commandActions: "Acciones",
|
|
163
|
+
commandSearch: "Buscar",
|
|
164
|
+
commandAppearance: "Apariencia",
|
|
165
|
+
toggleTheme: "Cambiar tema",
|
|
166
|
+
},
|
|
167
|
+
navigation: {
|
|
168
|
+
create: "Crear",
|
|
169
|
+
library: "Biblioteca",
|
|
170
|
+
brandKits: "Kits de marca",
|
|
171
|
+
auditLog: "Registro de auditoría",
|
|
172
|
+
settings: "Ajustes",
|
|
173
|
+
extensions: "Extensiones",
|
|
174
|
+
openNavigation: "Abrir navegación",
|
|
175
|
+
expandSidebar: "Expandir barra lateral",
|
|
176
|
+
collapseSidebar: "Contraer barra lateral",
|
|
177
|
+
},
|
|
178
|
+
settings: {
|
|
179
|
+
agentTitle: "Ajustes del agente",
|
|
180
|
+
agentDescription:
|
|
181
|
+
"Abre los ajustes del agente en la barra lateral para modelos, claves API, automatizaciones, voz y otros controles.",
|
|
182
|
+
openAgentSettings: "Abrir ajustes del agente",
|
|
183
|
+
title: "Ajustes",
|
|
184
|
+
description: "Generación, almacenamiento y acceso a kits de marca.",
|
|
185
|
+
connections: "Conexiones",
|
|
186
|
+
connectionsDescription:
|
|
187
|
+
"Mantén Assets listo para generar, guardar y compartir contenido seguro para la marca. Builder es la ruta más simple; las claves manuales siguen disponibles.",
|
|
188
|
+
languageTitle: "Idioma",
|
|
189
|
+
languageDescription:
|
|
190
|
+
"Elige el idioma de la interfaz para este workspace.",
|
|
191
|
+
languageLabel: "Idioma de la interfaz",
|
|
192
|
+
},
|
|
193
|
+
chat: {
|
|
194
|
+
emptyState: "Describe el recurso que quieres crear",
|
|
195
|
+
suggestionBlogHeroes: "Genera 3 héroes de blog con este kit de marca",
|
|
196
|
+
suggestionProductVideo: "Crea un video de presentación de 8 segundos",
|
|
197
|
+
suggestionReferenceStyle:
|
|
198
|
+
"Iguala el estilo de mis recursos de referencia",
|
|
199
|
+
chats: "Chats",
|
|
200
|
+
newChat: "Nuevo chat",
|
|
201
|
+
newAssetsChat: "Nuevo chat de Assets",
|
|
202
|
+
renameChat: "Renombrar chat",
|
|
203
|
+
pinChat: "Fijar chat",
|
|
204
|
+
unpinChat: "Desfijar chat",
|
|
205
|
+
copyShareLink: "Copiar enlace",
|
|
206
|
+
archiveChat: "Archivar chat",
|
|
207
|
+
archiveFailed: "No se pudo archivar el chat.",
|
|
208
|
+
renameFailed: "No se pudo renombrar el chat.",
|
|
209
|
+
shareLinkFailed: "No se pudo crear un enlace para compartir.",
|
|
210
|
+
shareLinkCopied: "Enlace del chat copiado.",
|
|
211
|
+
shareLinkReady: "Enlace del chat listo.",
|
|
212
|
+
optionsFor: "Opciones de chat para {{title}}",
|
|
213
|
+
},
|
|
214
|
+
create: {
|
|
215
|
+
imageModel: "Modelo de imagen",
|
|
216
|
+
emptyState: "Pregunta a Assets qué crear.",
|
|
217
|
+
composerPlaceholder:
|
|
218
|
+
"Describe el recurso - adjunta imágenes o contexto con +",
|
|
219
|
+
heroTitle: "¿Qué recurso creamos?",
|
|
220
|
+
heroDescription:
|
|
221
|
+
"Empieza con una imagen principal, presentación de producto, edición de referencia o una dirección para explorar.",
|
|
222
|
+
starters: { image: "imagen", video: "video", refine: "refinar" },
|
|
223
|
+
},
|
|
224
|
+
}),
|
|
225
|
+
"fr-FR": mergeMessages({
|
|
226
|
+
root: {
|
|
227
|
+
commandActions: "Actions",
|
|
228
|
+
commandSearch: "Rechercher",
|
|
229
|
+
commandAppearance: "Apparence",
|
|
230
|
+
toggleTheme: "Changer de thème",
|
|
231
|
+
},
|
|
232
|
+
navigation: {
|
|
233
|
+
create: "Créer",
|
|
234
|
+
library: "Bibliothèque",
|
|
235
|
+
brandKits: "Kits de marque",
|
|
236
|
+
auditLog: "Journal d'audit",
|
|
237
|
+
settings: "Paramètres",
|
|
238
|
+
extensions: "Extensions",
|
|
239
|
+
openNavigation: "Ouvrir la navigation",
|
|
240
|
+
expandSidebar: "Développer la barre latérale",
|
|
241
|
+
collapseSidebar: "Réduire la barre latérale",
|
|
242
|
+
},
|
|
243
|
+
settings: {
|
|
244
|
+
agentTitle: "Paramètres de l’agent",
|
|
245
|
+
agentDescription:
|
|
246
|
+
"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.",
|
|
247
|
+
openAgentSettings: "Ouvrir les paramètres de l’agent",
|
|
248
|
+
title: "Paramètres",
|
|
249
|
+
description: "Génération d'assets, stockage et accès aux kits de marque.",
|
|
250
|
+
connections: "Connexions",
|
|
251
|
+
connectionsDescription:
|
|
252
|
+
"Gardez Assets prêt à générer, enregistrer et partager des médias conformes à la marque. Builder est le chemin le plus simple; les clés manuelles restent disponibles.",
|
|
253
|
+
languageTitle: "Langue",
|
|
254
|
+
languageDescription:
|
|
255
|
+
"Choisissez la langue de l'interface pour cet espace Assets.",
|
|
256
|
+
languageLabel: "Langue de l'interface",
|
|
257
|
+
},
|
|
258
|
+
chat: {
|
|
259
|
+
emptyState: "Décrivez l'asset que vous voulez créer",
|
|
260
|
+
suggestionBlogHeroes: "Génère 3 visuels hero de blog avec ce kit",
|
|
261
|
+
suggestionProductVideo: "Crée une vidéo produit de 8 secondes",
|
|
262
|
+
suggestionReferenceStyle: "Aligne le style sur mes assets de référence",
|
|
263
|
+
chats: "Chats",
|
|
264
|
+
newChat: "Nouveau chat",
|
|
265
|
+
newAssetsChat: "Nouveau chat Assets",
|
|
266
|
+
renameChat: "Renommer le chat",
|
|
267
|
+
pinChat: "Épingler le chat",
|
|
268
|
+
unpinChat: "Désépingler le chat",
|
|
269
|
+
copyShareLink: "Copier le lien",
|
|
270
|
+
archiveChat: "Archiver le chat",
|
|
271
|
+
archiveFailed: "Impossible d'archiver le chat.",
|
|
272
|
+
renameFailed: "Impossible de renommer le chat.",
|
|
273
|
+
shareLinkFailed: "Impossible de créer un lien de partage.",
|
|
274
|
+
shareLinkCopied: "Lien de chat copié.",
|
|
275
|
+
shareLinkReady: "Lien de chat prêt.",
|
|
276
|
+
optionsFor: "Options du chat pour {{title}}",
|
|
277
|
+
},
|
|
278
|
+
create: {
|
|
279
|
+
imageModel: "Modèle d'image",
|
|
280
|
+
emptyState: "Demandez à Assets quoi créer.",
|
|
281
|
+
composerPlaceholder:
|
|
282
|
+
"Décrivez l'asset - joignez images ou contexte avec +",
|
|
283
|
+
heroTitle: "Quel asset devons-nous créer ?",
|
|
284
|
+
heroDescription:
|
|
285
|
+
"Commencez par une image hero, une révélation produit, une édition de référence ou une direction à explorer.",
|
|
286
|
+
starters: { image: "image", video: "vidéo", refine: "affiner" },
|
|
287
|
+
},
|
|
288
|
+
}),
|
|
289
|
+
"de-DE": mergeMessages({
|
|
290
|
+
root: {
|
|
291
|
+
commandActions: "Aktionen",
|
|
292
|
+
commandSearch: "Suchen",
|
|
293
|
+
commandAppearance: "Darstellung",
|
|
294
|
+
toggleTheme: "Theme wechseln",
|
|
295
|
+
},
|
|
296
|
+
navigation: {
|
|
297
|
+
create: "Erstellen",
|
|
298
|
+
library: "Bibliothek",
|
|
299
|
+
brandKits: "Brand Kits",
|
|
300
|
+
auditLog: "Audit-Log",
|
|
301
|
+
settings: "Einstellungen",
|
|
302
|
+
extensions: "Erweiterungen",
|
|
303
|
+
openNavigation: "Navigation öffnen",
|
|
304
|
+
expandSidebar: "Seitenleiste erweitern",
|
|
305
|
+
collapseSidebar: "Seitenleiste einklappen",
|
|
306
|
+
},
|
|
307
|
+
settings: {
|
|
308
|
+
agentTitle: "Agent-Einstellungen",
|
|
309
|
+
agentDescription:
|
|
310
|
+
"Öffne die Agent-Einstellungen in der Seitenleiste für Modell, API-Schlüssel, Automatisierungen, Sprache und weitere Steuerungen.",
|
|
311
|
+
openAgentSettings: "Agent-Einstellungen öffnen",
|
|
312
|
+
title: "Einstellungen",
|
|
313
|
+
description: "Asset-Erstellung, Speicher und Zugriff auf Brand Kits.",
|
|
314
|
+
connections: "Verbindungen",
|
|
315
|
+
connectionsDescription:
|
|
316
|
+
"Halte Assets bereit, um markensichere Medien zu erstellen, zu speichern und zu teilen. Builder ist der einfachste Weg; manuelle Schlüssel bleiben verfügbar.",
|
|
317
|
+
languageTitle: "Sprache",
|
|
318
|
+
languageDescription:
|
|
319
|
+
"Wähle die Oberflächensprache für diesen Assets-Workspace.",
|
|
320
|
+
languageLabel: "Oberflächensprache",
|
|
321
|
+
},
|
|
322
|
+
chat: {
|
|
323
|
+
emptyState: "Beschreibe das Asset, das du erstellen möchtest",
|
|
324
|
+
suggestionBlogHeroes: "Erstelle 3 Blog-Heroes aus diesem Brand Kit",
|
|
325
|
+
suggestionProductVideo: "Erstelle ein 8-sekündiges Produktvideo",
|
|
326
|
+
suggestionReferenceStyle: "Passe den Stil an meine Referenz-Assets an",
|
|
327
|
+
chats: "Chats",
|
|
328
|
+
newChat: "Neuer Chat",
|
|
329
|
+
newAssetsChat: "Neuer Assets-Chat",
|
|
330
|
+
renameChat: "Chat umbenennen",
|
|
331
|
+
pinChat: "Chat anheften",
|
|
332
|
+
unpinChat: "Chat lösen",
|
|
333
|
+
copyShareLink: "Freigabelink kopieren",
|
|
334
|
+
archiveChat: "Chat archivieren",
|
|
335
|
+
archiveFailed: "Chat konnte nicht archiviert werden.",
|
|
336
|
+
renameFailed: "Chat konnte nicht umbenannt werden.",
|
|
337
|
+
shareLinkFailed: "Freigabelink konnte nicht erstellt werden.",
|
|
338
|
+
shareLinkCopied: "Chat-Freigabelink kopiert.",
|
|
339
|
+
shareLinkReady: "Chat-Freigabelink bereit.",
|
|
340
|
+
optionsFor: "Chatoptionen für {{title}}",
|
|
341
|
+
},
|
|
342
|
+
create: {
|
|
343
|
+
imageModel: "Bildmodell",
|
|
344
|
+
emptyState: "Frage Assets, was erstellt werden soll.",
|
|
345
|
+
composerPlaceholder:
|
|
346
|
+
"Beschreibe das Asset - füge Bilder oder Textkontext mit + hinzu",
|
|
347
|
+
heroTitle: "Welches Asset sollen wir erstellen?",
|
|
348
|
+
heroDescription:
|
|
349
|
+
"Beginne mit einem Hero-Bild, Produkt-Reveal, Referenz-Edit oder einer Richtung zum Erkunden.",
|
|
350
|
+
starters: { image: "Bild", video: "Video", refine: "verfeinern" },
|
|
351
|
+
},
|
|
352
|
+
}),
|
|
353
|
+
"ja-JP": mergeMessages({
|
|
354
|
+
root: {
|
|
355
|
+
commandActions: "操作",
|
|
356
|
+
commandSearch: "検索",
|
|
357
|
+
commandAppearance: "外観",
|
|
358
|
+
toggleTheme: "テーマを切り替え",
|
|
359
|
+
},
|
|
360
|
+
navigation: {
|
|
361
|
+
create: "作成",
|
|
362
|
+
library: "ライブラリ",
|
|
363
|
+
brandKits: "ブランドキット",
|
|
364
|
+
auditLog: "監査ログ",
|
|
365
|
+
settings: "設定",
|
|
366
|
+
extensions: "拡張機能",
|
|
367
|
+
openNavigation: "ナビゲーションを開く",
|
|
368
|
+
expandSidebar: "サイドバーを展開",
|
|
369
|
+
collapseSidebar: "サイドバーを折りたたむ",
|
|
370
|
+
},
|
|
371
|
+
settings: {
|
|
372
|
+
agentTitle: "エージェント設定",
|
|
373
|
+
agentDescription:
|
|
374
|
+
"右サイドバーのエージェント設定を開き、モデル、API キー、自動化、音声などを管理します。",
|
|
375
|
+
openAgentSettings: "エージェント設定を開く",
|
|
376
|
+
title: "設定",
|
|
377
|
+
description: "アセット生成、保存、ブランドキットへのアクセス。",
|
|
378
|
+
connections: "接続",
|
|
379
|
+
connectionsDescription:
|
|
380
|
+
"Assets を、ブランドに安全なメディアの生成、保存、共有に使える状態に保ちます。Builder が最も簡単な方法で、必要に応じて手動キーも利用できます。",
|
|
381
|
+
languageTitle: "言語",
|
|
382
|
+
languageDescription:
|
|
383
|
+
"この Assets ワークスペースのインターフェース言語を選択します。",
|
|
384
|
+
languageLabel: "インターフェース言語",
|
|
385
|
+
},
|
|
386
|
+
chat: {
|
|
387
|
+
emptyState: "作りたいアセットを説明してください",
|
|
388
|
+
suggestionBlogHeroes: "このブランドキットからブログヒーローを 3 点生成",
|
|
389
|
+
suggestionProductVideo: "8 秒の製品紹介動画を作成",
|
|
390
|
+
suggestionReferenceStyle: "参照アセットのスタイルに合わせる",
|
|
391
|
+
chats: "チャット",
|
|
392
|
+
newChat: "新しいチャット",
|
|
393
|
+
newAssetsChat: "新しい Assets チャット",
|
|
394
|
+
renameChat: "チャット名を変更",
|
|
395
|
+
pinChat: "チャットを固定",
|
|
396
|
+
unpinChat: "固定を解除",
|
|
397
|
+
copyShareLink: "共有リンクをコピー",
|
|
398
|
+
archiveChat: "チャットをアーカイブ",
|
|
399
|
+
archiveFailed: "チャットをアーカイブできませんでした。",
|
|
400
|
+
renameFailed: "チャット名を変更できませんでした。",
|
|
401
|
+
shareLinkFailed: "共有リンクを作成できませんでした。",
|
|
402
|
+
shareLinkCopied: "チャット共有リンクをコピーしました。",
|
|
403
|
+
shareLinkReady: "チャット共有リンクの準備ができました。",
|
|
404
|
+
optionsFor: "{{title}} のチャットオプション",
|
|
405
|
+
},
|
|
406
|
+
create: {
|
|
407
|
+
imageModel: "画像モデル",
|
|
408
|
+
emptyState: "Assets に何を作るか尋ねてください。",
|
|
409
|
+
composerPlaceholder: "アセットを説明 - + で画像やテキストの文脈を添付",
|
|
410
|
+
heroTitle: "どんなアセットを作りますか?",
|
|
411
|
+
heroDescription:
|
|
412
|
+
"ヒーロー画像、製品紹介、参照編集、探索したい方向から始めましょう。",
|
|
413
|
+
starters: { image: "画像", video: "動画", refine: "調整" },
|
|
414
|
+
},
|
|
415
|
+
}),
|
|
416
|
+
"ko-KR": mergeMessages({
|
|
417
|
+
root: {
|
|
418
|
+
commandActions: "작업",
|
|
419
|
+
commandSearch: "검색",
|
|
420
|
+
commandAppearance: "모양",
|
|
421
|
+
toggleTheme: "테마 전환",
|
|
422
|
+
},
|
|
423
|
+
navigation: {
|
|
424
|
+
create: "생성",
|
|
425
|
+
library: "라이브러리",
|
|
426
|
+
brandKits: "브랜드 키트",
|
|
427
|
+
auditLog: "감사 로그",
|
|
428
|
+
settings: "설정",
|
|
429
|
+
extensions: "확장",
|
|
430
|
+
openNavigation: "탐색 열기",
|
|
431
|
+
expandSidebar: "사이드바 펼치기",
|
|
432
|
+
collapseSidebar: "사이드바 접기",
|
|
433
|
+
},
|
|
434
|
+
settings: {
|
|
435
|
+
agentTitle: "에이전트 설정",
|
|
436
|
+
agentDescription:
|
|
437
|
+
"오른쪽 사이드바의 에이전트 설정을 열어 모델, API 키, 자동화, 음성 및 기타 제어를 관리합니다.",
|
|
438
|
+
openAgentSettings: "에이전트 설정 열기",
|
|
439
|
+
title: "설정",
|
|
440
|
+
description: "자산 생성, 저장소, 브랜드 키트 접근.",
|
|
441
|
+
connections: "연결",
|
|
442
|
+
connectionsDescription:
|
|
443
|
+
"Assets가 브랜드 안전 미디어를 생성, 저장, 공유할 준비를 유지합니다. Builder가 가장 간단한 경로이며 필요하면 수동 키도 사용할 수 있습니다.",
|
|
444
|
+
languageTitle: "언어",
|
|
445
|
+
languageDescription:
|
|
446
|
+
"이 Assets 워크스페이스의 인터페이스 언어를 선택하세요.",
|
|
447
|
+
languageLabel: "인터페이스 언어",
|
|
448
|
+
},
|
|
449
|
+
chat: {
|
|
450
|
+
emptyState: "만들고 싶은 자산을 설명하세요",
|
|
451
|
+
suggestionBlogHeroes: "이 브랜드 키트로 블로그 히어로 3개 생성",
|
|
452
|
+
suggestionProductVideo: "8초 제품 공개 영상 만들기",
|
|
453
|
+
suggestionReferenceStyle: "내 참조 자산 스타일에 맞추기",
|
|
454
|
+
chats: "채팅",
|
|
455
|
+
newChat: "새 채팅",
|
|
456
|
+
newAssetsChat: "새 Assets 채팅",
|
|
457
|
+
renameChat: "채팅 이름 변경",
|
|
458
|
+
pinChat: "채팅 고정",
|
|
459
|
+
unpinChat: "채팅 고정 해제",
|
|
460
|
+
copyShareLink: "공유 링크 복사",
|
|
461
|
+
archiveChat: "채팅 보관",
|
|
462
|
+
archiveFailed: "채팅을 보관할 수 없습니다.",
|
|
463
|
+
renameFailed: "채팅 이름을 변경할 수 없습니다.",
|
|
464
|
+
shareLinkFailed: "공유 링크를 만들 수 없습니다.",
|
|
465
|
+
shareLinkCopied: "채팅 공유 링크가 복사되었습니다.",
|
|
466
|
+
shareLinkReady: "채팅 공유 링크가 준비되었습니다.",
|
|
467
|
+
optionsFor: "{{title}} 채팅 옵션",
|
|
468
|
+
},
|
|
469
|
+
create: {
|
|
470
|
+
imageModel: "이미지 모델",
|
|
471
|
+
emptyState: "Assets에 무엇을 만들지 물어보세요.",
|
|
472
|
+
composerPlaceholder: "자산 설명 - +로 이미지나 텍스트 컨텍스트 첨부",
|
|
473
|
+
heroTitle: "어떤 자산을 만들까요?",
|
|
474
|
+
heroDescription:
|
|
475
|
+
"히어로 이미지, 제품 공개, 참조 편집 또는 탐색할 방향에서 시작하세요.",
|
|
476
|
+
starters: { image: "이미지", video: "비디오", refine: "다듬기" },
|
|
477
|
+
},
|
|
478
|
+
}),
|
|
479
|
+
"pt-BR": mergeMessages({
|
|
480
|
+
root: {
|
|
481
|
+
commandActions: "Ações",
|
|
482
|
+
commandSearch: "Buscar",
|
|
483
|
+
commandAppearance: "Aparência",
|
|
484
|
+
toggleTheme: "Alternar tema",
|
|
485
|
+
},
|
|
486
|
+
navigation: {
|
|
487
|
+
create: "Criar",
|
|
488
|
+
library: "Biblioteca",
|
|
489
|
+
brandKits: "Kits de marca",
|
|
490
|
+
auditLog: "Log de auditoria",
|
|
491
|
+
settings: "Configurações",
|
|
492
|
+
extensions: "Extensões",
|
|
493
|
+
openNavigation: "Abrir navegação",
|
|
494
|
+
expandSidebar: "Expandir barra lateral",
|
|
495
|
+
collapseSidebar: "Recolher barra lateral",
|
|
496
|
+
},
|
|
497
|
+
settings: {
|
|
498
|
+
agentTitle: "Configurações do agente",
|
|
499
|
+
agentDescription:
|
|
500
|
+
"Abra as configurações do agente na barra lateral para modelos, chaves de API, automações, voz e outros controles.",
|
|
501
|
+
openAgentSettings: "Abrir configurações do agente",
|
|
502
|
+
title: "Configurações",
|
|
503
|
+
description: "Geração de assets, armazenamento e acesso a kits de marca.",
|
|
504
|
+
connections: "Conexões",
|
|
505
|
+
connectionsDescription:
|
|
506
|
+
"Mantenha o Assets pronto para gerar, salvar e compartilhar mídia segura para a marca. Builder é o caminho mais simples; chaves manuais continuam disponíveis.",
|
|
507
|
+
languageTitle: "Idioma",
|
|
508
|
+
languageDescription:
|
|
509
|
+
"Escolha o idioma da interface deste workspace de Assets.",
|
|
510
|
+
languageLabel: "Idioma da interface",
|
|
511
|
+
},
|
|
512
|
+
chat: {
|
|
513
|
+
emptyState: "Descreva o asset que você quer criar",
|
|
514
|
+
suggestionBlogHeroes: "Gere 3 imagens hero de blog com este kit",
|
|
515
|
+
suggestionProductVideo: "Crie um vídeo de produto de 8 segundos",
|
|
516
|
+
suggestionReferenceStyle:
|
|
517
|
+
"Combine o estilo dos meus assets de referência",
|
|
518
|
+
chats: "Chats",
|
|
519
|
+
newChat: "Novo chat",
|
|
520
|
+
newAssetsChat: "Novo chat do Assets",
|
|
521
|
+
renameChat: "Renomear chat",
|
|
522
|
+
pinChat: "Fixar chat",
|
|
523
|
+
unpinChat: "Desafixar chat",
|
|
524
|
+
copyShareLink: "Copiar link",
|
|
525
|
+
archiveChat: "Arquivar chat",
|
|
526
|
+
archiveFailed: "Não foi possível arquivar o chat.",
|
|
527
|
+
renameFailed: "Não foi possível renomear o chat.",
|
|
528
|
+
shareLinkFailed: "Não foi possível criar um link de compartilhamento.",
|
|
529
|
+
shareLinkCopied: "Link do chat copiado.",
|
|
530
|
+
shareLinkReady: "Link do chat pronto.",
|
|
531
|
+
optionsFor: "Opções de chat para {{title}}",
|
|
532
|
+
},
|
|
533
|
+
create: {
|
|
534
|
+
imageModel: "Modelo de imagem",
|
|
535
|
+
emptyState: "Pergunte ao Assets o que criar.",
|
|
536
|
+
composerPlaceholder: "Descreva o asset - anexe imagens ou contexto com +",
|
|
537
|
+
heroTitle: "Que asset vamos criar?",
|
|
538
|
+
heroDescription:
|
|
539
|
+
"Comece com uma imagem hero, revelação de produto, edição de referência ou direção a explorar.",
|
|
540
|
+
starters: { image: "imagem", video: "vídeo", refine: "refinar" },
|
|
541
|
+
},
|
|
542
|
+
}),
|
|
543
|
+
"hi-IN": mergeMessages({
|
|
544
|
+
root: {
|
|
545
|
+
commandActions: "क्रियाएं",
|
|
546
|
+
commandSearch: "खोजें",
|
|
547
|
+
commandAppearance: "रूप",
|
|
548
|
+
toggleTheme: "थीम बदलें",
|
|
549
|
+
},
|
|
550
|
+
navigation: {
|
|
551
|
+
create: "बनाएं",
|
|
552
|
+
library: "लाइब्रेरी",
|
|
553
|
+
brandKits: "ब्रांड किट",
|
|
554
|
+
auditLog: "ऑडिट लॉग",
|
|
555
|
+
settings: "सेटिंग्स",
|
|
556
|
+
extensions: "एक्सटेंशन",
|
|
557
|
+
openNavigation: "नेविगेशन खोलें",
|
|
558
|
+
expandSidebar: "साइडबार फैलाएं",
|
|
559
|
+
collapseSidebar: "साइडबार समेटें",
|
|
560
|
+
},
|
|
561
|
+
settings: {
|
|
562
|
+
agentTitle: "एजेंट सेटिंग्स",
|
|
563
|
+
agentDescription:
|
|
564
|
+
"मॉडल, API कुंजियों, ऑटोमेशन, आवाज़ और अन्य एजेंट नियंत्रणों के लिए साइडबार सेटिंग्स खोलें।",
|
|
565
|
+
openAgentSettings: "एजेंट सेटिंग्स खोलें",
|
|
566
|
+
title: "सेटिंग्स",
|
|
567
|
+
description: "एसेट जेनरेशन, स्टोरेज और ब्रांड किट एक्सेस।",
|
|
568
|
+
connections: "कनेक्शन",
|
|
569
|
+
connectionsDescription:
|
|
570
|
+
"Assets को ब्रांड-सुरक्षित मीडिया बनाने, सहेजने और साझा करने के लिए तैयार रखें। Builder सबसे आसान रास्ता है; जरूरत पड़ने पर मैनुअल कुंजियां उपलब्ध रहती हैं।",
|
|
571
|
+
languageTitle: "भाषा",
|
|
572
|
+
languageDescription: "इस Assets workspace की इंटरफ़ेस भाषा चुनें।",
|
|
573
|
+
languageLabel: "इंटरफ़ेस भाषा",
|
|
574
|
+
},
|
|
575
|
+
chat: {
|
|
576
|
+
emptyState: "बताएं कि आप कौन सा एसेट बनाना चाहते हैं",
|
|
577
|
+
suggestionBlogHeroes: "इस ब्रांड किट से 3 ब्लॉग hero बनाएं",
|
|
578
|
+
suggestionProductVideo: "8 सेकंड का product reveal वीडियो बनाएं",
|
|
579
|
+
suggestionReferenceStyle: "मेरे reference assets की शैली मिलाएं",
|
|
580
|
+
chats: "चैट",
|
|
581
|
+
newChat: "नई चैट",
|
|
582
|
+
newAssetsChat: "नई Assets चैट",
|
|
583
|
+
renameChat: "चैट का नाम बदलें",
|
|
584
|
+
pinChat: "चैट पिन करें",
|
|
585
|
+
unpinChat: "चैट अनपिन करें",
|
|
586
|
+
copyShareLink: "शेयर लिंक कॉपी करें",
|
|
587
|
+
archiveChat: "चैट आर्काइव करें",
|
|
588
|
+
archiveFailed: "चैट आर्काइव नहीं कर सके।",
|
|
589
|
+
renameFailed: "चैट का नाम नहीं बदल सके।",
|
|
590
|
+
shareLinkFailed: "शेयर लिंक नहीं बना सके।",
|
|
591
|
+
shareLinkCopied: "चैट शेयर लिंक कॉपी हुआ।",
|
|
592
|
+
shareLinkReady: "चैट शेयर लिंक तैयार है।",
|
|
593
|
+
optionsFor: "{{title}} के लिए चैट विकल्प",
|
|
594
|
+
},
|
|
595
|
+
create: {
|
|
596
|
+
imageModel: "इमेज मॉडल",
|
|
597
|
+
emptyState: "Assets से पूछें कि क्या बनाना है।",
|
|
598
|
+
composerPlaceholder:
|
|
599
|
+
"एसेट का वर्णन करें - + से images या text context जोड़ें",
|
|
600
|
+
heroTitle: "हम कौन सा एसेट बनाएं?",
|
|
601
|
+
heroDescription:
|
|
602
|
+
"hero image, product reveal, reference edit या खोजने की दिशा से शुरू करें।",
|
|
603
|
+
starters: { image: "इमेज", video: "वीडियो", refine: "परिष्कृत करें" },
|
|
604
|
+
},
|
|
605
|
+
}),
|
|
606
|
+
"ar-SA": mergeMessages({
|
|
607
|
+
root: {
|
|
608
|
+
commandActions: "الإجراءات",
|
|
609
|
+
commandSearch: "بحث",
|
|
610
|
+
commandAppearance: "المظهر",
|
|
611
|
+
toggleTheme: "تبديل السمة",
|
|
612
|
+
},
|
|
613
|
+
navigation: {
|
|
614
|
+
create: "إنشاء",
|
|
615
|
+
library: "المكتبة",
|
|
616
|
+
brandKits: "مجموعات العلامة",
|
|
617
|
+
auditLog: "سجل التدقيق",
|
|
618
|
+
settings: "الإعدادات",
|
|
619
|
+
extensions: "الإضافات",
|
|
620
|
+
openNavigation: "فتح التنقل",
|
|
621
|
+
expandSidebar: "توسيع الشريط الجانبي",
|
|
622
|
+
collapseSidebar: "طي الشريط الجانبي",
|
|
623
|
+
},
|
|
624
|
+
settings: {
|
|
625
|
+
agentTitle: "إعدادات الوكيل",
|
|
626
|
+
agentDescription:
|
|
627
|
+
"افتح إعدادات الوكيل في الشريط الجانبي لإدارة النموذج ومفاتيح API والأتمتة والصوت وعناصر التحكم الأخرى.",
|
|
628
|
+
openAgentSettings: "فتح إعدادات الوكيل",
|
|
629
|
+
title: "الإعدادات",
|
|
630
|
+
description: "إنشاء الأصول والتخزين والوصول إلى مجموعات العلامة.",
|
|
631
|
+
connections: "الاتصالات",
|
|
632
|
+
connectionsDescription:
|
|
633
|
+
"اجعل Assets جاهزًا لإنشاء الوسائط الآمنة للعلامة وحفظها ومشاركتها. Builder هو المسار الأبسط، وتبقى المفاتيح اليدوية متاحة عند الحاجة.",
|
|
634
|
+
languageTitle: "اللغة",
|
|
635
|
+
languageDescription: "اختر لغة الواجهة لمساحة عمل Assets هذه.",
|
|
636
|
+
languageLabel: "لغة الواجهة",
|
|
637
|
+
},
|
|
638
|
+
chat: {
|
|
639
|
+
emptyState: "صف الأصل الذي تريد إنشاءه",
|
|
640
|
+
suggestionBlogHeroes: "أنشئ 3 صور رئيسية للمدونة من مجموعة العلامة هذه",
|
|
641
|
+
suggestionProductVideo: "أنشئ فيديو عرض منتج مدته 8 ثوانٍ",
|
|
642
|
+
suggestionReferenceStyle: "طابق أسلوب أصولي المرجعية",
|
|
643
|
+
chats: "المحادثات",
|
|
644
|
+
newChat: "محادثة جديدة",
|
|
645
|
+
newAssetsChat: "محادثة Assets جديدة",
|
|
646
|
+
renameChat: "إعادة تسمية المحادثة",
|
|
647
|
+
pinChat: "تثبيت المحادثة",
|
|
648
|
+
unpinChat: "إلغاء تثبيت المحادثة",
|
|
649
|
+
copyShareLink: "نسخ رابط المشاركة",
|
|
650
|
+
archiveChat: "أرشفة المحادثة",
|
|
651
|
+
archiveFailed: "تعذرت أرشفة المحادثة.",
|
|
652
|
+
renameFailed: "تعذرت إعادة تسمية المحادثة.",
|
|
653
|
+
shareLinkFailed: "تعذر إنشاء رابط مشاركة.",
|
|
654
|
+
shareLinkCopied: "تم نسخ رابط مشاركة المحادثة.",
|
|
655
|
+
shareLinkReady: "رابط مشاركة المحادثة جاهز.",
|
|
656
|
+
optionsFor: "خيارات المحادثة لـ {{title}}",
|
|
657
|
+
},
|
|
658
|
+
create: {
|
|
659
|
+
imageModel: "نموذج الصورة",
|
|
660
|
+
emptyState: "اسأل Assets عمّا تريد إنشاءه.",
|
|
661
|
+
composerPlaceholder: "صف الأصل - أرفق صورًا أو سياقًا نصيًا باستخدام +",
|
|
662
|
+
heroTitle: "ما الأصل الذي سننشئه؟",
|
|
663
|
+
heroDescription:
|
|
664
|
+
"ابدأ بصورة رئيسية أو عرض منتج أو تعديل مرجعي أو اتجاه تريد استكشافه.",
|
|
665
|
+
starters: { image: "صورة", video: "فيديو", refine: "تحسين" },
|
|
666
|
+
},
|
|
667
|
+
}),
|
|
668
|
+
} satisfies Record<LocaleCode, Messages>;
|