diff --git a/wp-content/themes/twentyfifteen/inc/template-tags.php b/wp-content/themes/twentyfifteen/inc/template-tags.php index a506461382..f545be3e42 100644 --- a/wp-content/themes/twentyfifteen/inc/template-tags.php +++ b/wp-content/themes/twentyfifteen/inc/template-tags.php @@ -52,7 +52,7 @@ function twentyfifteen_entry_meta() { $format = get_post_format(); if ( current_theme_supports( 'post-formats', $format ) ) { printf( '%1$s%3$s', - sprintf( '%s', esc_html_x( 'Format', 'Used before post format.', 'twentyfifteen' ) ), + sprintf( '%s ', esc_html_x( 'Format', 'Used before post format.', 'twentyfifteen' ) ), esc_url( get_post_format_link( $format ) ), get_post_format_string( $format ) ); @@ -72,7 +72,7 @@ function twentyfifteen_entry_meta() { esc_html( get_the_modified_date() ) ); - printf( '%1$s%3$s', + printf( '%1$s %3$s', esc_html_x( 'Posted on', 'Used before publish date.', 'twentyfifteen' ), esc_url( get_permalink() ), $time_string @@ -81,7 +81,7 @@ function twentyfifteen_entry_meta() { if ( 'post' == get_post_type() ) { if ( is_singular() || is_multi_author() ) { - printf( '%1$s%3$s', + printf( '%1$s %3$s', esc_html_x( 'Author', 'Used before post author name.', 'twentyfifteen' ), esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_html( get_the_author() ) @@ -90,7 +90,7 @@ function twentyfifteen_entry_meta() { $categories_list = get_the_category_list( _x( ', ', 'Used between list items, there is a space after the comma.', 'twentyfifteen' ) ); if ( $categories_list && twentyfifteen_categorized_blog() ) { - printf( '%1$s%2$s', + printf( '%1$s %2$s', esc_html_x( 'Categories', 'Used before category names.', 'twentyfifteen' ), $categories_list ); @@ -98,7 +98,7 @@ function twentyfifteen_entry_meta() { $tags_list = get_the_tag_list( '', _x( ', ', 'Used between list items, there is a space after the comma.', 'twentyfifteen' ) ); if ( $tags_list ) { - printf( '%1$s%2$s', + printf( '%1$s %2$s', esc_html_x( 'Tags', 'Used before tag names.', 'twentyfifteen' ), $tags_list ); @@ -109,7 +109,7 @@ function twentyfifteen_entry_meta() { // Retrieve attachment metadata. $metadata = wp_get_attachment_metadata(); - printf( '%1$s%3$s × %4$s', + printf( '%1$s %3$s × %4$s', esc_html_x( 'Full size', 'Used before full size attachment link.', 'twentyfifteen' ), esc_url( wp_get_attachment_url() ), $metadata['width'], diff --git a/wp-content/themes/twentyfifteen/single.php b/wp-content/themes/twentyfifteen/single.php index be4a8c3d7c..3094a3b7d5 100644 --- a/wp-content/themes/twentyfifteen/single.php +++ b/wp-content/themes/twentyfifteen/single.php @@ -30,8 +30,8 @@ get_header(); ?> // Previous/next post navigation. the_post_navigation( array( - 'next_text' => _x( 'Next post:%title', 'Next post link', 'twentyfifteen' ), - 'prev_text' => _x( 'Previous post:%title', 'Previous post link', 'twentyfifteen' ) + 'next_text' => _x( 'Next post: %title', 'Next post link', 'twentyfifteen' ), + 'prev_text' => _x( 'Previous post: %title', 'Previous post link', 'twentyfifteen' ) ) ); // End the loop. diff --git a/wp-includes/version.php b/wp-includes/version.php index 1d1e239e5f..f159faf945 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-beta2-30780'; +$wp_version = '4.1-beta2-30781'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.