diff --git a/core/modules/content_translation/content_translation.module b/core/modules/content_translation/content_translation.module
index 9ab0bfd..ad5cc7e 100644
--- a/core/modules/content_translation/content_translation.module
+++ b/core/modules/content_translation/content_translation.module
@@ -423,6 +423,10 @@ function content_translation_language_configuration_element_process(array $eleme
     $form_state->set(['content_translation', 'key'], $key);
     $context = $form_state->get(['language', $key]);
 
+    $element['content_translation_title'] = array(
+      '#markup' => '<label>' . t('Translation') . '</label>',
+    );
+
     $element['content_translation'] = array(
       '#type' => 'checkbox',
       '#title' => t('Enable translation'),
@@ -430,7 +434,6 @@ function content_translation_language_configuration_element_process(array $eleme
       // default to no translatability.
       '#default_value' => $context['bundle'] ? \Drupal::service('content_translation.manager')->isEnabled($context['entity_type'], $context['bundle']) : FALSE,
       '#element_validate' => array('content_translation_language_configuration_element_validate'),
-      '#prefix' => '<label>' . t('Translation') . '</label>',
     );
 
     $submit_name = isset($form['actions']['save_continue']) ? 'save_continue' : 'submit';
