mirror of
https://github.com/zadam/trilium.git
synced 2025-10-20 23:29:02 +02:00
feat(website/i18n): translate extensibility benefits
This commit is contained in:
parent
ee9de82203
commit
e32ba61a3c
@ -58,5 +58,16 @@
|
||||
"others_saved_searches": "saved searches",
|
||||
"others_render_note": "render note",
|
||||
"others_webview": "web views"
|
||||
},
|
||||
"extensibility_benefits": {
|
||||
"title": "Sharing & extensibility",
|
||||
"import_export_title": "Import/export",
|
||||
"import_export_description": "Easily interact with other applications using Markdown, ENEX, OML formats.",
|
||||
"share_title": "Share notes on the web",
|
||||
"share_description": "If you have a server, it can be used to share a subset of your notes with other people.",
|
||||
"scripting_title": "Advanced scripting",
|
||||
"scripting_description": "Build your own integrations within Trilium with custom widgets, or server-side logic.",
|
||||
"api_title": "REST API",
|
||||
"api_description": "Interact with Trilium programatically using its builtin REST API."
|
||||
}
|
||||
}
|
||||
|
@ -187,12 +187,12 @@ function NoteTypesSection() {
|
||||
function ExtensibilityBenefitsSection() {
|
||||
return (
|
||||
<>
|
||||
<Section className="benefits accented" title="Sharing & extensibility">
|
||||
<Section className="benefits accented" title={t("extensibility_benefits.title")}>
|
||||
<div className="benefits-container grid-4-cols">
|
||||
<Card iconSvg={importExportIcon} title="Import/export" moreInfoUrl="https://docs.triliumnotes.org/User%20Guide/User%20Guide/Basic%20Concepts%20and%20Features/Import%20%26%20Export/Markdown/index.html">Easily interact with other applications using Markdown, ENEX, OML formats.</Card>
|
||||
<Card iconSvg={shareIcon} title="Share notes on the web" moreInfoUrl="https://docs.triliumnotes.org/User%20Guide/User%20Guide/Advanced%20Usage/Sharing/Serving%20directly%20the%20content%20o.html">If you have a server, it can be used to share a subset of your notes with other people.</Card>
|
||||
<Card iconSvg={codeIcon} title="Advanced scripting" moreInfoUrl="https://docs.triliumnotes.org/User%20Guide/User%20Guide/Scripting/Custom%20Widgets/index.html">Build your own integrations within Trilium with custom widgets, or server-side logic.</Card>
|
||||
<Card iconSvg={restApiIcon} title="REST API" moreInfoUrl="https://docs.triliumnotes.org/User%20Guide/User%20Guide/Advanced%20Usage/ETAPI%20%28REST%20API%29/index.html">Interact with Trilium programatically using its builtin REST API.</Card>
|
||||
<Card iconSvg={importExportIcon} title={t("extensibility_benefits.import_export_title")} moreInfoUrl="https://docs.triliumnotes.org/User%20Guide/User%20Guide/Basic%20Concepts%20and%20Features/Import%20%26%20Export/Markdown/index.html">{t("extensibility_benefits.import_export_description")}</Card>
|
||||
<Card iconSvg={shareIcon} title={t("extensibility_benefits.share_title")} moreInfoUrl="https://docs.triliumnotes.org/User%20Guide/User%20Guide/Advanced%20Usage/Sharing/Serving%20directly%20the%20content%20o.html">{t("extensibility_benefits.share_description")}</Card>
|
||||
<Card iconSvg={codeIcon} title={t("extensibility_benefits.scripting_title")} moreInfoUrl="https://docs.triliumnotes.org/User%20Guide/User%20Guide/Scripting/Custom%20Widgets/index.html">{t("extensibility_benefits.scripting_description")}</Card>
|
||||
<Card iconSvg={restApiIcon} title={t("extensibility_benefits.api_title")} moreInfoUrl="https://docs.triliumnotes.org/User%20Guide/User%20Guide/Advanced%20Usage/ETAPI%20%28REST%20API%29/index.html">{t("extensibility_benefits.api_description")}</Card>
|
||||
</div>
|
||||
</Section>
|
||||
</>
|
||||
|
Loading…
x
Reference in New Issue
Block a user