diff --git a/typo3/sysext/backend/Classes/Form/Element/ImageManipulationElement.php b/typo3/sysext/backend/Classes/Form/Element/ImageManipulationElement.php index 7be89176863a1664692240aacd6fe78afd2778ac..903affac09ad09691ecbf621e249d896d61fc3c8 100644 --- a/typo3/sysext/backend/Classes/Form/Element/ImageManipulationElement.php +++ b/typo3/sysext/backend/Classes/Form/Element/ImageManipulationElement.php @@ -50,6 +50,10 @@ class ImageManipulationElement extends AbstractFormElement 'title' => 'LLL:EXT:lang/Resources/Private/Language/locallang_wizards.xlf:imwizard.ratio.16_9', 'value' => 16 / 9 ], + '3:2' => [ + 'title' => 'LLL:EXT:lang/Resources/Private/Language/locallang_wizards.xlf:imwizard.ratio.3_2', + 'value' => 3 / 2 + ], '4:3' => [ 'title' => 'LLL:EXT:lang/Resources/Private/Language/locallang_wizards.xlf:imwizard.ratio.4_3', 'value' => 4 / 3 diff --git a/typo3/sysext/lang/Resources/Private/Language/locallang_wizards.xlf b/typo3/sysext/lang/Resources/Private/Language/locallang_wizards.xlf index b153e0c7a05296052450b81b8a657a973f72aa93..6858a82789f515f465c31b1d4f59f1e22ccda393 100644 --- a/typo3/sysext/lang/Resources/Private/Language/locallang_wizards.xlf +++ b/typo3/sysext/lang/Resources/Private/Language/locallang_wizards.xlf @@ -297,6 +297,9 @@ <trans-unit id="imwizard.ratio.16_9"> <source>16:9</source> </trans-unit> + <trans-unit id="imwizard.ratio.3_2"> + <source>3:2</source> + </trans-unit> <trans-unit id="imwizard.ratio.4_3"> <source>4:3</source> </trans-unit>