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
This commit is contained in:
parent
4b8b0e7178
commit
7f754fa2e8
|
@ -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 '<div class="updated inline"><p><strong>BETA TESTERS:</strong> This site is set up to install updates of future beta versions automatically.</p></div>';
|
||||
if ( wp_http_supports( 'ssl' ) && $upgrader->should_update( 'core', $updates[0], ABSPATH ) ) {
|
||||
echo '<div class="updated inline"><p>';
|
||||
echo '<strong>' . __( 'BETA TESTERS:' ) . '</strong> ' . __( 'This site is set up to install updates of future beta versions automatically.' );
|
||||
echo '</p></div>';
|
||||
}
|
||||
}
|
||||
|
||||
echo '<ul class="core-updates">';
|
||||
|
|
Loading…
Reference in New Issue