mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Only show the ultra voices prompt on the en voice list
This commit is contained in:
parent
5865be5982
commit
ed6cea3a87
1 changed files with 5 additions and 3 deletions
|
|
@ -19,10 +19,12 @@
|
|||
var body: some View {
|
||||
Group {
|
||||
Form {
|
||||
Toggle("Use Ultra Realistic Voices", isOn: $audioController.useUltraRealisticVoices)
|
||||
.accentColor(Color.green)
|
||||
if language.key == "en" {
|
||||
Toggle("Use Ultra Realistic Voices", isOn: $audioController.useUltraRealisticVoices)
|
||||
.accentColor(Color.green)
|
||||
}
|
||||
|
||||
if audioController.useUltraRealisticVoices {
|
||||
if language.key == "en", audioController.useUltraRealisticVoices {
|
||||
Section {
|
||||
Text("Ultra realistic voices take longer to generate and do not offer a follow along user interface.")
|
||||
.multilineTextAlignment(.leading)
|
||||
|
|
|
|||
Loading…
Reference in a new issue