Add missing gettext. This is not a new string; it already exists a few lines up. props alex-ye, fixes #24880.

git-svn-id: https://develop.svn.wordpress.org/trunk@24885 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2013-07-29 19:48:41 +00:00
parent b725127d21
commit cafccbea91
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ if ( ! empty( $args['args']['revisions_count'] ) ) :
printf( __( 'Revisions: %s' ), '<b>' . number_format_i18n( $args['args']['revisions_count'] ) . '+</b>' );
echo '</span>';
} else {
printf( 'Revisions: %s', '<b>' . number_format_i18n( $args['args']['revisions_count'] ) . '</b>' );
printf( __( 'Revisions: %s' ), '<b>' . number_format_i18n( $args['args']['revisions_count'] ) . '</b>' );
}
?>
<a class="hide-if-no-js" href="<?php echo esc_url( get_edit_post_link( $args['args']['revision_id'] ) ); ?>"><?php _ex( 'Browse', 'revisions' ); ?></a>