B
Bob
I want to make my website translatable in different spoken languages, such
as English and French. I'm thinking of storing each display string in one
XML file:
<string00000001>
<english>Hello</english>
<french>Bonjour</french>
<spanish>...</spanish>
<japanese>...</japanese>
</string00000001>
<string00000002>
<english>Goodbye</english>
<french>Au revoir</french>
<spanish>...</spanish>
<japanese>...</japanese>
</string00000002>
....
Suppose there are 50,000 such strings in the XML, would there be any speed
concerns in retrieving these strings for display on the website?
as English and French. I'm thinking of storing each display string in one
XML file:
<string00000001>
<english>Hello</english>
<french>Bonjour</french>
<spanish>...</spanish>
<japanese>...</japanese>
</string00000001>
<string00000002>
<english>Goodbye</english>
<french>Au revoir</french>
<spanish>...</spanish>
<japanese>...</japanese>
</string00000002>
....
Suppose there are 50,000 such strings in the XML, would there be any speed
concerns in retrieving these strings for display on the website?