I am working on an app which needs to be multilangual.
Would it be a good idea to store the language strings in an XML file and add it in on page creation?
I thought about creating xml files for each language (english.xml, french.xml, german.xml and so on).
The english one would look like:
Code:
<language>
<yes>Yes</yes>
<no>No</no>
...
</language>
and the french one would look like:
Code:
<language>
<yes>Oui</yes>
<no>Non</no>
...
</language>
What would be the best method to access the strings?
Is there a better/faster method?
Thanks in advance for any ideas or suggestions.