@agent-native/core 0.102.2 → 0.103.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 +1 -1
- package/corpus/core/CHANGELOG.md +6 -0
- package/corpus/core/docs/content/local-file-mode.mdx +99 -489
- package/corpus/core/docs/content/locales/ar-SA/local-file-mode.mdx +35 -490
- package/corpus/core/docs/content/locales/ar-SA/template-content.mdx +10 -24
- package/corpus/core/docs/content/locales/de-DE/local-file-mode.mdx +37 -491
- package/corpus/core/docs/content/locales/de-DE/template-content.mdx +10 -24
- package/corpus/core/docs/content/locales/es-ES/local-file-mode.mdx +35 -493
- package/corpus/core/docs/content/locales/es-ES/template-content.mdx +10 -24
- package/corpus/core/docs/content/locales/fr-FR/local-file-mode.mdx +38 -491
- package/corpus/core/docs/content/locales/fr-FR/template-content.mdx +10 -24
- package/corpus/core/docs/content/locales/hi-IN/local-file-mode.mdx +33 -492
- package/corpus/core/docs/content/locales/hi-IN/template-content.mdx +10 -24
- package/corpus/core/docs/content/locales/ja-JP/local-file-mode.mdx +36 -492
- package/corpus/core/docs/content/locales/ja-JP/template-content.mdx +10 -24
- package/corpus/core/docs/content/locales/ko-KR/local-file-mode.mdx +35 -490
- package/corpus/core/docs/content/locales/ko-KR/template-content.mdx +10 -24
- package/corpus/core/docs/content/locales/pt-BR/local-file-mode.mdx +35 -493
- package/corpus/core/docs/content/locales/pt-BR/template-content.mdx +10 -24
- package/corpus/core/docs/content/locales/zh-CN/local-file-mode.mdx +31 -489
- package/corpus/core/docs/content/locales/zh-CN/template-content.mdx +9 -24
- package/corpus/core/docs/content/locales/zh-TW/local-file-mode.mdx +31 -489
- package/corpus/core/docs/content/locales/zh-TW/template-content.mdx +9 -24
- package/corpus/core/docs/content/template-content.mdx +26 -42
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/cli/content-local.ts +86 -18
- package/corpus/core/src/cli/index.ts +2 -2
- package/corpus/core/src/cli/skills-content/content-skill.ts +36 -25
- package/corpus/core/src/cli/skills.ts +47 -13
- package/corpus/core/src/local-artifacts/index.ts +65 -0
- package/corpus/templates/assets/app/components/library/GenerationPresetsPanel.tsx +325 -0
- package/corpus/templates/assets/app/hooks/use-navigation-state.ts +12 -0
- package/corpus/templates/assets/app/i18n/zh-TW.ts +21 -0
- package/corpus/templates/assets/app/i18n-data.ts +215 -0
- package/corpus/templates/assets/app/routes/brand-kits.$id.tsx +19 -479
- package/corpus/templates/assets/app/routes/brand-kits.$id_.presets.$presetId.tsx +1 -1
- package/corpus/templates/assets/app/routes/brand-kits.$id_.settings.tsx +446 -0
- package/corpus/templates/clips/app/components/editor/editor-layout.tsx +12 -2
- package/corpus/templates/clips/app/components/player/settings-panel.tsx +30 -12
- package/corpus/templates/clips/app/components/player/video-player.tsx +5 -1
- package/corpus/templates/clips/app/components/recorder/microphone-visualizer.tsx +22 -3
- package/corpus/templates/clips/app/i18n/ar-SA.ts +3 -2
- package/corpus/templates/clips/app/i18n/de-DE.ts +4 -2
- package/corpus/templates/clips/app/i18n/en-US.ts +3 -2
- package/corpus/templates/clips/app/i18n/es-ES.ts +4 -2
- package/corpus/templates/clips/app/i18n/fr-FR.ts +3 -2
- package/corpus/templates/clips/app/i18n/hi-IN.ts +3 -2
- package/corpus/templates/clips/app/i18n/ja-JP.ts +4 -1
- package/corpus/templates/clips/app/i18n/ko-KR.ts +3 -2
- package/corpus/templates/clips/app/i18n/pt-BR.ts +4 -2
- package/corpus/templates/clips/app/i18n/zh-CN.ts +3 -2
- package/corpus/templates/clips/app/i18n/zh-TW.ts +3 -2
- package/corpus/templates/clips/app/routes/r.$recordingId.tsx +27 -1
- package/corpus/templates/clips/server/lib/share-password.ts +6 -3
- package/corpus/templates/content/.agents/skills/content/SKILL.md +26 -39
- package/corpus/templates/content/AGENTS.md +25 -30
- package/corpus/templates/content/actions/_builder-docs-client.ts +23 -0
- package/corpus/templates/content/actions/_content-database-source-adapters.ts +21 -3
- package/corpus/templates/content/actions/_content-files.ts +338 -0
- package/corpus/templates/content/actions/_content-space-access.ts +135 -0
- package/corpus/templates/content/actions/_content-spaces.ts +640 -0
- package/corpus/templates/content/actions/_database-source-utils.ts +90 -7
- package/corpus/templates/content/actions/_database-utils.ts +7 -1
- package/corpus/templates/content/actions/_local-file-documents.ts +0 -9
- package/corpus/templates/content/actions/_local-folder-source.ts +53 -0
- package/corpus/templates/content/actions/_property-utils.ts +9 -4
- package/corpus/templates/content/actions/add-database-item.ts +108 -65
- package/corpus/templates/content/actions/backfill-content-files.ts +22 -0
- package/corpus/templates/content/actions/connect-local-folder-source.ts +221 -0
- package/corpus/templates/content/actions/create-content-database.ts +129 -3
- package/corpus/templates/content/actions/create-document.ts +65 -55
- package/corpus/templates/content/actions/create-inline-content-database.ts +6 -1
- package/corpus/templates/content/actions/delete-content-database.ts +3 -0
- package/corpus/templates/content/actions/delete-document.ts +7 -11
- package/corpus/templates/content/actions/disconnect-local-folder-source.ts +175 -0
- package/corpus/templates/content/actions/duplicate-database-item.ts +10 -0
- package/corpus/templates/content/actions/duplicate-database-items.ts +13 -0
- package/corpus/templates/content/actions/edit-document.ts +2 -28
- package/corpus/templates/content/actions/ensure-content-spaces.ts +26 -0
- package/corpus/templates/content/actions/export-content-source.ts +47 -9
- package/corpus/templates/content/actions/get-document.ts +0 -14
- package/corpus/templates/content/actions/import-content-source.ts +43 -3
- package/corpus/templates/content/actions/list-content-spaces.ts +103 -0
- package/corpus/templates/content/actions/list-documents.ts +12 -9
- package/corpus/templates/content/actions/move-document.ts +3 -14
- package/corpus/templates/content/actions/pull-document.ts +0 -23
- package/corpus/templates/content/actions/remove-local-file-source.ts +50 -29
- package/corpus/templates/content/actions/resolve-local-folder-conflict.ts +442 -0
- package/corpus/templates/content/actions/reveal-local-source-file.ts +6 -17
- package/corpus/templates/content/actions/search-documents.ts +0 -34
- package/corpus/templates/content/actions/share-local-file-document.ts +25 -1
- package/corpus/templates/content/actions/submit-content-database-form.ts +12 -0
- package/corpus/templates/content/actions/sync-local-folder-source.ts +731 -0
- package/corpus/templates/content/actions/sync-manifest-local-folder-source.ts +123 -0
- package/corpus/templates/content/actions/update-content-database-view.ts +10 -1
- package/corpus/templates/content/actions/update-document.ts +0 -15
- package/corpus/templates/content/actions/view-screen.ts +2 -50
- package/corpus/templates/content/app/components/editor/SlashCommandMenu.tsx +76 -62
- package/corpus/templates/content/app/components/editor/database/DatabaseView.tsx +70 -22
- package/corpus/templates/content/app/components/editor/database/grouping.ts +2 -1
- package/corpus/templates/content/app/components/editor/database/settings.tsx +23 -20
- package/corpus/templates/content/app/components/editor/database/shared.tsx +2 -0
- package/corpus/templates/content/app/components/editor/database/sidebar.tsx +330 -0
- package/corpus/templates/content/app/components/editor/database/types.ts +1 -0
- package/corpus/templates/content/app/components/editor/database/view-config.ts +3 -1
- package/corpus/templates/content/app/components/layout/Layout.tsx +25 -1
- package/corpus/templates/content/app/components/sidebar/DocumentSidebar.tsx +209 -113
- package/corpus/templates/content/app/components/sidebar/select-content-space.ts +31 -0
- package/corpus/templates/content/app/hooks/use-content-database.ts +16 -0
- package/corpus/templates/content/app/hooks/use-content-spaces.ts +39 -0
- package/corpus/templates/content/app/i18n/zh-TW.ts +11 -0
- package/corpus/templates/content/app/i18n-data.ts +75 -0
- package/corpus/templates/content/app/routes/_app.local-files.tsx +174 -65
- package/corpus/templates/content/changelog/2026-07-16-content-callouts-can-now-be-reviewed-and-published-to-builder.md +6 -0
- package/corpus/templates/content/changelog/2026-07-16-heading-5-and-heading-6-are-available-from-the-editor-slash-.md +6 -0
- package/corpus/templates/content/changelog/2026-07-16-organize-every-workspace-through-a-customizable-files-databa.md +6 -0
- package/corpus/templates/content/parity/matrix.md +2 -1
- package/corpus/templates/content/parity/matrix.ts +37 -1
- package/corpus/templates/content/scripts/dev-database.mjs +7 -5
- package/corpus/templates/content/server/db/schema.ts +113 -40
- package/corpus/templates/content/server/lib/document-context.ts +15 -1
- package/corpus/templates/content/server/lib/notion-sync.ts +6 -0
- package/corpus/templates/content/server/plugins/db.ts +153 -0
- package/corpus/templates/content/shared/api.ts +17 -3
- package/corpus/templates/content/shared/builder-mdx.ts +163 -16
- package/corpus/templates/design/.agents/skills/design-templates/SKILL.md +59 -0
- package/corpus/templates/design/AGENTS.md +6 -1
- package/corpus/templates/design/actions/create-design-from-template.ts +19 -7
- package/corpus/templates/design/actions/list-design-templates.ts +69 -21
- package/corpus/templates/design/actions/navigate.ts +2 -2
- package/corpus/templates/design/actions/view-screen.ts +15 -2
- package/corpus/templates/design/agent-native.app-skill.json +5 -0
- package/corpus/templates/design/app/components/editor/PromptDialog.tsx +281 -56
- package/corpus/templates/design/app/components/templates/TemplatePreview.tsx +14 -2
- package/corpus/templates/design/app/hooks/use-navigation-state.ts +3 -2
- package/corpus/templates/design/app/i18n/zh-TW.ts +3 -3
- package/corpus/templates/design/app/i18n-data.ts +21 -2
- package/corpus/templates/design/app/i18n-template-feature.ts +218 -10
- package/corpus/templates/design/app/pages/Index.tsx +195 -24
- package/corpus/templates/design/app/pages/Templates.tsx +144 -55
- package/corpus/templates/design/app/pages/design-editor/generation-prompt-directives.ts +12 -1
- package/corpus/templates/design/changelog/2026-07-14-templates-now-appear-in-the-new-design-picker-with-previews-.md +6 -0
- package/corpus/templates/design/changelog/2026-07-15-templates-now-open-immediately-after-copying-even-while-the-.md +6 -0
- package/corpus/templates/design/server/plugins/agent-chat.ts +1 -1
- package/corpus/templates/mail/AGENTS.md +23 -18
- package/corpus/templates/mail/actions/bulk-archive.ts +32 -28
- package/corpus/templates/mail/actions/mark-read.ts +131 -20
- package/corpus/templates/mail/actions/mark-thread-read.ts +1 -1
- package/corpus/templates/mail/actions/move-email.ts +30 -24
- package/corpus/templates/mail/actions/send-email.ts +73 -68
- package/corpus/templates/mail/changelog/2026-07-15-unread-inbox-cleanup-now-completes-reliably.md +6 -0
- package/corpus/templates/mail/server/handlers/emails.ts +218 -209
- package/corpus/templates/mail/server/lib/bulk-mark-read.ts +30 -0
- package/corpus/templates/mail/server/lib/email-state.ts +198 -113
- package/corpus/templates/mail/server/lib/google-auth.ts +218 -25
- package/corpus/templates/mail/server/lib/jobs.ts +69 -74
- package/corpus/templates/mail/server/lib/local-email-store.ts +265 -0
- package/corpus/templates/mail/server/plugins/agent-chat.ts +6 -0
- package/dist/cli/content-local.d.ts +1 -0
- package/dist/cli/content-local.d.ts.map +1 -1
- package/dist/cli/content-local.js +75 -17
- package/dist/cli/content-local.js.map +1 -1
- package/dist/cli/index.js +2 -2
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/skills-content/content-skill.d.ts +1 -1
- package/dist/cli/skills-content/content-skill.d.ts.map +1 -1
- package/dist/cli/skills-content/content-skill.js +36 -25
- package/dist/cli/skills-content/content-skill.js.map +1 -1
- package/dist/cli/skills.d.ts.map +1 -1
- package/dist/cli/skills.js +47 -14
- package/dist/cli/skills.js.map +1 -1
- package/dist/collab/awareness.d.ts +2 -2
- package/dist/collab/awareness.d.ts.map +1 -1
- package/dist/collab/struct-routes.d.ts +1 -1
- package/dist/local-artifacts/index.d.ts +10 -0
- package/dist/local-artifacts/index.d.ts.map +1 -1
- package/dist/local-artifacts/index.js +39 -0
- package/dist/local-artifacts/index.js.map +1 -1
- package/dist/notifications/routes.d.ts +1 -1
- package/dist/observability/routes.d.ts +5 -5
- package/dist/resources/handlers.d.ts +1 -1
- package/dist/secrets/routes.d.ts +9 -9
- package/docs/content/local-file-mode.mdx +99 -489
- package/docs/content/locales/ar-SA/local-file-mode.mdx +35 -490
- package/docs/content/locales/ar-SA/template-content.mdx +10 -24
- package/docs/content/locales/de-DE/local-file-mode.mdx +37 -491
- package/docs/content/locales/de-DE/template-content.mdx +10 -24
- package/docs/content/locales/es-ES/local-file-mode.mdx +35 -493
- package/docs/content/locales/es-ES/template-content.mdx +10 -24
- package/docs/content/locales/fr-FR/local-file-mode.mdx +38 -491
- package/docs/content/locales/fr-FR/template-content.mdx +10 -24
- package/docs/content/locales/hi-IN/local-file-mode.mdx +33 -492
- package/docs/content/locales/hi-IN/template-content.mdx +10 -24
- package/docs/content/locales/ja-JP/local-file-mode.mdx +36 -492
- package/docs/content/locales/ja-JP/template-content.mdx +10 -24
- package/docs/content/locales/ko-KR/local-file-mode.mdx +35 -490
- package/docs/content/locales/ko-KR/template-content.mdx +10 -24
- package/docs/content/locales/pt-BR/local-file-mode.mdx +35 -493
- package/docs/content/locales/pt-BR/template-content.mdx +10 -24
- package/docs/content/locales/zh-CN/local-file-mode.mdx +31 -489
- package/docs/content/locales/zh-CN/template-content.mdx +9 -24
- package/docs/content/locales/zh-TW/local-file-mode.mdx +31 -489
- package/docs/content/locales/zh-TW/template-content.mdx +9 -24
- package/docs/content/template-content.mdx +26 -42
- package/package.json +1 -1
- package/corpus/templates/assets/app/components/library/EditLibraryDialog.tsx +0 -126
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
export const designTemplateFeatureOverrides = {
|
|
2
2
|
"zh-TW": {
|
|
3
|
+
promptDialog: {
|
|
4
|
+
createDesignSystem: "建立設計系統",
|
|
5
|
+
template: "範本",
|
|
6
|
+
blank: "空白",
|
|
7
|
+
builtIn: "內建",
|
|
8
|
+
chooseTemplate: "選擇範本",
|
|
9
|
+
searchTemplates: "搜尋範本...",
|
|
10
|
+
noTemplatesFound: "找不到範本。",
|
|
11
|
+
yourTemplates: "你的範本",
|
|
12
|
+
builtInTemplates: "內建範本",
|
|
13
|
+
templatePromptPlaceholder: "描述如何調整「{{title}}」...",
|
|
14
|
+
reskinTemplatePrompt:
|
|
15
|
+
"將 {{system}} 設計系統套用至「{{title}}」,並保留其結構與鎖定圖層。",
|
|
16
|
+
},
|
|
3
17
|
designEditor: {
|
|
4
18
|
saveAsTemplate: "儲存為範本…",
|
|
5
19
|
saveTemplateDescription:
|
|
@@ -17,11 +31,17 @@ export const designTemplateFeatureOverrides = {
|
|
|
17
31
|
title: "範本",
|
|
18
32
|
description: "從正確的尺寸與預設值開始,再用提示調整未鎖定的內容。",
|
|
19
33
|
searchPlaceholder: "搜尋範本...",
|
|
20
|
-
starterTemplates: "
|
|
34
|
+
starterTemplates: "內建範本",
|
|
21
35
|
savedTemplates: "已儲存的範本",
|
|
22
36
|
savedTemplatesDescription:
|
|
23
37
|
"從編輯器選單將任何 Design 專案儲存為可重複使用的範本。",
|
|
24
38
|
savedEmpty: "開啟設計並選擇「儲存為範本」,即可新增到這裡。",
|
|
39
|
+
yourTemplates: "你的範本",
|
|
40
|
+
yourTemplatesDescription:
|
|
41
|
+
"從編輯器選單將任何 Design 專案儲存為可重複使用的範本。",
|
|
42
|
+
yourTemplatesEmpty: "開啟設計並選擇「儲存為範本」,即可新增到這裡。",
|
|
43
|
+
builtInTemplates: "內建範本",
|
|
44
|
+
builtIn: "內建",
|
|
25
45
|
useAsIs: "直接使用範本",
|
|
26
46
|
promptPlaceholder: "描述您想用此範本製作的內容...",
|
|
27
47
|
opening: "正在開啟範本...",
|
|
@@ -44,6 +64,20 @@ export const designTemplateFeatureOverrides = {
|
|
|
44
64
|
},
|
|
45
65
|
},
|
|
46
66
|
"zh-CN": {
|
|
67
|
+
promptDialog: {
|
|
68
|
+
createDesignSystem: "创建设计系统",
|
|
69
|
+
template: "模板",
|
|
70
|
+
blank: "空白",
|
|
71
|
+
builtIn: "内置",
|
|
72
|
+
chooseTemplate: "选择模板",
|
|
73
|
+
searchTemplates: "搜索模板...",
|
|
74
|
+
noTemplatesFound: "未找到模板。",
|
|
75
|
+
yourTemplates: "你的模板",
|
|
76
|
+
builtInTemplates: "内置模板",
|
|
77
|
+
templatePromptPlaceholder: "描述如何调整“{{title}}”...",
|
|
78
|
+
reskinTemplatePrompt:
|
|
79
|
+
"将 {{system}} 设计系统应用到“{{title}}”,同时保留其结构和锁定图层。",
|
|
80
|
+
},
|
|
47
81
|
designEditor: {
|
|
48
82
|
saveAsTemplate: "保存为模板…",
|
|
49
83
|
saveTemplateDescription:
|
|
@@ -61,11 +95,17 @@ export const designTemplateFeatureOverrides = {
|
|
|
61
95
|
title: "模板",
|
|
62
96
|
description: "从正确的尺寸和默认值开始,再用提示调整未锁定的内容。",
|
|
63
97
|
searchPlaceholder: "搜索模板...",
|
|
64
|
-
starterTemplates: "
|
|
98
|
+
starterTemplates: "内置模板",
|
|
65
99
|
savedTemplates: "已保存的模板",
|
|
66
100
|
savedTemplatesDescription:
|
|
67
101
|
"从编辑器菜单将任意 Design 项目保存为可重复使用的模板。",
|
|
68
102
|
savedEmpty: "打开设计并选择“保存为模板”即可添加到此处。",
|
|
103
|
+
yourTemplates: "你的模板",
|
|
104
|
+
yourTemplatesDescription:
|
|
105
|
+
"从编辑器菜单将任意 Design 项目保存为可重复使用的模板。",
|
|
106
|
+
yourTemplatesEmpty: "打开设计并选择“保存为模板”即可添加到此处。",
|
|
107
|
+
builtInTemplates: "内置模板",
|
|
108
|
+
builtIn: "内置",
|
|
69
109
|
useAsIs: "直接使用模板",
|
|
70
110
|
promptPlaceholder: "描述您想使用此模板制作的内容...",
|
|
71
111
|
opening: "正在打开模板...",
|
|
@@ -88,6 +128,20 @@ export const designTemplateFeatureOverrides = {
|
|
|
88
128
|
},
|
|
89
129
|
},
|
|
90
130
|
"es-ES": {
|
|
131
|
+
promptDialog: {
|
|
132
|
+
createDesignSystem: "Crear sistema de diseño",
|
|
133
|
+
template: "Plantilla",
|
|
134
|
+
blank: "En blanco",
|
|
135
|
+
builtIn: "Integrada",
|
|
136
|
+
chooseTemplate: "Elegir una plantilla",
|
|
137
|
+
searchTemplates: "Buscar plantillas...",
|
|
138
|
+
noTemplatesFound: "No se encontraron plantillas.",
|
|
139
|
+
yourTemplates: "Tus plantillas",
|
|
140
|
+
builtInTemplates: "Plantillas integradas",
|
|
141
|
+
templatePromptPlaceholder: "Describe cómo adaptar {{title}}...",
|
|
142
|
+
reskinTemplatePrompt:
|
|
143
|
+
"Aplica el sistema de diseño {{system}} a {{title}} conservando su estructura y las capas bloqueadas.",
|
|
144
|
+
},
|
|
91
145
|
designEditor: {
|
|
92
146
|
saveAsTemplate: "Guardar como plantilla…",
|
|
93
147
|
saveTemplateDescription:
|
|
@@ -106,12 +160,19 @@ export const designTemplateFeatureOverrides = {
|
|
|
106
160
|
description:
|
|
107
161
|
"Empieza con las dimensiones y valores correctos y ajusta con indicaciones el contenido desbloqueado.",
|
|
108
162
|
searchPlaceholder: "Buscar plantillas...",
|
|
109
|
-
starterTemplates: "Plantillas
|
|
163
|
+
starterTemplates: "Plantillas integradas",
|
|
110
164
|
savedTemplates: "Plantillas guardadas",
|
|
111
165
|
savedTemplatesDescription:
|
|
112
166
|
"Guarda cualquier proyecto de Design como plantilla reutilizable desde el menú del editor.",
|
|
113
167
|
savedEmpty:
|
|
114
168
|
"Abre un diseño y elige Guardar como plantilla para añadirlo aquí.",
|
|
169
|
+
yourTemplates: "Tus plantillas",
|
|
170
|
+
yourTemplatesDescription:
|
|
171
|
+
"Guarda cualquier proyecto de Design como plantilla reutilizable desde el menú del editor.",
|
|
172
|
+
yourTemplatesEmpty:
|
|
173
|
+
"Abre un diseño y elige Guardar como plantilla para añadirlo aquí.",
|
|
174
|
+
builtInTemplates: "Plantillas integradas",
|
|
175
|
+
builtIn: "Integrada",
|
|
115
176
|
useAsIs: "Usar la plantilla tal cual",
|
|
116
177
|
promptPlaceholder: "Describe lo que quieres crear con esta plantilla...",
|
|
117
178
|
opening: "Abriendo plantilla...",
|
|
@@ -134,6 +195,20 @@ export const designTemplateFeatureOverrides = {
|
|
|
134
195
|
},
|
|
135
196
|
},
|
|
136
197
|
"fr-FR": {
|
|
198
|
+
promptDialog: {
|
|
199
|
+
createDesignSystem: "Créer un système de design",
|
|
200
|
+
template: "Modèle",
|
|
201
|
+
blank: "Vierge",
|
|
202
|
+
builtIn: "Intégré",
|
|
203
|
+
chooseTemplate: "Choisir un modèle",
|
|
204
|
+
searchTemplates: "Rechercher des modèles...",
|
|
205
|
+
noTemplatesFound: "Aucun modèle trouvé.",
|
|
206
|
+
yourTemplates: "Vos modèles",
|
|
207
|
+
builtInTemplates: "Modèles intégrés",
|
|
208
|
+
templatePromptPlaceholder: "Décrivez comment adapter {{title}}...",
|
|
209
|
+
reskinTemplatePrompt:
|
|
210
|
+
"Appliquez le système de design {{system}} à {{title}} en préservant sa structure et ses calques verrouillés.",
|
|
211
|
+
},
|
|
137
212
|
designEditor: {
|
|
138
213
|
saveAsTemplate: "Enregistrer comme modèle…",
|
|
139
214
|
saveTemplateDescription:
|
|
@@ -152,12 +227,19 @@ export const designTemplateFeatureOverrides = {
|
|
|
152
227
|
description:
|
|
153
228
|
"Commencez avec les bonnes dimensions et valeurs, puis adaptez le contenu déverrouillé par invite.",
|
|
154
229
|
searchPlaceholder: "Rechercher des modèles...",
|
|
155
|
-
starterTemplates: "Modèles
|
|
230
|
+
starterTemplates: "Modèles intégrés",
|
|
156
231
|
savedTemplates: "Modèles enregistrés",
|
|
157
232
|
savedTemplatesDescription:
|
|
158
233
|
"Enregistrez tout projet Design comme modèle réutilisable depuis le menu de l’éditeur.",
|
|
159
234
|
savedEmpty:
|
|
160
235
|
"Ouvrez un design et choisissez Enregistrer comme modèle pour l’ajouter ici.",
|
|
236
|
+
yourTemplates: "Vos modèles",
|
|
237
|
+
yourTemplatesDescription:
|
|
238
|
+
"Enregistrez tout projet Design comme modèle réutilisable depuis le menu de l’éditeur.",
|
|
239
|
+
yourTemplatesEmpty:
|
|
240
|
+
"Ouvrez un design et choisissez Enregistrer comme modèle pour l’ajouter ici.",
|
|
241
|
+
builtInTemplates: "Modèles intégrés",
|
|
242
|
+
builtIn: "Intégré",
|
|
161
243
|
useAsIs: "Utiliser le modèle tel quel",
|
|
162
244
|
promptPlaceholder:
|
|
163
245
|
"Décrivez ce que vous souhaitez créer avec ce modèle...",
|
|
@@ -181,6 +263,21 @@ export const designTemplateFeatureOverrides = {
|
|
|
181
263
|
},
|
|
182
264
|
},
|
|
183
265
|
"de-DE": {
|
|
266
|
+
promptDialog: {
|
|
267
|
+
createDesignSystem: "Designsystem erstellen",
|
|
268
|
+
template: "Vorlage",
|
|
269
|
+
blank: "Leer",
|
|
270
|
+
builtIn: "Integriert",
|
|
271
|
+
chooseTemplate: "Vorlage auswählen",
|
|
272
|
+
searchTemplates: "Vorlagen suchen...",
|
|
273
|
+
noTemplatesFound: "Keine Vorlagen gefunden.",
|
|
274
|
+
yourTemplates: "Deine Vorlagen",
|
|
275
|
+
builtInTemplates: "Integrierte Vorlagen",
|
|
276
|
+
templatePromptPlaceholder:
|
|
277
|
+
"Beschreibe, wie {{title}} angepasst werden soll...",
|
|
278
|
+
reskinTemplatePrompt:
|
|
279
|
+
"Wende das Designsystem {{system}} auf {{title}} an und erhalte Struktur und gesperrte Ebenen.",
|
|
280
|
+
},
|
|
184
281
|
designEditor: {
|
|
185
282
|
saveAsTemplate: "Als Vorlage speichern…",
|
|
186
283
|
saveTemplateDescription:
|
|
@@ -199,12 +296,19 @@ export const designTemplateFeatureOverrides = {
|
|
|
199
296
|
description:
|
|
200
297
|
"Mit passenden Abmessungen und Standardwerten starten und entsperrte Inhalte per Prompt anpassen.",
|
|
201
298
|
searchPlaceholder: "Vorlagen suchen...",
|
|
202
|
-
starterTemplates: "
|
|
299
|
+
starterTemplates: "Integrierte Vorlagen",
|
|
203
300
|
savedTemplates: "Gespeicherte Vorlagen",
|
|
204
301
|
savedTemplatesDescription:
|
|
205
302
|
"Jedes Design-Projekt über das Editormenü als wiederverwendbare Vorlage speichern.",
|
|
206
303
|
savedEmpty:
|
|
207
304
|
"Öffne ein Design und wähle Als Vorlage speichern, um es hier hinzuzufügen.",
|
|
305
|
+
yourTemplates: "Deine Vorlagen",
|
|
306
|
+
yourTemplatesDescription:
|
|
307
|
+
"Jedes Design-Projekt über das Editormenü als wiederverwendbare Vorlage speichern.",
|
|
308
|
+
yourTemplatesEmpty:
|
|
309
|
+
"Öffne ein Design und wähle Als Vorlage speichern, um es hier hinzuzufügen.",
|
|
310
|
+
builtInTemplates: "Integrierte Vorlagen",
|
|
311
|
+
builtIn: "Integriert",
|
|
208
312
|
useAsIs: "Vorlage unverändert verwenden",
|
|
209
313
|
promptPlaceholder:
|
|
210
314
|
"Beschreibe, was du mit dieser Vorlage erstellen möchtest...",
|
|
@@ -228,6 +332,20 @@ export const designTemplateFeatureOverrides = {
|
|
|
228
332
|
},
|
|
229
333
|
},
|
|
230
334
|
"ja-JP": {
|
|
335
|
+
promptDialog: {
|
|
336
|
+
createDesignSystem: "デザインシステムを作成",
|
|
337
|
+
template: "テンプレート",
|
|
338
|
+
blank: "空白",
|
|
339
|
+
builtIn: "組み込み",
|
|
340
|
+
chooseTemplate: "テンプレートを選択",
|
|
341
|
+
searchTemplates: "テンプレートを検索...",
|
|
342
|
+
noTemplatesFound: "テンプレートが見つかりません。",
|
|
343
|
+
yourTemplates: "自分のテンプレート",
|
|
344
|
+
builtInTemplates: "組み込みテンプレート",
|
|
345
|
+
templatePromptPlaceholder: "「{{title}}」の調整内容を説明...",
|
|
346
|
+
reskinTemplatePrompt:
|
|
347
|
+
"構造とロックされたレイヤーを保ったまま、「{{title}}」に {{system}} デザインシステムを適用します。",
|
|
348
|
+
},
|
|
231
349
|
designEditor: {
|
|
232
350
|
saveAsTemplate: "テンプレートとして保存…",
|
|
233
351
|
saveTemplateDescription:
|
|
@@ -247,12 +365,19 @@ export const designTemplateFeatureOverrides = {
|
|
|
247
365
|
description:
|
|
248
366
|
"適切な寸法と既定値から始め、ロックされていない内容をプロンプトで調整します。",
|
|
249
367
|
searchPlaceholder: "テンプレートを検索...",
|
|
250
|
-
starterTemplates: "
|
|
368
|
+
starterTemplates: "組み込みテンプレート",
|
|
251
369
|
savedTemplates: "保存済みテンプレート",
|
|
252
370
|
savedTemplatesDescription:
|
|
253
371
|
"エディターメニューから任意の Design プロジェクトを再利用可能なテンプレートとして保存できます。",
|
|
254
372
|
savedEmpty:
|
|
255
373
|
"デザインを開き、「テンプレートとして保存」を選ぶとここに追加されます。",
|
|
374
|
+
yourTemplates: "自分のテンプレート",
|
|
375
|
+
yourTemplatesDescription:
|
|
376
|
+
"エディターメニューから任意の Design プロジェクトを再利用可能なテンプレートとして保存できます。",
|
|
377
|
+
yourTemplatesEmpty:
|
|
378
|
+
"デザインを開き、「テンプレートとして保存」を選ぶとここに追加されます。",
|
|
379
|
+
builtInTemplates: "組み込みテンプレート",
|
|
380
|
+
builtIn: "組み込み",
|
|
256
381
|
useAsIs: "そのまま使用",
|
|
257
382
|
promptPlaceholder: "このテンプレートで作りたいものを説明してください...",
|
|
258
383
|
opening: "テンプレートを開いています...",
|
|
@@ -275,6 +400,21 @@ export const designTemplateFeatureOverrides = {
|
|
|
275
400
|
},
|
|
276
401
|
},
|
|
277
402
|
"ko-KR": {
|
|
403
|
+
promptDialog: {
|
|
404
|
+
createDesignSystem: "디자인 시스템 만들기",
|
|
405
|
+
template: "템플릿",
|
|
406
|
+
blank: "빈 템플릿",
|
|
407
|
+
builtIn: "기본 제공",
|
|
408
|
+
chooseTemplate: "템플릿 선택",
|
|
409
|
+
searchTemplates: "템플릿 검색...",
|
|
410
|
+
noTemplatesFound: "템플릿을 찾을 수 없습니다.",
|
|
411
|
+
yourTemplates: "내 템플릿",
|
|
412
|
+
builtInTemplates: "기본 제공 템플릿",
|
|
413
|
+
templatePromptPlaceholder:
|
|
414
|
+
"{{title}}을(를) 조정하는 방법을 설명하세요...",
|
|
415
|
+
reskinTemplatePrompt:
|
|
416
|
+
"구조와 잠긴 레이어를 유지하면서 {{system}} 디자인 시스템을 {{title}}에 적용하세요.",
|
|
417
|
+
},
|
|
278
418
|
designEditor: {
|
|
279
419
|
saveAsTemplate: "템플릿으로 저장…",
|
|
280
420
|
saveTemplateDescription:
|
|
@@ -293,11 +433,18 @@ export const designTemplateFeatureOverrides = {
|
|
|
293
433
|
description:
|
|
294
434
|
"알맞은 크기와 기본값으로 시작한 뒤 잠기지 않은 내용을 프롬프트로 조정하세요.",
|
|
295
435
|
searchPlaceholder: "템플릿 검색...",
|
|
296
|
-
starterTemplates: "
|
|
436
|
+
starterTemplates: "기본 제공 템플릿",
|
|
297
437
|
savedTemplates: "저장된 템플릿",
|
|
298
438
|
savedTemplatesDescription:
|
|
299
439
|
"편집기 메뉴에서 모든 Design 프로젝트를 재사용 가능한 템플릿으로 저장할 수 있습니다.",
|
|
300
440
|
savedEmpty: "디자인을 열고 템플릿으로 저장을 선택하면 여기에 추가됩니다.",
|
|
441
|
+
yourTemplates: "내 템플릿",
|
|
442
|
+
yourTemplatesDescription:
|
|
443
|
+
"편집기 메뉴에서 모든 Design 프로젝트를 재사용 가능한 템플릿으로 저장할 수 있습니다.",
|
|
444
|
+
yourTemplatesEmpty:
|
|
445
|
+
"디자인을 열고 템플릿으로 저장을 선택하면 여기에 추가됩니다.",
|
|
446
|
+
builtInTemplates: "기본 제공 템플릿",
|
|
447
|
+
builtIn: "기본 제공",
|
|
301
448
|
useAsIs: "템플릿 그대로 사용",
|
|
302
449
|
promptPlaceholder: "이 템플릿으로 만들고 싶은 내용을 설명하세요...",
|
|
303
450
|
opening: "템플릿 여는 중...",
|
|
@@ -320,6 +467,20 @@ export const designTemplateFeatureOverrides = {
|
|
|
320
467
|
},
|
|
321
468
|
},
|
|
322
469
|
"pt-BR": {
|
|
470
|
+
promptDialog: {
|
|
471
|
+
createDesignSystem: "Criar sistema de design",
|
|
472
|
+
template: "Modelo",
|
|
473
|
+
blank: "Em branco",
|
|
474
|
+
builtIn: "Integrado",
|
|
475
|
+
chooseTemplate: "Escolher um modelo",
|
|
476
|
+
searchTemplates: "Buscar modelos...",
|
|
477
|
+
noTemplatesFound: "Nenhum modelo encontrado.",
|
|
478
|
+
yourTemplates: "Seus modelos",
|
|
479
|
+
builtInTemplates: "Modelos integrados",
|
|
480
|
+
templatePromptPlaceholder: "Descreva como adaptar {{title}}...",
|
|
481
|
+
reskinTemplatePrompt:
|
|
482
|
+
"Aplique o sistema de design {{system}} a {{title}}, preservando a estrutura e as camadas bloqueadas.",
|
|
483
|
+
},
|
|
323
484
|
designEditor: {
|
|
324
485
|
saveAsTemplate: "Salvar como modelo…",
|
|
325
486
|
saveTemplateDescription:
|
|
@@ -338,12 +499,19 @@ export const designTemplateFeatureOverrides = {
|
|
|
338
499
|
description:
|
|
339
500
|
"Comece com as dimensões e padrões certos e ajuste o conteúdo desbloqueado por prompt.",
|
|
340
501
|
searchPlaceholder: "Buscar modelos...",
|
|
341
|
-
starterTemplates: "Modelos
|
|
502
|
+
starterTemplates: "Modelos integrados",
|
|
342
503
|
savedTemplates: "Modelos salvos",
|
|
343
504
|
savedTemplatesDescription:
|
|
344
505
|
"Salve qualquer projeto do Design como um modelo reutilizável no menu do editor.",
|
|
345
506
|
savedEmpty:
|
|
346
507
|
"Abra um design e escolha Salvar como modelo para adicioná-lo aqui.",
|
|
508
|
+
yourTemplates: "Seus modelos",
|
|
509
|
+
yourTemplatesDescription:
|
|
510
|
+
"Salve qualquer projeto do Design como um modelo reutilizável no menu do editor.",
|
|
511
|
+
yourTemplatesEmpty:
|
|
512
|
+
"Abra um design e escolha Salvar como modelo para adicioná-lo aqui.",
|
|
513
|
+
builtInTemplates: "Modelos integrados",
|
|
514
|
+
builtIn: "Integrado",
|
|
347
515
|
useAsIs: "Usar o modelo como está",
|
|
348
516
|
promptPlaceholder: "Descreva o que você quer criar com este modelo...",
|
|
349
517
|
opening: "Abrindo modelo...",
|
|
@@ -366,6 +534,20 @@ export const designTemplateFeatureOverrides = {
|
|
|
366
534
|
},
|
|
367
535
|
},
|
|
368
536
|
"hi-IN": {
|
|
537
|
+
promptDialog: {
|
|
538
|
+
createDesignSystem: "डिज़ाइन सिस्टम बनाएँ",
|
|
539
|
+
template: "टेम्पलेट",
|
|
540
|
+
blank: "खाली",
|
|
541
|
+
builtIn: "अंतर्निहित",
|
|
542
|
+
chooseTemplate: "टेम्पलेट चुनें",
|
|
543
|
+
searchTemplates: "टेम्पलेट खोजें...",
|
|
544
|
+
noTemplatesFound: "कोई टेम्पलेट नहीं मिला।",
|
|
545
|
+
yourTemplates: "आपके टेम्पलेट",
|
|
546
|
+
builtInTemplates: "अंतर्निहित टेम्पलेट",
|
|
547
|
+
templatePromptPlaceholder: "बताएँ कि {{title}} को कैसे बदलना है...",
|
|
548
|
+
reskinTemplatePrompt:
|
|
549
|
+
"संरचना और लॉक लेयर सुरक्षित रखते हुए {{system}} डिज़ाइन सिस्टम को {{title}} पर लागू करें।",
|
|
550
|
+
},
|
|
369
551
|
designEditor: {
|
|
370
552
|
saveAsTemplate: "टेम्पलेट के रूप में सहेजें…",
|
|
371
553
|
saveTemplateDescription:
|
|
@@ -384,11 +566,17 @@ export const designTemplateFeatureOverrides = {
|
|
|
384
566
|
description:
|
|
385
567
|
"सही आकार और डिफ़ॉल्ट से शुरू करें, फिर अनलॉक सामग्री को प्रॉम्प्ट से बदलें।",
|
|
386
568
|
searchPlaceholder: "टेम्पलेट खोजें...",
|
|
387
|
-
starterTemplates: "
|
|
569
|
+
starterTemplates: "अंतर्निहित टेम्पलेट",
|
|
388
570
|
savedTemplates: "सहेजे गए टेम्पलेट",
|
|
389
571
|
savedTemplatesDescription:
|
|
390
572
|
"एडिटर मेनू से किसी भी Design प्रोजेक्ट को दोबारा उपयोग होने वाले टेम्पलेट के रूप में सहेजें।",
|
|
391
573
|
savedEmpty: "डिज़ाइन खोलें और यहाँ जोड़ने के लिए टेम्पलेट के रूप में सहेजें चुनें।",
|
|
574
|
+
yourTemplates: "आपके टेम्पलेट",
|
|
575
|
+
yourTemplatesDescription:
|
|
576
|
+
"एडिटर मेनू से किसी भी Design प्रोजेक्ट को दोबारा उपयोग होने वाले टेम्पलेट के रूप में सहेजें।",
|
|
577
|
+
yourTemplatesEmpty: "डिज़ाइन खोलें और यहाँ जोड़ने के लिए टेम्पलेट के रूप में सहेजें चुनें।",
|
|
578
|
+
builtInTemplates: "अंतर्निहित टेम्पलेट",
|
|
579
|
+
builtIn: "अंतर्निहित",
|
|
392
580
|
useAsIs: "टेम्पलेट जैसा है वैसा उपयोग करें",
|
|
393
581
|
promptPlaceholder: "बताएँ कि इस टेम्पलेट से क्या बनाना चाहते हैं...",
|
|
394
582
|
opening: "टेम्पलेट खुल रहा है...",
|
|
@@ -411,6 +599,20 @@ export const designTemplateFeatureOverrides = {
|
|
|
411
599
|
},
|
|
412
600
|
},
|
|
413
601
|
"ar-SA": {
|
|
602
|
+
promptDialog: {
|
|
603
|
+
createDesignSystem: "إنشاء نظام تصميم",
|
|
604
|
+
template: "قالب",
|
|
605
|
+
blank: "فارغ",
|
|
606
|
+
builtIn: "مدمج",
|
|
607
|
+
chooseTemplate: "اختيار قالب",
|
|
608
|
+
searchTemplates: "البحث في القوالب...",
|
|
609
|
+
noTemplatesFound: "لم يتم العثور على قوالب.",
|
|
610
|
+
yourTemplates: "قوالبك",
|
|
611
|
+
builtInTemplates: "القوالب المدمجة",
|
|
612
|
+
templatePromptPlaceholder: "صف كيفية تعديل {{title}}...",
|
|
613
|
+
reskinTemplatePrompt:
|
|
614
|
+
"طبّق نظام التصميم {{system}} على {{title}} مع الحفاظ على بنيته وطبقاته المقفلة.",
|
|
615
|
+
},
|
|
414
616
|
designEditor: {
|
|
415
617
|
saveAsTemplate: "حفظ كقالب…",
|
|
416
618
|
saveTemplateDescription:
|
|
@@ -429,11 +631,17 @@ export const designTemplateFeatureOverrides = {
|
|
|
429
631
|
description:
|
|
430
632
|
"ابدأ بالأبعاد والإعدادات الصحيحة، ثم عدّل المحتوى غير المقفل باستخدام مطالبة.",
|
|
431
633
|
searchPlaceholder: "البحث في القوالب...",
|
|
432
|
-
starterTemplates: "
|
|
634
|
+
starterTemplates: "القوالب المدمجة",
|
|
433
635
|
savedTemplates: "القوالب المحفوظة",
|
|
434
636
|
savedTemplatesDescription:
|
|
435
637
|
"احفظ أي مشروع Design كقالب قابل لإعادة الاستخدام من قائمة المحرر.",
|
|
436
638
|
savedEmpty: "افتح تصميمًا واختر حفظ كقالب لإضافته هنا.",
|
|
639
|
+
yourTemplates: "قوالبك",
|
|
640
|
+
yourTemplatesDescription:
|
|
641
|
+
"احفظ أي مشروع Design كقالب قابل لإعادة الاستخدام من قائمة المحرر.",
|
|
642
|
+
yourTemplatesEmpty: "افتح تصميمًا واختر حفظ كقالب لإضافته هنا.",
|
|
643
|
+
builtInTemplates: "القوالب المدمجة",
|
|
644
|
+
builtIn: "مدمج",
|
|
437
645
|
useAsIs: "استخدام القالب كما هو",
|
|
438
646
|
promptPlaceholder: "صف ما تريد إنشاءه باستخدام هذا القالب...",
|
|
439
647
|
opening: "جارٍ فتح القالب...",
|