FS-4721 --resolve
This commit is contained in:
parent
970b2f1765
commit
09c03667a8
|
@ -97,12 +97,14 @@ static switch_status_t play_group(switch_say_method_t method, switch_say_gender_
|
|||
if (b) {
|
||||
if (b > 1) {
|
||||
/*german nominativ for "one" in numbers like 21, 171, 4591 is flexed, 2-9 are not*/
|
||||
if ( c == 1 ) {
|
||||
say_file("digits/s-1.wav");
|
||||
} else {
|
||||
say_file("digits/%d.wav", c);
|
||||
if (c > 0) {
|
||||
if ( c == 1 ) {
|
||||
say_file("digits/s-1.wav");
|
||||
} else {
|
||||
say_file("digits/%d.wav", c);
|
||||
}
|
||||
say_file("currency/and.wav");
|
||||
}
|
||||
say_file("currency/and.wav");
|
||||
if (method == SSM_COUNTED) {
|
||||
say_file("digits/h-%d0.wav", b);
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue