Make WordPress Core


Ignore:
Timestamp:
07/26/2015 11:35:47 PM (10 years ago)
Author:
SergeyBiryukov
Message:

Comment string tweaks:

  • Merge two strings about an invalid comment ID.
  • Add missing context to 'Mark as Spam' string.
  • Merge two 'In Response To' strings, replace redundant context with a translator comment.

props pavelevap.
fixes #32334.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-comments-list-table.php

    r33270 r33436  
    358358        $columns['comment'] = _x( 'Comment', 'column name' );
    359359
    360         if ( !$post_id )
    361             $columns['response'] = _x( 'In Response To', 'column name' );
     360        if ( ! $post_id ) {
     361            /* translators: column name or table row header */
     362            $columns['response'] = __( 'In Response To' );
     363        }
    362364
    363365        return $columns;
Note: See TracChangeset for help on using the changeset viewer.