From 85552fcf250797c41c604e2a2df2d01452ca209c Mon Sep 17 00:00:00 2001 From: audrasjb Date: Sun, 1 Feb 2026 10:18:40 +0000 Subject: [PATCH] Replace "Add New Media" title with "Add Media" in media-new.php MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- wp-admin/media-new.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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.