Skip to content

Commit

Permalink
Fixed bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tsengwoody committed May 8, 2024
1 parent 69094e8 commit 2472aa8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions addon/globalPlugins/WorldVoice/speechSettingsDialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -519,10 +519,10 @@ class SpeechEngineSettingsPanel(BaseSettingsPanel):
# Translators: The label of an option in the Engine settings dialog
"label": _("Activate espeak")
},
"piper": {
# Translators: The label of an option in the Engine settings dialog
"label": _("Activate piper")
},
# "piper": {
# # Translators: The label of an option in the Engine settings dialog
# "label": _("Activate piper")
# },
"IBM": {
# Translators: The label of an option in the Engine settings dialog
"label": _("Activate IBM")
Expand Down
4 changes: 2 additions & 2 deletions addon/synthDrivers/WorldVoice/voiceManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from .voice.OneCoreVoice import OneCoreVoice
from .voice.RHVoice import RHVoice
from .voice.EspeakVoice import EspeakVoice
from .voice.PiperVoice import PiperVoice
# from .voice.PiperVoice import PiperVoice
from .voice.IBMVoice import IBMVoice


Expand Down Expand Up @@ -51,7 +51,7 @@ class VoiceManager(object):
"OneCore": OneCoreVoice,
"RH": RHVoice,
"espeak": EspeakVoice,
"piper": PiperVoice,
# "piper": PiperVoice,
"IBM": IBMVoice,
}

Expand Down

0 comments on commit 2472aa8

Please sign in to comment.