Make WordPress Core

Changeset 34301


Ignore:
Timestamp:
09/18/2015 06:49:40 PM (10 years ago)
Author:
SergeyBiryukov
Message:

Add missing translator comment after [34295].

See #31853.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/edit-form-comment.php

    r34295 r34301  
    9595<span id="timestamp"><?php
    9696printf(
    97     __( 'Submitted on: %1$s' ),
     97    /* translators: %s: comment date */
     98    __( 'Submitted on: %s' ),
    9899    '<b>' . date_i18n( $datef, strtotime( $comment->comment_date ) ) . '</b>'
    99100);
     
    118119<div class="misc-pub-section misc-pub-response-to">
    119120    <?php printf(
    120         /* translators: post link */
     121        /* translators: %s: post link */
    121122        __( 'In response to: %s' ),
    122123        '<b>' . $post_link . '</b>'
     
    133134    <div class="misc-pub-section misc-pub-reply-to">
    134135        <?php printf(
    135             /* translators: comment link */
     136            /* translators: %s: comment link */
    136137            __( 'In reply to: %s' ),
    137138            '<b><a href="' . $parent_link . '">' . $name . '</a></b>'
Note: See TracChangeset for help on using the changeset viewer.