Changeset 59513
- Timestamp:
- 12/13/2024 11:51:14 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-theme-installer-skin.php
r59159 r59513 252 252 253 253 $table = '<table class="update-from-upload-comparison"><tbody>'; 254 $table .= '<tr><th></th><th>' . esc_html_x( ' Active', 'theme' ) . '</th><th>' . esc_html_x( 'Uploaded', 'theme' ) . '</th></tr>';254 $table .= '<tr><th></th><th>' . esc_html_x( 'Installed', 'theme' ) . '</th><th>' . esc_html_x( 'Uploaded', 'theme' ) . '</th></tr>'; 255 255 256 256 $is_same_theme = true; // Let's consider only these rows. … … 334 334 $warning = sprintf( 335 335 /* translators: %s: Documentation URL. */ 336 __( 'You are uploading an older version of the activetheme. You can continue to install the older version, but be sure to <a href="%s">back up your database and files</a> first.' ),336 __( 'You are uploading an older version of the installed theme. You can continue to install the older version, but be sure to <a href="%s">back up your database and files</a> first.' ), 337 337 __( 'https://developer.wordpress.org/advanced-administration/security/backup/' ) 338 338 ); … … 352 352 '<a class="button button-primary update-from-upload-overwrite" href="%s" target="_parent">%s</a>', 353 353 wp_nonce_url( add_query_arg( 'overwrite', $overwrite, $this->url ), 'theme-upload' ), 354 _x( 'Replace activewith uploaded', 'theme' )354 _x( 'Replace installed with uploaded', 'theme' ) 355 355 ); 356 356 } else {
Note: See TracChangeset
for help on using the changeset viewer.