diff --git a/Configuration/TCA/Overrides/pages.php b/Configuration/TCA/Overrides/pages.php
index fd15bf333afdd34a5c0015522515da7545df06c3..0122d1da42e3d1fdbc4a512a9d4a0bf1a5b8dd28 100644
--- a/Configuration/TCA/Overrides/pages.php
+++ b/Configuration/TCA/Overrides/pages.php
@@ -284,6 +284,9 @@ call_user_func(
 					'label' => $localLangDbPath . $table . '.tx_sgnews_highlighted',
 					'config' => [
 						'type' => 'check',
+						'behaviour' => [
+							'allowLanguageSynchronization' => TRUE
+						]
 					],
 				],
 				'tx_sgnews_never_highlighted' => [
@@ -294,6 +297,9 @@ call_user_func(
 					'label' => $localLangDbPath . $table . '.tx_sgnews_never_highlighted',
 					'config' => [
 						'type' => 'check',
+						'behaviour' => [
+							'allowLanguageSynchronization' => TRUE
+						]
 					],
 				],
 				'tx_sgnews_tags' => [
@@ -410,38 +416,42 @@ call_user_func(
 				$GLOBALS['TCA'][$table]['columns'] as $languageExcludeField => $_
 			) {
 				if (
-					!\in_array($languageExcludeField, [
-						'doktype',
-						'title',
-						'subtitle',
-						'description',
-						'slug',
-						'tx_projectbase_path_segment',
-						'tx_projectbase_excludefromsluggeneration',
-						'tx_sgnews_location',
-						'tx_sgnews_teaser1_image',
-						'tx_sgnews_teaser2_image',
-						'tx_sgnews_tags',
-						'abstract',
-						'tx_projectbase_seo_titletag',
-						'tx_projectbase_seo_canonicaltag',
-						'hidden',
-						'sys_language_uid',
-						'tx_languagevisibility_visibility',
-						'lastUpdated',
-						'tx_sgnews_date_end',
-					])
+				!\in_array(
+					$languageExcludeField, [
+					'doktype',
+					'title',
+					'subtitle',
+					'description',
+					'slug',
+					'tx_projectbase_path_segment',
+					'tx_projectbase_excludefromsluggeneration',
+					'tx_sgnews_location',
+					'tx_sgnews_teaser1_image',
+					'tx_sgnews_teaser2_image',
+					'tx_sgnews_tags',
+					'abstract',
+					'tx_projectbase_seo_titletag',
+					'tx_projectbase_seo_canonicaltag',
+					'hidden',
+					'sys_language_uid',
+					'tx_languagevisibility_visibility',
+					'lastUpdated',
+					'tx_sgnews_date_end',
+					'tx_sgnews_highlighted',
+					'tx_sgnews_never_highlighted',
+				]
+				)
 				) {
 					$GLOBALS['TCA'][$table]['types'][\SGalinski\SgNews\Utility\BackendNewsUtility::NEWS_DOKTYPE]['columnsOverrides'][$languageExcludeField]['l10n_mode'] = 'exclude';
 				}
 			}
 
 			$GLOBALS['TCA'][$table]['types'][\SGalinski\SgNews\Utility\BackendNewsUtility::NEWS_DOKTYPE]['columnsOverrides']['title']['label'] =
-				'LLL:EXT:' . $extKey . '/Resources/Private/Language/locallang_db.xlf:' . $table  . '.title';
+				'LLL:EXT:' . $extKey . '/Resources/Private/Language/locallang_db.xlf:' . $table . '.title';
 			$GLOBALS['TCA'][$table]['types'][\SGalinski\SgNews\Utility\BackendNewsUtility::NEWS_DOKTYPE]['columnsOverrides']['subtitle']['label'] =
-				'LLL:EXT:' . $extKey . '/Resources/Private/Language/locallang_db.xlf:' . $table  . '.subtitle';
+				'LLL:EXT:' . $extKey . '/Resources/Private/Language/locallang_db.xlf:' . $table . '.subtitle';
 			$GLOBALS['TCA'][$table]['types'][\SGalinski\SgNews\Utility\BackendNewsUtility::NEWS_DOKTYPE]['columnsOverrides']['slug']['label'] =
-				'LLL:EXT:' . $extKey . '/Resources/Private/Language/locallang_db.xlf:' . $table  . '.slug';
+				'LLL:EXT:' . $extKey . '/Resources/Private/Language/locallang_db.xlf:' . $table . '.slug';
 		}
 	}, 'sg_news', 'pages'
 );