Uppercased words are not spoken correctly

Using AVSpeechSynthesizer, I noticed that some works in UPPERCASe are not correctly spoken.

SMALL is pronounced small
but WIDTH is pronounced W-I-D-T-H

I reproduced the problem in playground:
Code Block
let sentence = "Hello everyone. Two minutes to go. SMALL WIDTH." let synthesizer = AVSpeechSynthesizer()
let utterance = AVSpeechUtterance(string: sentence)
utterance.voice = AVSpeechSynthesisVoice(
language: "en-GB"
)
utterance.rate = AVSpeechUtteranceDefaultSpeechRate * 1.05
synthesizer.speak(utterance)


Is it the expected behaviour ?
Answered by Claude31 in 665630022
I filed a bug report.  FB9036694
I will report if I get any information.
Accepted Answer
I filed a bug report.  FB9036694
I will report if I get any information.
Uppercased words are not spoken correctly
 
 
Q