mirror of
https://github.com/zadam/trilium.git
synced 2025-10-20 15:19:01 +02:00
feat(website/i18n): translate final call-to-action
This commit is contained in:
parent
ce88afee1b
commit
fc9f2bceb0
@ -95,6 +95,11 @@
|
|||||||
"security_question": "How is my data protected?",
|
"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."
|
"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": {
|
"components": {
|
||||||
"link_learn_more": "Learn more...",
|
"link_learn_more": "Learn more...",
|
||||||
"list_with_screenshot_alt": "Screenshot of the feature being selected"
|
"list_with_screenshot_alt": "Screenshot of the feature being selected"
|
||||||
|
@ -297,11 +297,11 @@ function FaqItem({ question, children }: { question: string; children: Component
|
|||||||
|
|
||||||
function FinalCta() {
|
function FinalCta() {
|
||||||
return (
|
return (
|
||||||
<Section className="final-cta accented" title="Ready to get started with Trilium Notes?">
|
<Section className="final-cta accented" title={t("final_cta.title")}>
|
||||||
<p>Build your personal knowledge base with powerful features and full privacy.</p>
|
<p>{t("final_cta.description")}</p>
|
||||||
|
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<Button href="./get-started/" text="Get started" />
|
<Button href="./get-started/" text={t("final_cta.get_started")} />
|
||||||
</div>
|
</div>
|
||||||
</Section>
|
</Section>
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user