Commit 70ee018e3c for wordpress.org

commit 70ee018e3cfc2fc2cba79b47b41cc217dc0d6422
Author: audrasjb <audrasjb@git.wordpress.org>
Date:   Sun Feb 1 10:18:40 2026 +0000

    Replace "Add New Media" title with "Add Media" in media-new.php

    In #61219, it was decided to replace each occurrences of "Add New […]" (post, page, taxonomy, whatever) with "Add […]", to make the interface more consistent and simplify the translation effort.

    This changeset replaces a missed occurrence appearing when uploading a media from the list view in the media library, and updates it as well, for better consistency.

    Follow-up to [59784], [59786], [59791], [60098], [60099].

    Props audrasjb, jsmansart.
    Fixes #64573
    See #61219

    Built from https://develop.svn.wordpress.org/trunk@61569


    git-svn-id: http://core.svn.wordpress.org/trunk@60880 1a063a9b-81f0-0310-95a4-ce76da25c4cd

diff --git a/wp-admin/media-new.php b/wp-admin/media-new.php
index 448c1c7914..7be2874380 100644
--- a/wp-admin/media-new.php
+++ b/wp-admin/media-new.php
@@ -40,7 +40,7 @@ if ( $_POST ) {
 }

 // Used in the HTML title tag.
-$title       = __( 'Upload New Media' );
+$title       = __( 'Upload Media' );
 $parent_file = 'upload.php';

 get_current_screen()->add_help_tab(
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 9612fc782a..4ba870b586 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.0-alpha-61568';
+$wp_version = '7.0-alpha-61569';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.