From 702409e5d945b4e573fe125a5710dce5f58cc8f3 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Thu, 16 Jun 2011 00:18:51 +0000 Subject: [PATCH] Add missing translate() call. git-svn-id: https://develop.svn.wordpress.org/trunk@18315 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/credits.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/credits.php b/wp-admin/credits.php index ea0d62c04b..8deade0544 100644 --- a/wp-admin/credits.php +++ b/wp-admin/credits.php @@ -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 '

' . $title . "

\n";