The patch submitted by Diego Toro, however would fix the actual pronunciation of currency and dates from 20th - 29th which are not working with the "english" implementation of mod_say_es.c<br><br>In regards the dates pronunciation for voicemail for example we used the following changes to mod_say_es.c<br>
<br>372,375c412,427<br>- say_file("time/day-%d.wav", tm.tm_wday);<br>- say_file("time/mon-%d.wav", tm.tm_mon);<br>- say_num(tm.tm_mday, SSM_COUNTED);<br>- say_num(tm.tm_year + 1900, SSM_PRONOUNCED);<br>
---<br>+ if (tm.tm_mday == 1) {<br>+ say_file("time/day-%d.wav", tm.tm_wday);<br>+ say_num(tm.tm_mday, SSM_COUNTED);<br>+ say_file("time/de.wav");<br>
+ say_file("time/mon-%d.wav", tm.tm_mon);<br>+ say_file("time/de.wav");<br>+ say_num(tm.tm_year + 1900, SSM_PRONOUNCED);<br>+ <br>+ } else {<br>
+ say_file("time/day-%d.wav", tm.tm_wday);<br>+ say_num(tm.tm_mday, SSM_PRONOUNCED);<br>+ say_file("time/de.wav");<br>+ say_file("time/mon-%d.wav", tm.tm_mon);<br>
+ say_file("time/de.wav");<br>+ say_num(tm.tm_year + 1900, SSM_PRONOUNCED);<br>+ }<br>