@@ -209,7 +209,7 @@ class SynthDriver(synthDriverHandler.SynthDriver):
209
209
BooleanDriverSetting ("backquoteVoiceTags" , _ ("Enable backquote voice &tags" ), False ),
210
210
BooleanDriverSetting ("ABRDICT" , _ ("Enable &abbreviation expansion" ), False ),
211
211
BooleanDriverSetting ("phrasePrediction" , _ ("Enable phras&e prediction" ), False ),
212
- DriverSetting ("pauseMode" , _ ("&Pause Mode " ), defaultVal = "2" ),
212
+ DriverSetting ("pauseMode" , _ ("&Pauses " ), defaultVal = "2" ),
213
213
BooleanDriverSetting ("sendParams" , _ ("Al&ways Send Current Speech Settings" ), False , defaultVal = True ),
214
214
DriverSetting ('sampleRate' , _ ("Sa&mple Rate" ), defaultVal = '1' ),
215
215
)
@@ -547,9 +547,9 @@ def _get_sampleRate(self):
547
547
return str (self ._sample_rate )
548
548
549
549
_pausemodes = {
550
- "0" : StringParameterInfo ("0" , "Do not shorten pauses " ),
551
- "1" : StringParameterInfo ("1" , "Shorten pauses at text boundaries (E.G. a list control and its value) " ),
552
- "2" : StringParameterInfo ("2" , "Shorten all pauses (including punctuation) similar to JAWS For Windows " )
550
+ "0" : StringParameterInfo ("0" , "Do not shorten" ),
551
+ "1" : StringParameterInfo ("1" , "Shorten at end of text only " ),
552
+ "2" : StringParameterInfo ("2" , "Shorten all pauses" )
553
553
}
554
554
555
555
def _get_availablePausemodes (self ):
0 commit comments