Make WordPress Core

Ticket #31202: 31202.2.patch

File 31202.2.patch, 4.1 KB (added by afercia, 10 years ago)
  • src/wp-admin/js/customize-controls.js

     
    15351535                                response = response.slice( 0, index ) + response.slice( index + signature.length );
    15361536
    15371537                                // Create the iframe and inject the html content.
    1538                                 self.iframe = $('<iframe />').appendTo( self.container );
     1538                                self.iframe = $('<iframe />', { 'title': wp.customize.l10n.previewIframeTitle } ).appendTo( self.container );
    15391539
    15401540                                // Bind load event after the iframe has been added to the page;
    15411541                                // otherwise it will fire when injected into the DOM.
     
    15791579                                if ( '1' !== response )
    15801580                                        reject();
    15811581
    1582                                 iframe = $('<iframe src="' + self.previewUrl() + '" />').hide();
     1582                                iframe = $('<iframe src="' + self.previewUrl() + '" title="' + wp.customize.l10n.previewIframeTitle + '" />').hide();
    15831583                                iframe.appendTo( self.container );
    15841584                                iframe.load( function() {
    15851585                                        self.triedLogin = true;
     
    18331833                                url:     api.settings.url.login
    18341834                        });
    18351835
    1836                         iframe = $('<iframe src="' + api.settings.url.login + '" />').appendTo( this.container );
     1836                        iframe = $('<iframe src="' + api.settings.url.login + '" title="' + api.l10n.loginIframeTitle + '" />').appendTo( this.container );
    18371837
    18381838                        messenger.targetWindow( iframe[0].contentWindow );
    18391839
  • src/wp-includes/js/customize-loader.js

     
    114114                        // Dirty state of Customizer in iframe
    115115                        this.saved = new api.Value( true );
    116116
    117                         this.iframe = $( '<iframe />', { src: src }).appendTo( this.element );
     117                        this.iframe = $( '<iframe />', { src: src, 'title': Loader.settings.l10n.mainIframeTitle }).appendTo( this.element );
    118118                        this.iframe.one( 'load', this.loaded );
    119119
    120120                        // Create a postMessage connection with the iframe.
  • src/wp-includes/script-loader.php

     
    386386        $scripts->add( 'customize-views',    "/wp-includes/js/customize-views.js",  array( 'jquery', 'underscore', 'imgareaselect', 'customize-models' ), false, 1 );
    387387        $scripts->add( 'customize-controls', "/wp-admin/js/customize-controls$suffix.js", array( 'customize-base' ), false, 1 );
    388388        did_action( 'init' ) && $scripts->localize( 'customize-controls', '_wpCustomizeControlsL10n', array(
    389                 'activate'  => __( 'Save &amp; Activate' ),
    390                 'save'      => __( 'Save &amp; Publish' ),
    391                 'saveAlert' => __( 'The changes you made will be lost if you navigate away from this page.' ),
    392                 'saved'     => __( 'Saved' ),
    393                 'cancel'    => __( 'Cancel' ),
    394                 'close'     => __( 'Close' ),
    395                 'cheatin'   => __( 'Cheatin&#8217; uh?' ),
     389                'activate'           => __( 'Save &amp; Activate' ),
     390                'save'               => __( 'Save &amp; Publish' ),
     391                'saveAlert'          => __( 'The changes you made will be lost if you navigate away from this page.' ),
     392                'saved'              => __( 'Saved' ),
     393                'cancel'             => __( 'Cancel' ),
     394                'close'              => __( 'Close' ),
     395                'cheatin'            => __( 'Cheatin&#8217; uh?' ),
     396                'previewIframeTitle' => __( 'Site preview' ),
     397                'loginIframeTitle'   => __( 'Session expired' ),
    396398
    397399                // Used for overriding the file types allowed in plupload.
    398400                'allowedFiles' => __( 'Allowed Files' ),
  • src/wp-includes/theme.php

     
    19601960                'isCrossDomain' => $cross_domain,
    19611961                'browser'       => $browser,
    19621962                'l10n'          => array(
    1963                         'saveAlert' => __( 'The changes you made will be lost if you navigate away from this page.' ),
     1963                        'saveAlert'       => __( 'The changes you made will be lost if you navigate away from this page.' ),
     1964                        'mainIframeTitle' => __( 'Customizer' ),
    19641965                ),
    19651966        );
    19661967