How to enable support for languages?

I have set up my games translations using a lua table with language tables.

I was recently told that it wont be enough for apple and google and that they or at least google requires some xml file with the strings for the app in order for google play to know that my game has localisations. Apparently these strings in the xml file are also used for localisations for the apps OS page/settings?

How do I create such a file in corona and what do i need to add to it?

Thanks!!

Bump

i think the XML file for multi-language is for native build. 

I am using multi-language in my Corona app without XML file. i put them in a big array in the code. Easy to access and fast. I don’t need to bother about the XML. 

Or you can put the multi-language file on your server and grab the latest file all the time.

But thats for how you localise some strings in the game. I need to list things like what languages are supported to Google Play and it wont read the lua files. There’s also some app strings like ”does the app use camera” that need special translation strings.

How to do them?