Make WordPress Core

Ticket #38932: 38932.patch

File 38932.patch, 2.1 KB (added by stormrockwell, 8 years ago)

replaced 2000 x 1200 format to the confirmed 2000 by 1200 pixels format

  • wp-includes/js/media-views.js

     
    40184018
    40194019                if ( this.options.suggestedWidth && this.options.suggestedHeight ) {
    40204020                        this.toolbar.set( 'suggestedDimensions', new View({
    4021                                 el: $( '<div class="instructions">' + l10n.suggestedDimensions + ' ' + this.options.suggestedWidth + ' &times; ' + this.options.suggestedHeight + '</div>' )[0],
     4021                                el: $( '<div class="instructions">' + l10n.suggestedDimensions + ' ' + this.options.suggestedWidth + ' by ' + this.options.suggestedHeight + ' pixels</div>' )[0],
    40224022                                priority: -40
    40234023                        }) );
    40244024                }
  • wp-includes/js/media/views/attachments/browser.js

     
    287287
    288288                if ( this.options.suggestedWidth && this.options.suggestedHeight ) {
    289289                        this.toolbar.set( 'suggestedDimensions', new View({
    290                                 el: $( '<div class="instructions">' + l10n.suggestedDimensions + ' ' + this.options.suggestedWidth + ' &times; ' + this.options.suggestedHeight + '</div>' )[0],
     290                                el: $( '<div class="instructions">' + l10n.suggestedDimensions + ' ' + this.options.suggestedWidth + ' by ' + this.options.suggestedHeight + ' pixels</div>' )[0],
    291291                                priority: -40
    292292                        }) );
    293293                }
  • wp-includes/media-template.php

     
    235235
    236236                                <# if ( data.suggestedWidth && data.suggestedHeight ) { #>
    237237                                        <p class="suggested-dimensions">
    238                                                 <?php _e( 'Suggested image dimensions:' ); ?> {{data.suggestedWidth}} &times; {{data.suggestedHeight}}
     238                                                <?php _e( 'Suggested image dimensions:' ); ?> {{data.suggestedWidth}} by {{data.suggestedHeight}} pixels
    239239                                        </p>
    240240                                <# } #>
    241241