Merge branch 'main' of https://github.com/TriliumNext/Trilium into feat/ui-improvements

This commit is contained in:
Adorian Doran 2025-10-28 09:51:32 +02:00
commit ea45024559
71 changed files with 715 additions and 399 deletions

View File

@ -37,7 +37,7 @@
"devDependencies": { "devDependencies": {
"@playwright/test": "1.56.1", "@playwright/test": "1.56.1",
"@stylistic/eslint-plugin": "5.5.0", "@stylistic/eslint-plugin": "5.5.0",
"@types/express": "5.0.4", "@types/express": "5.0.5",
"@types/node": "22.18.12", "@types/node": "22.18.12",
"@types/yargs": "17.0.34", "@types/yargs": "17.0.34",
"@vitest/coverage-v8": "3.2.4", "@vitest/coverage-v8": "3.2.4",

View File

@ -54,12 +54,12 @@
"leaflet-gpx": "2.2.0", "leaflet-gpx": "2.2.0",
"mark.js": "8.11.1", "mark.js": "8.11.1",
"marked": "16.4.1", "marked": "16.4.1",
"mermaid": "11.12.0", "mermaid": "11.12.1",
"mind-elixir": "5.3.4", "mind-elixir": "5.3.4",
"normalize.css": "8.0.1", "normalize.css": "8.0.1",
"panzoom": "9.4.3", "panzoom": "9.4.3",
"preact": "10.27.2", "preact": "10.27.2",
"react-i18next": "16.2.0", "react-i18next": "16.2.1",
"reveal.js": "5.2.1", "reveal.js": "5.2.1",
"svg-pan-zoom": "3.6.2", "svg-pan-zoom": "3.6.2",
"tabulator-tables": "6.3.1", "tabulator-tables": "6.3.1",

View File

@ -56,7 +56,20 @@ function SingleNoteRenderer({ note, onReady }: RendererProps) {
await import("@triliumnext/ckeditor5/src/theme/ck-content.css"); await import("@triliumnext/ckeditor5/src/theme/ck-content.css");
} }
const { $renderedContent } = await content_renderer.getRenderedContent(note, { noChildrenList: true }); const { $renderedContent } = await content_renderer.getRenderedContent(note, { noChildrenList: true });
containerRef.current?.replaceChildren(...$renderedContent); const container = containerRef.current!;
container.replaceChildren(...$renderedContent);
// Wait for all images to load.
const images = Array.from(container.querySelectorAll("img"));
await Promise.all(
images.map(img => {
if (img.complete) return Promise.resolve();
return new Promise<void>(resolve => {
img.addEventListener("load", () => resolve(), { once: true });
img.addEventListener("error", () => resolve(), { once: true });
});
})
);
} }
load().then(() => requestAnimationFrame(onReady)) load().then(() => requestAnimationFrame(onReady))

View File

@ -648,7 +648,8 @@
"logout": "Abmelden", "logout": "Abmelden",
"show-cheatsheet": "Cheatsheet anzeigen", "show-cheatsheet": "Cheatsheet anzeigen",
"toggle-zen-mode": "Zen Modus", "toggle-zen-mode": "Zen Modus",
"new-version-available": "Neues Update verfügbar" "new-version-available": "Neues Update verfügbar",
"download-update": "Version {{latestVersion}} herunterladen"
}, },
"sync_status": { "sync_status": {
"unknown": "<p>Der Synchronisations-Status wird bekannt, sobald der nächste Synchronisierungsversuch gestartet wird.</p><p>Klicke, um eine Synchronisierung jetzt auszulösen.</p>", "unknown": "<p>Der Synchronisations-Status wird bekannt, sobald der nächste Synchronisierungsversuch gestartet wird.</p><p>Klicke, um eine Synchronisierung jetzt auszulösen.</p>",
@ -1657,7 +1658,7 @@
"add-term-to-dictionary": "Begriff \"{{term}}\" zum Wörterbuch hinzufügen", "add-term-to-dictionary": "Begriff \"{{term}}\" zum Wörterbuch hinzufügen",
"cut": "Ausschneiden", "cut": "Ausschneiden",
"copy": "Kopieren", "copy": "Kopieren",
"copy-link": "Link opieren", "copy-link": "Link kopieren",
"paste": "Einfügen", "paste": "Einfügen",
"paste-as-plain-text": "Als unformatierten Text einfügen", "paste-as-plain-text": "Als unformatierten Text einfügen",
"search_online": "Suche nach \"{{term}}\" mit {{searchEngine}} starten" "search_online": "Suche nach \"{{term}}\" mit {{searchEngine}} starten"
@ -2082,6 +2083,7 @@
}, },
"presentation_view": { "presentation_view": {
"edit-slide": "Folie bearbeiten", "edit-slide": "Folie bearbeiten",
"start-presentation": "Präsentation starten" "start-presentation": "Präsentation starten",
"slide-overview": "Übersicht der Folien ein-/ausblenden"
} }
} }

View File

@ -13,6 +13,13 @@
"critical-error": { "critical-error": {
"title": "Kritische Error", "title": "Kritische Error",
"message": "Een kritieke fout heeft plaatsgevonden waardoor de cliënt zich aanmeldt vanaf het begin:\n\n84X\n\nDit is waarschijnlijk veroorzaakt door een script dat op een onverwachte manier faalt. Probeer de sollicitatie in veilige modus te starten en de kwestie aan te spreken." "message": "Een kritieke fout heeft plaatsgevonden waardoor de cliënt zich aanmeldt vanaf het begin:\n\n84X\n\nDit is waarschijnlijk veroorzaakt door een script dat op een onverwachte manier faalt. Probeer de sollicitatie in veilige modus te starten en de kwestie aan te spreken."
},
"widget-error": {
"title": "Starten widget mislukt",
"message-unknown": "Onbekende widget kan niet gestart worden omdat:\n\n{{message}}"
},
"bundle-error": {
"title": "Custom script laden mislukt"
} }
}, },
"add_link": { "add_link": {

View File

@ -320,7 +320,8 @@
"explodeArchivesTooltip": "Если этот флажок установлен, Trilium будет читать файлы <code>.zip</code>, <code>.enex</code> и <code>.opml</code> и создавать заметки из файлов внутри этих архивов. Если флажок не установлен, Trilium будет прикреплять сами архивы к заметке.", "explodeArchivesTooltip": "Если этот флажок установлен, Trilium будет читать файлы <code>.zip</code>, <code>.enex</code> и <code>.opml</code> и создавать заметки из файлов внутри этих архивов. Если флажок не установлен, Trilium будет прикреплять сами архивы к заметке.",
"explodeArchives": "Прочитать содержимое архивов <code>.zip</code>, <code>.enex</code> и <code>.opml</code>.", "explodeArchives": "Прочитать содержимое архивов <code>.zip</code>, <code>.enex</code> и <code>.opml</code>.",
"shrinkImagesTooltip": "<p>Если этот параметр включен, Trilium попытается уменьшить размер импортируемых изображений путём масштабирования и оптимизации, что может повлиять на воспринимаемое качество изображения. Если этот параметр не установлен, изображения будут импортированы без изменений.</p><p>Это не относится к импорту файлов <code>.zip</code> с метаданными, поскольку предполагается, что эти файлы уже оптимизированы.</p>", "shrinkImagesTooltip": "<p>Если этот параметр включен, Trilium попытается уменьшить размер импортируемых изображений путём масштабирования и оптимизации, что может повлиять на воспринимаемое качество изображения. Если этот параметр не установлен, изображения будут импортированы без изменений.</p><p>Это не относится к импорту файлов <code>.zip</code> с метаданными, поскольку предполагается, что эти файлы уже оптимизированы.</p>",
"codeImportedAsCode": "Импортировать распознанные файлы кода (например, <code>.json</code>) в виде заметок типа \"код\", если это неясно из метаданных" "codeImportedAsCode": "Импортировать распознанные файлы кода (например, <code>.json</code>) в виде заметок типа \"код\", если это неясно из метаданных",
"importZipRecommendation": "При импорте ZIP файла иерархия заметок будет отражена в структуре папок внутри архива."
}, },
"markdown_import": { "markdown_import": {
"dialog_title": "Импорт Markdown", "dialog_title": "Импорт Markdown",
@ -980,7 +981,8 @@
"open_sql_console_history": "Открыть историю консоли SQL", "open_sql_console_history": "Открыть историю консоли SQL",
"show_shared_notes_subtree": "Поддерево общедоступных заметок", "show_shared_notes_subtree": "Поддерево общедоступных заметок",
"switch_to_mobile_version": "Перейти на мобильную версию", "switch_to_mobile_version": "Перейти на мобильную версию",
"switch_to_desktop_version": "Переключиться на версию для ПК" "switch_to_desktop_version": "Переключиться на версию для ПК",
"new-version-available": "Доступно обновление"
}, },
"zpetne_odkazy": { "zpetne_odkazy": {
"backlink": "{{count}} ссылки", "backlink": "{{count}} ссылки",

View File

@ -174,6 +174,11 @@ export default class PopupEditorDialog extends Container<BasicWidget> {
return Promise.resolve(); return Promise.resolve();
} }
// Avoid not showing recent notes when creating a new empty tab.
if ("noteContext" in data && data.noteContext.ntxId !== "_popup-editor") {
return Promise.resolve();
}
return super.handleEventInChildren(name, data); return super.handleEventInChildren(name, data);
} }

View File

