I am currently trying to extends the Ralyxa gem to support multiple languages in the intents as well the directives.
The basic idea is something like this:
intent "SendMessage" do
locale 'es-MX' do
respond("es-MX")
end
locale 'en-IN' do
respond("en-IN")
end
end
I discovered that the feature need to be implemented somehow in the https://github.com/sjmog/ralyxa/blob/master/lib/ralyxa/skill.rb, but I am not yet sure where I should add such feature since is a subset of commands of intent.