Changeset 59554
- Timestamp:
- 12/22/2024 07:13:23 PM (3 months ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-custom-background.php
r58995 r59554 355 355 <input type="hidden" name="action" value="save" /> 356 356 <?php wp_nonce_field( 'custom-background-upload', '_wpnonce-custom-background-upload' ); ?> 357 <?php submit_button( _ _( 'Upload' ), '', 'submit', false ); ?>357 <?php submit_button( _x( 'Upload', 'verb' ), '', 'submit', false ); ?> 358 358 </p> 359 359 <p> -
trunk/src/wp-admin/includes/class-custom-image-header.php
r58995 r59554 665 665 <input type="hidden" name="action" value="save" /> 666 666 <?php wp_nonce_field( 'custom-header-upload', '_wpnonce-custom-header-upload' ); ?> 667 <?php submit_button( _ _( 'Upload' ), '', 'submit', false ); ?>667 <?php submit_button( _x( 'Upload', 'verb' ), '', 'submit', false ); ?> 668 668 </p> 669 669 <?php -
trunk/src/wp-admin/includes/class-wp-theme-install-list-table.php
r58745 r59554 61 61 $tabs['search'] = __( 'Search Results' ); 62 62 } 63 $tabs['upload'] = _ _( 'Upload' );63 $tabs['upload'] = _x( 'Upload', 'noun' ); 64 64 $tabs['featured'] = _x( 'Featured', 'themes' ); 65 65 //$tabs['popular'] = _x( 'Popular', 'themes' ); -
trunk/src/wp-admin/includes/media.php
r59497 r59554 2278 2278 <?php 2279 2279 /* translators: Hidden accessibility text. */ 2280 _e ( 'Upload' );2280 _ex( 'Upload', 'verb' ); 2281 2281 ?> 2282 2282 </label> 2283 2283 <input type="file" name="async-upload" id="async-upload" /> 2284 <?php submit_button( _ _( 'Upload' ), 'primary', 'html-upload', false ); ?>2284 <?php submit_button( _x( 'Upload', 'verb' ), 'primary', 'html-upload', false ); ?> 2285 2285 <a href="#" onclick="try{top.tb_remove();}catch(e){}; return false;"><?php _e( 'Cancel' ); ?></a> 2286 2286 </p>
Note: See TracChangeset
for help on using the changeset viewer.