diff --git a/core/modules/media/src/Plugin/media/Source/OEmbed.php b/core/modules/media/src/Plugin/media/Source/OEmbed.php
index e7417c0018a82218c103863b9e22808f35034b76..fd1d1ebaea727256f40223f3d0a331628b1a91ab 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'),
     ];
   }