chore(website/i18n): another missing translation

This commit is contained in:
Elian Doran
2025-10-25 22:16:13 +03:00
parent d0d268496c
commit e1dc4d1433
2 changed files with 2 additions and 1 deletions

View File

@@ -66,6 +66,7 @@
"api_description": "Interact with Trilium programatically using its builtin REST API." "api_description": "Interact with Trilium programatically using its builtin REST API."
}, },
"collections": { "collections": {
"title": "Collections",
"calendar_title": "Calendar", "calendar_title": "Calendar",
"calendar_description": "Organize your personal or professional events using a calendar, with support for all-day and multi-day events. See your events at a glance with the week, month and year views. Easy interaction to add or drag events.", "calendar_description": "Organize your personal or professional events using a calendar, with support for all-day and multi-day events. See your events at a glance with the week, month and year views. Easy interaction to add or drag events.",
"table_title": "Table", "table_title": "Table",

View File

@@ -211,7 +211,7 @@ function ExtensibilityBenefitsSection() {
function CollectionsSection() { function CollectionsSection() {
const { t } = useTranslation(); const { t } = useTranslation();
return ( return (
<Section className="collections" title="Collections"> <Section className="collections" title={t("collections.title")}>
<ListWithScreenshot items={[ <ListWithScreenshot items={[
{ {
title: t("collections.calendar_title"), title: t("collections.calendar_title"),