cart
cart copied to clipboard
Custom Translations in Mail-Templates
We use some custom translations for our mails in Cart, which we defined in our setup.typoscript e.g.
plugin.tx_cart {
_LOCAL_LANG {
de {
tx_cart.mail.salutation = Hallo
}
}
}
After Upgrade to Cart 8.2.0 this doesn't work anymore.
We had to change the mail templates from
<f:translate key="LLL:EXT:cart/Resources/Private/Language/locallang.xlf:tx_cart.mail.salutation"/>
to
<f:translate key="tx_cart.mail.salutation" extensionName="Cart"/>
Now our language settings in setup.txt work again. Please check if you change the translation settings in the mail templates.