We're building an app that is internationalised in Cakephp 3.0.8 , and with all static stuff everything is fine, but we're having some issues with the translation of database contents.
In the process of building an interface for our translators to translate content in the tables, it would be awesome to be able to have an interface with something like:
+---------+---------+--------+---------+---------+
| English | Danish | German | Spanish | Swedish |
+---------+---------+--------+---------+---------+
| Save | Gem | ____ | ____ | ____ |
| Edit | Rediger | ____ | ____ | ____ |
+---------+---------+--------+---------+---------+
so the translators can start working on the missing translations. Point is that all the strings that have missing translations should just be shown here
To achieve this, it would be nice to be able to get
- All fields in a table, that should be translated
- Translations for the already translated fields
But especially 1) seems quite hard, or are we missing something?
We're using the core TranslationBehaviour (link)