I have a multiple apps project looking like this
/apps/app1
/apps/app2
/apps/app3
/apps/config
/src
/vendor
/web/app1
/web/app2
/web/app3
Each app has its kernel, console, cache, ... But how do I share common translations ?
I read there https://stackoverflow.com/a/11630933/689429 that on a one-app structure, you can use app/Resources/translations
. How about a multiples-apps structure ?
I wish I could make /apps/Resources/translations
that would be autoloaded (or loaded manually) in all my apps but is it even possible ?