cart icon indicating copy to clipboard operation
cart copied to clipboard

Custom Translations in Mail-Templates

Open joeschi opened this issue 3 years ago • 0 comments

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.

joeschi avatar Sep 06 '22 16:09 joeschi