Changeset 43596
- Timestamp:
- 08/30/2018 12:35:08 PM (6 years ago)
- Location:
- trunk/src/wp-includes/customize
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/customize/class-wp-customize-header-image-control.php
r43571 r43596 183 183 _e( 'Click “Add new image” to upload an image file from your computer. Your theme works best with an image that matches the size of your video — you’ll be able to crop your image once you upload it for a perfect fit.' ); 184 184 } elseif ( $width && $height ) { 185 /* translators: %s: header size in pixels */186 185 printf( 186 /* translators: %s: header size in pixels */ 187 187 __( 'Click “Add new image” to upload an image file from your computer. Your theme works best with an image with a header size of %s pixels — you’ll be able to crop your image once you upload it for a perfect fit.' ), 188 188 sprintf( '<strong>%s × %s</strong>', $width, $height ) 189 189 ); 190 190 } elseif ( $width ) { 191 /* translators: %s: header width in pixels */192 191 printf( 192 /* translators: %s: header width in pixels */ 193 193 __( 'Click “Add new image” to upload an image file from your computer. Your theme works best with an image with a header width of %s pixels — you’ll be able to crop your image once you upload it for a perfect fit.' ), 194 194 sprintf( '<strong>%s</strong>', $width ) 195 195 ); 196 196 } else { 197 /* translators: %s: header height in pixels */198 197 printf( 198 /* translators: %s: header height in pixels */ 199 199 __( 'Click “Add new image” to upload an image file from your computer. Your theme works best with an image with a header height of %s pixels — you’ll be able to crop your image once you upload it for a perfect fit.' ), 200 200 sprintf( '<strong>%s</strong>', $height ) -
trunk/src/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php
r43174 r43596 75 75 <span class="theme-location-set"> 76 76 <?php 77 /* translators: %s: menu name */78 77 printf( 78 /* translators: %s: menu name */ 79 79 _x( '(Current: %s)', 'menu location' ), 80 80 '<span class="current-menu-location-name-' . esc_attr( $location ) . '"></span>' -
trunk/src/wp-includes/customize/class-wp-customize-themes-section.php
r42447 r43596 88 88 <p class="no-themes-local"> 89 89 <?php 90 /* translators: %s: "Search WordPress.org themes" button */91 90 printf( 91 /* translators: %s: "Search WordPress.org themes" button text */ 92 92 __( 'No themes found. Try a different search, or %s.' ), 93 93 sprintf( '<button type="button" class="button-link search-dotorg-themes">%s</button>', __( 'Search WordPress.org themes' ) )
Note: See TracChangeset
for help on using the changeset viewer.