Make WordPress Core

Changeset 38327


Ignore:
Timestamp:
08/23/2016 01:45:04 AM (8 years ago)
Author:
SergeyBiryukov
Message:

I18N: Remove unnecessary context in wp_post_revision_title_expanded().

Props ramiy.
Fixes #37781.

File:
1 edited

Legend:

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

    r38324 r38327  
    16851685    $revision_date_author = sprintf(
    16861686        /* translators: post revision title: 1: author avatar, 2: author name, 3: time ago, 4: date */
    1687         _x( '%1$s %2$s, %3$s ago (%4$s)', 'post revision title' ),
     1687        __( '%1$s %2$s, %3$s ago (%4$s)' ),
    16881688        $gravatar,
    16891689        $author,
     
    16921692    );
    16931693
    1694     /* translators: %s: revision date with author's Gravatar */
     1694    /* translators: %s: revision date with author avatar */
    16951695    $autosavef = __( '%s [Autosave]' );
    1696     /* translators: %s: revision date with author's Gravatar */
     1696    /* translators: %s: revision date with author avatar */
    16971697    $currentf  = __( '%s [Current Revision]' );
    16981698
Note: See TracChangeset for help on using the changeset viewer.