From fc9f2bceb04195219cd0f5dd1831adecb84543c0 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 11 Oct 2025 22:27:15 +0300 Subject: [PATCH] feat(website/i18n): translate final call-to-action --- apps/website/public/translations/en/translation.json | 5 +++++ apps/website/src/pages/Home/index.tsx | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/apps/website/public/translations/en/translation.json b/apps/website/public/translations/en/translation.json index 969ccc48d..73122853c 100644 --- a/apps/website/public/translations/en/translation.json +++ b/apps/website/public/translations/en/translation.json @@ -95,6 +95,11 @@ "security_question": "How is my data protected?", "security_answer": "By default, notes are not encrypted and can be read directly from the database. Once a note is marked as encrypted, the note is encrypted using AES-128-CBC." }, + "final_cta": { + "title": "Ready to get started with Trilium Notes?", + "description": "Build your personal knowledge base with powerful features and full privacy.", + "get_started": "Get started" + }, "components": { "link_learn_more": "Learn more...", "list_with_screenshot_alt": "Screenshot of the feature being selected" diff --git a/apps/website/src/pages/Home/index.tsx b/apps/website/src/pages/Home/index.tsx index abb82eb28..37e5c5f00 100644 --- a/apps/website/src/pages/Home/index.tsx +++ b/apps/website/src/pages/Home/index.tsx @@ -297,11 +297,11 @@ function FaqItem({ question, children }: { question: string; children: Component function FinalCta() { return ( -
-

Build your personal knowledge base with powerful features and full privacy.

+
+

{t("final_cta.description")}

-
)