mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-08-05 05:15:27 +00:00
chore(core/eckhart): fix send title
[no changelog]
This commit is contained in:
parent
590dcb9e56
commit
5272f2af8f
@ -345,7 +345,7 @@ pub fn new_confirm_output(
|
||||
.into_paragraphs()
|
||||
.with_placement(LinearPlacement::vertical()),
|
||||
)
|
||||
.with_header(Header::new(TR::words__amount.into()).with_menu_button())
|
||||
.with_header(Header::new(TR::words__send.into()).with_menu_button())
|
||||
.with_action_bar(ActionBar::new_double(
|
||||
Button::with_icon(theme::ICON_CHEVRON_UP),
|
||||
Button::with_text(TR::buttons__confirm.into()).styled(theme::button_confirm()),
|
||||
|
@ -449,7 +449,7 @@ async def confirm_output(
|
||||
|
||||
await raise_if_not_confirmed(
|
||||
trezorui_api.flow_confirm_output(
|
||||
title=TR.words__address,
|
||||
title=TR.words__send,
|
||||
subtitle=title,
|
||||
message=address,
|
||||
extra=None,
|
||||
@ -654,7 +654,7 @@ def confirm_amount(
|
||||
br_name: str = "confirm_amount",
|
||||
br_code: ButtonRequestType = BR_CODE_OTHER,
|
||||
) -> Awaitable[None]:
|
||||
description = description or f"{TR.words__amount}:" # def_arg
|
||||
description = description or f"{TR.words__send}:" # def_arg
|
||||
return confirm_value(
|
||||
title,
|
||||
amount,
|
||||
|
Loading…
Reference in New Issue
Block a user