I’m trying to develop a mini cms, is it more flexible to have a “translated copy” of an article by language or a multilanguage article?
I’m working with Django but it’s more a pb of logical and model 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.
I think it’s easier to have a table with all available languages. The article table just store a primary key and article related things. But no title and no content. Then you have a translated article table. This table has a one to one relation to the language table and a many to one relation to the article table.