diff -r 7b1b88e27a20 -r 48c4eec2b7e6 wp/wp-admin/index.php --- a/wp/wp-admin/index.php Thu Sep 29 08:06:27 2022 +0200 +++ b/wp/wp-admin/index.php Fri Sep 05 18:40:08 2025 +0200 @@ -116,7 +116,7 @@ if ( ! $is_dev_version ) { $version_url = sprintf( /* translators: %s: WordPress version. */ - esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), + esc_url( __( 'https://wordpress.org/documentation/wordpress-version/version-%s/' ) ), sanitize_title( $wp_version ) ); @@ -129,8 +129,8 @@ $screen->set_help_sidebar( '

' . __( 'For more information:' ) . '

' . - '

' . __( 'Documentation on Dashboard' ) . '

' . - '

' . __( 'Support' ) . '

' . + '

' . __( 'Documentation on Dashboard' ) . '

' . + '

' . __( 'Support forums' ) . '

' . '

' . $wp_version_text . '

' ); @@ -154,20 +154,21 @@ // Only show the dashboard notice if it's been less than a minute since the message was postponed. if ( $time_passed < MINUTE_IN_SECONDS ) : - ?> -
-

- -

-
- - + $message = sprintf( + /* translators: %s: Human-readable time interval. */ + __( 'The admin email verification page will reappear after %s.' ), + human_time_diff( time() + $remind_interval ) + ); + wp_admin_notice( + $message, + array( + 'type' => 'success', + 'dismissible' => true, + ) + ); + endif; + endif; + ?> " aria-label="">