Merge pull request #189 in FS/freeswitch from ~AEBURRIEL/freeswitch-fs-7279:master to master

* commit '23b10d5da35b3ffb113063d0b6cffab07ba6c4ce':
  Get ordering of dates in Spanish right (dd-mm-yyyy)
This commit is contained in:
Mike Jerris
2015-02-18 12:29:19 -06:00
4 changed files with 6 additions and 1 deletions
+3 -1
View File
@@ -335,8 +335,10 @@ static switch_status_t es_say_time(switch_core_session_t *session, char *tosay,
if (say_date) {
say_file("time/day-%d.wav", tm.tm_wday);
say_file("time/mon-%d.wav", tm.tm_mon);
say_num(tm.tm_mday, SSM_PRONOUNCED);
say_file("time/of.wav");
say_file("time/mon-%d.wav", tm.tm_mon);
say_file("time/of.wav");
say_num(tm.tm_year + 1900, SSM_PRONOUNCED);
}