Add missing translate() call.

git-svn-id: https://develop.svn.wordpress.org/trunk@18315 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2011-06-16 00:18:51 +00:00
parent d75f27ab80
commit 702409e5d9
1 changed files with 1 additions and 1 deletions

View File

@ -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";