diff --git a/assets/i18n/en_US.json b/assets/i18n/en_US.json index e49a4d61ee..0c61436fba 100644 --- a/assets/i18n/en_US.json +++ b/assets/i18n/en_US.json @@ -53,7 +53,8 @@ "widgetTitle": "Patcher", "patchButton": "Patch", "patchDialogText": "You have selected a resource patch and a split APK installation has been detected, so patching errors may occur.\nAre you sure you want to proceed?", - "armv7WarningDialogText": "Patching on ARMv7 devices is not yet supported and might fail. Proceed anyways?" + "armv7WarningDialogText": "Patching on ARMv7 devices is not yet supported and might fail. Proceed anyways?", + "splitApkWarningDialogText": "Patching a split APK is not yet supported and might fail. Proceed anyways?" }, "appSelectorCard": { "widgetTitle": "Select an application", diff --git a/lib/ui/views/patcher/patcher_viewmodel.dart b/lib/ui/views/patcher/patcher_viewmodel.dart index f97f131024..68f353979c 100644 --- a/lib/ui/views/patcher/patcher_viewmodel.dart +++ b/lib/ui/views/patcher/patcher_viewmodel.dart @@ -64,7 +64,7 @@ class PatcherViewModel extends BaseViewModel { builder: (context) => AlertDialog( title: I18nText('warning'), backgroundColor: Theme.of(context).colorScheme.secondaryContainer, - content: I18nText('patcherView.armv7WarningDialogText'), + content: I18nText('patcherView.splitApkWarningDialogText'), actions: [ CustomMaterialButton( label: I18nText('noButton'),