Skip to content

Commit 7f754fa

Browse files
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
1 parent 4b8b0e7 commit 7f754fa

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

src/wp-admin/update-core.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,11 @@ function core_upgrade_preamble() {
174174
if ( isset( $updates[0] ) && $updates[0]->response == 'development' ) {
175175
require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
176176
$upgrader = new WP_Automatic_Updater;
177-
if ( wp_http_supports( 'ssl' ) && $upgrader->should_update( 'core', $updates[0], ABSPATH ) )
178-
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>';
177+
if ( wp_http_supports( 'ssl' ) && $upgrader->should_update( 'core', $updates[0], ABSPATH ) ) {
178+
echo '<div class="updated inline"><p>';
179+
echo '<strong>' . __( 'BETA TESTERS:' ) . '</strong> ' . __( 'This site is set up to install updates of future beta versions automatically.' );
180+
echo '</p></div>';
181+
}
179182
}
180183

181184
echo '<ul class="core-updates">';

0 commit comments

Comments
 (0)