@motor-cms/ui-admin 4.2.1 → 4.3.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.
|
@@ -16,6 +16,9 @@
|
|
|
16
16
|
"target": "Ziel",
|
|
17
17
|
"parameters": "Parameter",
|
|
18
18
|
"is_preview_domain": "Vorschau-Domain",
|
|
19
|
+
"is_canonical": "Kanonische Domain für SEO",
|
|
20
|
+
"is_canonical_description": "Wenn dieser Client mehrere Domains hat (z. B. Vanity-URLs): Diese ist die kanonische Domain — Canonical-Tags zeigen darauf und konsolidieren das SEO-Signal. Nur eine Domain pro Client kann kanonisch sein.",
|
|
19
21
|
"group_connection": "Verbindung",
|
|
20
|
-
"group_routing": "Routing"
|
|
22
|
+
"group_routing": "Routing",
|
|
23
|
+
"group_seo": "SEO"
|
|
21
24
|
}
|
|
@@ -15,6 +15,9 @@
|
|
|
15
15
|
"target": "Target",
|
|
16
16
|
"parameters": "Parameters",
|
|
17
17
|
"is_preview_domain": "Preview Domain",
|
|
18
|
+
"is_canonical": "Canonical Domain for SEO",
|
|
19
|
+
"is_canonical_description": "When this client has multiple domains (e.g. vanity URLs): this is the canonical domain — canonical tags point here and consolidate SEO signal. Only one domain per client can be canonical.",
|
|
18
20
|
"group_connection": "Connection",
|
|
19
|
-
"group_routing": "Routing"
|
|
21
|
+
"group_routing": "Routing",
|
|
22
|
+
"group_seo": "SEO"
|
|
20
23
|
}
|
|
@@ -93,7 +93,8 @@ export const domainFormMeta = {
|
|
|
93
93
|
host: { input: 'text', required: true },
|
|
94
94
|
port: { input: 'number', required: true },
|
|
95
95
|
path: { input: 'text', required: true },
|
|
96
|
-
is_preview_domain: { input: 'toggle' }
|
|
96
|
+
is_preview_domain: { input: 'toggle' },
|
|
97
|
+
is_canonical: { input: 'toggle' }
|
|
97
98
|
}
|
|
98
99
|
},
|
|
99
100
|
patch: {
|
|
@@ -106,7 +107,8 @@ export const domainFormMeta = {
|
|
|
106
107
|
host: { input: 'text', required: true },
|
|
107
108
|
port: { input: 'number', required: true },
|
|
108
109
|
path: { input: 'text', required: true },
|
|
109
|
-
is_preview_domain: { input: 'toggle' }
|
|
110
|
+
is_preview_domain: { input: 'toggle' },
|
|
111
|
+
is_canonical: { input: 'toggle' }
|
|
110
112
|
}
|
|
111
113
|
}
|
|
112
114
|
} as const
|