We don't have prebuild domains for Spanish. And using Simple entities we can't use spaces, double quotes to get all the info.
https://github.com/proyecto26/Bot-Framework/blob/master/src/nodejs/bot/dialogs/movieBook.js#L9
return avengers
reservar boletos para "Avengers Infinity War"
return "
Return all the info with spaces in the Spanish version. Example:
reservar boletos para Avengers Infinity War
return avengers infinity war
If the entity has spaces only get the first part. With doubles quotes only return the first quote
I'm not sure if this bug is for this team or the team of LUIS, let me know if the repo is other one.
Thanks in advance, Nicholls
Can you please let us know if it is Spanish (Spain) or Spanish (Mexico)?
Spanish (Spain)

Thanks for the help!
The case is a movie ticket reservation intent, and the problem is in handling multi-word movie names which is not a bug. But it does look like a case that could be covered with the new Patterns feature (using pattern.any. If you add the pattern.any entities to your LUIS app, you can't label utterances with these entities. They are only valid in patterns. Hope this helps!!
But with the english version works as expected

And the response (multi-word movie names)

The code for both luis apps is the same:
var intent = args.intent
var title = builder.EntityRecognizer.findEntity(intent.entities, 'MovieTickets.MovieTitle')
var movie = session.dialogData.movie = {
title: title ? title.entity : ''
}
console.log(movie.title) //avengers infinity war
Let me know what you think
Thanks lady in advance, Nicholls
English works as expected because prebuilt domains are supported in English and not supported in Spanish.
Since the prebuilt domain used for English are not supported in Spanish, the way to recognize multi words intent is to use patterns.any as mentioned above. Hope this help!!
@fanidamj Ohh thanks for your help lady!