chore(website): missing a translation

This commit is contained in:
Elian Doran 2025-10-25 20:40:05 +03:00
parent 4c7e7c157c
commit c40279b480
No known key found for this signature in database
2 changed files with 2 additions and 1 deletions

View File

@ -39,6 +39,7 @@
"web_clipper_content": "Grab web pages (or screenshots) and place them directly into Trilium using the web clipper browser extension."
},
"note_types": {
"title": "Multiple ways to represent your information",
"text_title": "Text notes",
"text_description": "The notes are edited using a visual (WYSIWYG) editor, with support for tables, images, math expressions, code blocks with syntax highlighting. Quickly format the text using Markdown-like syntax or using slash commands.",
"code_title": "Code notes",

View File

@ -131,7 +131,7 @@ function ProductivityBenefitsSection() {
function NoteTypesSection() {
const { t } = useTranslation();
return (
<Section className="note-types" title="Multiple ways to represent your information">
<Section className="note-types" title={t("note_types.title")}>
<ListWithScreenshot horizontal items={[
{
title: t("note_types.text_title"),