mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-16 16:58:35 +00:00
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
This commit is contained in:
parent
e994b75e8b
commit
410850fa75
@ -91,11 +91,15 @@ static switch_status_t play_group(switch_say_method_t method, int a, int b, int
|
|||||||
|
|
||||||
if (b) {
|
if (b) {
|
||||||
if (b > 1) {
|
if (b > 1) {
|
||||||
|
if (c) {
|
||||||
|
say_file("digits/%d.wav", c);
|
||||||
|
say_file("currency/and.wav");
|
||||||
|
}
|
||||||
say_file("digits/%d0.wav", b);
|
say_file("digits/%d0.wav", b);
|
||||||
} else {
|
} else {
|
||||||
say_file("digits/%d%d.wav", b, c);
|
say_file("digits/%d%d.wav", b, c);
|
||||||
c = 0;
|
|
||||||
}
|
}
|
||||||
|
c = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (c) {
|
if (c) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user