I'm creating CakePHP 3 localized app and want to generate all backend part with bake
for multiple languages. I'm already familiar with i18n shell and .po files, I have used cakephp/localized
and it's ok. It have translations of cake core for many languages.
But one i can't get a glue is how to translate templates generated by bake? It's bunch of similar strings like
The group has been deleted
The user has been deleted
The item has been deleted
and so on. I want to translate all pattern "The {0} has been deleted"
once but not for every single entity.
Am i missing something important?