Commit adee6e13b6 for wordpress.org

commit adee6e13b659783aa9e5e4cd8054135123c655e1
Author: Sergey Biryukov <sergeybiryukov.ru@gmail.com>
Date:   Thu Dec 25 23:32:34 2025 +0000

    Help/About: Simplify help text on Updates screen to account for third-party updates.

    Follow-up to [14837], [26818], [33704].

    Props NekoJonez, costdev, oglekler, SergeyBiryukov.
    Fixes #57672.
    Built from https://develop.svn.wordpress.org/trunk@61408


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

diff --git a/wp-admin/update-core.php b/wp-admin/update-core.php
index 308f7e661f..564b22d431 100644
--- a/wp-admin/update-core.php
+++ b/wp-admin/update-core.php
@@ -987,7 +987,7 @@ if ( ( 'do-theme-upgrade' === $action || ( 'do-plugin-upgrade' === $action && !
 $title       = __( 'WordPress Updates' );
 $parent_file = 'index.php';

-$updates_overview  = '<p>' . __( 'On this screen, you can update to the latest version of WordPress, as well as update your themes, plugins, and translations from the WordPress.org repositories.' ) . '</p>';
+$updates_overview  = '<p>' . __( 'On this screen, you can update to the latest version of WordPress, as well as update your themes, plugins, and translations.' ) . '</p>';
 $updates_overview .= '<p>' . __( 'If an update is available, you&#8127;ll see a notification appear in the Toolbar and navigation menu.' ) . ' ' . __( 'Keeping your site updated is important for security. It also makes the internet a safer place for you and your readers.' ) . '</p>';

 get_current_screen()->add_help_tab(
diff --git a/wp-includes/version.php b/wp-includes/version.php
index d13e963841..968279d2a8 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.0-alpha-61407';
+$wp_version = '7.0-alpha-61408';

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