Changeset 36388
- Timestamp:
- 01/23/2016 11:14:10 PM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/customize.php
r34269 r36388 133 133 <div class="accordion-section-title"> 134 134 <span class="preview-notice"><?php 135 echo sprintf( __( 'You are customizing %s' ), '<strong class="panel-title site-title">' . get_bloginfo( 'name' ) . '</strong>' );135 echo sprintf( __( 'You are customizing %s' ), '<strong class="panel-title site-title">' . __( 'Loading…' ) . '</strong>' ); 136 136 ?></span> 137 137 <button class="customize-help-toggle dashicons dashicons-editor-help" aria-expanded="false"><span class="screen-reader-text"><?php _e( 'Help' ); ?></span></button> -
trunk/src/wp-admin/js/customize-controls.js
r36383 r36388 3605 3605 // Bind site title display to the corresponding field. 3606 3606 if ( title.length ) { 3607 $( '#customize-control-blogname input' ).on( 'input', function() { 3608 title.text( this.value ); 3607 api( 'blogname', function( setting ) { 3608 var updateTitle = function() { 3609 title.text( $.trim( setting() ) || api.l10n.untitledBlogName ); 3610 }; 3611 setting.bind( updateTitle ); 3612 updateTitle(); 3609 3613 } ); 3610 3614 } -
trunk/src/wp-includes/script-loader.php
r36341 r36388 444 444 'collapseSidebar' => __( 'Collapse Sidebar' ), 445 445 'expandSidebar' => __( 'Expand Sidebar' ), 446 'untitledBlogName' => __( '(Untitled)' ), 446 447 // Used for overriding the file types allowed in plupload. 447 448 'allowedFiles' => __( 'Allowed Files' ),
Note: See TracChangeset
for help on using the changeset viewer.