You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue on TYPO3 13 having the button label writing outside the
borders made a refactoring and regeneration of the localization.ts
necessary.
The labels were rewritten as CDATA to allow line breaks, getting rid of
the too long labels.
Together with TYPO3 Core standardized TSconfig for localizations the
overridden JavaScript is more lightweight and doesn't need the AjaxRoute
anymore.
Therefore the AjaxRoutes.php and AjaxController.php are removed.
In addition to Core functionality, the DeepL allow translateion now can
be enabled/disabled by the following setting in Page TSConfig:
```
# Enabled (Default)
mod.web_layout.localization.enableDeeplTranslate = 1
# Disabled
mod.web_layout.localization.enableDeeplTranslate = 0
```
This could be overridden in User TSconfig, too:
```
# Enabled (Default)
page.mod.web_layout.localization.enableDeeplTranslate = 1
# Disabled
page.mod.web_layout.localization.enableDeeplTranslate = 0
```
0 commit comments