feat: Add Text-to-Speech settings and customization options
- Introduced new preference keys for TTS settings: voice, speech rate, pitch, and volume. - Updated SettingsService to handle TTS settings and persist them. - Enhanced AppSettings to include TTS-related properties. - Implemented TTS settings UI in AppCustomizationPage, allowing users to select voice and adjust speech parameters. - Added localization support for TTS settings in multiple languages.
This commit is contained in:
@@ -892,6 +892,47 @@ class AppLocalizationsIt extends AppLocalizations {
|
||||
String get sendOnEnterDescription =>
|
||||
'Invio invia (tastiera software). Cmd/Ctrl+Invio disponibile';
|
||||
|
||||
@override
|
||||
String get ttsSettings => 'Sintesi vocale';
|
||||
|
||||
@override
|
||||
String get ttsVoice => 'Voce';
|
||||
|
||||
@override
|
||||
String get ttsSpeechRate => 'Velocità di sintesi vocale';
|
||||
|
||||
@override
|
||||
String get ttsPitch => 'Tonalità';
|
||||
|
||||
@override
|
||||
String get ttsVolume => 'Volume';
|
||||
|
||||
@override
|
||||
String get ttsPreview => 'Anteprima voce';
|
||||
|
||||
@override
|
||||
String get ttsSystemDefault => 'Predefinito del sistema';
|
||||
|
||||
@override
|
||||
String get ttsSelectVoice => 'Seleziona voce';
|
||||
|
||||
@override
|
||||
String get ttsPreviewText => 'Questa è un\'anteprima della voce selezionata.';
|
||||
|
||||
@override
|
||||
String get ttsNoVoicesAvailable => 'Nessuna voce disponibile';
|
||||
|
||||
@override
|
||||
String ttsVoicesForLanguage(String language) {
|
||||
return 'Voci $language';
|
||||
}
|
||||
|
||||
@override
|
||||
String get ttsOtherVoices => 'Altre lingue';
|
||||
|
||||
@override
|
||||
String get error => 'Errore';
|
||||
|
||||
@override
|
||||
String get display => 'Schermo';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user