Reputation: 55032
What are the steps to develop a multilingual web application?
Should i store the languages texts and resources in database or should i use property files or resource files?
I understand that I need to use CurrentCulture with C# alone with CultureFormat etc.
I wanted to know you opinions on steps to build a multilingual web application.
Doesn't have to be language specific. I'm just looking for steps to build this.
Upvotes: 0
Views: 249
Reputation: 19624
The specific mechanisms are different depending on the platform you are developing on.
As a cursory set of work items:
Avoid:
Upvotes: 2
Reputation: 798764
The first step is to internationalize. The second step is to localize. The third step is to translate.
Upvotes: 0