diff --git a/src/fenrirscreenreader/commands/commands/cycle_key_echo.py b/src/fenrirscreenreader/commands/commands/cycle_key_echo.py index f423ef0b..5264070e 100644 --- a/src/fenrirscreenreader/commands/commands/cycle_key_echo.py +++ b/src/fenrirscreenreader/commands/commands/cycle_key_echo.py @@ -36,21 +36,21 @@ class command: settings_manager.set_setting("keyboard", "char_echo_mode", "0") settings_manager.set_setting("keyboard", "word_echo", "True") output_manager.present_text( - _("Key echo word"), sound_icon="Accept", interrupt=True + _("Echo by word"), interrupt=True ) elif word_echo: # Currently word echo, switch to off settings_manager.set_setting("keyboard", "char_echo_mode", "0") settings_manager.set_setting("keyboard", "word_echo", "False") output_manager.present_text( - _("Key echo off"), sound_icon="Accept", interrupt=True + _("Echo off"), interrupt=True ) else: # Currently off (or caps mode), switch to character echo settings_manager.set_setting("keyboard", "char_echo_mode", "1") settings_manager.set_setting("keyboard", "word_echo", "False") output_manager.present_text( - _("Key echo character"), sound_icon="Accept", interrupt=True + _("Echo by character"), interrupt=True ) def set_callback(self, callback):