Updated on 2026-08-14

This commit is contained in:
Tangem 2022-08-04 12:48:44 +04:00
parent facf309dc6
commit dc2b73c101
8 changed files with 37 additions and 34 deletions

View file

@ -50,8 +50,8 @@ sealed class CardInfo(
)
object ResetToFactorySettings : CardInfo(
titleRes = TextReference.Res(R.string.details_row_title_reset_factory_settings),
subtitle = TextReference.Res(R.string.card_settings_reset_factory_footer),
titleRes = TextReference.Res(R.string.card_settings_reset_card_to_factory),
subtitle = TextReference.Res(R.string.card_settings_reset_card_to_factory_footer),
clickable = true,
)
}

View file

@ -36,7 +36,7 @@ fun ResetCardScreen(
content = { ResetCardView(state = state, modifier = modifier) },
background =
{ Image(painter = painterResource(id = R.drawable.ic_reset_background), contentDescription = "") },
titleRes = R.string.details_row_title_reset_factory_settings,
titleRes = R.string.reset_card_to_factory_navigation_title,
onBackClick = onBackPressed,
)
}
@ -62,7 +62,7 @@ fun ResetCardView(
Spacer(modifier = modifier.size(24.dp))
Text(
text = stringResource(id = R.string.reset_factory_warning),
text = stringResource(id = R.string.reset_card_to_factory_message),
modifier = modifier.padding(start = 20.dp, end = 20.dp),
style = TangemTypography.body1,
color = colorResource(id = R.color.text_secondary),
@ -96,7 +96,7 @@ fun ResetCardView(
)
}
Text(
text = stringResource(id = R.string.reset_factory_confirmation),
text = stringResource(id = R.string.reset_card_to_factory_warning_message),
style = TangemTypography.body2,
color = colorResource(id = R.color.text_secondary),
)
@ -108,7 +108,7 @@ fun ResetCardView(
.padding(start = 16.dp, end = 16.dp, bottom = 32.dp),
) {
DetailsMainButton(
title = stringResource(id = R.string.reset_factory_button),
title = stringResource(id = R.string.reset_card_to_factory_button_title),
onClick = state.onResetButtonClick,
enabled = state.resetButtonEnabled,
)