From cd796b6dc9976a7a6612755fecacdd8636a03015 Mon Sep 17 00:00:00 2001
From: webchick <drupal@webchick.net>
Date: Wed, 7 Jul 2021 10:30:18 -0700
Subject: [PATCH] Issue #3222486 by Chris Matthews: Make remote video field
 mapping field labels consistent and less verbose

---
 .../media/src/Plugin/media/Source/OEmbed.php  | 20 +++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/core/modules/media/src/Plugin/media/Source/OEmbed.php b/core/modules/media/src/Plugin/media/Source/OEmbed.php
index e7417c0018a8..fd1d1ebaea72 100644
--- a/core/modules/media/src/Plugin/media/Source/OEmbed.php
+++ b/core/modules/media/src/Plugin/media/Source/OEmbed.php
@@ -195,19 +195,19 @@ public function getMetadataAttributes() {
     return [
       'type' => $this->t('Resource type'),
       'title' => $this->t('Resource title'),
-      'author_name' => $this->t('The name of the author/owner'),
-      'author_url' => $this->t('The URL of the author/owner'),
-      'provider_name' => $this->t("The name of the provider"),
-      'provider_url' => $this->t('The URL of the provider'),
+      'author_name' => $this->t('Author/owner name'),
+      'author_url' => $this->t('Author/owner URL'),
+      'provider_name' => $this->t('Provider name'),
+      'provider_url' => $this->t('Provider URL'),
       'cache_age' => $this->t('Suggested cache lifetime'),
-      'default_name' => $this->t('Default name of the media item'),
-      'thumbnail_uri' => $this->t('Local URI of the thumbnail'),
+      'default_name' => $this->t('Media item default name'),
+      'thumbnail_uri' => $this->t('Thumbnail local URI'),
       'thumbnail_width' => $this->t('Thumbnail width'),
       'thumbnail_height' => $this->t('Thumbnail height'),
-      'url' => $this->t('The source URL of the resource'),
-      'width' => $this->t('The width of the resource'),
-      'height' => $this->t('The height of the resource'),
-      'html' => $this->t('The HTML representation of the resource'),
+      'url' => $this->t('Resource source URL'),
+      'width' => $this->t('Resource width'),
+      'height' => $this->t('Resource height'),
+      'html' => $this->t('Resource HTML representation'),
     ];
   }
 
-- 
GitLab