wp-admin/about.php
Lines:
301 to 380 of 380
printf( /* translators: %s: WordPress 6.0 Field Guide link. */ __( 'Check out the latest version of the <a href="%s">WordPress Field Guide</a>. It is overflowing with detailed developer notes to help you build with WordPress.' ), __( 'https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/' ) ); ?> </p> </div> <div class="column" style="padding-top:0"> <p> <?php printf( /* translators: %s: WordPress 6.0 Release Notes link. */ __( '<a href="%s">Read the WordPress 6.0 Release Notes</a> for more information on the included enhancements and issues fixed, installation information, developer notes and resources, release contributors, and the list of file changes in this release.' ), sprintf( /* translators: %s: WordPress version. */ esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), '6-0' ) ); ?> </p> </div> </div> <hr /> <div class="return-to-dashboard"> <?php if ( current_user_can( 'update_core' ) && isset( $_GET['updated'] ) ) : ?> <a href="<?php echo esc_url( Telf_admin_url( 'update-core.php' ) ); ?>"> <?php is_multisite() ? _e( 'Go to Updates' ) : _e( 'Go to Dashboard → Updates' ); ?> </a> | <?php endif; ?> <a href="<?php echo esc_url( Telf_admin_url() ); ?>"><?php is_blog_admin() ? _e( 'Go to Dashboard → Home' ) : _e( 'Go to Dashboard' ); ?></a> </div> </div> <?php require_once ABSPATH . 'wp-admin/admin-footer.php'; ?> <?php // These are strings we may use to describe maintenance/security releases, where we aim for no new strings. return; __( 'Maintenance Release' ); __( 'Maintenance Releases' ); __( 'Security Release' ); __( 'Security Releases' ); __( 'Maintenance and Security Release' ); __( 'Maintenance and Security Releases' ); /* translators: %s: WordPress version number. */ __( '<strong>Version %s</strong> addressed one security issue.' ); /* translators: %s: WordPress version number. */ __( '<strong>Version %s</strong> addressed some security issues.' ); /* translators: 1: WordPress version number, 2: Plural number of bugs. */ _n_noop( '<strong>Version %1$s</strong> addressed %2$s bug.', '<strong>Version %1$s</strong> addressed %2$s bugs.' ); /* translators: 1: WordPress version number, 2: Plural number of bugs. Singular security issue. */ _n_noop( '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.', '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.' ); /* translators: 1: WordPress version number, 2: Plural number of bugs. More than one security issue. */ _n_noop( '<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.' ); /* translators: %s: Documentation URL. */ __( 'For more information, see <a href="%s">the release notes</a>.' );