提交 f5d40ba8 authored 作者: Mike Jerris's avatar Mike Jerris

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

* commit 'c7fdcc2a':
  FS-7391 #resolve corrected currency for mod_say_de it's now "Ein Euro und Ein Cent" rather than "Eins Euro und Eins Cent"
...@@ -413,7 +413,7 @@ static switch_status_t de_say_money(switch_core_session_t *session, char *tosay, ...@@ -413,7 +413,7 @@ static switch_status_t de_say_money(switch_core_session_t *session, char *tosay,
/* Say dollar amount */ /* Say dollar amount */
if (atoi(dollars) == 1) { if (atoi(dollars) == 1) {
say_file("digits/s-1.wav"); say_file("digits/1.wav");
say_file("currency/dollar.wav"); say_file("currency/dollar.wav");
} else { } else {
de_say_general_count(session, dollars, say_args, args); 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, ...@@ -425,7 +425,7 @@ static switch_status_t de_say_money(switch_core_session_t *session, char *tosay,
/* Say "and" */ /* Say "and" */
say_file("currency/and.wav"); say_file("currency/and.wav");
if (atoi(cents) == 1) { if (atoi(cents) == 1) {
say_file("digits/s-1.wav"); say_file("digits/1.wav");
say_file("currency/cent.wav"); say_file("currency/cent.wav");
} else { } else {
de_say_general_count(session, cents, say_args, args); de_say_general_count(session, cents, say_args, args);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论