diff --git a/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php b/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php index b39185e45e2..a6e0c345d1f 100644 --- a/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php +++ b/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php @@ -51,7 +51,6 @@ protected function html5_comment( $comment, $depth, $args ) { * fill color to the inner check shape when in circle form. */ if ( twentynineteen_is_comment_by_post_author( $comment ) ) { - /* translators: %s: SVG Icon */ printf( '', twentynineteen_get_icon_svg( 'check', 24 ) ); } @@ -110,5 +109,4 @@ protected function html5_comment( $comment, $depth, $args ) { ?> + + %1$s%2$s%4$s', /* translators: 1: SVG icon. 2: post author, only visible to screen readers. 3: author link. */ + '%1$s%2$s%4$s', twentynineteen_get_icon_svg( 'person', 16 ), __( 'Posted by', 'twentynineteen' ), esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), @@ -85,8 +85,8 @@ function twentynineteen_entry_footer() { /* translators: used between list items, there is a space after the comma. */ $categories_list = get_the_category_list( __( ', ', 'twentynineteen' ) ); if ( $categories_list ) { - /* translators: 1: SVG icon. 2: posted in label, only visible to screen readers. 3: list of categories. */ printf( + /* translators: 1: SVG icon. 2: posted in label, only visible to screen readers. 3: list of categories. */ '%1$s%2$s%3$s', twentynineteen_get_icon_svg( 'archive', 16 ), __( 'Posted in', 'twentynineteen' ), @@ -97,8 +97,8 @@ function twentynineteen_entry_footer() { /* translators: used between list items, there is a space after the comma. */ $tags_list = get_the_tag_list( '', __( ', ', 'twentynineteen' ) ); if ( $tags_list ) { - /* translators: 1: SVG icon. 2: posted in label, only visible to screen readers. 3: list of tags. */ printf( + /* translators: 1: SVG icon. 2: posted in label, only visible to screen readers. 3: list of tags. */ '%1$s%2$s %3$s', twentynineteen_get_icon_svg( 'tag', 16 ), __( 'Tags:', 'twentynineteen' ), diff --git a/wp-content/themes/twentynineteen/js/skip-link-focus-fix.js b/wp-content/themes/twentynineteen/js/skip-link-focus-fix.js index 0037752e09c..32ba80cc3cb 100644 --- a/wp-content/themes/twentynineteen/js/skip-link-focus-fix.js +++ b/wp-content/themes/twentynineteen/js/skip-link-focus-fix.js @@ -3,6 +3,8 @@ * * Helps with accessibility for keyboard only users. * + * This is the source file for what is minified in the twentynineteen_skip_link_focus_fix() PHP function. + * * Learn more: https://git.io/vWdr2 */ ( function() { diff --git a/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss b/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss index 7bb49633514..28572e08233 100644 --- a/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss +++ b/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss @@ -324,6 +324,7 @@ margin-top: calc(4 * #{ $size__spacing-unit}); margin-bottom: calc(4.33 * #{ $size__spacing-unit}); margin-right: 0; + padding-left: 0; } p { @@ -578,6 +579,10 @@ .blocks-gallery-item:last-child { margin-bottom: 16px; } + + figcaption a { + color: #fff; + } } //! Captions diff --git a/wp-content/themes/twentynineteen/single.php b/wp-content/themes/twentynineteen/single.php index 2e367523bef..02f178c28f9 100644 --- a/wp-content/themes/twentynineteen/single.php +++ b/wp-content/themes/twentynineteen/single.php @@ -27,7 +27,8 @@ // Parent post navigation. the_post_navigation( array( - 'prev_text' => _x( 'Published in
%title', 'Parent post link', 'twentynineteen' ), + /* translators: %s: parent post link */ + 'prev_text' => sprintf( __( 'Published in%s', 'twentynineteen' ), '%title' ), ) ); } elseif ( is_singular( 'post' ) ) { diff --git a/wp-content/themes/twentynineteen/style-rtl.css b/wp-content/themes/twentynineteen/style-rtl.css index bb5e4592b50..d0fc3e6627a 100644 --- a/wp-content/themes/twentynineteen/style-rtl.css +++ b/wp-content/themes/twentynineteen/style-rtl.css @@ -3765,6 +3765,7 @@ body.page .main-navigation { margin-top: calc(4 * 1rem); margin-bottom: calc(4.33 * 1rem); margin-left: 0; + padding-right: 0; } .entry .entry-content .wp-block-pullquote p { @@ -4047,6 +4048,10 @@ body.page .main-navigation { margin-bottom: 16px; } +.entry .entry-content .wp-block-gallery figcaption a { + color: #fff; +} + .entry .entry-content .wp-block-audio figcaption, .entry .entry-content .wp-block-video figcaption, .entry .entry-content .wp-block-image figcaption, diff --git a/wp-content/themes/twentynineteen/style.css b/wp-content/themes/twentynineteen/style.css index 20d5d725a86..45b3e543666 100644 --- a/wp-content/themes/twentynineteen/style.css +++ b/wp-content/themes/twentynineteen/style.css @@ -3777,6 +3777,7 @@ body.page .main-navigation { margin-top: calc(4 * 1rem); margin-bottom: calc(4.33 * 1rem); margin-right: 0; + padding-left: 0; } .entry .entry-content .wp-block-pullquote p { @@ -4059,6 +4060,10 @@ body.page .main-navigation { margin-bottom: 16px; } +.entry .entry-content .wp-block-gallery figcaption a { + color: #fff; +} + .entry .entry-content .wp-block-audio figcaption, .entry .entry-content .wp-block-video figcaption, .entry .entry-content .wp-block-image figcaption, diff --git a/wp-content/themes/twentynineteen/template-parts/post/author-bio.php b/wp-content/themes/twentynineteen/template-parts/post/author-bio.php index 4f62904e88b..d1ba8c3f762 100644 --- a/wp-content/themes/twentynineteen/template-parts/post/author-bio.php +++ b/wp-content/themes/twentynineteen/template-parts/post/author-bio.php @@ -10,6 +10,7 @@ if ( (bool) get_the_author_meta( 'description' ) ) : ?>

+

diff --git a/wp-includes/version.php b/wp-includes/version.php index 8ae0d66f054..05309bc7e9c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0.2-alpha-44195'; +$wp_version = '5.0.2-alpha-44196'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.