From 7f754fa2e8b981ab25304ce74ad6ddc042f5e4cb Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 6 May 2014 12:48:49 +0000 Subject: [PATCH] Translate a string added in 3.7 but never translated previously. props andrezrv. fixes #28025. git-svn-id: https://develop.svn.wordpress.org/trunk@28288 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/update-core.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/update-core.php b/src/wp-admin/update-core.php index a8a7aa9909..f41eabcc23 100644 --- a/src/wp-admin/update-core.php +++ b/src/wp-admin/update-core.php @@ -174,8 +174,11 @@ function core_upgrade_preamble() { if ( isset( $updates[0] ) && $updates[0]->response == 'development' ) { require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; $upgrader = new WP_Automatic_Updater; - if ( wp_http_supports( 'ssl' ) && $upgrader->should_update( 'core', $updates[0], ABSPATH ) ) - echo '

BETA TESTERS: This site is set up to install updates of future beta versions automatically.

'; + if ( wp_http_supports( 'ssl' ) && $upgrader->should_update( 'core', $updates[0], ABSPATH ) ) { + echo '

'; + echo '' . __( 'BETA TESTERS:' ) . ' ' . __( 'This site is set up to install updates of future beta versions automatically.' ); + echo '

'; + } } echo '