diff --git a/core/modules/image/lib/Drupal/image/Plugin/ImageEffect/CropImageEffect.php b/core/modules/image/lib/Drupal/image/Plugin/ImageEffect/CropImageEffect.php
index 39f58f3..554dc4c 100644
--- a/core/modules/image/lib/Drupal/image/Plugin/ImageEffect/CropImageEffect.php
+++ b/core/modules/image/lib/Drupal/image/Plugin/ImageEffect/CropImageEffect.php
@@ -64,15 +64,15 @@ public function getForm() {
       '#type' => 'radios',
       '#title' => t('Anchor'),
       '#options' => array(
-        'left-top' => t('Top') . ' ' . t('Left'),
-        'center-top' => t('Top') . ' ' . t('Center'),
-        'right-top' => t('Top') . ' ' . t('Right'),
-        'left-center' => t('Center') . ' ' . t('Left'),
+        'left-top' => t('Top left'),
+        'center-top' => t('Top center'),
+        'right-top' => t('Top right'),
+        'left-center' => t('Center left'),
         'center-center' => t('Center'),
-        'right-center' => t('Center') . ' ' . t('Right'),
-        'left-bottom' => t('Bottom') . ' ' . t('Left'),
-        'center-bottom' => t('Bottom') . ' ' . t('Center'),
-        'right-bottom' => t('Bottom') . ' ' . t('Right'),
+        'right-center' => t('Center right'),
+        'left-bottom' => t('Bottom left'),
+        'center-bottom' => t('Bottom center'),
+        'right-bottom' => t('Bottom right'),
       ),
       '#theme' => 'image_anchor',
       '#default_value' => $this->configuration['anchor'],
