Store full portal titles as home headings
The UI composed "Compliance at {{name}}." via i18n while the
DB only held the org name. Persist the full heading, backfill
existing rows, and drop the unused heroTitle locale keys.
Also use clientip.Extract for NDA signing events and default
the portal base domain to probopage.localhost for local runs.
Signed-off-by: Bryan Frimin <bryan@probo.com>
This commit is contained in:
@@ -45,7 +45,6 @@
|
||||
}
|
||||
},
|
||||
"home": {
|
||||
"heroTitle": "Vertrauen bei {{name}}.",
|
||||
"heroDescription": "Willkommen auf unserem Compliance-Portal. Hier finden Sie unsere Sicherheitsdokumentation und Zertifizierungen.",
|
||||
"sections": {
|
||||
"compliance": "Compliance",
|
||||
|
||||
@@ -45,7 +45,6 @@
|
||||
}
|
||||
},
|
||||
"home": {
|
||||
"heroTitle": "Compliance at {{name}}.",
|
||||
"heroDescription": "Welcome to our Compliance Portal. Find our security documentation and certifications here.",
|
||||
"sections": {
|
||||
"compliance": "Compliance",
|
||||
|
||||
@@ -45,7 +45,6 @@
|
||||
}
|
||||
},
|
||||
"home": {
|
||||
"heroTitle": "Confianza en {{name}}.",
|
||||
"heroDescription": "Bienvenido a nuestro Portal de cumplimiento. Aquí encontrará nuestra documentación de seguridad y nuestras certificaciones.",
|
||||
"sections": {
|
||||
"compliance": "Cumplimiento",
|
||||
|
||||
@@ -45,7 +45,6 @@
|
||||
}
|
||||
},
|
||||
"home": {
|
||||
"heroTitle": "La confiance chez {{name}}.",
|
||||
"heroDescription": "Bienvenue dans notre Portail de conformité. Retrouvez ici notre documentation et nos certifications de sécurité.",
|
||||
"sections": {
|
||||
"compliance": "Conformité",
|
||||
|
||||
@@ -45,7 +45,6 @@
|
||||
}
|
||||
},
|
||||
"home": {
|
||||
"heroTitle": "Kepercayaan di {{name}}.",
|
||||
"heroDescription": "Selamat datang di Portal Kepatuhan kami. Temukan dokumentasi keamanan dan sertifikasi kami di sini.",
|
||||
"sections": {
|
||||
"compliance": "Kepatuhan",
|
||||
|
||||
@@ -45,7 +45,6 @@
|
||||
}
|
||||
},
|
||||
"home": {
|
||||
"heroTitle": "La fiducia in {{name}}.",
|
||||
"heroDescription": "Benvenuti nel nostro Portale di conformità. Qui potete trovare la nostra documentazione di sicurezza e le nostre certificazioni.",
|
||||
"sections": {
|
||||
"compliance": "Conformità",
|
||||
|
||||
@@ -45,7 +45,6 @@
|
||||
}
|
||||
},
|
||||
"home": {
|
||||
"heroTitle": "{{name}}における信頼。",
|
||||
"heroDescription": "コンプライアンスポータルへようこそ。セキュリティに関する文書や認証はこちらからご確認いただけます。",
|
||||
"sections": {
|
||||
"compliance": "コンプライアンス",
|
||||
|
||||
@@ -45,7 +45,6 @@
|
||||
}
|
||||
},
|
||||
"home": {
|
||||
"heroTitle": "{{name}}의 신뢰.",
|
||||
"heroDescription": "컴플라이언스 포털에 오신 것을 환영합니다. 이곳에서 보안 문서와 인증 정보를 확인하실 수 있습니다.",
|
||||
"sections": {
|
||||
"compliance": "컴플라이언스",
|
||||
|
||||
@@ -45,7 +45,6 @@
|
||||
}
|
||||
},
|
||||
"home": {
|
||||
"heroTitle": "Zaufanie w {{name}}.",
|
||||
"heroDescription": "Witamy w naszym Portalu Zgodności. Znajdziesz tu naszą dokumentację bezpieczeństwa i certyfikaty.",
|
||||
"sections": {
|
||||
"compliance": "Zgodność",
|
||||
|
||||
@@ -45,7 +45,6 @@
|
||||
}
|
||||
},
|
||||
"home": {
|
||||
"heroTitle": "A confiança na {{name}}.",
|
||||
"heroDescription": "Bem-vindo ao nosso Portal de Conformidade. Encontre aqui a nossa documentação de segurança e certificações.",
|
||||
"sections": {
|
||||
"compliance": "Conformidade",
|
||||
|
||||
@@ -45,7 +45,6 @@
|
||||
}
|
||||
},
|
||||
"home": {
|
||||
"heroTitle": "{{name}}'de Güven.",
|
||||
"heroDescription": "Uyumluluk Portalımıza hoş geldiniz. Güvenlik belgelerimizi ve sertifikalarımızı burada bulabilirsiniz.",
|
||||
"sections": {
|
||||
"compliance": "Uyumluluk",
|
||||
|
||||
@@ -45,7 +45,6 @@
|
||||
}
|
||||
},
|
||||
"home": {
|
||||
"heroTitle": "Довіра в {{name}}.",
|
||||
"heroDescription": "Вітаємо у нашому Порталі відповідності. Тут ви знайдете нашу документацію з безпеки та сертифікати.",
|
||||
"sections": {
|
||||
"compliance": "Відповідність",
|
||||
|
||||
@@ -45,7 +45,6 @@
|
||||
}
|
||||
},
|
||||
"home": {
|
||||
"heroTitle": "信赖 {{name}}。",
|
||||
"heroDescription": "欢迎访问我们的合规门户。您可以在此查看我们的安全文档和认证。",
|
||||
"sections": {
|
||||
"compliance": "合规",
|
||||
|
||||
@@ -57,7 +57,7 @@ export function HomePage({ queryRef }: HomePageProps) {
|
||||
return (
|
||||
<>
|
||||
<Hero
|
||||
title={t("home.heroTitle", { name: title })}
|
||||
title={title}
|
||||
description={t("home.heroDescription")}
|
||||
>
|
||||
<CompliancePortalContactInfo compliancePortalKey={currentCompliancePortal} />
|
||||
|
||||
Reference in New Issue
Block a user