diff --git a/core/embed/rust/src/ui/layout_eckhart/flow/confirm_output.rs b/core/embed/rust/src/ui/layout_eckhart/flow/confirm_output.rs index 19edd30c20..055f28e24a 100644 --- a/core/embed/rust/src/ui/layout_eckhart/flow/confirm_output.rs +++ b/core/embed/rust/src/ui/layout_eckhart/flow/confirm_output.rs @@ -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()), diff --git a/core/src/trezor/ui/layouts/eckhart/__init__.py b/core/src/trezor/ui/layouts/eckhart/__init__.py index 75a04c358d..482e9cd76c 100644 --- a/core/src/trezor/ui/layouts/eckhart/__init__.py +++ b/core/src/trezor/ui/layouts/eckhart/__init__.py @@ -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,