diff --git a/assets/i18n/en_US.json b/assets/i18n/en_US.json index fb3004c7..06af7447 100644 --- a/assets/i18n/en_US.json +++ b/assets/i18n/en_US.json @@ -142,8 +142,12 @@ "widgetTitle": "Installer", "installType": "Select install type", "installTypeDescription": "Select the installation type to proceed with.", + "installButton": "Install", - "installRootButton": "Install as Root", + "installRootType": "Root", + "installNonRootType": "Non-root", + "installRecommendedType": "Recommended", + "pressBackAgain": "Press back again to cancel", "openButton": "Open", "shareButton": "Share file", diff --git a/lib/ui/views/installer/installer_viewmodel.dart b/lib/ui/views/installer/installer_viewmodel.dart index 489f75dd..61cc877a 100644 --- a/lib/ui/views/installer/installer_viewmodel.dart +++ b/lib/ui/views/installer/installer_viewmodel.dart @@ -206,8 +206,8 @@ class InstallerViewModel extends BaseViewModel { ), ), RadioListTile( - title: const Text('Non-root'), - subtitle: const Text('Recommended'), + title: I18nText('installerView.installNonRootType'), + subtitle: I18nText('installerView.installRecommendedType'), contentPadding: const EdgeInsets.symmetric(horizontal: 10), value: 0, groupValue: value, @@ -216,7 +216,7 @@ class InstallerViewModel extends BaseViewModel { }, ), RadioListTile( - title: const Text('Root'), + title: I18nText('installerView.installRootType'), contentPadding: const EdgeInsets.symmetric(horizontal: 10), value: 1, groupValue: value,