fix: Use correct installation type labels

This commit is contained in:
oSumAtrIX
2023-12-23 22:07:08 +01:00
parent 7426f5484d
commit 1928b150ad
3 changed files with 10 additions and 10 deletions

View File

@ -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(

View File

@ -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(