File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
app/src/main/java/com/github/capntrips/kernelflasher/ui/components Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -82,13 +82,13 @@ fun SlotCard(
82
82
if (isSlotScreen && viewModel.slotSuffix != " " )
83
83
{
84
84
DataRow (
85
- label = " Unbootable " ,
85
+ label = stringResource( R .string.unbootable) ,
86
86
value = viewModel.slotInfo.bootSlotInfo.unbootable ? : stringResource(R .string.not_found),
87
87
mutableMaxWidth = cardWidth,
88
88
valueColor = if (viewModel.slotInfo.bootSlotInfo.unbootable == " Yes" ) Color .Red else Color .Unspecified
89
89
)
90
90
DataRow (
91
- label = " Successful " ,
91
+ label = stringResource( R .string.successful) ,
92
92
value = viewModel.slotInfo.bootSlotInfo.successful ? : stringResource(R .string.not_found),
93
93
mutableMaxWidth = cardWidth,
94
94
valueColor = if (viewModel.slotInfo.bootSlotInfo.successful == " No" ) Color .Red else Color .Unspecified
You can’t perform that action at this time.
0 commit comments