Make WordPress Core

Ticket #47515: 47515.3.diff

File 47515.3.diff, 756 bytes (added by garrett-eclipse, 7 years ago)

The missing comments were addressed elsewhere, this patch corrects the single comment which only mentioned one placeholder when there's two.

  • src/wp-admin/includes/class-wp-themes-list-table.php

     
    281281                                <?php
    282282                                if ( $theme->parent() ) {
    283283                                        printf(
    284                                                 /* translators: %s: Link to documentation on child themes. */
     284                                                /* translators: 1: Link to documentation on child themes 2: Name of parent theme. */
    285285                                                ' <p class="howto">' . __( 'This <a href="%1$s">child theme</a> requires its parent theme, %2$s.' ) . '</p>',
    286286                                                __( 'https://developer.wordpress.org/themes/advanced-topics/child-themes/' ),
    287287                                                $theme->parent()->display( 'Name' )