From: Marcel Haldemann Date: Wed, 25 Mar 2015 23:52:09 +0000 (+0100) Subject: FS-7391 #resolve corrected currency for mod_say_de it's now "Ein Euro und Ein Cent... X-Git-Tag: v1.4.19~6^2~73^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c7fdcc2ad866540ddbf6cf7b21ea9a33ad857c49;p=thirdparty%2Ffreeswitch.git FS-7391 #resolve corrected currency for mod_say_de it's now "Ein Euro und Ein Cent" rather than "Eins Euro und Eins Cent" --- diff --git a/src/mod/say/mod_say_de/mod_say_de.c b/src/mod/say/mod_say_de/mod_say_de.c index 00af9dd1fe..7b4aa75457 100644 --- a/src/mod/say/mod_say_de/mod_say_de.c +++ b/src/mod/say/mod_say_de/mod_say_de.c @@ -413,7 +413,7 @@ static switch_status_t de_say_money(switch_core_session_t *session, char *tosay, /* Say dollar amount */ if (atoi(dollars) == 1) { - say_file("digits/s-1.wav"); + say_file("digits/1.wav"); say_file("currency/dollar.wav"); } else { de_say_general_count(session, dollars, say_args, args); @@ -425,7 +425,7 @@ static switch_status_t de_say_money(switch_core_session_t *session, char *tosay, /* Say "and" */ say_file("currency/and.wav"); if (atoi(cents) == 1) { - say_file("digits/s-1.wav"); + say_file("digits/1.wav"); say_file("currency/cent.wav"); } else { de_say_general_count(session, cents, say_args, args);