Hi
your are right, with this way, you can easily maintain your translates and change your captions in your web site dynamically.
But I have another problem about generating multi-language web site. How did you strore the content of your web site in DB?
Lets assume, I have a page in my web site that is called "News".
in Db, there is a table for that which design smth like this
NewsID int (PK),
NewsTitle (nvarchar(50),
NewsDesc (250)
and in my admin panel of my site, I am entering news and storing them in this table. But I want to enter the news in 3 Languages. German, English, French
How should I design this table or a new table to achive my multi langauge news page?
I think, doing this in News table is not a good idea. For exampe NewsDescGerman, NewsDescEnglish ...
Can you give me an better idea about this?
Thanks alot.