diff --git a/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationController.php b/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationController.php index 4fc6c1e..ce4b4cc 100644 --- a/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationController.php +++ b/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationController.php @@ -289,7 +289,7 @@ public function entityFormSharedElements($element, $form_state, $form) { // @todo Find a more reliable way to determine if a form element concerns a // multilingual value. if (!isset($ignored_types)) { - $ignored_types = array_flip(array('actions', 'value', 'hidden', 'vertical_tabs', 'token')); + $ignored_types = array_flip(array('actions', 'value', 'hidden', 'vertical_tabs', 'token', 'details')); } foreach (element_children($element) as $key) { diff --git a/core/modules/node/lib/Drupal/node/Entity/Node.php b/core/modules/node/lib/Drupal/node/Entity/Node.php index aa8d3b8..b6778f4 100644 --- a/core/modules/node/lib/Drupal/node/Entity/Node.php +++ b/core/modules/node/lib/Drupal/node/Entity/Node.php @@ -400,7 +400,7 @@ public static function baseFieldDefinitions(EntityTypeInterface $entity_type) { ->setDisplayConfigurable('form', TRUE); $fields['uid'] = FieldDefinition::create('entity_reference') - ->setLabel(t('User ID')) + ->setLabel(t('Author')) ->setDescription(t('The user ID of the node author.')) ->setSettings(array( 'target_type' => 'user', @@ -427,7 +427,7 @@ public static function baseFieldDefinitions(EntityTypeInterface $entity_type) { ->setTranslatable(TRUE); $fields['promote'] = FieldDefinition::create('boolean') - ->setLabel(t('Promote')) + ->setLabel(t('Promoted')) ->setDescription(t('A boolean indicating whether the node should be displayed on the front page.')) ->setTranslatable(TRUE);