From e10c8c723463b6d2f018e348066489c969b3ab5e Mon Sep 17 00:00:00 2001 From: IanRDavies Date: Sat, 2 Apr 2022 10:15:44 +0100 Subject: [PATCH] android: minor text changes (#491) * minor changes for readability * update notifications popup wording Co-authored-by: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com> --- .../app/src/main/java/chat/simplex/app/model/SimpleXAPI.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/android/app/src/main/java/chat/simplex/app/model/SimpleXAPI.kt b/apps/android/app/src/main/java/chat/simplex/app/model/SimpleXAPI.kt index 2f80a0f5e9..53968f7719 100644 --- a/apps/android/app/src/main/java/chat/simplex/app/model/SimpleXAPI.kt +++ b/apps/android/app/src/main/java/chat/simplex/app/model/SimpleXAPI.kt @@ -405,11 +405,11 @@ open class ChatController(private val ctrl: ChatCtrl, private val ntfManager: Nt Column { Text( buildAnnotatedString { - append("To preserve your privacy instead of push notifications the app has a ") + append("To preserve your privacy, instead of push notifications the app has a ") withStyle(SpanStyle(fontWeight = FontWeight.Medium)) { append("SimpleX background service") } - append(" – it uses only a few percents of battery a day.") + append(" – it uses a few percent of the battery per day.") }, Modifier.padding(bottom = 8.dp) ) @@ -418,7 +418,7 @@ open class ChatController(private val ctrl: ChatCtrl, private val ntfManager: Nt withStyle(SpanStyle(fontWeight = FontWeight.Medium)) { append("It can be disabled via settings") } - append(" – notification would still be shown while the app is running.") + append(" – notifications will still be shown while the app is running.") } ) }