From 212552cb9e04653cccebcef74545c0589154e73e Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Fri, 11 May 2012 21:29:01 +0000 Subject: [PATCH] Translate the 'http://browsehappy.com/' URL. See http://wp.me/p10SQN-r8. git-svn-id: https://develop.svn.wordpress.org/trunk@20776 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/dashboard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index 3731768818..eeb2ae70a3 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -1158,7 +1158,7 @@ function wp_dashboard_browser_nag() { $browser_nag_class = ' has-browser-icon'; } $notice .= "

{$msg}

"; - $notice .= '

' . sprintf( __( 'Update %2$s or learn how to browse happy' ), esc_attr( $response['update_url'] ), esc_html( $response['name'] ), 'http://browsehappy.com/' ) . '

'; + $notice .= '

' . sprintf( __( 'Update %2$s or learn how to browse happy' ), esc_attr( $response['update_url'] ), esc_html( $response['name'] ), __( 'http://browsehappy.com/' ) ) . '

'; $notice .= '

' . __( 'Dismiss' ) . '

'; $notice .= '
'; }