From a5a93c3e3f20f3b9cd83cf28a5d7a7aa8356c9c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Allan=20Nordh=C3=B8y?= Date: Sat, 20 Jan 2024 10:29:44 +0000 Subject: [PATCH] about.dart language reworked --- app/lib/pages/about.dart | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/app/lib/pages/about.dart b/app/lib/pages/about.dart index a99eeb39..415f2c4a 100644 --- a/app/lib/pages/about.dart +++ b/app/lib/pages/about.dart @@ -241,15 +241,12 @@ class _About extends State { Padding( padding: EdgeInsets.all(TraleTheme.of(context)!.padding), child: const Text( - 'This app completely respects your privacy. This means that we ' - 'do not earn anything with it and we do not get error logs. If ' - 'you are facing problems, please open an issue at GitLab.\n\n' - 'The purpose of this app is to provide a simple log of the ' - ' weight together with a short-term extrapolation. Nothing more,' - ' but nothing less. Therefore, we do not plan to add fancy ' - 'features.\n\n' - 'We are only two devs with little sparse time. If you like the ' - 'work consider contributing or donating. \u{1F642}', + 'A simple weight log with short-term extrapolation.\n\n' + 'Your privacy is respected.\n' + 'No revenue sources in the app, nor error logs sent.\n' + 'Please open an issue if you have problems.\n\n' + 'Made by two devs with little spare time.\n' + 'Consider contributing or donating. \u{1F642}', textAlign: TextAlign.justify, ), ), @@ -295,7 +292,7 @@ class _About extends State { maxLines: 1, ), trailing: AutoSizeText( - 'GNU APGLv3', + 'GNU APGLv3+', style: Theme.of(context).textTheme.bodyLarge, maxLines: 1, ),