File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
java/com/github/capntrips/kernelflasher/ui/components Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -82,13 +82,13 @@ fun SlotCard(
8282 if (isSlotScreen && viewModel.slotSuffix != " " )
8383 {
8484 DataRow (
85- label = " Unbootable " ,
85+ label = stringResource( R .string.unbootable) ,
8686 value = viewModel.slotInfo.bootSlotInfo.unbootable ? : stringResource(R .string.not_found),
8787 mutableMaxWidth = cardWidth,
8888 valueColor = if (viewModel.slotInfo.bootSlotInfo.unbootable == " Yes" ) Color .Red else Color .Unspecified
8989 )
9090 DataRow (
91- label = " Successful " ,
91+ label = stringResource( R .string.successful) ,
9292 value = viewModel.slotInfo.bootSlotInfo.successful ? : stringResource(R .string.not_found),
9393 mutableMaxWidth = cardWidth,
9494 valueColor = if (viewModel.slotInfo.bootSlotInfo.successful == " No" ) Color .Red else Color .Unspecified
Original file line number Diff line number Diff line change 6969 <string name =" backup_now" >Backup Partizioni Selezionate</string >
7070 <string name =" vendor_boot_fmt" >Formato vendor_boot.img</string >
7171 <string name =" active" >Attivo</string >
72+ <string name =" unbootable" >Non avviabile</string >
73+ <string name =" successful" >Riuscito</string >
7274 <!-- TODO: Make error and success messages string resources -->
7375</resources >
Original file line number Diff line number Diff line change 6969 <string name =" backup_now" >Backup Selected Partitions</string >
7070 <string name =" vendor_boot_fmt" >vendor_boot.img Format</string >
7171 <string name =" active" >Active</string >
72+ <string name =" unbootable" >Unbootable</string >
73+ <string name =" successful" >Successful</string >
7274 <!-- TODO: Make error and success messages string resources -->
73- </resources >
75+ </resources >
You can’t perform that action at this time.
0 commit comments