Best Practices to design multi-language web site database.
Technologies employed here are ASP.NET MVC and SQL Server.
EDIT :
I’m looking for table structure and relationship design.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
On the DB side, use unicode (nvarchar and nchar) for your text.
Have a locale lookup table (containing the locale info you need – i.e. decimal point format), and for each table that has localized data add a foreign key to it.
Edit: (following comments)
Best practice is to use resource files for localization.