Add missing translate() call.
git-svn-id: http://svn.automattic.com/wordpress/trunk@18315 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e169b152bd
commit
c5f8e9a376
|
@ -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