From: Russell Bryant Date: Wed, 1 Nov 2006 23:01:48 +0000 (+0000) Subject: fix saying one hundred and two hundred in hebrew (issue #7810, eldadran) X-Git-Tag: 1.4.0-beta4~213 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e626d78269cc8b9a7663e85dcc98284e2101558b;p=thirdparty%2Fasterisk.git fix saying one hundred and two hundred in hebrew (issue #7810, eldadran) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@46857 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/say.c b/main/say.c index 623a3425d3..d51cda9864 100644 --- a/main/say.c +++ b/main/say.c @@ -1144,7 +1144,8 @@ static int ast_say_number_full_fr(struct ast_channel *chan, int num, const char /* Extra sounds needed: 1F: feminin 'one' ve: 'and' - 2hundred: 2 hundred + 1hundred: 1 hundred + 2hundred: 2 hundreds 2thousands: 2 thousand thousands: plural of 'thousand' 3sF 'Smichut forms (female) @@ -1235,11 +1236,13 @@ static int ast_say_number_full_he(struct ast_channel *chan, int num, num = num % 10; if (num>0) state=2; } else if (num < 200) { - snprintf(fn, sizeof(fn), "digits/hundred"); + snprintf(fn, sizeof(fn), "digits/1hundred"); num = num - 100; + state=2; } else if (num < 300) { - snprintf(fn, sizeof(fn), "digits/hundred"); - num = num - 100; + snprintf(fn, sizeof(fn), "digits/2hundred"); + num = num - 200; + state=2; } else if (num < 1000) { snprintf(fn, sizeof(fn), "digits/%d", (num/100)); state=1;