Ticket #38932: 38932.patch
File 38932.patch, 2.1 KB (added by , 8 years ago) |
---|
-
wp-includes/js/media-views.js
4018 4018 4019 4019 if ( this.options.suggestedWidth && this.options.suggestedHeight ) { 4020 4020 this.toolbar.set( 'suggestedDimensions', new View({ 4021 el: $( '<div class="instructions">' + l10n.suggestedDimensions + ' ' + this.options.suggestedWidth + ' × ' + this.options.suggestedHeight + '</div>' )[0],4021 el: $( '<div class="instructions">' + l10n.suggestedDimensions + ' ' + this.options.suggestedWidth + ' by ' + this.options.suggestedHeight + ' pixels</div>' )[0], 4022 4022 priority: -40 4023 4023 }) ); 4024 4024 } -
wp-includes/js/media/views/attachments/browser.js
287 287 288 288 if ( this.options.suggestedWidth && this.options.suggestedHeight ) { 289 289 this.toolbar.set( 'suggestedDimensions', new View({ 290 el: $( '<div class="instructions">' + l10n.suggestedDimensions + ' ' + this.options.suggestedWidth + ' × ' + this.options.suggestedHeight + '</div>' )[0],290 el: $( '<div class="instructions">' + l10n.suggestedDimensions + ' ' + this.options.suggestedWidth + ' by ' + this.options.suggestedHeight + ' pixels</div>' )[0], 291 291 priority: -40 292 292 }) ); 293 293 } -
wp-includes/media-template.php
235 235 236 236 <# if ( data.suggestedWidth && data.suggestedHeight ) { #> 237 237 <p class="suggested-dimensions"> 238 <?php _e( 'Suggested image dimensions:' ); ?> {{data.suggestedWidth}} × {{data.suggestedHeight}}238 <?php _e( 'Suggested image dimensions:' ); ?> {{data.suggestedWidth}} by {{data.suggestedHeight}} pixels 239 239 </p> 240 240 <# } #> 241 241