提交 b99db9aa authored 作者: Michael Jerris's avatar Michael Jerris

I was told that the rules for spanish are the same as for english. So for now,…

I was told that the rules for spanish are the same as for english.  So for now, I will add an interface using the same module and functions for "es".  If there are changes to be made in the future, we can split this up into multiple modules.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4809 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 5b1bb9bd
......@@ -510,9 +510,15 @@ static switch_status_t en_say(switch_core_session_t *session, char *tosay, switc
return SWITCH_STATUS_FALSE;
}
static const switch_say_interface_t es_say_interface = {
/*.name */ "es",
/*.say_function */ en_say,
};
static const switch_say_interface_t en_say_interface = {
/*.name */ "en",
/*.say_function */ en_say,
/*.next */ &es_say_interface
};
static switch_loadable_module_interface_t say_en_module_interface = {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论