Google Play Store Localization

Hello!
I developed some android games for Google Play Store.
They have mission briefings and some texts in game play.
I want to automatically translate game texts according to user`s current location.
I tried to find some solutions but there is no suitable examples.
How can I fix it?

Kind regards

You want to store a translated string for whatever language you are supporting, and then lookup the player’s location (maybe with Google’s location service) and then pick the correct set of strings accordingly. You could also try using the Google Translate API for autotranslation, but make sure you know what language the user is likely to be speaking first before you translate.