Ticket #46997: 46997.3.diff
File 46997.3.diff, 1001 bytes (added by , 6 years ago) |
---|
-
src/wp-includes/customize/class-wp-customize-theme-control.php
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>