diff --git a/app/src/main/java/com/github/capntrips/kernelflasher/ui/components/SlotCard.kt b/app/src/main/java/com/github/capntrips/kernelflasher/ui/components/SlotCard.kt index c0c9594..d0f74bb 100644 --- a/app/src/main/java/com/github/capntrips/kernelflasher/ui/components/SlotCard.kt +++ b/app/src/main/java/com/github/capntrips/kernelflasher/ui/components/SlotCard.kt @@ -82,13 +82,13 @@ fun SlotCard( if(isSlotScreen && viewModel.slotSuffix != "") { DataRow( - label = "Unbootable", + label = stringResource(R.string.unbootable), value = viewModel.slotInfo.bootSlotInfo.unbootable ?: stringResource(R.string.not_found), mutableMaxWidth = cardWidth, valueColor = if (viewModel.slotInfo.bootSlotInfo.unbootable == "Yes") Color.Red else Color.Unspecified ) DataRow( - label = "Successful", + label = stringResource(R.string.successful), value = viewModel.slotInfo.bootSlotInfo.successful ?: stringResource(R.string.not_found), mutableMaxWidth = cardWidth, valueColor = if (viewModel.slotInfo.bootSlotInfo.successful == "No") Color.Red else Color.Unspecified diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index 710de34..5ef77cc 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -69,5 +69,7 @@ Backup Partizioni Selezionate Formato vendor_boot.img Attivo + Non avviabile + Riuscito diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 6b6f7f0..f0b3434 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -69,5 +69,7 @@ Backup Selected Partitions vendor_boot.img Format Active + Unbootable + Successful - \ No newline at end of file +