I’m currently building a multilingual website, where content is added in English first and than translated into other languages.
All the content is stored in one MySQL table that looks like this:
id | language | title | master 1 | en | Page one title | 1 2 | es | Página un título | 1 3 | de | Seite einen titel | 1 4 | en | Page two title | 2 5 | es | Página dos título | 2
What I need to do is be able to get a list of all the content that still needs to be translated. In the case above it would be #4 needs to be translated into German.
Any help would be appreciated.
Thanks,
1 Answer