I am building a page that displays some time information e.g.
<span>Time elapsed: 5m</span>
Apple VoiceOver screen reader announces this as "Time elapsed: 5 meters". I would like it to announce "Time elapsed: 5 minutes".
I know it would be better to have
<span>Time elapsed: 5 min</span>
but designer is being strict on maintaining the condensed '5m' format.
The aria-label
attribute is unsuitable here as this is not an interactive element.
Is there any other way to specify what should be announced?