diff --git a/Classes/Ui/Changes/UpdateOutdatedTranslations.php b/Classes/Ui/Changes/UpdateOutdatedTranslations.php index 0176138..e201d13 100644 --- a/Classes/Ui/Changes/UpdateOutdatedTranslations.php +++ b/Classes/Ui/Changes/UpdateOutdatedTranslations.php @@ -45,7 +45,10 @@ public function apply() foreach ($translatableProperties as $translatableProperty) { $name = $translatableProperty->getName(); $value = $referenceNode->getProperty($name); - if (!empty($value) && is_string($value) && strip_tags($value) !== '') { + if ( + is_string($value) + && (!empty($value) || !empty($node->getProperty($name) ?: '')) + ) { $propertiesToTranslate[$name] = $value; } } diff --git a/Resources/Private/Fusion/Frontend/Collection/InfoRenderer.fusion b/Resources/Private/Fusion/Frontend/Collection/InfoRenderer.fusion index a050a69..503ebec 100644 --- a/Resources/Private/Fusion/Frontend/Collection/InfoRenderer.fusion +++ b/Resources/Private/Fusion/Frontend/Collection/InfoRenderer.fusion @@ -31,7 +31,7 @@ prototype(Sitegeist.LostInTranslation:Collection.TranslationInformation) < proto Missing Contents: {item.node.label}

- Outdated Contents: {item.node.label} + Outdated Contents: {item.node.label}

diff --git a/Resources/Private/Fusion/Frontend/Document/InfoRenderer.fusion b/Resources/Private/Fusion/Frontend/Document/InfoRenderer.fusion index 6f8cec0..e1326ed 100644 --- a/Resources/Private/Fusion/Frontend/Document/InfoRenderer.fusion +++ b/Resources/Private/Fusion/Frontend/Document/InfoRenderer.fusion @@ -30,7 +30,7 @@ prototype(Sitegeist.LostInTranslation:Document.TranslationInformation) < prototy Missing Contents: {item.node.label}

- Outdated Contents: {item.node.label} + Outdated Contents: {item.node.label}