I suppose this problem has a standard solution but i cannot find it..
I have some tables that store user data. The columns that contains text data could be converted into differents languages.
I suppose i have to create a table containing the languages ids like "fr", "en".. and another PER user's content table that store the translation, the associated language and a foreign key to the line of the user content table.
The problem is that this solution force adding a languageTranslation table for each user's content table (because a foreign key column cannot point on different table).
Is there a simpler solution ?