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
This commit is contained in:
Michael Jerris 2007-03-30 17:14:28 +00:00
parent 5b1bb9bd83
commit b99db9aabf
1 changed files with 6 additions and 0 deletions

View File

@ -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 = {