diff --git a/wp-includes/link-template.php b/wp-includes/link-template.php index 83d0c533c7..e68c0aacbd 100644 --- a/wp-includes/link-template.php +++ b/wp-includes/link-template.php @@ -2312,8 +2312,8 @@ function get_the_posts_pagination( $args = array() ) { if ( $GLOBALS['wp_query']->max_num_pages > 1 ) { $args = wp_parse_args( $args, array( 'mid_size' => 1, - 'prev_text' => __( 'Previous' ), - 'next_text' => __( 'Next' ), + 'prev_text' => _x( 'Previous', 'previous post' ), + 'next_text' => _x( 'Next', 'next post' ), 'screen_reader_text' => __( 'Posts navigation' ), ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 07c5836780..4a3ebb63ea 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-alpha-31070'; +$wp_version = '4.2-alpha-31071'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.