diff --git a/cookbook/bundles/override.rst b/cookbook/bundles/override.rst index c28a79f864b..99bbec011fd 100644 --- a/cookbook/bundles/override.rst +++ b/cookbook/bundles/override.rst @@ -191,9 +191,10 @@ can override the translations from any translation file, as long as it is in The last translation file always wins. That means that you need to make sure that the bundle containing *your* translations is loaded after any bundle whose translations you're overriding. This is done in ``AppKernel``. - Translation files are not aware of the inheritance tree and therefore - unaware of their parent. If you want to override translations from the - parent bundle be sure the loading order in ``AppKernel`` is parent > child. + Translation files are not aware of the inheritance tree and therefore + unaware of their parent. If you want to override translations from the + parent bundle, be sure that the parent bundle is loaded before the child + bundle in the ``AppKernel`` class. The file that always wins is the one that is placed in ``app/Resources/translations``, as those files are always loaded last.