Updated on 2026-08-14

This commit is contained in:
Tangem 2026-07-07 12:31:42 +02:00
parent e29dd815ee
commit aa89d11b7c
11 changed files with 284 additions and 35 deletions

View file

@ -55,7 +55,7 @@ internal sealed class WalletActionButtons(
override val onClick: () -> Unit,
override val isEnabled: Boolean,
) : WalletActionButtons(
text = resourceReference(R.string.common_add_funds),
text = resourceReference(R.string.actionbutton_addfunds_title),
iconRes = R.drawable.ic_arrow_down_24,
)
@ -63,7 +63,7 @@ internal sealed class WalletActionButtons(
override val onClick: () -> Unit,
override val isEnabled: Boolean,
) : WalletActionButtons(
text = resourceReference(R.string.common_swap),
text = resourceReference(R.string.actionbutton_swap_title),
iconRes = R.drawable.ic_exchange_default_24,
)
@ -79,7 +79,7 @@ internal sealed class WalletActionButtons(
override val onClick: () -> Unit,
override val isEnabled: Boolean,
) : WalletActionButtons(
text = resourceReference(R.string.common_transfer),
text = resourceReference(R.string.actionbutton_transfer_title),
iconRes = R.drawable.ic_arrow_up_24,
)
}