Help/About: Clarify accessibility features.

* Captions are uploaded in the block editor, and not created in the editor.
* Avoid making an invalid claim of WCAG 2.1 conformance or trivialize the efforts still required to build an accessible and compliant site.

Follow-up to [49640].

Props joedolson.
Reviewed by ryelle, SergeyBiryukov.
Merges [49674] to the 5.6 branch.
See #51415.
Built from https://develop.svn.wordpress.org/branches/5.6@49687


git-svn-id: http://core.svn.wordpress.org/branches/5.6@49410 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2020-11-23 19:42:02 +00:00
parent 3cdf510961
commit a68d20cfcc
2 changed files with 6 additions and 5 deletions

View File

@ -87,8 +87,8 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
</div>
<div class="about__section has-2-columns is-wider-left has-transparent-background-color">
<div class="column">
<h2><?php _e( 'Caption videos—right in the block editor' ); ?></h2>
<p><?php _e( 'Adding captions to your videos has landed in the block editor, with special attention to accessibility. Whether youre navigating with a keyboard or a mouse, whether or not you use a screen reader, captions are easier to include than ever.' ); ?></p>
<h2><?php _e( 'Upload video captions directly in the block editor' ); ?></h2>
<p><?php _e( 'To help you add subtitles or captions to your videos, you can now upload them within your post or page. This makes it easier than ever to make your videos accessible for anyone who needs or prefers to use subtitles.' ); ?></p>
</div>
</div>
</div>
@ -119,8 +119,9 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<p>
<?php
printf(
/* translators: %s: WCAG information link. */
__( 'Whats more, this default theme puts accessibility at the heart of your website. It conforms to <a href="%s">Web Content Accessibility Guidelines (WCAG) 2.1</a> at Level AAA right out of the box, so you can meet the highest level of international accessibility standards. Just add the necessary elements to your plugins, pictures, and other content, and youre ready to go!' ),
/* translators: 1: WordPress accessibility-ready guidelines link, 2: WCAG information link. */
__( 'Whats more, this default theme puts accessibility at the heart of your website. It conforms to the <a href="%1$s">WordPress accessibility-ready guidelines</a> and addresses several more specialized standards from the <a href="%2$s">Web Content Accessibility Guidelines (WCAG) 2.1 at level AAA</a>. It will help you meet the highest level of international accessibility standards when you create accessible content and choose plugins which are accessible too!' ),
'https://make.wordpress.org/themes/handbook/review/accessibility/',
'https://www.w3.org/WAI/WCAG2AAA-Conformance'
);
?>

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.6-RC1-49686';
$wp_version = '5.6-RC1-49687';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.