Make WordPress Core

Ticket #38932: 38932.3.patch

File 38932.3.patch, 2.7 KB (added by stormrockwell, 8 years ago)
  • src/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.replace( '%1$s', this.options.suggestedWidth ).replace( '%2$s', this.options.suggestedHeight ) + '</div>' )[0],
    40224022                                priority: -40
    40234023                        }) );
    40244024                }
  • src/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.replace( '%1$s', this.options.suggestedWidth ).replace( '%2$s', this.options.suggestedHeight ) + '</div>' )[0],
    291291                                priority: -40
    292292                        }) );
    293293                }
  • src/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 printf( __( 'Suggested image dimensions: %1$s by %2$s pixels' ), "{{data.suggestedWidth}}", "{{data.suggestedHeight}}" ); ?>
    239239                                        </p>
    240240                                <# } #>
    241241
  • src/wp-includes/media.php

     
    34833483                'cropImage' => __( 'Crop Image' ),
    34843484                'cropYourImage' => __( 'Crop your image' ),
    34853485                'cropping' => __( 'Cropping&hellip;' ),
    3486                 'suggestedDimensions' => __( 'Suggested image dimensions:' ),
     3486                'suggestedDimensions' => __( 'Suggested image dimensions: %1$s by %2$s pixels' ),
    34873487                'cropError' => __( 'There has been an error cropping your image.' ),
    34883488
    34893489                // Edit Audio