From c5f8e9a376c47bd3c5e5030e423e2064cf24ebb3 Mon Sep 17 00:00:00 2001 From: nacin Date: Thu, 16 Jun 2011 00:18:51 +0000 Subject: [PATCH] Add missing translate() call. git-svn-id: http://svn.automattic.com/wordpress/trunk@18315 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 ea0d62c04..8deade054 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";