1
0
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:
Lukas Bielesch 2025-06-18 11:25:17 +02:00 committed by Lukáš Bielesch
parent 590dcb9e56
commit 5272f2af8f
2 changed files with 3 additions and 3 deletions

View File

@ -345,7 +345,7 @@ pub fn new_confirm_output(
.into_paragraphs() .into_paragraphs()
.with_placement(LinearPlacement::vertical()), .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( .with_action_bar(ActionBar::new_double(
Button::with_icon(theme::ICON_CHEVRON_UP), Button::with_icon(theme::ICON_CHEVRON_UP),
Button::with_text(TR::buttons__confirm.into()).styled(theme::button_confirm()), Button::with_text(TR::buttons__confirm.into()).styled(theme::button_confirm()),

View File

@ -449,7 +449,7 @@ async def confirm_output(
await raise_if_not_confirmed( await raise_if_not_confirmed(
trezorui_api.flow_confirm_output( trezorui_api.flow_confirm_output(
title=TR.words__address, title=TR.words__send,
subtitle=title, subtitle=title,
message=address, message=address,
extra=None, extra=None,
@ -654,7 +654,7 @@ def confirm_amount(
br_name: str = "confirm_amount", br_name: str = "confirm_amount",
br_code: ButtonRequestType = BR_CODE_OTHER, br_code: ButtonRequestType = BR_CODE_OTHER,
) -> Awaitable[None]: ) -> Awaitable[None]:
description = description or f"{TR.words__amount}:" # def_arg description = description or f"{TR.words__send}:" # def_arg
return confirm_value( return confirm_value(
title, title,
amount, amount,