Merge pull request #228 in FS/freeswitch from ~MARCELHALDEMANN/freeswitch-fs-7391:master to master

* commit 'c7fdcc2ad866540ddbf6cf7b21ea9a33ad857c49':
  FS-7391 #resolve corrected currency for mod_say_de it's now "Ein Euro und Ein Cent" rather than "Eins Euro und Eins Cent"
This commit is contained in:
Mike Jerris 2015-03-26 13:32:46 -05:00
commit f5d40ba84a
1 changed files with 2 additions and 2 deletions

View File

@ -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);