Add translated trust and threat model pages for zh-CN, ko, and ja locales. Each locale has full translations of UI text (JSON) and threat data (YAML). Language switcher added to all pages including English. Vercel wildcard rewrite added for trust.openclaw.ai subdomain locale paths. Co-Authored-By: theonejvo <theonejvo@users.noreply.github.com>
27 lines
620 B
JSON
27 lines
620 B
JSON
{
|
|
"routes": [
|
|
{
|
|
"src": "^/$",
|
|
"has": [{ "type": "host", "value": "trust.openclaw.ai" }],
|
|
"dest": "/trust"
|
|
},
|
|
{
|
|
"src": "^/(.+)$",
|
|
"has": [{ "type": "host", "value": "trust.openclaw.ai" }],
|
|
"dest": "/trust/$1"
|
|
},
|
|
{
|
|
"src": "^/(.*)$",
|
|
"has": [{ "type": "host", "value": "clawd.bot" }],
|
|
"status": 308,
|
|
"headers": { "Location": "https://openclaw.ai/$1" }
|
|
},
|
|
{
|
|
"src": "^/(.*)$",
|
|
"has": [{ "type": "host", "value": "www.clawd.bot" }],
|
|
"status": 308,
|
|
"headers": { "Location": "https://openclaw.ai/$1" }
|
|
}
|
|
]
|
|
}
|