Changeset 45926 for trunk/src/wp-admin/includes/class-custom-background.php
- Timestamp:
- 09/01/2019 05:12:43 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-custom-background.php
r45881 r45926 230 230 <p> 231 231 <?php 232 printf( 233 __( 'You can now manage and live-preview Custom Backgrounds in the <a href="%1$s">Customizer</a>.' ), 234 admin_url( 'customize.php?autofocus[control]=background_image' ) 235 ); 232 printf( 233 /* translators: %s: URL to background image configuration in Customizer */ 234 __( 'You can now manage and live-preview Custom Backgrounds in the <a href="%s">Customizer</a>.' ), 235 admin_url( 'customize.php?autofocus[control]=background_image' ) 236 ); 236 237 ?> 237 238 </p> … … 241 242 <?php if ( ! empty( $this->updated ) ) { ?> 242 243 <div id="message" class="updated"> 243 <p><?php printf( __( 'Background updated. <a href="%s">Visit your site</a> to see how it looks.' ), home_url( '/' ) ); ?></p> 244 <p> 245 <?php 246 /* translators: %s: Home URL */ 247 printf( __( 'Background updated. <a href="%s">Visit your site</a> to see how it looks.' ), home_url( '/' ) ); 248 ?> 249 </p> 244 250 </div> 245 251 <?php } ?>
Note: See TracChangeset
for help on using the changeset viewer.