Multi-language android app

Hi!
I had 2 text packs. First is for one language, second for other.

How I can automatically switch text pack depending on the language of the device?

for example:

[code]local text1 = “some kind of text”;
local text2 = “same text, different language”;

– Some condition (i dont know)
if (deviceLang == “en”) then
print (text1)
else
print (text2)
end
[/code] [import]uid: 109747 topic_id: 23468 reply_id: 323468[/import]

Try Rosetta from Graham Ranson, if you can find it or he still has it on offer. [import]uid: 3826 topic_id: 23468 reply_id: 94183[/import]

Thank you very mach. That’s what I needed! [import]uid: 109747 topic_id: 23468 reply_id: 94675[/import]