Bug #88126
openTranslating Record with or without Inline Content
0%
Description
My product extension has inline content for the product records.
TCA of my product:
'content_top' => [
'exclude' => 1,
'label' => 'LLL:EXT:my_ext/Resources/Private/Language/locallang_db.xlf:general_field.content_top',
'config' => [
'type' => 'inline',
'foreign_table' => 'tt_content',
'allowed' => 'tt_content',
'MM' => 'tx_myext_producttop_ttcontent_mm',
'foreign_sortby' => 'sorting',
'maxitems' => 9999,
'appearance' => [
'collapseAll' => 1,
'levelLinksPosition' => 'bottom',
'showSynchronizationLink' => 1,
'showPossibleLocalizationRecords' => 1,
'useSortable' => 1,
'showAllLocalizationLink' => 1,
],
'overrideChildTca' => [
'columns' => [
'CType' => [
'config' => [
'default' => 'textmedia',
],
],
],
],
],
],
When I create a product with a content item and then translate the product, the translated product has a link to the same content item. When I change the content item, the text is changed in both languages.
When I click on the "Localize all records" button I get the following error:
Files
Updated by Chris Müller over 5 years ago
- File translate_before.png translate_before.png added
- File translate_after.png translate_after.png added
I experience a similar behaviour in TYPO3 9.5.6 with free mode: I have a content element with an IRRE relation (Header/Text/Image) in it:
Now I click on "Translate" and follow the wizard. After that, I expect to have the content element copied to the second language. But instead, no content element on the second language and the IRRE relation is added to the default language:
Edit: I see the problem also in TYPO3 9.5.7 - selecting all content elements in the wizard (it doesn't matter if IRRE or not), only one content element (the first one) is copied to the second language, all other are ignored.
Updated by Chris Müller over 5 years ago
- Subject changed from Translating Record with Inline Content to Translating Record with or without Inline Content