wp-admin/about.php
Lines:
1 to 100 of 434
<?php /** * About This Version administration panel. * * @package WordPress * @subpackage Administration */ /** WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; // Used in the HTML title tag. /* translators: Page title of the About WordPress page in the admin. */ $title = _x( 'About', 'page title' ); list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); require_once ABSPATH . 'wp-admin/admin-header.php'; ?> <div class="wrap about__container"> <div class="about__header"> <div class="about__header-title"> <h1> <?php _e( 'WordPress' ); ?> <span class="screen-reader-text"><?php echo $display_version; ?></span> </h1> </div> <div class="about__header-text"> <?php _e( 'Build the site you’ve always wanted — with blocks' ); ?> </div> <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> <a href="about.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'What’s New' ); ?></a> <a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a> <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a> <a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a> </nav> </div> <div class="about__section changelog"> <div class="column"> <h2><?php _e( 'Maintenance and Security Releases' ); ?></h2> <p> <?php printf( /* translators: 1: WordPress version number, 2: plural number of bugs. */ _n( '<strong>Version %1$s</strong> addressed %2$s bug.', '<strong>Version %1$s</strong> addressed %2$s bugs.', 19 ), '5.9.3', number_format_i18n( 19 ) ); ?> <?php printf( /* translators: %s: HelpHub URL. */ __( 'For more information, see <a href="%s">the release notes</a>.' ), sprintf( /* translators: %s: WordPress version. */ esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), sanitize_title( '5.9.3' ) ) ); ?> </p> <p> <?php printf( /* translators: 1: WordPress version number, 2: Plural number of bugs. More than one security issue. */ _n( '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.', '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.', 1 ), '5.9.2', number_format_i18n( 1 ) ); ?> <?php printf( /* translators: %s: HelpHub URL. */ __( 'For more information, see <a href="%s">the release notes</a>.' ), sprintf( /* translators: %s: WordPress version. */ esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), sanitize_title( '5.9.2' ) ) ); ?> </p> <p> <?php printf( /* translators: 1: WordPress version number, 2: plural number of bugs. */