Make WordPress Core

Changeset 38611


Ignore:
Timestamp:
09/15/2016 09:19:11 AM (9 years ago)
Author:
SergeyBiryukov
Message:

I18N: Correct context for Next/Previous strings in get_the_posts_pagination().

Props FlorianBrinkmann.
Fixes #37952.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/link-template.php

    r38606 r38611  
    25302530        $args = wp_parse_args( $args, array(
    25312531            'mid_size'           => 1,
    2532             'prev_text'          => _x( 'Previous', 'previous post' ),
    2533             'next_text'          => _x( 'Next', 'next post' ),
     2532            'prev_text'          => _x( 'Previous', 'previous set of posts' ),
     2533            'next_text'          => _x( 'Next', 'next set of posts' ),
    25342534            'screen_reader_text' => __( 'Posts navigation' ),
    25352535        ) );
Note: See TracChangeset for help on using the changeset viewer.