From 3b9eb062b3d12f2710968ef2c93bd0d9fa1f2c41 Mon Sep 17 00:00:00 2001 From: Steve Underwood Date: Wed, 6 Aug 2008 13:00:31 +0000 Subject: [PATCH] Resolved a couple of wave file naming inconsistencies git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9228 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/say/mod_say_zh/mod_say_zh.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mod/say/mod_say_zh/mod_say_zh.c b/src/mod/say/mod_say_zh/mod_say_zh.c index 2c5f07ecbf..29a16b5e55 100644 --- a/src/mod/say/mod_say_zh/mod_say_zh.c +++ b/src/mod/say/mod_say_zh/mod_say_zh.c @@ -411,7 +411,7 @@ static switch_status_t zh_say_time(switch_core_session_t *session, } else { if (hours || minutes) { say_file("digits/0.wav"); - say_file("time/seconds.wav"); + say_file("time/second.wav"); } } @@ -455,9 +455,9 @@ static switch_status_t zh_say_time(switch_core_session_t *session, if (hour < 6) { say_file("time/morning.wav"); } else if (hour < 12) { - say_file("time/a-m.wav"); + say_file("time/am.wav"); } else if (tm.tm_hour < 18) { - say_file("time/p-m.wav"); + say_file("time/pm.wav"); } else { say_file("time/evening.wav"); }