mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-06-12 12:47:37 +02:00
fix: Use correct installation type labels
This commit is contained in:
@ -184,7 +184,7 @@ class AppInfoView extends StatelessWidget {
|
||||
),
|
||||
const SizedBox(height: 10),
|
||||
I18nText(
|
||||
'appInfoView.unpatchButton',
|
||||
'appInfoView.unmountButton',
|
||||
child: Text(
|
||||
'',
|
||||
style: TextStyle(
|
||||
@ -236,8 +236,8 @@ class AppInfoView extends StatelessWidget {
|
||||
),
|
||||
),
|
||||
subtitle: app.isRooted
|
||||
? I18nText('appInfoView.rootTypeLabel')
|
||||
: I18nText('appInfoView.nonRootTypeLabel'),
|
||||
? I18nText('appInfoView.mountTypeLabel')
|
||||
: I18nText('appInfoView.regularTypeLabel'),
|
||||
),
|
||||
const SizedBox(height: 4),
|
||||
ListTile(
|
||||
|
@ -80,10 +80,10 @@ class AppInfoViewModel extends BaseViewModel {
|
||||
context: context,
|
||||
builder: (context) => AlertDialog(
|
||||
title: I18nText(
|
||||
'appInfoView.unpatchButton',
|
||||
'appInfoView.unmountButton',
|
||||
),
|
||||
content: I18nText(
|
||||
'appInfoView.unpatchDialogText',
|
||||
'appInfoView.unmountDialogText',
|
||||
),
|
||||
actions: <Widget>[
|
||||
TextButton(
|
||||
|
Reference in New Issue
Block a user