From 2865284d76b468042130d79652af701ac49714cd Mon Sep 17 00:00:00 2001 From: Georg Ringer <georg.ringer@gmail.com> Date: Mon, 2 Mar 2020 16:35:11 +0100 Subject: [PATCH] [TASK] Use label "default" instead of "none" for Space before/after MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change the misleading label "none" to "default" for the following fields in tt_content: `space_before_class` & `space_after_class`. The label "none" is misleading because by default the element will have some spacing before/after by default, derived from the integration. Resolves: #87716 Releases: master Change-Id: I4a0cabe70174900b2d403e9756efb2748508dd3a Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/63528 Tested-by: TYPO3com <noreply@typo3.com> Tested-by: Oliver Bartsch <bo@cedev.de> Tested-by: Christian Eßl <indy.essl@gmail.com> Tested-by: Benni Mack <benni@typo3.org> Reviewed-by: Oliver Bartsch <bo@cedev.de> Reviewed-by: Christian Eßl <indy.essl@gmail.com> Reviewed-by: Benni Mack <benni@typo3.org> --- typo3/sysext/frontend/Configuration/TCA/tt_content.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typo3/sysext/frontend/Configuration/TCA/tt_content.php b/typo3/sysext/frontend/Configuration/TCA/tt_content.php index 01ad1774377e..f595646caa4e 100644 --- a/typo3/sysext/frontend/Configuration/TCA/tt_content.php +++ b/typo3/sysext/frontend/Configuration/TCA/tt_content.php @@ -380,7 +380,7 @@ return [ 'type' => 'select', 'renderType' => 'selectSingle', 'items' => [ - ['LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:space_class_none', ''], + ['LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.default_value', ''], ['LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:space_class_extra_small', 'extra-small'], ['LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:space_class_small', 'small'], ['LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:space_class_medium', 'medium'], @@ -397,7 +397,7 @@ return [ 'type' => 'select', 'renderType' => 'selectSingle', 'items' => [ - ['LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:space_class_none', ''], + ['LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.default_value', ''], ['LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:space_class_extra_small', 'extra-small'], ['LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:space_class_small', 'small'], ['LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:space_class_medium', 'medium'], -- GitLab