chore(website/i18n): few translations in support us

This commit is contained in:
Elian Doran 2025-10-13 18:42:15 +03:00
parent 828ad79de2
commit b9e1b46884
No known key found for this signature in database
2 changed files with 14 additions and 6 deletions

View File

@ -121,5 +121,12 @@
"github_discussions": "GitHub Discussions", "github_discussions": "GitHub Discussions",
"matrix": "Matrix", "matrix": "Matrix",
"reddit": "Reddit" "reddit": "Reddit"
},
"support_us": {
"title": "Support us",
"github_sponsors": "GitHub Sponsors",
"paypal": "PayPal",
"buy_me_a_coffee": "Buy Me A Coffee",
"other_ways_to_contribute": "Other ways to contribute"
} }
} }

View File

@ -6,13 +6,14 @@ 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";
export default function Donate() { export default function Donate() {
usePageTitle("Support us"); usePageTitle(t("support_us.title"));
return ( return (
<> <>
<Section title="Support us" className="donate fill"> <Section title={t("support_us.title")} className="donate fill">
<div class="grid-2-cols"> <div class="grid-2-cols">
<Card title="Financial donations"> <Card title="Financial donations">
<p> <p>
@ -27,7 +28,7 @@ export default function Donate() {
<Button <Button
iconSvg={githubIcon} iconSvg={githubIcon}
href="https://github.com/sponsors/eliandoran" href="https://github.com/sponsors/eliandoran"
text="GitHub Sponsors" text={t("support_us.github_sponsors")}
openExternally openExternally
/> />
</li> </li>
@ -36,7 +37,7 @@ export default function Donate() {
<Button <Button
iconSvg={paypalIcon} iconSvg={paypalIcon}
href="https://paypal.me/eliandoran" href="https://paypal.me/eliandoran"
text="PayPal" text={t("support_us.paypal")}
openExternally openExternally
outline outline
/> />
@ -46,7 +47,7 @@ export default function Donate() {
<Button <Button
iconSvg={buyMeACoffeeIcon} iconSvg={buyMeACoffeeIcon}
href="https://buymeacoffee.com/eliandoran" href="https://buymeacoffee.com/eliandoran"
text="Buy Me A Coffee" text={t("support_us.buy_me_a_coffee")}
openExternally openExternally
outline outline
/> />
@ -54,7 +55,7 @@ export default function Donate() {
</ul> </ul>
</Card> </Card>
<Card title="Other ways to contribute"> <Card title={t("support_us.other_ways_to_contribute")}>
<ul> <ul>
<li>Translate the application into your native language via <Link href="https://hosted.weblate.org/engage/trilium/" openExternally>Weblate</Link>.</li> <li>Translate the application into your native language via <Link href="https://hosted.weblate.org/engage/trilium/" openExternally>Weblate</Link>.</li>
<li>Interact with the community on <Link href="https://github.com/orgs/TriliumNext/discussions" openExternally>GitHub Discussions</Link> or on <Link href="https://matrix.to/#/#triliumnext:matrix.org" openExternally>Matrix</Link>.</li> <li>Interact with the community on <Link href="https://github.com/orgs/TriliumNext/discussions" openExternally>GitHub Discussions</Link> or on <Link href="https://matrix.to/#/#triliumnext:matrix.org" openExternally>Matrix</Link>.</li>