I'm using the Sylius/Sylius
package for development and would like to serve my visitors with a Dutch interface. Not all strings are translated to Dutch, and some are done poorly. My question now is, without touching the Sylius
bundles directly, what would be the best way to add/override translations?
Because I want to re-use these translations I'm writing my own Sylius "wrapper", which in its current approach extends the Sylius bundles and have their own Resources/translations
folder. For example: MyWebBundle
extends SyliusWebBundle
through getParent()
and has a Resource/translations/messages.nl.yml
file containing Dutch strings.
I'm looking forward to hearing your thoughts.