Table Configuration
deepltranslate_core supports the translation of specific fields of TCA records.
It only understands fields to be translated only if their l10n_mode
is set to prefixLangTitle
.
Attention
deepltranslate_
only translates fields defined as TCA type input
or text
.
Other fields cannot currently be translated automatically due to limitations in
the DataHandler.
deepltranslate_core uses a DataHandler hook to detect translatable fields.
The following setup is required to make deepltranslate_core work on your table:
<extension_key>/Configuration/TCA/Overrides/<table_name>.php
$GLOBALS['TCA']['<table_name>']['columns']['<field_name>']['l10n_mode'] = 'prefixLangTitle';
$GLOBALS['TCA']['<table_name>']['columns']['<another_field_name>']['l10n_mode'] = 'prefixLangTitle';
Copied!