From: Kevin P. Fleming Date: Tue, 5 Apr 2005 04:26:59 +0000 (+0000) Subject: correct french pronounciation of years between 1900 and 1999 (bug #3949) X-Git-Tag: 1.2.0-beta1~897 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b6151c5141e368ca6c7c0fc2e88f04ebabc7608f;p=thirdparty%2Fasterisk.git correct french pronounciation of years between 1900 and 1999 (bug #3949) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5389 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/say.c b/say.c index ea5a9ff84c..ad6dc4a2d1 100755 --- a/say.c +++ b/say.c @@ -3724,8 +3724,10 @@ int ast_say_date_with_format_fr(struct ast_channel *chan, time_t time, const cha /* I'm not going to handle 1900 and prior */ /* We'll just be silent on the year, instead of bombing out. */ } else { - res = wait_file(chan,ints, "digits/19",lang); + res = wait_file(chan,ints, "digits/thousand",lang); if (!res) { + wait_file(chan,ints, "digits/9",lang); + wait_file(chan,ints, "digits/hundred",lang); res = ast_say_number(chan, tm.tm_year, ints, lang, (char * ) NULL); } }