diff --git src/wp-includes/customize/class-wp-customize-theme-control.php src/wp-includes/customize/class-wp-customize-theme-control.php
index c66ba28612..574be00752 100644
|
|
class WP_Customize_Theme_Control extends WP_Customize_Control { |
93 | 93 | <div class="update-message notice inline notice-warning notice-alt" data-slug="{{ data.theme.id }}"> |
94 | 94 | <p> |
95 | 95 | <?php |
96 | | /* translators: %s: "Update now" button */ |
97 | | printf( __( 'New version available. %s' ), '<button class="button-link update-theme" type="button">' . __( 'Update now' ) . '</button>' ); |
| 96 | if ( is_multisite() ) { |
| 97 | _e( 'New version available.' ); |
| 98 | } else { |
| 99 | printf( |
| 100 | /* translators: %s: "Update now" button */ |
| 101 | __( 'New version available. %s' ), |
| 102 | '<button class="button-link update-theme" type="button">' . __( 'Update now' ) . '</button>' |
| 103 | ); |
| 104 | } |
98 | 105 | ?> |
99 | 106 | </p> |
100 | 107 | </div> |