@ -147,6 +147,12 @@ const categories: Category[] = [
]; ];
const icons: Icon[] = [ const icons: Icon[] = [
{
name: "empty",
slug: "empty",
category_id: 113,
type_of_icon: "REGULAR"
},
{ {
name: "child", name: "child",
slug: "child-regular", slug: "child-regular",

View File

@ -57,3 +57,15 @@
.note-icon-widget .icon-list span:hover { .note-icon-widget .icon-list span:hover {
border: 1px solid var(--main-border-color); border: 1px solid var(--main-border-color);
} }
.note-icon-widget .icon-list span.bx-empty {
width: unset;
}
.note-icon-widget .icon-list span.bx-empty::before {
display: inline-block;
content: "";
border: 1px dashed var(--muted-text-color);
width: 1em;
height: 1em;
}

View File

@ -6,7 +6,7 @@ WHERE powershell.exe > NUL 2>&1
IF %ERRORLEVEL% NEQ 0 GOTO BATCH ELSE GOTO POWERSHELL IF %ERRORLEVEL% NEQ 0 GOTO BATCH ELSE GOTO POWERSHELL
:POWERSHELL :POWERSHELL
powershell -ExecutionPolicy Bypass -NonInteractive -NoLogo "Set-Item -Path Env:NODE_TLS_REJECT_UNAUTHORIZED -Value 0; ./trilium.exe" powershell -ExecutionPolicy Bypass -NonInteractive -NoLogo -Command "Set-Item -Path Env:NODE_TLS_REJECT_UNAUTHORIZED -Value 0; ./trilium.exe"
GOTO END GOTO END
:BATCH :BATCH

View File

@ -6,7 +6,7 @@ WHERE powershell.exe > NUL 2>&1
IF %ERRORLEVEL% NEQ 0 GOTO BATCH ELSE GOTO POWERSHELL IF %ERRORLEVEL% NEQ 0 GOTO BATCH ELSE GOTO POWERSHELL
:POWERSHELL :POWERSHELL
powershell -ExecutionPolicy Bypass -NonInteractive -NoLogo "Set-Item -Path Env:TRILIUM_DATA_DIR -Value './trilium-data'; ./trilium.exe" powershell -ExecutionPolicy Bypass -NonInteractive -NoLogo -Command "Set-Item -Path Env:TRILIUM_DATA_DIR -Value './trilium-data'; ./trilium.exe"
GOTO END GOTO END
:BATCH :BATCH

View File

@ -6,7 +6,7 @@ WHERE powershell.exe > NUL 2>&1
IF %ERRORLEVEL% NEQ 0 GOTO BATCH ELSE GOTO POWERSHELL IF %ERRORLEVEL% NEQ 0 GOTO BATCH ELSE GOTO POWERSHELL
:POWERSHELL :POWERSHELL
powershell -ExecutionPolicy Bypass -NonInteractive -NoLogo "Set-Item -Path Env:TRILIUM_SAFE_MODE -Value 1; ./trilium.exe --disable-gpu" powershell -ExecutionPolicy Bypass -NonInteractive -NoLogo -Command "Set-Item -Path Env:TRILIUM_SAFE_MODE -Value 1; ./trilium.exe --disable-gpu"
GOTO END GOTO END
:BATCH :BATCH

View File

@ -36,7 +36,7 @@
"@triliumnext/commons": "workspace:*", "@triliumnext/commons": "workspace:*",
"@triliumnext/express-partial-content": "workspace:*", "@triliumnext/express-partial-content": "workspace:*",
"@triliumnext/turndown-plugin-gfm": "workspace:*", "@triliumnext/turndown-plugin-gfm": "workspace:*",
"@types/archiver": "6.0.4", "@types/archiver": "7.0.0",
"@types/better-sqlite3": "7.6.13", "@types/better-sqlite3": "7.6.13",
"@types/cls-hooked": "4.3.9", "@types/cls-hooked": "4.3.9",
"@types/compression": "1.8.1", "@types/compression": "1.8.1",
@ -56,17 +56,17 @@
"@types/sanitize-html": "2.16.0", "@types/sanitize-html": "2.16.0",
"@types/sax": "1.2.7", "@types/sax": "1.2.7",
"@types/serve-favicon": "2.5.7", "@types/serve-favicon": "2.5.7",
"@types/serve-static": "1.15.10", "@types/serve-static": "2.2.0",
"@types/stream-throttle": "0.1.4", "@types/stream-throttle": "0.1.4",
"@types/supertest": "6.0.3", "@types/supertest": "6.0.3",
"@types/swagger-ui-express": "4.1.8", "@types/swagger-ui-express": "4.1.8",
"@types/tmp": "0.2.6", "@types/tmp": "0.2.6",
"@types/turndown": "5.0.5", "@types/turndown": "5.0.6",
"@types/ws": "8.18.1", "@types/ws": "8.18.1",
"@types/xml2js": "0.4.14", "@types/xml2js": "0.4.14",
"archiver": "7.0.1", "archiver": "7.0.1",
"async-mutex": "0.5.0", "async-mutex": "0.5.0",
"axios": "1.12.2", "axios": "1.13.0",
"bindings": "1.5.0", "bindings": "1.5.0",
"bootstrap": "5.3.8", "bootstrap": "5.3.8",
"chardet": "2.1.0", "chardet": "2.1.0",

View File

@ -1,5 +1,5 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html>
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/assets/favicon.ico" /> <link rel="icon" type="image/svg+xml" href="/src/assets/favicon.ico" />

View File

@ -5,6 +5,7 @@
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
"build": "vite build", "build": "vite build",
"test": "vitest",
"preview": "pnpm build && vite preview" "preview": "pnpm build && vite preview"
}, },
"dependencies": { "dependencies": {
@ -13,7 +14,7 @@
"preact": "10.27.2", "preact": "10.27.2",
"preact-iso": "2.11.0", "preact-iso": "2.11.0",
"preact-render-to-string": "6.6.3", "preact-render-to-string": "6.6.3",
"react-i18next": "16.2.0" "react-i18next": "16.2.1"
}, },
"devDependencies": { "devDependencies": {
"@preact/preset-vite": "2.10.2", "@preact/preset-vite": "2.10.2",

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

View File

@ -1,8 +0,0 @@
{
"get-started": {
"title": "Loslegen",
"desktop_title": "Die Desktop-App herunterladen (v{{version}})",
"architecture": "Architektur:",
"older_releases": "Ältere Releases anzeigen"
}
}

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><!--Boxicons v3.0 https://boxicons.com | License https://docs.boxicons.com/free--><path d="M20 3H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h7v3H8v2h8v-2h-3v-3h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2M4 15V5h16v10z"/><path d="m10 13 5-3-5-3z"/></svg>

After

Width:  |  Height:  |  Size: 298 B

View File

@ -1,7 +1,7 @@
import { ComponentChildren, HTMLAttributes } from "preact"; import { ComponentChildren, HTMLAttributes } from "preact";
import { Link } from "./Button.js"; import { Link } from "./Button.js";
import Icon from "./Icon.js"; import Icon from "./Icon.js";
import { t } from "../i18n.js"; import { useTranslation } from "react-i18next";
interface CardProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> { interface CardProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
title: ComponentChildren; title: ComponentChildren;
@ -13,6 +13,8 @@ interface CardProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
} }
export default function Card({ title, children, imageUrl, iconSvg, className, moreInfoUrl, ...restProps }: CardProps) { export default function Card({ title, children, imageUrl, iconSvg, className, moreInfoUrl, ...restProps }: CardProps) {
const { t } = useTranslation();
return ( return (
<div className={`card ${className}`} {...restProps}> <div className={`card ${className}`} {...restProps}>
{imageUrl && <img class="image" src={imageUrl} loading="lazy" />} {imageUrl && <img class="image" src={imageUrl} loading="lazy" />}

View File

@ -3,18 +3,21 @@ import "./DownloadButton.css";
import Button from "./Button.js"; import Button from "./Button.js";
import downloadIcon from "../assets/boxicons/bx-arrow-in-down-square-half.svg?raw"; import downloadIcon from "../assets/boxicons/bx-arrow-in-down-square-half.svg?raw";
import packageJson from "../../../../package.json" with { type: "json" }; import packageJson from "../../../../package.json" with { type: "json" };
import { useEffect, useState } from "preact/hooks"; import { useContext, useEffect, useState } from "preact/hooks";
import { t } from "../i18n.js"; import { useTranslation } from "react-i18next";
import { LocaleContext } from "../index.js";
interface DownloadButtonProps { interface DownloadButtonProps {
big?: boolean; big?: boolean;
} }
export default function DownloadButton({ big }: DownloadButtonProps) { export default function DownloadButton({ big }: DownloadButtonProps) {
const locale = useContext(LocaleContext);
const { t } = useTranslation();
const [ recommendedDownload, setRecommendedDownload ] = useState<RecommendedDownload | null>(); const [ recommendedDownload, setRecommendedDownload ] = useState<RecommendedDownload | null>();
useEffect(() => { useEffect(() => {
getRecommendedDownload()?.then(setRecommendedDownload); getRecommendedDownload(t)?.then(setRecommendedDownload);
}, []); }, [ t ]);
return (recommendedDownload && return (recommendedDownload &&
<> <>
@ -35,7 +38,7 @@ export default function DownloadButton({ big }: DownloadButtonProps) {
) : ( ) : (
<Button <Button
className={`download-button desktop-only ${big ? "big" : ""}`} className={`download-button desktop-only ${big ? "big" : ""}`}
href="/get-started/" href={`/${locale}/get-started/`}
iconSvg={downloadIcon} iconSvg={downloadIcon}
text={<> text={<>
{t("download_now.text")} {t("download_now.text")}

View File

@ -5,17 +5,26 @@ footer {
color: var(--muted-color); color: var(--muted-color);
font-size: 0.8em; font-size: 0.8em;
.content-wrapper { .row {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
flex-direction: column-reverse; flex-direction: column-reverse;
gap: 2em; gap: 2em;
margin-bottom: 1em;
@media (min-width: 720px) { @media (min-width: 720px) {
flex-direction: row; flex-direction: row;
} }
} }
nav.languages {
flex-grow: 1;
justify-content: center;
flex-wrap: wrap;
display: flex;
gap: 0.5em 1em;
}
} }
.social-buttons { .social-buttons {

View File

@ -5,24 +5,46 @@ import githubDiscussionsIcon from "../assets/boxicons/bx-discussion.svg?raw";
import matrixIcon from "../assets/boxicons/bx-message-dots.svg?raw"; import matrixIcon from "../assets/boxicons/bx-message-dots.svg?raw";
import redditIcon from "../assets/boxicons/bx-reddit.svg?raw"; import redditIcon from "../assets/boxicons/bx-reddit.svg?raw";
import { Link } from "./Button.js"; import { Link } from "./Button.js";
import { t } from "../i18n"; import { LOCALES, swapLocaleInUrl } from "../i18n";
import { useTranslation } from "react-i18next";
import { useLocation } from "preact-iso";
import { useContext } from "preact/hooks";
import { LocaleContext } from "..";
export default function Footer() { export default function Footer() {
const { t } = useTranslation();
const { url } = useLocation();
const currentLocale = useContext(LocaleContext);
return ( return (
<footer> <footer>
<div class="content-wrapper"> <div class="content-wrapper">
<div class="footer-text"> <div class="row">
© 2024-2025 <Link href="https://github.com/eliandoran" openExternally>Elian Doran</Link>{t("footer.copyright_and_the")}<Link href="https://github.com/TriliumNext/Trilium/graphs/contributors" openExternally>{t("footer.copyright_community")}</Link>.<br /> <div class="footer-text">
© 2017-2024 <Link href="https://github.com/zadam" openExternally>zadam</Link>. © 2024-2025 <Link href="https://github.com/eliandoran" openExternally>Elian Doran</Link>{t("footer.copyright_and_the")}<Link href="https://github.com/TriliumNext/Trilium/graphs/contributors" openExternally>{t("footer.copyright_community")}</Link>.<br />
© 2017-2024 <Link href="https://github.com/zadam" openExternally>zadam</Link>.
</div>
<SocialButtons />
</div> </div>
<SocialButtons /> <div class="row">
<nav class="languages">
{LOCALES.map(locale => (
locale.id !== currentLocale
? <Link href={swapLocaleInUrl(url, locale.id)}>{locale.name}</Link>
: <span className="active">{locale.name}</span>
))}
</nav>
</div>
</div> </div>
</footer> </footer>
) )
} }
export function SocialButtons({ className, withText }: { className?: string, withText?: boolean }) { export function SocialButtons({ className, withText }: { className?: string, withText?: boolean }) {
const { t } = useTranslation();
return ( return (
<div className={`social-buttons ${className}`}> <div className={`social-buttons ${className}`}>
<SocialButton <SocialButton

View File

@ -1,13 +1,16 @@
import "./Header.css"; import "./Header.css";
import { Link } from "./Button.js"; import { Link } from "./Button.js";
import { SocialButtons, SocialButton } from "./Footer.js"; import { SocialButtons, SocialButton } from "./Footer.js";
import { useEffect, useMemo, useState } from "preact/hooks"; import { useContext, useEffect, useMemo, useState } from "preact/hooks";
import { useLocation } from 'preact-iso'; import { useLocation } from 'preact-iso';
import DownloadButton from './DownloadButton.js'; import DownloadButton from './DownloadButton.js';
import githubIcon from "../assets/boxicons/bx-github.svg?raw"; import githubIcon from "../assets/boxicons/bx-github.svg?raw";
import Icon from "./Icon.js"; import Icon from "./Icon.js";
import logoPath from "../assets/icon-color.svg"; import logoPath from "../assets/icon-color.svg";
import menuIcon from "../assets/boxicons/bx-menu.svg?raw"; import menuIcon from "../assets/boxicons/bx-menu.svg?raw";
import { LocaleContext } from "..";
import { useTranslation } from "react-i18next";
import { swapLocaleInUrl } from "../i18n";
interface HeaderLink { interface HeaderLink {
url: string; url: string;
@ -15,21 +18,26 @@ interface HeaderLink {
external?: boolean; external?: boolean;
} }
const HEADER_LINKS: HeaderLink[] = [
{ url: "/get-started/", text: "Get started" },
{ url: "https://docs.triliumnotes.org/", text: "Documentation", external: true },
{ url: "/support-us/", text: "Support us" }
]
export function Header(props: {repoStargazersCount: number}) { export function Header(props: {repoStargazersCount: number}) {
const { url } = useLocation(); const { url } = useLocation();
const { t } = useTranslation();
const locale = useContext(LocaleContext);
const [ mobileMenuShown, setMobileMenuShown ] = useState(false); const [ mobileMenuShown, setMobileMenuShown ] = useState(false);
const [ headerLinks, setHeaderLinks ] = useState<HeaderLink[]>([]);
useEffect(() => {
setHeaderLinks([
{ url: "/get-started", text: t("header.get-started") },
{ url: "https://docs.triliumnotes.org/", text: t("header.documentation"), external: true },
{ url: "/support-us", text: t("header.support-us") }
]);
}, [ locale, t ]);
return ( return (
<header> <header>
<div class="content-wrapper"> <div class="content-wrapper">
<div class="first-row"> <div class="first-row">
<a class="banner" href="/"> <a class="banner" href={`/${locale}/`}>
<img src={logoPath} width="300" height="300" alt="Trilium Notes logo" />&nbsp;<span>Trilium Notes</span> <img src={logoPath} width="300" height="300" alt="Trilium Notes logo" />&nbsp;<span>Trilium Notes</span>
</a> </a>
@ -46,16 +54,17 @@ export function Header(props: {repoStargazersCount: number}) {
</div> </div>
<nav className={`${mobileMenuShown ? "mobile-shown" : ""}`}> <nav className={`${mobileMenuShown ? "mobile-shown" : ""}`}>
{HEADER_LINKS.map(link => ( {headerLinks.map(link => {
<Link const linkHref = link.external ? link.url : swapLocaleInUrl(link.url, locale);
href={link.url} return (<Link
className={url === link.url ? "active" : ""} href={linkHref}
className={url === linkHref ? "active" : ""}
openExternally={link.external} openExternally={link.external}
onClick={() => { onClick={() => {
setMobileMenuShown(false); setMobileMenuShown(false);
}} }}
>{link.text}</Link> >{link.text}</Link>)
))} })}
<SocialButtons className="mobile-only" withText /> <SocialButtons className="mobile-only" withText />
</nav> </nav>

View File

@ -1,5 +1,5 @@
import { TFunction } from 'i18next';
import rootPackageJson from '../../../package.json' with { type: "json" }; import rootPackageJson from '../../../package.json' with { type: "json" };
import { t } from './i18n';
export type App = "desktop" | "server"; export type App = "desktop" | "server";
@ -34,151 +34,155 @@ export interface RecommendedDownload {
type DownloadMatrix = Record<App, { [ P in Platform ]?: DownloadMatrixEntry }>; type DownloadMatrix = Record<App, { [ P in Platform ]?: DownloadMatrixEntry }>;
// Keep compatibility info inline with https://github.com/electron/electron/blob/main/README.md#platform-support. // Keep compatibility info inline with https://github.com/electron/electron/blob/main/README.md#platform-support.
export const downloadMatrix: DownloadMatrix = { export function getDownloadMatrix(t: TFunction<"translation", undefined>): DownloadMatrix {
desktop: { return {
windows: { desktop: {
title: { windows: {
x64: t("download_helper_desktop_windows.title_x64"), title: {
arm64: t("download_helper_desktop_windows.title_arm64") x64: t("download_helper_desktop_windows.title_x64"),
}, arm64: t("download_helper_desktop_windows.title_arm64")
description: {
x64: t("download_helper_desktop_windows.description_x64"),
arm64: t("download_helper_desktop_windows.description_arm64"),
},
quickStartTitle: t("download_helper_desktop_windows.quick_start"),
quickStartCode: "winget install TriliumNext.Notes",
downloads: {
exe: {
recommended: true,
name: t("download_helper_desktop_windows.download_exe")
}, },
zip: { description: {
name: t("download_helper_desktop_windows.download_zip") x64: t("download_helper_desktop_windows.description_x64"),
arm64: t("download_helper_desktop_windows.description_arm64"),
}, },
scoop: { quickStartTitle: t("download_helper_desktop_windows.quick_start"),
name: t("download_helper_desktop_windows.download_scoop"), quickStartCode: "winget install TriliumNext.Notes",
url: "https://scoop.sh/#/apps?q=trilium&id=7c08bc3c105b9ee5c00dd4245efdea0f091b8a5c" downloads: {
exe: {
recommended: true,
name: t("download_helper_desktop_windows.download_exe")
},
zip: {
name: t("download_helper_desktop_windows.download_zip")
},
scoop: {
name: t("download_helper_desktop_windows.download_scoop"),
url: "https://scoop.sh/#/apps?q=trilium&id=7c08bc3c105b9ee5c00dd4245efdea0f091b8a5c"
}
}
},
linux: {
title: {
x64: t("download_helper_desktop_linux.title_x64"),
arm64: t("download_helper_desktop_linux.title_arm64")
},
description: {
x64: t("download_helper_desktop_linux.description_x64"),
arm64: t("download_helper_desktop_linux.description_arm64"),
},
quickStartTitle: t("download_helper_desktop_linux.quick_start"),
downloads: {
deb: {
recommended: true,
name: t("download_helper_desktop_linux.download_deb")
},
rpm: {
recommended: true,
name: t("download_helper_desktop_linux.download_rpm")
},
flatpak: {
name: t("download_helper_desktop_linux.download_flatpak")
},
zip: {
name: t("download_helper_desktop_linux.download_zip")
},
nixpkgs: {
name: t("download_helper_desktop_linux.download_nixpkgs"),
url: "https://search.nixos.org/packages?query=trilium-next"
},
aur: {
name: t("download_helper_desktop_linux.download_aur"),
url: "https://aur.archlinux.org/packages/triliumnext-bin"
}
}
},
macos: {
title: {
x64: t("download_helper_desktop_macos.title_x64"),
arm64: t("download_helper_desktop_macos.title_arm64")
},
description: {
x64: t("download_helper_desktop_macos.description_x64"),
arm64: t("download_helper_desktop_macos.description_arm64"),
},
quickStartTitle: t("download_helper_desktop_macos.quick_start"),
quickStartCode: "brew install --cask trilium-notes",
downloads: {
dmg: {
recommended: true,
name: t("download_helper_desktop_macos.download_dmg")
},
homebrew: {
name: t("download_helper_desktop_macos.download_homebrew_cask"),
url: "https://formulae.brew.sh/cask/trilium-notes#default"
},
zip: {
name: t("download_helper_desktop_macos.download_zip")
}
} }
} }
}, },
linux: { server: {
title: { docker: {
x64: t("download_helper_desktop_linux.title_x64"), title: t("download_helper_server_docker.title"),
arm64: t("download_helper_desktop_linux.title_arm64") description: t("download_helper_server_docker.description"),
}, helpUrl: "https://docs.triliumnotes.org/User%20Guide/User%20Guide/Installation%20%26%20Setup/Server%20Installation/1.%20Installing%20the%20server/Using%20Docker.html",
description: { quickStartCode: "docker pull triliumnext/trilium\ndocker run -p 8080:8080 -d -v ./data:/home/node/trilium-data triliumnext/trilium",
x64: t("download_helper_desktop_linux.description_x64"), downloads: {
arm64: t("download_helper_desktop_linux.description_arm64"), dockerhub: {
}, name: t("download_helper_server_docker.download_dockerhub"),
quickStartTitle: t("download_helper_desktop_linux.quick_start"), url: "https://hub.docker.com/r/triliumnext/trilium"
downloads: { },
deb: { ghcr: {
recommended: true, name: t("download_helper_server_docker.download_ghcr"),
name: t("download_helper_desktop_linux.download_deb") url: "https://github.com/TriliumNext/Trilium/pkgs/container/trilium"
}, }
rpm: {
recommended: true,
name: t("download_helper_desktop_linux.download_rpm")
},
flatpak: {
name: t("download_helper_desktop_linux.download_flatpak")
},
zip: {
name: t("download_helper_desktop_linux.download_zip")
},
nixpkgs: {
name: t("download_helper_desktop_linux.download_nixpkgs"),
url: "https://search.nixos.org/packages?query=trilium-next"
},
aur: {
name: t("download_helper_desktop_linux.download_aur"),
url: "https://aur.archlinux.org/packages/triliumnext-bin"
} }
}
},
macos: {
title: {
x64: t("download_helper_desktop_macos.title_x64"),
arm64: t("download_helper_desktop_macos.title_arm64")
}, },
description: { linux: {
x64: t("download_helper_desktop_macos.description_x64"), title: t("download_helper_server_linux.title"),
arm64: t("download_helper_desktop_macos.description_arm64"), description: t("download_helper_server_linux.description"),
helpUrl: "https://docs.triliumnotes.org/User%20Guide/User%20Guide/Installation%20%26%20Setup/Server%20Installation/1.%20Installing%20the%20server/Packaged%20version%20for%20Linux.html",
downloads: {
tarX64: {
recommended: true,
name: t("download_helper_server_linux.download_tar_x64"),
url: `https://github.com/TriliumNext/Trilium/releases/download/v${version}/TriliumNotes-Server-v${version}-linux-x64.tar.xz`,
},
tarArm64: {
recommended: true,
name: t("download_helper_server_linux.download_tar_arm64"),
url: `https://github.com/TriliumNext/Trilium/releases/download/v${version}/TriliumNotes-Server-v${version}-linux-arm64.tar.xz`
},
nixos: {
name: t("download_helper_server_linux.download_nixos"),
url: "https://docs.triliumnotes.org/User%20Guide/User%20Guide/Installation%20&%20Setup/Server%20Installation/1.%20Installing%20the%20server/On%20NixOS"
}
}
}, },
quickStartTitle: t("download_helper_desktop_macos.quick_start"), pikapod: {
quickStartCode: "brew install --cask trilium-notes", title: t("download_helper_server_hosted.title"),
downloads: { description: t("download_helper_server_hosted.description"),
dmg: { downloads: {
recommended: true, pikapod: {
name: t("download_helper_desktop_macos.download_dmg") recommended: true,
}, name: t("download_helper_server_hosted.download_pikapod"),
homebrew: { url: "https://www.pikapods.com/pods?run=trilium-next"
name: t("download_helper_desktop_macos.download_homebrew_cask"), },
url: "https://formulae.brew.sh/cask/trilium-notes#default" triliumcc: {
}, name: t("download_helper_server_hosted.download_triliumcc"),
zip: { url: "https://trilium.cc/"
name: t("download_helper_desktop_macos.download_zip") }
}
}
}
},
server: {
docker: {
title: t("download_helper_server_docker.title"),
description: t("download_helper_server_docker.description"),
helpUrl: "https://docs.triliumnotes.org/User%20Guide/User%20Guide/Installation%20%26%20Setup/Server%20Installation/1.%20Installing%20the%20server/Using%20Docker.html",
quickStartCode: "docker pull triliumnext/trilium\ndocker run -p 8080:8080 -d -v ./data:/home/node/trilium-data triliumnext/trilium",
downloads: {
dockerhub: {
name: t("download_helper_server_docker.download_dockerhub"),
url: "https://hub.docker.com/r/triliumnext/trilium"
},
ghcr: {
name: t("download_helper_server_docker.download_ghcr"),
url: "https://github.com/TriliumNext/Trilium/pkgs/container/trilium"
}
}
},
linux: {
title: t("download_helper_server_linux.title"),
description: t("download_helper_server_linux.description"),
helpUrl: "https://docs.triliumnotes.org/User%20Guide/User%20Guide/Installation%20%26%20Setup/Server%20Installation/1.%20Installing%20the%20server/Packaged%20version%20for%20Linux.html",
downloads: {
tarX64: {
recommended: true,
name: t("download_helper_server_linux.download_tar_x64"),
url: `https://github.com/TriliumNext/Trilium/releases/download/v${version}/TriliumNotes-Server-v${version}-linux-x64.tar.xz`,
},
tarArm64: {
recommended: true,
name: t("download_helper_server_linux.download_tar_arm64"),
url: `https://github.com/TriliumNext/Trilium/releases/download/v${version}/TriliumNotes-Server-v${version}-linux-arm64.tar.xz`
},
nixos: {
name: t("download_helper_server_linux.download_nixos"),
url: "https://docs.triliumnotes.org/User%20Guide/User%20Guide/Installation%20&%20Setup/Server%20Installation/1.%20Installing%20the%20server/On%20NixOS"
}
}
},
pikapod: {
title: t("download_helper_server_hosted.title"),
description: t("download_helper_server_hosted.description"),
downloads: {
pikapod: {
recommended: true,
name: t("download_helper_server_hosted.download_pikapod"),
url: "https://www.pikapods.com/pods?run=trilium-next"
},
triliumcc: {
name: t("download_helper_server_hosted.download_triliumcc"),
url: "https://trilium.cc/"
} }
} }
} }
} }
}; };
export function buildDownloadUrl(app: App, platform: Platform, format: string, architecture: Architecture): string { export function buildDownloadUrl(t: TFunction<"translation", undefined>, app: App, platform: Platform, format: string, architecture: Architecture): string {
const downloadMatrix = getDownloadMatrix(t);
if (app === "desktop") { if (app === "desktop") {
return downloadMatrix.desktop[platform]?.downloads[format].url ?? return downloadMatrix.desktop[platform]?.downloads[format].url ??
`https://github.com/TriliumNext/Trilium/releases/download/v${version}/TriliumNotes-v${version}-${platform}-${architecture}.${format}`; `https://github.com/TriliumNext/Trilium/releases/download/v${version}/TriliumNotes-v${version}-${platform}-${architecture}.${format}`;
@ -218,8 +222,9 @@ export function getPlatform(): Platform | null {
} }
} }
export async function getRecommendedDownload(): Promise<RecommendedDownload | null> { export async function getRecommendedDownload(t: TFunction<"translation", undefined>): Promise<RecommendedDownload | null> {
if (typeof window === "undefined") return null; if (typeof window === "undefined") return null;
const downloadMatrix = getDownloadMatrix(t);
const architecture = await getArchitecture(); const architecture = await getArchitecture();
const platform = getPlatform(); const platform = getPlatform();
@ -233,7 +238,7 @@ export async function getRecommendedDownload(): Promise<RecommendedDownload | nu
if (!recommendedDownload) return null; if (!recommendedDownload) return null;
const format = recommendedDownload[0]; const format = recommendedDownload[0];
const url = buildDownloadUrl("desktop", platform, format || 'zip', architecture); const url = buildDownloadUrl(t, "desktop", platform, format || 'zip', architecture);
const platformTitle = platformInfo.title; const platformTitle = platformInfo.title;
const name = typeof platformTitle === "string" ? platformTitle : platformTitle[architecture] as string; const name = typeof platformTitle === "string" ? platformTitle : platformTitle[architecture] as string;

View File

@ -0,0 +1,32 @@
import { describe, expect, it } from "vitest";
import { extractLocaleFromUrl, mapLocale, swapLocaleInUrl } from "./i18n";
describe("mapLocale", () => {
it("maps Chinese", () => {
expect(mapLocale("zh-TW")).toStrictEqual("zh-Hant");
expect(mapLocale("zh-CN")).toStrictEqual("zh-Hans");
});
it("maps languages without countries", () => {
expect(mapLocale("ro-RO")).toStrictEqual("ro");
expect(mapLocale("ro")).toStrictEqual("ro");
});
});
describe("swapLocale", () => {
it("swap locale in URL", () => {
expect(swapLocaleInUrl("/get-started", "ro")).toStrictEqual("/ro/get-started");
expect(swapLocaleInUrl("/ro/get-started", "ro")).toStrictEqual("/ro/get-started");
expect(swapLocaleInUrl("/en/get-started", "ro")).toStrictEqual("/ro/get-started");
expect(swapLocaleInUrl("/ro/", "en")).toStrictEqual("/en/");
expect(swapLocaleInUrl("/ro", "en")).toStrictEqual("/en");
});
});
describe("extractLocaleFromUrl", () => {
it("properly extracts locale", () => {
expect(extractLocaleFromUrl("/en/get-started")).toStrictEqual("en");
expect(extractLocaleFromUrl("/get-started")).toStrictEqual(undefined);
expect(extractLocaleFromUrl("/")).toStrictEqual(undefined);
});
});

View File

@ -1,19 +1,83 @@
import { default as i18next } from "i18next"; import i18next from "i18next";
import HttpApi from 'i18next-http-backend';
import { initReactI18next } from "react-i18next"; import { initReactI18next } from "react-i18next";
i18next interface Locale {
.use(HttpApi) id: string;
.use(initReactI18next); name: string;
rtl?: boolean;
}
await i18next.init({ i18next.use(initReactI18next);
debug: true, const localeFiles = import.meta.glob("./translations/*/translation.json", { eager: true });
lng: "en", const resources: Record<string, Record<string, Record<string, string>>> = {};
fallbackLng: "en", for (const [path, module] of Object.entries(localeFiles)) {
backend: { const id = path.split("/").at(-2);
loadPath: "/translations/{{lng}}/{{ns}}.json", if (!id) continue;
},
returnEmptyString: false
});
export const t = i18next.t; const translations = (module as any).default ?? module;
resources[id] = { translation: translations };
}
export function initTranslations(lng: string) {
i18next.init({
fallbackLng: "en",
lng,
returnEmptyString: false,
resources,
initAsync: false,
react: {
useSuspense: false
}
});
}
export const LOCALES: Locale[] = [
{ id: "en", name: "English" },
{ id: "ro", name: "Română" },
{ id: "zh-Hans", name: "简体中文" },
{ id: "zh-Hant", name: "繁體中文" },
{ id: "fr", name: "Français" },
{ id: "it", name: "Italiano" },
{ id: "ja", name: "日本語" },
{ id: "pl", name: "Polski" },
{ id: "es", name: "Español" },
{ id: "ar", name: "اَلْعَرَبِيَّةُ", rtl: true },
].toSorted((a, b) => a.name.localeCompare(b.name));
export function mapLocale(locale: string) {
if (!locale) return 'en';
const lower = locale.toLowerCase();
if (lower.startsWith('zh')) {
if (lower.includes('tw') || lower.includes('hk') || lower.includes('mo') || lower.includes('hant')) {
return 'zh-Hant';
}
return 'zh-Hans';
}
// Default for everything else
return locale.split('-')[0]; // e.g. "en-US" -> "en"
}
export function swapLocaleInUrl(url: string, newLocale: string) {
const components = url.split("/");
if (components.length === 2) {
const potentialLocale = components[1];
const correspondingLocale = LOCALES.find(l => l.id === potentialLocale);
if (correspondingLocale) {
return `/${newLocale}`;
} else {
return `/${newLocale}${url}`;
}
} else {
components[1] = newLocale;
return components.join("/");
}
}
export function extractLocaleFromUrl(url: string) {
const localeId = url.split('/')[1];
const correspondingLocale = LOCALES.find(l => l.id === localeId);
if (!correspondingLocale) return undefined;
return localeId;
}

View File

@ -2,39 +2,92 @@ import './style.css';
import { FALLBACK_STARGAZERS_COUNT, getRepoStargazersCount } from './github-utils.js'; import { FALLBACK_STARGAZERS_COUNT, getRepoStargazersCount } from './github-utils.js';
import { Header } from './components/Header.jsx'; import { Header } from './components/Header.jsx';
import { Home } from './pages/Home/index.jsx'; import { Home } from './pages/Home/index.jsx';
import { LocationProvider, Router, Route, hydrate, prerender as ssr } from 'preact-iso'; import { LocationProvider, Router, Route, hydrate, prerender as ssr, useLocation } from 'preact-iso';
import { NotFound } from './pages/_404.jsx'; import { NotFound } from './pages/_404.jsx';
import Footer from './components/Footer.js'; import Footer from './components/Footer.js';
import GetStarted from './pages/GetStarted/get-started.js'; import GetStarted from './pages/GetStarted/get-started.js';
import SupportUs from './pages/SupportUs/SupportUs.js'; import SupportUs from './pages/SupportUs/SupportUs.js';
import { createContext } from 'preact';
import { useLayoutEffect, useRef } from 'preact/hooks';
import { changeLanguage } from 'i18next';
import { extractLocaleFromUrl, initTranslations, LOCALES, mapLocale } from './i18n';
export const LocaleContext = createContext('en');
export function App(props: {repoStargazersCount: number}) { export function App(props: {repoStargazersCount: number}) {
return ( return (
<LocationProvider> <LocationProvider>
<Header repoStargazersCount={props.repoStargazersCount} /> <LocaleProvider>
<main> <Header repoStargazersCount={props.repoStargazersCount} />
<Router> <main>
<Route path="/" component={Home} /> <Router>
<Route default component={NotFound} /> <Route path="/" component={Home} />
<Route path="/get-started" component={GetStarted} /> <Route path="/get-started" component={GetStarted} />
<Route path="/support-us" component={SupportUs} /> <Route path="/support-us" component={SupportUs} />
</Router>
</main> <Route path="/:locale:/" component={Home} />
<Footer /> <Route path="/:locale:/get-started" component={GetStarted} />
<Route path="/:locale:/support-us" component={SupportUs} />
<Route default component={NotFound} />
</Router>
</main>
<Footer />
</LocaleProvider>
</LocationProvider> </LocationProvider>
); );
} }
export function LocaleProvider({ children }) {
const { path } = useLocation();
const localeId = getLocaleId(path);
const loadedRef = useRef(false);
if (!loadedRef.current) {
initTranslations(localeId);
loadedRef.current = true;
} else {
changeLanguage(localeId);
}
// Update html lang and dir attributes
useLayoutEffect(() => {
const correspondingLocale = LOCALES.find(l => l.id === localeId);
document.documentElement.lang = localeId;
document.documentElement.dir = correspondingLocale?.rtl ? "rtl" : "ltr";
}, [localeId]);
return (
<LocaleContext.Provider value={localeId}>
{children}
</LocaleContext.Provider>
);
}
if (typeof window !== 'undefined') { if (typeof window !== 'undefined') {
hydrate(<App repoStargazersCount={FALLBACK_STARGAZERS_COUNT} />, document.getElementById('app')!); hydrate(<App repoStargazersCount={FALLBACK_STARGAZERS_COUNT} />, document.getElementById('app')!);
} }
function getLocaleId(path: string) {
const extractedLocale = extractLocaleFromUrl(path);
if (extractedLocale) return mapLocale(extractedLocale);
if (typeof window === "undefined") return 'en';
return mapLocale(navigator.language);
}
export async function prerender(data) { export async function prerender(data) {
// Fetch the stargazer count of the Trilium's GitHub repo on prerender to pass // Fetch the stargazer count of the Trilium's GitHub repo on prerender to pass
// it to the App component for SSR. // it to the App component for SSR.
// This ensures the GitHub API is not called on every page load in the client. // This ensures the GitHub API is not called on every page load in the client.
const stargazersCount = await getRepoStargazersCount(); const stargazersCount = await getRepoStargazersCount();
return await ssr(<App repoStargazersCount={stargazersCount} {...data} />); const { html, links } = await ssr(<App repoStargazersCount={stargazersCount} {...data} />);
return {
html,
links,
head: {
lang: extractLocaleFromUrl(data.url) ?? "en"
}
}
} }

View File

@ -1,18 +1,20 @@
import { useLayoutEffect, useState } from "preact/hooks"; import { useLayoutEffect, useState } from "preact/hooks";
import Card from "../../components/Card.js"; import Card from "../../components/Card.js";
import Section from "../../components/Section.js"; import Section from "../../components/Section.js";
import { App, Architecture, buildDownloadUrl, downloadMatrix, DownloadMatrixEntry, getArchitecture, getPlatform, Platform } from "../../download-helper.js"; import { App, Architecture, buildDownloadUrl, DownloadMatrixEntry, getArchitecture, getDownloadMatrix, getPlatform, Platform } from "../../download-helper.js";
import { usePageTitle } from "../../hooks.js"; import { usePageTitle } from "../../hooks.js";
import Button, { Link } from "../../components/Button.js"; import Button, { Link } from "../../components/Button.js";
import Icon from "../../components/Icon.js"; import Icon from "../../components/Icon.js";
import helpIcon from "../../assets/boxicons/bx-help-circle.svg?raw"; import helpIcon from "../../assets/boxicons/bx-help-circle.svg?raw";
import "./get-started.css"; import "./get-started.css";
import packageJson from "../../../../../package.json" with { type: "json" }; import packageJson from "../../../../../package.json" with { type: "json" };
import { t } from "../../i18n.js"; import { useTranslation } from "react-i18next";
export default function DownloadPage() { export default function DownloadPage() {
const { t } = useTranslation();
const [ currentArch, setCurrentArch ] = useState<Architecture>("x64"); const [ currentArch, setCurrentArch ] = useState<Architecture>("x64");
const [ userPlatform, setUserPlatform ] = useState<Platform>(); const [ userPlatform, setUserPlatform ] = useState<Platform>();
const downloadMatrix = getDownloadMatrix(t);
useLayoutEffect(() => { useLayoutEffect(() => {
getArchitecture().then((arch) => setCurrentArch(arch ?? "x64")); getArchitecture().then((arch) => setCurrentArch(arch ?? "x64"));
@ -71,6 +73,7 @@ export function DownloadCard({ app, arch, entry: [ platform, entry ], isRecommen
return (typeof text === "string" ? text : text[arch]); return (typeof text === "string" ? text : text[arch]);
} }
const { t } = useTranslation();
const allDownloads = Object.entries(entry.downloads); const allDownloads = Object.entries(entry.downloads);
const recommendedDownloads = allDownloads.filter(download => download[1].recommended); const recommendedDownloads = allDownloads.filter(download => download[1].recommended);
const restDownloads = allDownloads.filter(download => !download[1].recommended); const restDownloads = allDownloads.filter(download => !download[1].recommended);
@ -107,7 +110,7 @@ export function DownloadCard({ app, arch, entry: [ platform, entry ], isRecommen
{recommendedDownloads.map(recommendedDownload => ( {recommendedDownloads.map(recommendedDownload => (
<Button <Button
className="recommended" className="recommended"
href={buildDownloadUrl(app, platform as Platform, recommendedDownload[0], arch)} href={buildDownloadUrl(t, app, platform as Platform, recommendedDownload[0], arch)}
text={recommendedDownload[1].name} text={recommendedDownload[1].name}
openExternally={!!recommendedDownload[1].url} openExternally={!!recommendedDownload[1].url}
/> />
@ -117,7 +120,7 @@ export function DownloadCard({ app, arch, entry: [ platform, entry ], isRecommen
<div class="other-options"> <div class="other-options">
{restDownloads.map(download => ( {restDownloads.map(download => (
<Link <Link
href={buildDownloadUrl(app, platform as Platform, download[0], arch)} href={buildDownloadUrl(t, app, platform as Platform, download[0], arch)}
openExternally={!!download[1].url} openExternally={!!download[1].url}
> >
{download[1].name} {download[1].name}

View File

@ -57,6 +57,8 @@ section.hero-section {
color: transparent; color: transparent;
line-height: 1.1; line-height: 1.1;
font-weight: 400; font-weight: 400;
font-size: 2em;
margin-block: 0.65em;
} }
} }
@ -181,72 +183,43 @@ section.faq {
display: flex; display: flex;
} }
h3 {
color: var(--brand-1);
}
ul { ul {
list-style-type: none; list-style-type: none;
margin: 0; margin: 0;
padding: 0; padding: 0;
gap: 1em;
display: grid;
@media (min-width: 720px) {
grid-template-columns: 1fr 1fr 1fr;
}
li { li {
margin-bottom: 1em; margin: 0;
&:last-of-type {
margin-bottom: 0;
}
.card { .card {
border: 1px solid transparent; border: 1px solid transparent;
} height: 100%;
&.selected .card {
border: 1px solid var(--brand-1);
} }
} }
} }
.details { .details {
flex-basis: 50%; max-height: 35vh;
flex-shrink: 0; overflow: hidden;
display: flex;
flex-direction: column;
@media (max-width: 719px) { @media (max-width: 719px) {
margin-top: 1em; margin-top: 1em;
} }
} }
&.horizontal { img {
flex-direction: column-reverse; object-fit: contain;
ul {
gap: 1em;
display: grid;
@media (min-width: 720px) {
grid-template-columns: 1fr 1fr 1fr;
}
}
li {
margin: 0;
}
.card {
height: 100%;
}
h3 {
color: var(--brand-1);
}
.details {
max-height: 35vh;
overflow: hidden;
display: flex;
flex-direction: column;
img {
height: 100%;
width: auto;
object-fit: contain;
}
}
} }
} }

View File

@ -29,10 +29,10 @@ import calendarIcon from "../../assets/boxicons/bx-calendar.svg?raw";
import tableIcon from "../../assets/boxicons/bx-table.svg?raw"; import tableIcon from "../../assets/boxicons/bx-table.svg?raw";
import boardIcon from "../../assets/boxicons/bx-columns-3.svg?raw"; import boardIcon from "../../assets/boxicons/bx-columns-3.svg?raw";
import geomapIcon from "../../assets/boxicons/bx-map.svg?raw"; import geomapIcon from "../../assets/boxicons/bx-map.svg?raw";
import presentationIcon from "../../assets/boxicons/bx-slideshow.svg?raw";
import { getPlatform } from '../../download-helper.js'; import { getPlatform } from '../../download-helper.js';
import { useEffect, useState } from 'preact/hooks'; import { useEffect, useState } from 'preact/hooks';
import { t } from '../../i18n.js'; import { Trans, useTranslation } from 'react-i18next';
import { Trans } from 'react-i18next';
export function Home() { export function Home() {
usePageTitle(""); usePageTitle("");
@ -52,6 +52,7 @@ export function Home() {
} }
function HeroSection() { function HeroSection() {
const { t } = useTranslation();
const platform = getPlatform(); const platform = getPlatform();
const colorScheme = useColorScheme(); const colorScheme = useColorScheme();
const [ screenshotUrl, setScreenshotUrl ] = useState<string>(); const [ screenshotUrl, setScreenshotUrl ] = useState<string>();
@ -96,6 +97,7 @@ function HeroSection() {
} }
function OrganizationBenefitsSection() { function OrganizationBenefitsSection() {
const { t } = useTranslation();
return ( return (
<> <>
<Section className="benefits" title={t("organization_benefits.title")}> <Section className="benefits" title={t("organization_benefits.title")}>
@ -110,6 +112,7 @@ function OrganizationBenefitsSection() {
} }
function ProductivityBenefitsSection() { function ProductivityBenefitsSection() {
const { t } = useTranslation();
return ( return (
<> <>
<Section className="benefits accented" title={t("productivity_benefits.title")}> <Section className="benefits accented" title={t("productivity_benefits.title")}>
@ -127,9 +130,10 @@ function ProductivityBenefitsSection() {
} }
function NoteTypesSection() { function NoteTypesSection() {
const { t } = useTranslation();
return ( return (
<Section className="note-types" title="Multiple ways to represent your information"> <Section className="note-types" title={t("note_types.title")}>
<ListWithScreenshot horizontal items={[ <ListWithScreenshot items={[
{ {
title: t("note_types.text_title"), title: t("note_types.text_title"),
imageUrl: "/type_text.webp", imageUrl: "/type_text.webp",
@ -190,6 +194,7 @@ function NoteTypesSection() {
} }
function ExtensibilityBenefitsSection() { function ExtensibilityBenefitsSection() {
const { t } = useTranslation();
return ( return (
<> <>
<Section className="benefits accented" title={t("extensibility_benefits.title")}> <Section className="benefits accented" title={t("extensibility_benefits.title")}>
@ -205,8 +210,9 @@ function ExtensibilityBenefitsSection() {
} }
function CollectionsSection() { function CollectionsSection() {
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"),
@ -235,49 +241,45 @@ function CollectionsSection() {
imageUrl: "/collection_geomap.webp", imageUrl: "/collection_geomap.webp",
moreInfo: "https://docs.triliumnotes.org/User%20Guide/User%20Guide/Note%20Types/Collections/Geo%20Map%20View.html", moreInfo: "https://docs.triliumnotes.org/User%20Guide/User%20Guide/Note%20Types/Collections/Geo%20Map%20View.html",
description: t("collections.geomap_description") description: t("collections.geomap_description")
},
{
title: t("collections.presentation_title"),
iconSvg: presentationIcon,
imageUrl: "/collection_presentation.webp",
moreInfo: "https://docs.triliumnotes.org/User%20Guide/User%20Guide/Note%20Types/Collections/Presentation%20View.html",
description: t("collections.presentation_description")
} }
]} /> ]} />
</Section> </Section>
); );
} }
function ListWithScreenshot({ items, horizontal, cardExtra }: { function ListWithScreenshot({ items, cardExtra }: {
items: { title: string, imageUrl: string, description: string, moreInfo: string, iconSvg?: string }[]; items: { title: string, imageUrl: string, description: string, moreInfo: string, iconSvg?: string }[];
horizontal?: boolean;
cardExtra?: ComponentChildren; cardExtra?: ComponentChildren;
}) { }) {
const [ selectedItem, setSelectedItem ] = useState(items[0]);
return ( return (
<div className={`list-with-screenshot ${horizontal ? "horizontal" : ""}`}> <div className={`list-with-screenshot`}>
<ul> <ul>
{items.map(item => ( {items.map(item => (
<li className={`${item === selectedItem ? "selected" : ""}`}> <li>
<Card <Card
title={item.title} title={item.title}
onMouseEnter={() => setSelectedItem(item)}
onClick={() => setSelectedItem(item)}
moreInfoUrl={item.moreInfo} moreInfoUrl={item.moreInfo}
iconSvg={item.iconSvg} iconSvg={item.iconSvg}
imageUrl={item.imageUrl}
> >
{item.description} {item.description}
</Card> </Card>
</li> </li>
))} ))}
</ul> </ul>
<div className="details">
{selectedItem && (
<>
<img src={selectedItem.imageUrl} alt={t("components.list_with_screenshot_alt")} loading="lazy" />
</>
)}
</div>
</div> </div>
) )
} }
function FaqSection() { function FaqSection() {
const { t } = useTranslation();
return ( return (
<Section className="faq" title={t("faq.title")}> <Section className="faq" title={t("faq.title")}>
<div class="grid-2-cols"> <div class="grid-2-cols">
@ -301,6 +303,7 @@ function FaqItem({ question, children }: { question: string; children: Component
} }
function FinalCta() { function FinalCta() {
const { t } = useTranslation();
return ( return (
<Section className="final-cta accented" title={t("final_cta.title")}> <Section className="final-cta accented" title={t("final_cta.title")}>
<p>{t("final_cta.description")}</p> <p>{t("final_cta.description")}</p>

View File

@ -6,10 +6,10 @@ import buyMeACoffeeIcon from "../../assets/boxicons/bx-buy-me-a-coffee.svg?raw";
import Button, { Link } from "../../components/Button.js"; import Button, { Link } from "../../components/Button.js";
import Card from "../../components/Card.js"; import Card from "../../components/Card.js";
import { usePageTitle } from "../../hooks.js"; import { usePageTitle } from "../../hooks.js";
import { t } from "../../i18n.js"; import { Trans, useTranslation } from "react-i18next";
import { Trans } from "react-i18next";
export default function Donate() { export default function Donate() {
const { t } = useTranslation();
usePageTitle(t("support_us.title")); usePageTitle(t("support_us.title"));
return ( return (

View File

@ -1,9 +1,10 @@
import { useTranslation } from "react-i18next";
import Section from "../components/Section.js"; import Section from "../components/Section.js";
import { usePageTitle } from "../hooks.js"; import { usePageTitle } from "../hooks.js";
import { t } from "../i18n.js";
import "./_404.css"; import "./_404.css";
export function NotFound() { export function NotFound() {
const { t } = useTranslation();
usePageTitle(t("404.title")); usePageTitle(t("404.title"));
return ( return (

View File

@ -31,7 +31,13 @@ html,
body { body {
margin: 0; margin: 0;
line-height: 1.5; line-height: 1.5;
font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; font-family: Inter,
system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
"Noto Sans", "Noto Sans CJK SC",
"Hiragino Sans", "Hiragino Kaku Gothic ProN",
"Microsoft YaHei", "Meiryo", "Malgun Gothic",
"PingFang SC", "Source Han Sans SC",
"Source Han Sans JP", "Source Han Sans KR";
min-height: 100vh; min-height: 100vh;
} }

View File

@ -0,0 +1,46 @@
{
"get-started": {
"title": "Loslegen",
"desktop_title": "Die Desktop-App herunterladen (v{{version}})",
"architecture": "Architektur:",
"older_releases": "Ältere Releases anzeigen",
"server_title": "Richte einen Server für den Zugriff auf mehreren Geräten ein"
},
"hero_section": {
"github": "GitHub",
"get_started": "Loslegen",
"dockerhub": "Docker Hub",
"title": "Organisieren Sie Ihre Gedanken. Bauen Sie Ihre persönliche Wissensdatenbank auf.",
"subtitle": "Trilium ist eine Open-Source-Lösung zum Erstellen von Notizen und Organisieren einer persönlichen Wissensdatenbank. Sie kann lokal auf dem Desktop verwendet oder mit einem selbst gehosteten Server synchronisieren werden, um erstellte Notizen überall verfügbar zu haben.",
"screenshot_alt": "Screenshot der Desktop-Anwendung Trilium Notes"
},
"organization_benefits": {
"title": "Organisation",
"note_structure_title": "Notizstruktur",
"attributes_title": "Notiz Labels und Beziehungen"
},
"productivity_benefits": {
"revisions_title": "Notizrevisionen",
"title": "Produktivität und Sicherheit",
"sync_title": "Synchronisation",
"protected_notes_title": "Geschützte Notizen",
"jump_to_title": "Schnellsuche und Kommandos",
"search_title": "Leistungsstarke Suche",
"web_clipper_title": "Web clipper"
},
"note_types": {
"text_title": "Text Notizen",
"code_title": "Code Notizen",
"canvas_title": "Canvas",
"mermaid_title": "Mermaid Diagramm",
"mindmap_title": "Mind Map"
},
"extensibility_benefits": {
"import_export_title": "Import/Export",
"scripting_title": "Erweitertes Scripting",
"api_title": "REST API"
},
"collections": {
"calendar_title": "Kalender"
}
}

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." "web_clipper_content": "Grab web pages (or screenshots) and place them directly into Trilium using the web clipper browser extension."
}, },
"note_types": { "note_types": {
"title": "Multiple ways to represent your information",
"text_title": "Text notes", "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.", "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", "code_title": "Code notes",
@ -65,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",
@ -72,7 +74,9 @@
"board_title": "Board", "board_title": "Board",
"board_description": "Organize your tasks or project status into a Kanban board with an easy way to create new items and columns and simply changing their status by dragging across the board.", "board_description": "Organize your tasks or project status into a Kanban board with an easy way to create new items and columns and simply changing their status by dragging across the board.",
"geomap_title": "Geomap", "geomap_title": "Geomap",
"geomap_description": "Plan your vacations or mark your points of interest directly on a geographical map using customizable markers. Display recorded GPX tracks to track itineraries." "geomap_description": "Plan your vacations or mark your points of interest directly on a geographical map using customizable markers. Display recorded GPX tracks to track itineraries.",
"presentation_title": "Presentation",
"presentation_description": "Organize information into slides and present them in full-screen with smooth transitions. The slides can also be exported to PDF for easy sharing."
}, },
"faq": { "faq": {
"title": "Frequently Asked Questions", "title": "Frequently Asked Questions",
@ -95,8 +99,7 @@
"get_started": "Get started" "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"
}, },
"download_now": { "download_now": {
"text": "Download now ", "text": "Download now ",
@ -106,6 +109,11 @@
"linux_small": "for Linux", "linux_small": "for Linux",
"more_platforms": "More platforms & server setup" "more_platforms": "More platforms & server setup"
}, },
"header": {
"get-started": "Get started",
"documentation": "Documentation",
"support-us": "Support us"
},
"footer": { "footer": {
"copyright_and_the": " and the ", "copyright_and_the": " and the ",
"copyright_community": "community" "copyright_community": "community"
@ -163,7 +171,7 @@
"download_helper_desktop_macos": { "download_helper_desktop_macos": {
"title_x64": "macOS for Intel", "title_x64": "macOS for Intel",
"title_arm64": "macOS for Apple Silicon", "title_arm64": "macOS for Apple Silicon",
"description_x64": "For Intel-based Macs running macOS Big Sur or later.", "description_x64": "For Intel-based Macs running macOS Monterey or later.",
"description_arm64": "For Apple Silicon Macs such as those with M1 and M2 chips.", "description_arm64": "For Apple Silicon Macs such as those with M1 and M2 chips.",
"quick_start": "To install via Homebrew:", "quick_start": "To install via Homebrew:",
"download_dmg": "Download Installer (.dmg)", "download_dmg": "Download Installer (.dmg)",

View File

@ -95,8 +95,7 @@
"get_started": "Comenzar" "get_started": "Comenzar"
}, },
"components": { "components": {
"link_learn_more": "Saber más…", "link_learn_more": "Saber más…"
"list_with_screenshot_alt": "Captura de pantalla de la función seleccionada"
}, },
"download_now": { "download_now": {
"text": "Descarga ahora ", "text": "Descarga ahora ",
@ -163,7 +162,7 @@
"download_helper_desktop_macos": { "download_helper_desktop_macos": {
"title_x64": "macOS para Intel", "title_x64": "macOS para Intel",
"title_arm64": "macOS para Apple Silicon", "title_arm64": "macOS para Apple Silicon",
"description_x64": "Para Macs con procesador Intel que ejecuten macOS Big Sur o posterior.", "description_x64": "Para Macs con procesador Intel que ejecuten macOS Monterey o posterior.",
"description_arm64": "Para Macs con Apple Silicon, como los que tienen chips M1 y M2.", "description_arm64": "Para Macs con Apple Silicon, como los que tienen chips M1 y M2.",
"quick_start": "Para instalar mediante Homebrew:", "quick_start": "Para instalar mediante Homebrew:",
"download_dmg": "Descargar instalador (.dmg)", "download_dmg": "Descargar instalador (.dmg)",

View File

@ -74,8 +74,7 @@
"get_started": "Commencer" "get_started": "Commencer"
}, },
"components": { "components": {
"link_learn_more": "En savoir plus...", "link_learn_more": "En savoir plus..."
"list_with_screenshot_alt": "Capture d'écran de la fonctionnalité sélectionnée"
}, },
"support_us": { "support_us": {
"financial_donations_title": "Dons financiers", "financial_donations_title": "Dons financiers",
@ -124,7 +123,7 @@
"download_helper_desktop_macos": { "download_helper_desktop_macos": {
"title_x64": "macOS pour Intel", "title_x64": "macOS pour Intel",
"title_arm64": "macOS pour Apple Silicon", "title_arm64": "macOS pour Apple Silicon",
"description_x64": "Pour les Mac basés sur Intel exécutant macOS Big Sur ou une version ultérieure.", "description_x64": "Pour les Mac basés sur Intel exécutant macOS Monterey ou une version ultérieure.",
"description_arm64": "Pour les Mac Apple Silicon tels que ceux équipés de puces M1 et M2.", "description_arm64": "Pour les Mac Apple Silicon tels que ceux équipés de puces M1 et M2.",
"quick_start": "Pour installer via Homebrew :", "quick_start": "Pour installer via Homebrew :",
"download_dmg": "Télécharger le programme d'installation (.dmg)", "download_dmg": "Télécharger le programme d'installation (.dmg)",

View File

@ -51,7 +51,8 @@
"mermaid_description": "Crea diagrammi come diagrammi di flusso, diagrammi di classe e sequenza, diagrammi di Gantt e molti altri, utilizzando la sintassi Mermaid.", "mermaid_description": "Crea diagrammi come diagrammi di flusso, diagrammi di classe e sequenza, diagrammi di Gantt e molti altri, utilizzando la sintassi Mermaid.",
"mindmap_title": "Mappe mentali", "mindmap_title": "Mappe mentali",
"mindmap_description": "Organizza i tuoi pensieri visivamente o fai una sessione di brainstorming.", "mindmap_description": "Organizza i tuoi pensieri visivamente o fai una sessione di brainstorming.",
"others_list": "e altri: <0>mappa delle note</0>, <1>mappa delle relazioni</1>, <2>ricerche salvate</2>, <3>renderizza nota</3> e <4>visualizzazioni web</4>." "others_list": "e altri: <0>mappa delle note</0>, <1>mappa delle relazioni</1>, <2>ricerche salvate</2>, <3>renderizza nota</3> e <4>visualizzazioni web</4>.",
"title": "Diversi modi per rappresentare le tue informazioni"
}, },
"extensibility_benefits": { "extensibility_benefits": {
"title": "Condivisione ed estensibilità", "title": "Condivisione ed estensibilità",
@ -72,7 +73,10 @@
"board_title": "Board", "board_title": "Board",
"board_description": "Organizza le tue attività o lo stato dei tuoi progetti in una lavagna Kanban con un modo semplice per creare nuovi elementi e colonne e modificare facilmente il loro stato trascinandoli sulla lavagna.", "board_description": "Organizza le tue attività o lo stato dei tuoi progetti in una lavagna Kanban con un modo semplice per creare nuovi elementi e colonne e modificare facilmente il loro stato trascinandoli sulla lavagna.",
"geomap_title": "Geomappa", "geomap_title": "Geomappa",
"geomap_description": "Pianifica le tue vacanze o segna i tuoi punti di interesse direttamente su una mappa geografica utilizzando indicatori personalizzabili. Visualizza le tracce GPX registrate per seguire gli itinerari." "geomap_description": "Pianifica le tue vacanze o segna i tuoi punti di interesse direttamente su una mappa geografica utilizzando indicatori personalizzabili. Visualizza le tracce GPX registrate per seguire gli itinerari.",
"title": "Collezioni",
"presentation_title": "Presentazione",
"presentation_description": "Organizza le informazioni in diapositive e presentale a schermo intero con transizioni fluide. Le diapositive possono anche essere esportate in formato PDF per una facile condivisione."
}, },
"faq": { "faq": {
"title": "Domande frequenti", "title": "Domande frequenti",
@ -95,8 +99,7 @@
"get_started": "Inizia ora" "get_started": "Inizia ora"
}, },
"components": { "components": {
"link_learn_more": "Per saperne di più...", "link_learn_more": "Per saperne di più..."
"list_with_screenshot_alt": "Screenshot della funzione selezionata"
}, },
"download_now": { "download_now": {
"text": "Scarica ora ", "text": "Scarica ora ",
@ -163,7 +166,7 @@
"download_helper_desktop_macos": { "download_helper_desktop_macos": {
"title_x64": "macOS per Intel", "title_x64": "macOS per Intel",
"title_arm64": "macOS per Apple Silicon", "title_arm64": "macOS per Apple Silicon",
"description_x64": "Per Mac basati su Intel con macOS Big Sur o versioni successive.", "description_x64": "Per Mac basati su Intel con macOS Monterey o versioni successive.",
"description_arm64": "Per i Mac Apple Silicon, come quelli con chip M1 e M2.", "description_arm64": "Per i Mac Apple Silicon, come quelli con chip M1 e M2.",
"quick_start": "Per installare tramite Homebrew:", "quick_start": "Per installare tramite Homebrew:",
"download_dmg": "Scarica il programma di installazione (.dmg)", "download_dmg": "Scarica il programma di installazione (.dmg)",
@ -188,5 +191,10 @@
"description": "Trilium Notes è ospitato su PikaPods, un servizio a pagamento che consente un facile accesso e una semplice gestione. Non è direttamente affiliato al team Trilium.", "description": "Trilium Notes è ospitato su PikaPods, un servizio a pagamento che consente un facile accesso e una semplice gestione. Non è direttamente affiliato al team Trilium.",
"download_pikapod": "Configurazione su PikaPods", "download_pikapod": "Configurazione su PikaPods",
"download_triliumcc": "In alternativa, consultare trilium.cc" "download_triliumcc": "In alternativa, consultare trilium.cc"
},
"header": {
"get-started": "Inizia",
"documentation": "Documentazione",
"support-us": "Sostienici"
} }
} }

View File

@ -51,7 +51,8 @@
"mermaid_description": "Mermaid 構文を使用して、フローチャート、クラス図、シーケンス図、ガント チャートなどの図を作成します。", "mermaid_description": "Mermaid 構文を使用して、フローチャート、クラス図、シーケンス図、ガント チャートなどの図を作成します。",
"mindmap_title": "マインドマップ", "mindmap_title": "マインドマップ",
"mindmap_description": "考えを視覚的に整理したり、ブレインストーミング セッションを行ったりします。", "mindmap_description": "考えを視覚的に整理したり、ブレインストーミング セッションを行ったりします。",
"others_list": "その他: <0>ノートマップ</0>、<1>リレーションマップ</1>、<2>保存された検索</2>、<3>レンダリングノート</3>、<4>Web ビュー</4>。" "others_list": "その他: <0>ノートマップ</0>、<1>リレーションマップ</1>、<2>保存された検索</2>、<3>レンダリングノート</3>、<4>Web ビュー</4>。",
"title": "情報を表現するための複数の方法"
}, },
"extensibility_benefits": { "extensibility_benefits": {
"title": "共有と拡張性", "title": "共有と拡張性",
@ -72,7 +73,10 @@
"board_title": "ボード", "board_title": "ボード",
"board_description": "新しい項目や列を簡単に作成し、ボード上でドラッグするだけでステータスを変更できるカンバン ボードで、タスクやプロジェクトのステータスを整理できます。", "board_description": "新しい項目や列を簡単に作成し、ボード上でドラッグするだけでステータスを変更できるカンバン ボードで、タスクやプロジェクトのステータスを整理できます。",
"geomap_title": "ジオマップ", "geomap_title": "ジオマップ",
"geomap_description": "カスタマイズ可能なマーカーを使って、休暇を計画したり、興味のある場所を地図上に直接マークしたりできます。記録されたGPXトラックを表示して、旅程を追跡できます。" "geomap_description": "カスタマイズ可能なマーカーを使って、休暇を計画したり、興味のある場所を地図上に直接マークしたりできます。記録されたGPXトラックを表示して、旅程を追跡できます。",
"title": "コレクション",
"presentation_title": "プレゼンテーション",
"presentation_description": "情報をスライドに整理し、スムーズな遷移で全画面表示できます。スライドはPDFにエクスポートできるので、簡単に共有できます。"
}, },
"faq": { "faq": {
"title": "よくある質問", "title": "よくある質問",
@ -95,8 +99,7 @@
"get_started": "はじめる" "get_started": "はじめる"
}, },
"components": { "components": {
"link_learn_more": "さらに詳しく...", "link_learn_more": "さらに詳しく..."
"list_with_screenshot_alt": "選択中の機能のスクリーンショット"
}, },
"download_now": { "download_now": {
"text": "今すぐダウンロード ", "text": "今すぐダウンロード ",
@ -163,7 +166,7 @@
"download_helper_desktop_macos": { "download_helper_desktop_macos": {
"title_x64": "Intel 向け macOS", "title_x64": "Intel 向け macOS",
"title_arm64": "Apple Silicon 向け macOS", "title_arm64": "Apple Silicon 向け macOS",
"description_x64": "macOS Big Sur 以降を実行している Intel ベースの Mac 向け。", "description_x64": "macOS Monterey 以降を実行している Intel ベースの Mac 向け。",
"description_arm64": "M1 および M2 チップを搭載した Apple Silicon Mac 向け。", "description_arm64": "M1 および M2 チップを搭載した Apple Silicon Mac 向け。",
"quick_start": "Homebrew 経由でインストールするには:", "quick_start": "Homebrew 経由でインストールするには:",
"download_dmg": "インストーラーをダウンロード (.dmg)", "download_dmg": "インストーラーをダウンロード (.dmg)",
@ -188,5 +191,10 @@
"description": "Trilium Notesは、アクセスと管理を容易にする有料サービス PikaPods でホストされています。Trilium チームとは直接関係ありません。", "description": "Trilium Notesは、アクセスと管理を容易にする有料サービス PikaPods でホストされています。Trilium チームとは直接関係ありません。",
"download_pikapod": "PikaPods にセットアップする", "download_pikapod": "PikaPods にセットアップする",
"download_triliumcc": "または、trilium.cc を参照してください" "download_triliumcc": "または、trilium.cc を参照してください"
},
"header": {
"get-started": "はじめる",
"documentation": "ドキュメント",
"support-us": "サポート"
} }
} }

View File

@ -0,0 +1,6 @@
{
"hero_section": {
"github": "깃허브",
"dockerhub": "도커 허브"
}
}

View File

@ -95,8 +95,7 @@
"get_started": "Start" "get_started": "Start"
}, },
"components": { "components": {
"link_learn_more": "Dowiedz się więcej....", "link_learn_more": "Dowiedz się więcej...."
"list_with_screenshot_alt": "Zrzut ekranu wybranej funkcji"
}, },
"download_now": { "download_now": {
"text": "Pobierz teraz ", "text": "Pobierz teraz ",

View File

@ -95,8 +95,7 @@
"get_started": "Începe" "get_started": "Începe"
}, },
"components": { "components": {
"link_learn_more": "Mai multe detalii...", "link_learn_more": "Mai multe detalii..."
"list_with_screenshot_alt": "Captură de ecran a funcției selectate"
}, },
"download_now": { "download_now": {
"text": "Descărcați acum ", "text": "Descărcați acum ",
@ -106,6 +105,11 @@
"linux_small": "pentru Linux", "linux_small": "pentru Linux",
"more_platforms": "Mai multe platforme și instalarea server-ului" "more_platforms": "Mai multe platforme și instalarea server-ului"
}, },
"header": {
"get-started": "Primii pași",
"documentation": "Documentație",
"support-us": "Sprijină-ne"
},
"footer": { "footer": {
"copyright_and_the": " și ", "copyright_and_the": " și ",
"copyright_community": "comunitatea" "copyright_community": "comunitatea"
@ -157,7 +161,7 @@
"download_helper_desktop_macos": { "download_helper_desktop_macos": {
"title_x64": "macOS pentru Intel", "title_x64": "macOS pentru Intel",
"title_arm64": "macOS pentru Apple Silicon", "title_arm64": "macOS pentru Apple Silicon",
"description_x64": "Pentru Mac-uri bazate pe Intel ce rulează macOS Big Sur sau mai nou.", "description_x64": "Pentru Mac-uri bazate pe Intel ce rulează macOS Monterey sau mai nou.",
"description_arm64": "Pentru Mac-uri bazate pe Apple Silicon, precum cele cu chip-uri M1, M2.", "description_arm64": "Pentru Mac-uri bazate pe Apple Silicon, precum cele cu chip-uri M1, M2.",
"quick_start": "Instalați prin Homebrew:", "quick_start": "Instalați prin Homebrew:",
"download_dmg": "Descarcă instalatorul (.dmg)", "download_dmg": "Descarcă instalatorul (.dmg)",

View File

@ -51,7 +51,8 @@
"mermaid_description": "使用 Mermaid 語法繪製流程圖、類別圖與序列圖、甘特圖等多種圖表。", "mermaid_description": "使用 Mermaid 語法繪製流程圖、類別圖與序列圖、甘特圖等多種圖表。",
"mindmap_title": "心智圖", "mindmap_title": "心智圖",
"mindmap_description": "以視覺方式整理思緒,或進行腦力激盪。", "mindmap_description": "以視覺方式整理思緒,或進行腦力激盪。",
"others_list": "及其他項目:<0>筆記地圖</0>、<1>關聯地圖</1>、<2>儲存搜尋</2>、<3>渲染筆記</3>,以及<4>網頁檢視</4>。" "others_list": "及其他項目:<0>筆記地圖</0>、<1>關聯地圖</1>、<2>儲存搜尋</2>、<3>渲染筆記</3>,以及<4>網頁檢視</4>。",
"title": "多種方式呈現您的資訊"
}, },
"extensibility_benefits": { "extensibility_benefits": {
"title": "分享及擴展性", "title": "分享及擴展性",
@ -72,7 +73,10 @@
"board_title": "看板", "board_title": "看板",
"board_description": "將您的任務或專案狀態整理成看板,輕鬆建立新項目與欄位,並透過在看板上拖曳即可簡單變更狀態。", "board_description": "將您的任務或專案狀態整理成看板,輕鬆建立新項目與欄位,並透過在看板上拖曳即可簡單變更狀態。",
"geomap_title": "地理地圖", "geomap_title": "地理地圖",
"geomap_description": "使用可自訂的標記直接在地圖上規劃您的假期行程或標記感興趣的地點。顯示已記錄的GPX軌跡以便追蹤行程路線。" "geomap_description": "使用可自訂的標記直接在地圖上規劃您的假期行程或標記感興趣的地點。顯示已記錄的GPX軌跡以便追蹤行程路線。",
"title": "集合",
"presentation_title": "簡報",
"presentation_description": "將資訊整理成投影片,並以全螢幕模式及流暢的轉場效果呈現。投影片亦可匯出為 PDF 格式,方便分享。"
}, },
"faq": { "faq": {
"title": "常見問題", "title": "常見問題",
@ -95,8 +99,7 @@
"get_started": "上手指南" "get_started": "上手指南"
}, },
"components": { "components": {
"link_learn_more": "了解更多…", "link_learn_more": "了解更多…"
"list_with_screenshot_alt": "已選擇功能的螢幕截圖"
}, },
"download_now": { "download_now": {
"text": "馬上下載 ", "text": "馬上下載 ",
@ -163,7 +166,7 @@
"download_helper_desktop_macos": { "download_helper_desktop_macos": {
"title_x64": "macOS 適用於 Intel", "title_x64": "macOS 適用於 Intel",
"title_arm64": "macOS 適用於 Apple Silicon", "title_arm64": "macOS 適用於 Apple Silicon",
"description_x64": "適用於搭載 Intel 處理器的 Mac並運行 macOS Big Sur 或更新版本。", "description_x64": "適用於搭載 Intel 處理器的 Mac並運行 macOS Monterey 或更新版本。",
"description_arm64": "適用於搭載 Apple Silicon 的 Mac例如配備 M1 和 M2 晶片的機型。", "description_arm64": "適用於搭載 Apple Silicon 的 Mac例如配備 M1 和 M2 晶片的機型。",
"quick_start": "透過 Homebrew 安裝:", "quick_start": "透過 Homebrew 安裝:",
"download_dmg": "下載安裝程式 (.dmg)", "download_dmg": "下載安裝程式 (.dmg)",
@ -188,5 +191,10 @@
"description": "Trilium Notes 託管於 PikaPods此為付費服務提供便捷存取與管理功能。與 Trilium 團隊無直接關聯。", "description": "Trilium Notes 託管於 PikaPods此為付費服務提供便捷存取與管理功能。與 Trilium 團隊無直接關聯。",
"download_pikapod": "在 PikaPods 上設定", "download_pikapod": "在 PikaPods 上設定",
"download_triliumcc": "或參見 trilium.cc" "download_triliumcc": "或參見 trilium.cc"
},
"header": {
"get-started": "上手指南",
"documentation": "文件",
"support-us": "支持我們"
} }
} }

View File

@ -9,6 +9,9 @@
"jsx": "react-jsx", "jsx": "react-jsx",
"jsxImportSource": "preact", "jsxImportSource": "preact",
"skipLibCheck": true, "skipLibCheck": true,
"types": [
"vite/client"
],
"paths": { "paths": {
"react": ["../../node_modules/preact/compat/"], "react": ["../../node_modules/preact/compat/"],
"react-dom": ["../../node_modules/preact/compat/"] "react-dom": ["../../node_modules/preact/compat/"]

View File

@ -14,4 +14,7 @@ export default defineConfig({
}, },
}), }),
], ],
test: {
environment: "happy-dom"
}
}); });

2
docs/README-de.md vendored
View File

@ -58,7 +58,7 @@ Unsere Dokumentation ist verfügbar in mehreren Formaten:
- [Erste Schritte](https://docs.triliumnotes.org/) - [Erste Schritte](https://docs.triliumnotes.org/)
- [Installationsanleitung](./docs/User%20Guide/User%20Guide/Installation%20&%20Setup/Server%20Installation.md) - [Installationsanleitung](./docs/User%20Guide/User%20Guide/Installation%20&%20Setup/Server%20Installation.md)
- [Docker - [Docker
Setup](./docs/User%20Guide/User%20Guide/Installation%20&%20Setup/Server%20Installation/1.%20Installing%20the%20server/Using%20Docker.md) Einrichten](./docs/User%20Guide/User%20Guide/Installation%20&%20Setup/Server%20Installation/1.%20Installing%20the%20server/Using%20Docker.md)
- [TriliumNext - [TriliumNext
aktualisieren](./docs/User%20Guide/User%20Guide/Installation%20%26%20Setup/Upgrading%20TriliumNext.md) aktualisieren](./docs/User%20Guide/User%20Guide/Installation%20%26%20Setup/Upgrading%20TriliumNext.md)
- [Grundkonzepte und - [Grundkonzepte und

View File

@ -17,6 +17,7 @@
"desktop:start": "pnpm run --filter desktop dev", "desktop:start": "pnpm run --filter desktop dev",
"desktop:build": "pnpm run --filter desktop build", "desktop:build": "pnpm run --filter desktop build",
"desktop:start-prod": "pnpm run --filter desktop start-prod", "desktop:start-prod": "pnpm run --filter desktop start-prod",
"website:start": "pnpm run --filter website dev",
"website:build": "pnpm run --filter website build", "website:build": "pnpm run --filter website build",
"electron:build": "pnpm desktop:build", "electron:build": "pnpm desktop:build",
"electron:start": "pnpm desktop:start", "electron:start": "pnpm desktop:start",
@ -40,7 +41,7 @@
"@fast-csv/parse": "5.0.5", "@fast-csv/parse": "5.0.5",
"@playwright/test": "1.56.1", "@playwright/test": "1.56.1",
"@triliumnext/server": "workspace:*", "@triliumnext/server": "workspace:*",
"@types/express": "5.0.4", "@types/express": "5.0.5",
"@types/node": "22.18.12", "@types/node": "22.18.12",
"@vitest/coverage-v8": "3.2.4", "@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "3.2.4", "@vitest/ui": "3.2.4",
@ -88,7 +89,7 @@
"ckeditor5": "patches/ckeditor5.patch" "ckeditor5": "patches/ckeditor5.patch"
}, },
"overrides": { "overrides": {
"mermaid": "11.12.0", "mermaid": "11.12.1",
"preact": "10.27.2", "preact": "10.27.2",
"roughjs": "4.6.6", "roughjs": "4.6.6",
"@types/express-serve-static-core": "5.1.0", "@types/express-serve-static-core": "5.1.0",

147
pnpm-lock.yaml generated
View File

@ -5,7 +5,7 @@ settings:
excludeLinksFromLockfile: false excludeLinksFromLockfile: false
overrides: overrides:
mermaid: 11.12.0 mermaid: 11.12.1
preact: 10.27.2 preact: 10.27.2
roughjs: 4.6.6 roughjs: 4.6.6
'@types/express-serve-static-core': 5.1.0 '@types/express-serve-static-core': 5.1.0
@ -50,8 +50,8 @@ importers:
specifier: workspace:* specifier: workspace:*
version: link:apps/server version: link:apps/server
'@types/express': '@types/express':
specifier: 5.0.4 specifier: 5.0.5
version: 5.0.4 version: 5.0.5
'@types/node': '@types/node':
specifier: 22.18.12 specifier: 22.18.12
version: 22.18.12 version: 22.18.12
@ -156,7 +156,7 @@ importers:
version: 0.1.3(@types/leaflet@1.9.21)(leaflet@1.9.4)(maplibre-gl@5.6.1) version: 0.1.3(@types/leaflet@1.9.21)(leaflet@1.9.4)(maplibre-gl@5.6.1)
'@mermaid-js/layout-elk': '@mermaid-js/layout-elk':
specifier: 0.2.0 specifier: 0.2.0
version: 0.2.0(mermaid@11.12.0) version: 0.2.0(mermaid@11.12.1)
'@mind-elixir/node-menu': '@mind-elixir/node-menu':
specifier: 5.0.0 specifier: 5.0.0
version: 5.0.0(mind-elixir@5.3.4) version: 5.0.0(mind-elixir@5.3.4)
@ -245,8 +245,8 @@ importers:
specifier: 16.4.1 specifier: 16.4.1
version: 16.4.1 version: 16.4.1
mermaid: mermaid:
specifier: 11.12.0 specifier: 11.12.1
version: 11.12.0 version: 11.12.1
mind-elixir: mind-elixir:
specifier: 5.3.4 specifier: 5.3.4
version: 5.3.4 version: 5.3.4
@ -260,8 +260,8 @@ importers:
specifier: 10.27.2 specifier: 10.27.2
version: 10.27.2 version: 10.27.2
react-i18next: react-i18next:
specifier: 16.2.0 specifier: 16.2.1
version: 16.2.0(i18next@25.6.0(typescript@5.9.3))(react-dom@19.1.0(react@16.14.0))(react@16.14.0)(typescript@5.9.3) version: 16.2.1(i18next@25.6.0(typescript@5.9.3))(react-dom@19.1.0(react@16.14.0))(react@16.14.0)(typescript@5.9.3)
reveal.js: reveal.js:
specifier: 5.2.1 specifier: 5.2.1
version: 5.2.1 version: 5.2.1
@ -484,8 +484,8 @@ importers:
specifier: workspace:* specifier: workspace:*
version: link:../../packages/turndown-plugin-gfm version: link:../../packages/turndown-plugin-gfm
'@types/archiver': '@types/archiver':
specifier: 6.0.4 specifier: 7.0.0
version: 6.0.4 version: 7.0.0
'@types/better-sqlite3': '@types/better-sqlite3':
specifier: 7.6.13 specifier: 7.6.13
version: 7.6.13 version: 7.6.13
@ -497,7 +497,7 @@ importers:
version: 1.8.1 version: 1.8.1
'@types/cookie-parser': '@types/cookie-parser':
specifier: 1.4.10 specifier: 1.4.10
version: 1.4.10(@types/express@5.0.4) version: 1.4.10(@types/express@5.0.5)
'@types/debounce': '@types/debounce':
specifier: 1.2.4 specifier: 1.2.4
version: 1.2.4 version: 1.2.4
@ -544,8 +544,8 @@ importers:
specifier: 2.5.7 specifier: 2.5.7
version: 2.5.7 version: 2.5.7
'@types/serve-static': '@types/serve-static':
specifier: 1.15.10 specifier: 2.2.0
version: 1.15.10 version: 2.2.0
'@types/stream-throttle': '@types/stream-throttle':
specifier: 0.1.4 specifier: 0.1.4
version: 0.1.4 version: 0.1.4
@ -559,8 +559,8 @@ importers:
specifier: 0.2.6 specifier: 0.2.6
version: 0.2.6 version: 0.2.6
'@types/turndown': '@types/turndown':
specifier: 5.0.5 specifier: 5.0.6
version: 5.0.5 version: 5.0.6
'@types/ws': '@types/ws':
specifier: 8.18.1 specifier: 8.18.1
version: 8.18.1 version: 8.18.1
@ -574,8 +574,8 @@ importers:
specifier: 0.5.0 specifier: 0.5.0
version: 0.5.0 version: 0.5.0
axios: axios:
specifier: 1.12.2 specifier: 1.13.0
version: 1.12.2(debug@4.4.3) version: 1.13.0(debug@4.4.3)
bindings: bindings:
specifier: 1.5.0 specifier: 1.5.0
version: 1.5.0 version: 1.5.0
@ -790,8 +790,8 @@ importers:
specifier: 6.6.3 specifier: 6.6.3
version: 6.6.3(preact@10.27.2) version: 6.6.3(preact@10.27.2)
react-i18next: react-i18next:
specifier: 16.2.0 specifier: 16.2.1
version: 16.2.0(i18next@25.6.0(typescript@5.9.3))(react-dom@19.1.0(react@16.14.0))(react@16.14.0)(typescript@5.9.3) version: 16.2.1(i18next@25.6.0(typescript@5.9.3))(react-dom@19.1.0(react@16.14.0))(react@16.14.0)(typescript@5.9.3)
devDependencies: devDependencies:
'@preact/preset-vite': '@preact/preset-vite':
specifier: 2.10.2 specifier: 2.10.2
@ -3349,10 +3349,10 @@ packages:
'@mermaid-js/layout-elk@0.2.0': '@mermaid-js/layout-elk@0.2.0':
resolution: {integrity: sha512-vjjYGnCCjYlIA/rR7M//eFi0rHM6dsMyN1JQKfckpt30DTC/esrw36hcrvA2FNPHaqh3Q/SyBWzddyaky8EtUQ==} resolution: {integrity: sha512-vjjYGnCCjYlIA/rR7M//eFi0rHM6dsMyN1JQKfckpt30DTC/esrw36hcrvA2FNPHaqh3Q/SyBWzddyaky8EtUQ==}
peerDependencies: peerDependencies:
mermaid: 11.12.0 mermaid: 11.12.1
'@mermaid-js/parser@0.6.2': '@mermaid-js/parser@0.6.3':
resolution: {integrity: sha512-+PO02uGF6L6Cs0Bw8RpGhikVvMWEysfAyl27qTlroUB8jSWr1lL0Sf6zi78ZxlSnmgSY2AMMKVgghnN9jTtwkQ==} resolution: {integrity: sha512-lnjOhe7zyHjc+If7yT4zoedx2vo4sHaTmtkl1+or8BRTnCtDmcTpAjpzDSfCZrshM5bCoz0GyidzadJAH1xobA==}
'@microsoft/api-extractor-model@7.30.6': '@microsoft/api-extractor-model@7.30.6':
resolution: {integrity: sha512-znmFn69wf/AIrwHya3fxX6uB5etSIn6vg4Q4RB/tb5VDDs1rqREc+AvMC/p19MUN13CZ7+V/8pkYPTj7q8tftg==} resolution: {integrity: sha512-znmFn69wf/AIrwHya3fxX6uB5etSIn6vg4Q4RB/tb5VDDs1rqREc+AvMC/p19MUN13CZ7+V/8pkYPTj7q8tftg==}
@ -4754,8 +4754,8 @@ packages:
'@types/appdmg@0.5.5': '@types/appdmg@0.5.5':
resolution: {integrity: sha512-G+n6DgZTZFOteITE30LnWj+HRVIGr7wMlAiLWOO02uJFWVEitaPU9JVXm9wJokkgshBawb2O1OykdcsmkkZfgg==} resolution: {integrity: sha512-G+n6DgZTZFOteITE30LnWj+HRVIGr7wMlAiLWOO02uJFWVEitaPU9JVXm9wJokkgshBawb2O1OykdcsmkkZfgg==}
'@types/archiver@6.0.4': '@types/archiver@7.0.0':
resolution: {integrity: sha512-ULdQpARQ3sz9WH4nb98mJDYA0ft2A8C4f4fovvUcFwINa1cgGjY36JCAYuP5YypRq4mco1lJp1/7jEMS2oR0Hg==} resolution: {integrity: sha512-/3vwGwx9n+mCQdYZ2IKGGHEFL30I96UgBlk8EtRDDFQ9uxM1l4O5Ci6r00EMAkiDaTqD9DQ6nVrWRICnBPtzzg==}
'@types/argparse@1.0.38': '@types/argparse@1.0.38':
resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==} resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==}
@ -4958,8 +4958,8 @@ packages:
'@types/express@5.0.3': '@types/express@5.0.3':
resolution: {integrity: sha512-wGA0NX93b19/dZC1J18tKWVIYWyyF2ZjT9vin/NRu0qzzvfVzWjs04iq2rQ3H65vCTQYlRqs3YHfY7zjdV+9Kw==} resolution: {integrity: sha512-wGA0NX93b19/dZC1J18tKWVIYWyyF2ZjT9vin/NRu0qzzvfVzWjs04iq2rQ3H65vCTQYlRqs3YHfY7zjdV+9Kw==}
'@types/express@5.0.4': '@types/express@5.0.5':
resolution: {integrity: sha512-g64dbryHk7loCIrsa0R3shBnEu5p6LPJ09bu9NG58+jz+cRUjFrc3Bz0kNQ7j9bXeCsrRDvNET1G54P/GJkAyA==} resolution: {integrity: sha512-LuIQOcb6UmnF7C1PCFmEU1u2hmiHL43fgFQX67sN3H4Z+0Yk0Neo++mFsBjhOAuLzvlQeqAAkeDOZrJs9rzumQ==}
'@types/fs-extra@11.0.4': '@types/fs-extra@11.0.4':
resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==} resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==}
@ -5143,6 +5143,9 @@ packages:
'@types/serve-static@1.15.10': '@types/serve-static@1.15.10':
resolution: {integrity: sha512-tRs1dB+g8Itk72rlSI2ZrW6vZg0YrLI81iQSTkMmOqnqCaNr/8Ek4VwWcN5vZgCYWbg/JJSGBlUaYGAOP73qBw==} resolution: {integrity: sha512-tRs1dB+g8Itk72rlSI2ZrW6vZg0YrLI81iQSTkMmOqnqCaNr/8Ek4VwWcN5vZgCYWbg/JJSGBlUaYGAOP73qBw==}
'@types/serve-static@2.2.0':
resolution: {integrity: sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==}
'@types/sinonjs__fake-timers@8.1.5': '@types/sinonjs__fake-timers@8.1.5':
resolution: {integrity: sha512-mQkU2jY8jJEF7YHjHvsQO8+3ughTL1mcnn96igfhONmR+fUPSKIkefQYpSe8bsly2Ep7oQbn/6VG5/9/0qcArQ==} resolution: {integrity: sha512-mQkU2jY8jJEF7YHjHvsQO8+3ughTL1mcnn96igfhONmR+fUPSKIkefQYpSe8bsly2Ep7oQbn/6VG5/9/0qcArQ==}
@ -5188,8 +5191,8 @@ packages:
'@types/trusted-types@2.0.7': '@types/trusted-types@2.0.7':
resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==} resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
'@types/turndown@5.0.5': '@types/turndown@5.0.6':
resolution: {integrity: sha512-TL2IgGgc7B5j78rIccBtlYAnkuv8nUQqhQc+DSYV5j9Be9XOcm/SKOVRuA47xAVI3680Tk9B1d8flK2GWT2+4w==} resolution: {integrity: sha512-ru00MoyeeouE5BX4gRL+6m/BsDfbRayOskWqUvh7CLGW+UXxHQItqALa38kKnOiZPqJrtzJUgAC2+F0rL1S4Pg==}
'@types/unist@3.0.3': '@types/unist@3.0.3':
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
@ -5830,8 +5833,8 @@ packages:
resolution: {integrity: sha512-zJAaP9zxTcvTHRlejau3ZOY4V7SRpiByf3/dxx2uyKxxor19tpmpV2QRsTKikckwhaPmr2dVpxxMr7jOCYVp5g==} resolution: {integrity: sha512-zJAaP9zxTcvTHRlejau3ZOY4V7SRpiByf3/dxx2uyKxxor19tpmpV2QRsTKikckwhaPmr2dVpxxMr7jOCYVp5g==}
engines: {node: '>=6.0.0'} engines: {node: '>=6.0.0'}
axios@1.12.2: axios@1.13.0:
resolution: {integrity: sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==} resolution: {integrity: sha512-zt40Pz4zcRXra9CVV31KeyofwiNvAbJ5B6YPz9pMJ+yOSLikvPT4Yi5LjfgjRa9CawVYBaD1JQzIVcIvBejKeA==}
b4a@1.6.7: b4a@1.6.7:
resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==} resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
@ -6939,8 +6942,8 @@ packages:
resolution: {integrity: sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==} resolution: {integrity: sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==}
engines: {node: '>=12'} engines: {node: '>=12'}
dagre-d3-es@7.0.11: dagre-d3-es@7.0.13:
resolution: {integrity: sha512-tvlJLyQf834SylNKax8Wkzco/1ias1OPw8DcUMDE7oUIoSEW25riQVuiu/0OWEFqT0cxHT3Pa9/D82Jr47IONw==} resolution: {integrity: sha512-efEhnxpSuwpYOKRm/L5KbqoZmNNukHa/Flty4Wp62JRvgH2ojwVgPgdYyr4twpieZnyRDdIH7PY2mopX26+j2Q==}
data-uri-to-buffer@4.0.1: data-uri-to-buffer@4.0.1:
resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
@ -9743,8 +9746,8 @@ packages:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'} engines: {node: '>= 8'}
mermaid@11.12.0: mermaid@11.12.1:
resolution: {integrity: sha512-ZudVx73BwrMJfCFmSSJT84y6u5brEoV8DOItdHomNLz32uBjNrelm7mg95X7g+C6UoQH/W6mBLGDEDv73JdxBg==} resolution: {integrity: sha512-UlIZrRariB11TY1RtTgUWp65tphtBv4CSq7vyS2ZZ2TgoMjs2nloq+wFqxiwcxlhHUvs7DPGgMjs2aeQxz5h9g==}
methods@1.1.2: methods@1.1.2:
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
@ -11734,8 +11737,8 @@ packages:
peerDependencies: peerDependencies:
react: ^19.1.0 react: ^19.1.0
react-i18next@16.2.0: react-i18next@16.2.1:
resolution: {integrity: sha512-giCEDa6NtQYvuLGW9xaBo4HCVxT0Y8jrOpX/uSnd+lZ3Dmm/2BNrGNEgRZzWDkSobmE6IWPJ+/Ow9Rhi/gP6+g==} resolution: {integrity: sha512-z7TVwd8q4AjFo2n7oOwzNusY7xVL4uHykwX1zZRvasUQnmnXlp7Z1FZqXvhK/6hQaCvWTZmZW1bMaUWKowtvVw==}
peerDependencies: peerDependencies:
i18next: '>= 25.5.2' i18next: '>= 25.5.2'
react: '>= 16.8.0' react: '>= 16.8.0'
@ -13521,11 +13524,6 @@ packages:
'@types/react': '@types/react':
optional: true optional: true
use-sync-external-store@1.5.0:
resolution: {integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
use-sync-external-store@1.6.0: use-sync-external-store@1.6.0:
resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==} resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
peerDependencies: peerDependencies:
@ -14858,6 +14856,8 @@ snapshots:
'@ckeditor/ckeditor5-core': 47.1.0 '@ckeditor/ckeditor5-core': 47.1.0
'@ckeditor/ckeditor5-upload': 47.1.0 '@ckeditor/ckeditor5-upload': 47.1.0
ckeditor5: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41) ckeditor5: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
transitivePeerDependencies:
- supports-color
'@ckeditor/ckeditor5-ai@47.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5)': '@ckeditor/ckeditor5-ai@47.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5)':
dependencies: dependencies:
@ -15231,8 +15231,6 @@ snapshots:
'@ckeditor/ckeditor5-utils': 47.1.0 '@ckeditor/ckeditor5-utils': 47.1.0
ckeditor5: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41) ckeditor5: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
es-toolkit: 1.39.5 es-toolkit: 1.39.5
transitivePeerDependencies:
- supports-color
'@ckeditor/ckeditor5-editor-classic@47.1.0': '@ckeditor/ckeditor5-editor-classic@47.1.0':
dependencies: dependencies:
@ -15260,6 +15258,8 @@ snapshots:
'@ckeditor/ckeditor5-utils': 47.1.0 '@ckeditor/ckeditor5-utils': 47.1.0
ckeditor5: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41) ckeditor5: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
es-toolkit: 1.39.5 es-toolkit: 1.39.5
transitivePeerDependencies:
- supports-color
'@ckeditor/ckeditor5-editor-multi-root@47.1.0': '@ckeditor/ckeditor5-editor-multi-root@47.1.0':
dependencies: dependencies:
@ -15282,8 +15282,6 @@ snapshots:
'@ckeditor/ckeditor5-table': 47.1.0 '@ckeditor/ckeditor5-table': 47.1.0
'@ckeditor/ckeditor5-utils': 47.1.0 '@ckeditor/ckeditor5-utils': 47.1.0
ckeditor5: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41) ckeditor5: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
transitivePeerDependencies:
- supports-color
'@ckeditor/ckeditor5-emoji@47.1.0': '@ckeditor/ckeditor5-emoji@47.1.0':
dependencies: dependencies:
@ -15601,6 +15599,8 @@ snapshots:
'@ckeditor/ckeditor5-utils': 47.1.0 '@ckeditor/ckeditor5-utils': 47.1.0
'@ckeditor/ckeditor5-widget': 47.1.0 '@ckeditor/ckeditor5-widget': 47.1.0
ckeditor5: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41) ckeditor5: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
transitivePeerDependencies:
- supports-color
'@ckeditor/ckeditor5-mention@47.1.0(patch_hash=5981fb59ba35829e4dff1d39cf771000f8a8fdfa7a34b51d8af9549541f2d62d)': '@ckeditor/ckeditor5-mention@47.1.0(patch_hash=5981fb59ba35829e4dff1d39cf771000f8a8fdfa7a34b51d8af9549541f2d62d)':
dependencies: dependencies:
@ -15754,6 +15754,8 @@ snapshots:
'@ckeditor/ckeditor5-ui': 47.1.0 '@ckeditor/ckeditor5-ui': 47.1.0
'@ckeditor/ckeditor5-utils': 47.1.0 '@ckeditor/ckeditor5-utils': 47.1.0
ckeditor5: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41) ckeditor5: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
transitivePeerDependencies:
- supports-color
'@ckeditor/ckeditor5-restricted-editing@47.1.0': '@ckeditor/ckeditor5-restricted-editing@47.1.0':
dependencies: dependencies:
@ -15840,8 +15842,6 @@ snapshots:
'@ckeditor/ckeditor5-ui': 47.1.0 '@ckeditor/ckeditor5-ui': 47.1.0
'@ckeditor/ckeditor5-utils': 47.1.0 '@ckeditor/ckeditor5-utils': 47.1.0
ckeditor5: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41) ckeditor5: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
transitivePeerDependencies:
- supports-color
'@ckeditor/ckeditor5-special-characters@47.1.0': '@ckeditor/ckeditor5-special-characters@47.1.0':
dependencies: dependencies:
@ -15953,8 +15953,6 @@ snapshots:
'@ckeditor/ckeditor5-icons': 47.1.0 '@ckeditor/ckeditor5-icons': 47.1.0
'@ckeditor/ckeditor5-ui': 47.1.0 '@ckeditor/ckeditor5-ui': 47.1.0
'@ckeditor/ckeditor5-utils': 47.1.0 '@ckeditor/ckeditor5-utils': 47.1.0
transitivePeerDependencies:
- supports-color
'@ckeditor/ckeditor5-upload@47.1.0': '@ckeditor/ckeditor5-upload@47.1.0':
dependencies: dependencies:
@ -16930,7 +16928,7 @@ snapshots:
'@excalidraw/mermaid-to-excalidraw@1.1.2': '@excalidraw/mermaid-to-excalidraw@1.1.2':
dependencies: dependencies:
'@excalidraw/markdown-to-text': 0.1.2 '@excalidraw/markdown-to-text': 0.1.2
mermaid: 11.12.0 mermaid: 11.12.1
nanoid: 5.1.5 nanoid: 5.1.5
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
@ -17750,13 +17748,13 @@ snapshots:
'@mdn/browser-compat-data@5.7.6': {} '@mdn/browser-compat-data@5.7.6': {}
'@mermaid-js/layout-elk@0.2.0(mermaid@11.12.0)': '@mermaid-js/layout-elk@0.2.0(mermaid@11.12.1)':
dependencies: dependencies:
d3: 7.9.0 d3: 7.9.0
elkjs: 0.9.3 elkjs: 0.9.3
mermaid: 11.12.0 mermaid: 11.12.1
'@mermaid-js/parser@0.6.2': '@mermaid-js/parser@0.6.3':
dependencies: dependencies:
langium: 3.3.1 langium: 3.3.1
@ -19248,7 +19246,7 @@ snapshots:
'@types/node': 22.18.12 '@types/node': 22.18.12
optional: true optional: true
'@types/archiver@6.0.4': '@types/archiver@7.0.0':
dependencies: dependencies:
'@types/readdir-glob': 1.1.5 '@types/readdir-glob': 1.1.5
@ -19312,9 +19310,9 @@ snapshots:
dependencies: dependencies:
'@types/node': 22.18.12 '@types/node': 22.18.12
'@types/cookie-parser@1.4.10(@types/express@5.0.4)': '@types/cookie-parser@1.4.10(@types/express@5.0.5)':
dependencies: dependencies:
'@types/express': 5.0.4 '@types/express': 5.0.5
'@types/cookie@0.6.0': '@types/cookie@0.6.0':
optional: true optional: true
@ -19496,19 +19494,19 @@ snapshots:
'@types/body-parser': 1.19.6 '@types/body-parser': 1.19.6
'@types/express-serve-static-core': 5.1.0 '@types/express-serve-static-core': 5.1.0
'@types/qs': 6.14.0 '@types/qs': 6.14.0
'@types/serve-static': 1.15.10 '@types/serve-static': 2.2.0
'@types/express@5.0.3': '@types/express@5.0.3':
dependencies: dependencies:
'@types/body-parser': 1.19.6 '@types/body-parser': 1.19.6
'@types/express-serve-static-core': 5.1.0 '@types/express-serve-static-core': 5.1.0
'@types/serve-static': 1.15.10 '@types/serve-static': 2.2.0
'@types/express@5.0.4': '@types/express@5.0.5':
dependencies: dependencies:
'@types/body-parser': 1.19.6 '@types/body-parser': 1.19.6
'@types/express-serve-static-core': 5.1.0 '@types/express-serve-static-core': 5.1.0
'@types/serve-static': 1.15.10 '@types/serve-static': 2.2.0
'@types/fs-extra@11.0.4': '@types/fs-extra@11.0.4':
dependencies: dependencies:
@ -19705,7 +19703,7 @@ snapshots:
'@types/serve-index@1.9.4': '@types/serve-index@1.9.4':
dependencies: dependencies:
'@types/express': 5.0.4 '@types/express': 5.0.5
'@types/serve-static@1.15.10': '@types/serve-static@1.15.10':
dependencies: dependencies:
@ -19713,6 +19711,11 @@ snapshots:
'@types/node': 22.18.12 '@types/node': 22.18.12
'@types/send': 0.17.5 '@types/send': 0.17.5
'@types/serve-static@2.2.0':
dependencies:
'@types/http-errors': 2.0.4
'@types/node': 22.18.12
'@types/sinonjs__fake-timers@8.1.5': {} '@types/sinonjs__fake-timers@8.1.5': {}
'@types/sizzle@2.3.9': {} '@types/sizzle@2.3.9': {}
@ -19747,7 +19750,7 @@ snapshots:
'@types/swagger-ui-express@4.1.8': '@types/swagger-ui-express@4.1.8':
dependencies: dependencies:
'@types/express': 5.0.3 '@types/express': 5.0.3
'@types/serve-static': 1.15.10 '@types/serve-static': 2.2.0
'@types/swagger-ui@5.21.1': {} '@types/swagger-ui@5.21.1': {}
@ -19765,7 +19768,7 @@ snapshots:
'@types/trusted-types@2.0.7': '@types/trusted-types@2.0.7':
optional: true optional: true
'@types/turndown@5.0.5': {} '@types/turndown@5.0.6': {}
'@types/unist@3.0.3': {} '@types/unist@3.0.3': {}
@ -20579,7 +20582,7 @@ snapshots:
await-to-js@3.0.0: {} await-to-js@3.0.0: {}
axios@1.12.2(debug@4.4.3): axios@1.13.0(debug@4.4.3):
dependencies: dependencies:
follow-redirects: 1.15.9(debug@4.4.3) follow-redirects: 1.15.9(debug@4.4.3)
form-data: 4.0.4 form-data: 4.0.4
@ -22064,7 +22067,7 @@ snapshots:
d3-transition: 3.0.1(d3-selection@3.0.0) d3-transition: 3.0.1(d3-selection@3.0.0)
d3-zoom: 3.0.0 d3-zoom: 3.0.0
dagre-d3-es@7.0.11: dagre-d3-es@7.0.13:
dependencies: dependencies:
d3: 7.9.0 d3: 7.9.0
lodash-es: 4.17.21 lodash-es: 4.17.21
@ -25641,18 +25644,18 @@ snapshots:
merge2@1.4.1: {} merge2@1.4.1: {}
mermaid@11.12.0: mermaid@11.12.1:
dependencies: dependencies:
'@braintree/sanitize-url': 7.1.1 '@braintree/sanitize-url': 7.1.1
'@iconify/utils': 3.0.1 '@iconify/utils': 3.0.1
'@mermaid-js/parser': 0.6.2 '@mermaid-js/parser': 0.6.3
'@types/d3': 7.4.3 '@types/d3': 7.4.3
cytoscape: 3.31.2 cytoscape: 3.31.2
cytoscape-cose-bilkent: 4.1.0(cytoscape@3.31.2) cytoscape-cose-bilkent: 4.1.0(cytoscape@3.31.2)
cytoscape-fcose: 2.2.0(cytoscape@3.31.2) cytoscape-fcose: 2.2.0(cytoscape@3.31.2)
d3: 7.9.0 d3: 7.9.0
d3-sankey: 0.12.3 d3-sankey: 0.12.3
dagre-d3-es: 7.0.11 dagre-d3-es: 7.0.13
dayjs: 1.11.18 dayjs: 1.11.18
dompurify: 3.2.5 dompurify: 3.2.5
katex: 0.16.25 katex: 0.16.25
@ -27832,7 +27835,7 @@ snapshots:
react: 16.14.0 react: 16.14.0
scheduler: 0.26.0 scheduler: 0.26.0
react-i18next@16.2.0(i18next@25.6.0(typescript@5.9.3))(react-dom@19.1.0(react@16.14.0))(react@16.14.0)(typescript@5.9.3): react-i18next@16.2.1(i18next@25.6.0(typescript@5.9.3))(react-dom@19.1.0(react@16.14.0))(react@16.14.0)(typescript@5.9.3):
dependencies: dependencies:
'@babel/runtime': 7.28.4 '@babel/runtime': 7.28.4
html-parse-stringify: 3.0.1 html-parse-stringify: 3.0.1
@ -30086,10 +30089,6 @@ snapshots:
optionalDependencies: optionalDependencies:
'@types/react': 19.1.7 '@types/react': 19.1.7
use-sync-external-store@1.5.0(react@16.14.0):
dependencies:
react: 16.14.0
use-sync-external-store@1.6.0(react@16.14.0): use-sync-external-store@1.6.0(react@16.14.0):
dependencies: dependencies:
react: 16.14.0 react: 16.14.0
@ -30900,7 +30899,7 @@ snapshots:
zustand@4.5.6(@types/react@19.1.7)(react@16.14.0): zustand@4.5.6(@types/react@19.1.7)(react@16.14.0):
dependencies: dependencies:
use-sync-external-store: 1.5.0(react@16.14.0) use-sync-external-store: 1.6.0(react@16.14.0)
optionalDependencies: optionalDependencies:
'@types/react': 19.1.7 '@types/react': 19.1.7
react: 16.14.0 react: 16.14.0