-
Notifications
You must be signed in to change notification settings - Fork 74
Description
Hello.
Please review the formatting of these printf, both due to the presence of the esc_html_e function and for the order of the other parameters:
responsive/partials/entry/meta.php
Lines 33 to 35 in 6f04609
| printf( | |
| /* translators: 1: byline, 2: author */ | |
| '<span class="%3$s">' . esc_html_e( 'By ', 'responsive' ) . '</span>%4$s', |
responsive/partials/entry/meta.php
Lines 67 to 69 in 6f04609
| printf( | |
| /* translators: 1: class, 2: date */ | |
| '<i class="icon-calendar" aria-hidden="true"></i><span>' . esc_html_e( 'Posted on ', 'responsive' ) . '</span><span class="%1$s" itemprop="datePublished">%2$s</span>', |
responsive/partials/entry/meta.php
Lines 88 to 90 in 6f04609
| printf( | |
| /* translators: 1: class, 2: date */ | |
| '<i class="icon-calendar" aria-hidden="true"></i><span>' . esc_html_e( 'Last updated on ', 'responsive' ) . '</span><span class="%1$s" itemprop="datePublished">%2$s</span>', |
responsive/core/includes/functions.php
Lines 893 to 894 in 6f04609
| printf( | |
| '<i class="icon-calendar" aria-hidden="true"></i><span class="%1$s">' . esc_html_e( 'Posted on', 'responsive' ) . '</span>%2$s<span class="%3$s"> ' . esc_html_e( 'By', 'responsive' ) . ' </span>%4$s', |
responsive/core/includes/modules/related-posts/class-responsive-related-posts.php
Lines 352 to 354 in 6f04609
| printf( | |
| /* translators: 1: class, 2: date */ | |
| '<i class="icon-calendar" aria-hidden="true"></i><span>' . esc_html_e('Posted on ', 'responsive') . '</span><span class="%1$s" itemprop="datePublished">%2$s</span>', |
responsive/partials/single/meta.php
Lines 61 to 63 in 6f04609
| printf( | |
| /* translators: 1: class, 2: date */ | |
| '<i class="icon-calendar" aria-hidden="true"></i><span>' . esc_html_e( 'Posted on ', 'responsive' ) . '</span><span class="%1$s" itemprop="datePublished">%2$s</span>', |
responsive/partials/single/meta.php
Lines 82 to 84 in 6f04609
| printf( | |
| /* translators: 1: class, 2: date */ | |
| '<i class="icon-calendar" aria-hidden="true"></i><span>' . esc_html_e( 'Last updated on ', 'responsive' ) . '</span><span class="%1$s" itemprop="datePublished">%2$s</span>', |
Thanks.