Add missing translate() call.
git-svn-id: https://develop.svn.wordpress.org/trunk@18315 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
d75f27ab80
commit
702409e5d9
|
@ -106,7 +106,7 @@ foreach ( $credits['groups'] as $group_slug => $group_data ) {
|
|||
} elseif ( isset( $group_data['placeholders'] ) ) {
|
||||
$title = vsprintf( translate( $group_data['name'] ), $group_data['placeholders'] );
|
||||
} else {
|
||||
$title = $group_data['name'];
|
||||
$title = translate( $group_data['name'] );
|
||||
}
|
||||
|
||||
echo '<h3 class="wp-people-group">' . $title . "</h3>\n";
|
||||
|
|
Loading…
Reference in New Issue