From 2f471b3de457e0d6304675935c8025eef39d087c Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Sat, 5 Aug 2023 15:19:03 +0200 Subject: [PATCH] fix: use user friendly strings (#1088) --- assets/i18n/en_US.json | 8 ++++---- lib/ui/views/home/home_viewmodel.dart | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/assets/i18n/en_US.json b/assets/i18n/en_US.json index 532cf3d4..4a0383ad 100644 --- a/assets/i18n/en_US.json +++ b/assets/i18n/en_US.json @@ -33,10 +33,10 @@ "updatePatchesDialogTitle": "Update ReVanced Patches", "updateChangelogTitle": "Changelog", - "patchesConsentDialogText": "ReVanced Patches need to be downloaded to patch apps.", - "patchesConsentDialogText2": "This will reveal your IP address to {url}.", - "patchesConsentDialogText3": "Auto update", - "patchesConsentDialogText3Sub": "You can still change this in the settings later", + "patchesConsentDialogText": "ReVanced Patches needs to be downloaded.", + "patchesConsentDialogText2": "This will connect you to {url}.", + "patchesConsentDialogText3": "Auto update?", + "patchesConsentDialogText3Sub": "You can change this in settings at a later time.", "notificationTitle": "Update downloaded", "notificationText": "Tap to install the update", diff --git a/lib/ui/views/home/home_viewmodel.dart b/lib/ui/views/home/home_viewmodel.dart index 3abe3c3b..70a06d57 100644 --- a/lib/ui/views/home/home_viewmodel.dart +++ b/lib/ui/views/home/home_viewmodel.dart @@ -174,7 +174,7 @@ class HomeViewModel extends BaseViewModel { context: context, barrierDismissible: false, builder: (context) => AlertDialog( - title: const Text('ReVanced Patches'), + title: const Text('Download ReVanced Patches?'), content: ValueListenableBuilder( valueListenable: autoUpdate, builder: (context, value, child) {