From 7c3069163ca0465e92cb1e7b39024572591f8f34 Mon Sep 17 00:00:00 2001 From: DennisBauer <37552885+DennisBauer@users.noreply.github.com> Date: Tue, 11 Aug 2026 15:51:29 +0200 Subject: [PATCH] copy: reword features sub, add-entry caption, privacy claim MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Three strings read badly. The features sub-headline leaned on an abstract "messy reality" and an abroad beat that never landed; concrete scenes carry it better. The add-entry caption sold simplicity only, hiding that the split is flexible. And counting permissions is an engineer's framing — instant in-app deletion is the stronger, equally checkable claim, so claims[3] now points at the flow in src/pages/account-deletion.mdx and wears the shield. --- src/components/PrivacyBlock.astro | 6 +++--- src/i18n/de.ts | 10 +++++----- src/i18n/en.ts | 10 +++++----- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/components/PrivacyBlock.astro b/src/components/PrivacyBlock.astro index 64812b0..dff721a 100644 --- a/src/components/PrivacyBlock.astro +++ b/src/components/PrivacyBlock.astro @@ -16,10 +16,10 @@ const s = t(locale); * Every claim here is checkable in the app source, which is the point of making * them: no-ads (no advertising SDK in libs.versions.toml), no-analytics (Firebase * Analytics explicitly deactivated in androidApp/src/main/AndroidManifest.xml:19-22), - * EU hosting (PRIVACY.md:105,171), three permissions (the only - * entries across every manifest in the repo). + * EU hosting (PRIVACY.md:105,171), instant deletion (the flow documented in + * src/pages/account-deletion.mdx, which deletes the account immediately). */ -const icons: IconName[] = ["no-ads", "no-analytics", "server", "key"]; +const icons: IconName[] = ["no-ads", "no-analytics", "server", "shield"]; ---