From: Hristo Trendev Date: Fri, 19 Jun 2015 08:54:18 +0000 (+0200) Subject: FS-7685 fix Dutch numbers pronunciation X-Git-Tag: v1.6.2~313^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=410850fa75f41f838e53aaec9feca62a0fb3a0b1;p=thirdparty%2Ffreeswitch.git FS-7685 fix Dutch numbers pronunciation The Dutch number pronunciation is more like the German one. 21 is pronounced as "one-and-twenty". FS-7685 #resolve --- diff --git a/src/mod/say/mod_say_nl/mod_say_nl.c b/src/mod/say/mod_say_nl/mod_say_nl.c index 6ab2bb98bb..543dd8d3b4 100644 --- a/src/mod/say/mod_say_nl/mod_say_nl.c +++ b/src/mod/say/mod_say_nl/mod_say_nl.c @@ -91,11 +91,15 @@ static switch_status_t play_group(switch_say_method_t method, int a, int b, int if (b) { if (b > 1) { + if (c) { + say_file("digits/%d.wav", c); + say_file("currency/and.wav"); + } say_file("digits/%d0.wav", b); } else { say_file("digits/%d%d.wav", b, c); - c = 0; } + c = 0; } if (c) {