diff --git a/apps/client/src/translations/en/translation.json b/apps/client/src/translations/en/translation.json index fa10640cc8..5732fb857f 100644 --- a/apps/client/src/translations/en/translation.json +++ b/apps/client/src/translations/en/translation.json @@ -1,19 +1,11 @@ { - "about": { - "title": "About Trilium Notes", - "homepage": "Homepage:", - "app_version": "App version:", - "db_version": "DB version:", - "sync_version": "Sync version:", - "build_date": "Build date:", - "build_revision": "Build revision:", - "data_directory": "Data directory:", - - "version_label": "Version", + "about": { + "version_label": "Version:", "version": "app: {{appVersion}}, database: {{dbVersion}}, sync protocol: {{syncVersion}}", "build_info": "{{buildDate}}, revision: {{buildRevision}}", - "contributors_label": "Contributors" - + "contributors_label": "Contributors:", + "data_directory": "Data directory:", + "donate": "Donate" }, "toast": { "critical-error": { diff --git a/apps/client/src/widgets/dialogs/about.css b/apps/client/src/widgets/dialogs/about.css index 2ea9eeb628..09b22b9ead 100644 --- a/apps/client/src/widgets/dialogs/about.css +++ b/apps/client/src/widgets/dialogs/about.css @@ -1,11 +1,37 @@ -.property-sheet-card { - font-size: .85em; - - .tn-card-section { +.about-dialog { + .about-dialog-content { display: flex; + flex-direction: column; + align-items: center; + } - > :first-child { - width: 100px; + .property-sheet-card { + margin-block: 30px; + font-size: .85em; + + .tn-card-section { + display: flex; + + > :first-child { + width: 100px; + } + } + } + + footer { + display: flex; + justify-content: center; + gap: 20px; + margin-bottom: 30px; + + a { + display: flex; + flex-direction: column; + align-items: center; + + &::after { + display: none; + } } } } \ No newline at end of file diff --git a/apps/client/src/widgets/dialogs/about.tsx b/apps/client/src/widgets/dialogs/about.tsx index 47da8e9cf8..a8bce73e48 100644 --- a/apps/client/src/widgets/dialogs/about.tsx +++ b/apps/client/src/widgets/dialogs/about.tsx @@ -28,13 +28,14 @@ export default function AboutDialog() { }} onHidden={() => setShown(false)} > -