From 9a1168ee7f7b315c6a9ceb6e9d63f8fb450b0ff9 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 3 Sep 2024 21:51:55 +0530 Subject: [PATCH] string changes --- src/calibre/gui2/tts/types.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/gui2/tts/types.py b/src/calibre/gui2/tts/types.py index 34f3fa7729..b1984cec4f 100644 --- a/src/calibre/gui2/tts/types.py +++ b/src/calibre/gui2/tts/types.py @@ -210,7 +210,7 @@ def available_engines() -> dict[str, EngineMetadata]: continue elif x == 'flite': ans[x] = qt_engine_metadata(x, _('The "flite" Speech engine'), _( - 'The "filte" engine can track the currently spoken word on screen.' + 'The "flite" engine can track the currently spoken word on screen.' ), True) elif x == 'speechd': continue @@ -225,7 +225,7 @@ def available_engines() -> dict[str, EngineMetadata]: if cmd and os.access(cmd, os.X_OK) and os.path.isfile(cmd): ans['speechd'] = EngineMetadata('speechd', _('The Speech Dispatcher Speech Engine'), _( 'The "speechd" engine can usually track the currently spoken word on screen, however, it depends on the' - ' underlying output module it. The default espeak output module does support it.' + ' underlying output module. The default espeak output module does support it.' ), TrackingCapability.WordByWord, allows_choosing_audio_device=False, has_multiple_output_modules=True) return ans