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 &quot;english&quot; 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(&quot;time/day-%d.wav&quot;, tm.tm_wday);<br>-               say_file(&quot;time/mon-%d.wav&quot;, 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(&quot;time/day-%d.wav&quot;, tm.tm_wday);<br>+                       say_num(tm.tm_mday, SSM_COUNTED);<br>+                       say_file(&quot;time/de.wav&quot;);<br>
+                       say_file(&quot;time/mon-%d.wav&quot;, tm.tm_mon);<br>+                       say_file(&quot;time/de.wav&quot;);<br>+                       say_num(tm.tm_year + 1900, SSM_PRONOUNCED);<br>+ <br>+               } else {<br>
+                       say_file(&quot;time/day-%d.wav&quot;, tm.tm_wday);<br>+                       say_num(tm.tm_mday, SSM_PRONOUNCED);<br>+                       say_file(&quot;time/de.wav&quot;);<br>+                       say_file(&quot;time/mon-%d.wav&quot;, tm.tm_mon);<br>
+                       say_file(&quot;time/de.wav&quot;);<br>+                       say_num(tm.tm_year + 1900, SSM_PRONOUNCED);<br>+               }<br>