From: Kevin P. Fleming Date: Tue, 11 Jul 2006 23:27:51 +0000 (+0000) Subject: say times in spanish properly (using new sound files that are not yet released) X-Git-Tag: 1.4.0-beta1~615 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=83873b6a90006f94051c855a4c70acac1cf3fd1a;p=thirdparty%2Fasterisk.git say times in spanish properly (using new sound files that are not yet released) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37396 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/say.c b/say.c index 999f79c579..623a3425d3 100644 --- a/say.c +++ b/say.c @@ -3876,9 +3876,11 @@ int ast_say_date_with_format_es(struct ast_channel *chan, time_t time, const cha case 'P': case 'p': /* AM/PM */ - if (tm.tm_hour > 12) + if (tm.tm_hour > 18) res = wait_file(chan, ints, "digits/p-m", lang); - else if (tm.tm_hour && tm.tm_hour < 12) + else if (tm.tm_hour > 12) + res = wait_file(chan, ints, "digits/afternoon", lang); + else if (tm.tm_hour) res = wait_file(chan, ints, "digits/a-m", lang); break; case 'Q':