diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f98d1d60..382f009f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,11 @@ This project adheres to [Semantic Versioning](https://semver.org/). ## x.y.z ### Added +- Make records timeable and hideable (#989) - Add support for PHP 8.3 (#965) - Add an FE editor (#864, #872, #874, #876) - Add automerging of green Dependabot PRs (#756) - Add type coverage calculation (#830) -- Make records timeable and hideable (#553) ### Changed - Rename TsConfig directory to `TSconfig` (#923) diff --git a/Configuration/TCA/tx_tea_domain_model_product_tea.php b/Configuration/TCA/tx_tea_domain_model_product_tea.php index 22e2e1a05..7dabc57d7 100644 --- a/Configuration/TCA/tx_tea_domain_model_product_tea.php +++ b/Configuration/TCA/tx_tea_domain_model_product_tea.php @@ -50,7 +50,7 @@ 'columns' => [ 'hidden' => [ 'exclude' => true, - 'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.enabled', + 'label' => 'LLL:EXT:tea/Resources/Private/Language/locallang_db.xlf:tx_tea_domain_model_product_tea.hidden', 'config' => [ 'type' => 'check', 'renderType' => 'checkboxToggle', @@ -245,7 +245,7 @@ ]; $tca['columns']['hidden']['config'] = [ 'type' => 'check', - 'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.enabled', + 'label' => 'LLL:EXT:tea/Resources/Private/Language/locallang_db.xlf:tx_tea_domain_model_product_tea.hidden', 'items' => [ [ 0 => '', diff --git a/Resources/Private/Language/de.locallang_db.xlf b/Resources/Private/Language/de.locallang_db.xlf index 0750c98ea..fa387a563 100644 --- a/Resources/Private/Language/de.locallang_db.xlf +++ b/Resources/Private/Language/de.locallang_db.xlf @@ -31,6 +31,9 @@ <source>Usergroup Access Rights</source> <target>Zugriffsrechte für Benutzergruppen</target> </trans-unit> + <trans-unit id="tx_tea_domain_model_product_tea.hidden"> + <source>Sichtbar</source> + </trans-unit> </body> </file> </xliff> diff --git a/Resources/Private/Language/locallang_db.xlf b/Resources/Private/Language/locallang_db.xlf index 1068b6ea4..de64197f6 100644 --- a/Resources/Private/Language/locallang_db.xlf +++ b/Resources/Private/Language/locallang_db.xlf @@ -24,6 +24,9 @@ <trans-unit id="tx_tea_domain_model_product_tea.fe_group"> <source>Usergroup Access Rights</source> </trans-unit> + <trans-unit id="tx_tea_domain_model_product_tea.hidden"> + <source>Visible</source> + </trans-unit> </body> </file> </xliff>