Add missing translate() call.

git-svn-id: http://svn.automattic.com/wordpress/trunk@18315 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2011-06-16 00:18:51 +00:00
parent e169b152bd
commit c5f8e9a376
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";