feat(l10n): Add speech-to-text localization strings for settings

This commit is contained in:
cogwheel0
2025-11-02 19:03:58 +05:30
parent 86339715b1
commit da249eaa31
6 changed files with 240 additions and 0 deletions

View File

@@ -925,6 +925,41 @@ class AppLocalizationsEn extends AppLocalizations {
String get sendOnEnterDescription =>
'Enter sends (soft keyboard). Cmd/Ctrl+Enter also available';
@override
String get sttSettings => 'Speech to Text';
@override
String get sttEngineLabel => 'Recognition engine';
@override
String get sttEngineAuto => 'Auto';
@override
String get sttEngineDevice => 'On device';
@override
String get sttEngineServer => 'Server';
@override
String get sttEngineAutoDescription =>
'Use on-device recognition when available and fall back to your server.';
@override
String get sttEngineDeviceDescription =>
'Keep audio on this device. Voice input stops working if on-device speech recognition isnt supported.';
@override
String get sttEngineServerDescription =>
'Always send recordings to your Conduit server for transcription.';
@override
String get sttDeviceUnavailableWarning =>
'On-device speech recognition isnt available on this device.';
@override
String get sttServerUnavailableWarning =>
'Connect to a server with transcription enabled to use this option.';
@override
String get ttsEngineLabel => 'Engine';