Changeset 52580
- Timestamp:
- 01/15/2022 08:42:56 AM (3 years ago)
- Location:
- trunk/src
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-custom-image-header.php
r52285 r52580 818 818 wp_die( 819 819 '<h1>' . __( 'Something went wrong.' ) . '</h1>' . 820 '<p>' . __( 'The currenttheme does not support uploading a custom header image.' ) . '</p>',820 '<p>' . __( 'The active theme does not support uploading a custom header image.' ) . '</p>', 821 821 403 822 822 ); … … 1004 1004 wp_die( 1005 1005 '<h1>' . __( 'Something went wrong.' ) . '</h1>' . 1006 '<p>' . __( 'The currenttheme does not support uploading a custom header image.' ) . '</p>',1006 '<p>' . __( 'The active theme does not support uploading a custom header image.' ) . '</p>', 1007 1007 403 1008 1008 ); … … 1015 1015 wp_die( 1016 1016 '<h1>' . __( 'Something went wrong.' ) . '</h1>' . 1017 '<p>' . __( 'The currenttheme does not support a flexible sized header image.' ) . '</p>',1017 '<p>' . __( 'The active theme does not support a flexible sized header image.' ) . '</p>', 1018 1018 403 1019 1019 ); -
trunk/src/wp-admin/includes/class-theme-installer-skin.php
r52204 r52580 246 246 247 247 $table = '<table class="update-from-upload-comparison"><tbody>'; 248 $table .= '<tr><th></th><th>' . esc_html_x( ' Current', 'theme' ) . '</th><th>' . esc_html_x( 'Uploaded', 'theme' ) . '</th></tr>';248 $table .= '<tr><th></th><th>' . esc_html_x( 'Active', 'theme' ) . '</th><th>' . esc_html_x( 'Uploaded', 'theme' ) . '</th></tr>'; 249 249 250 250 $is_same_theme = true; // Let's consider only these rows. … … 328 328 $warning = sprintf( 329 329 /* translators: %s: Documentation URL. */ 330 __( 'You are uploading an older version of a currenttheme. You can continue to install the older version, but be sure to <a href="%s">back up your database and files</a> first.' ),330 __( 'You are uploading an older version of the active theme. You can continue to install the older version, but be sure to <a href="%s">back up your database and files</a> first.' ), 331 331 __( 'https://wordpress.org/support/article/wordpress-backups/' ) 332 332 ); … … 346 346 '<a class="button button-primary update-from-upload-overwrite" href="%s" target="_parent">%s</a>', 347 347 wp_nonce_url( add_query_arg( 'overwrite', $overwrite, $this->url ), 'theme-upload' ), 348 _x( 'Replace currentwith uploaded', 'theme' )348 _x( 'Replace active with uploaded', 'theme' ) 349 349 ); 350 350 } else { -
trunk/src/wp-admin/includes/class-theme-upgrader.php
r52351 r52580 93 93 $this->strings['parent_theme_not_found'] = sprintf( __( '<strong>The parent theme could not be found.</strong> You will need to install the parent theme, %s, before you can use this child theme.' ), '<strong>%s</strong>' ); 94 94 /* translators: %s: Theme error. */ 95 $this->strings['current_theme_has_errors'] = __( 'The currenttheme has the following error: "%s".' );95 $this->strings['current_theme_has_errors'] = __( 'The active theme has the following error: "%s".' ); 96 96 97 97 if ( ! empty( $this->skin->overwrite ) ) { -
trunk/src/wp-admin/includes/class-walker-nav-menu-edit.php
r52204 r52580 233 233 <?php _e( 'Description' ); ?><br /> 234 234 <textarea id="edit-menu-item-description-<?php echo $item_id; ?>" class="widefat edit-menu-item-description" rows="3" cols="20" name="menu-item-description[<?php echo $item_id; ?>]"><?php echo esc_html( $menu_item->description ); // textarea_escaped ?></textarea> 235 <span class="description"><?php _e( 'The description will be displayed in the menu if the currenttheme supports it.' ); ?></span>235 <span class="description"><?php _e( 'The description will be displayed in the menu if the active theme supports it.' ); ?></span> 236 236 </label> 237 237 </p> -
trunk/src/wp-admin/includes/class-wp-site-health.php
r52351 r52580 635 635 sprintf( 636 636 /* translators: 1: The currently active theme. 2: The active theme's parent theme. */ 637 __( 'To enhance your site’s security, you should consider removing any themes you’re not using. You should keep your currenttheme, %1$s, and %2$s, its parent theme.' ),637 __( 'To enhance your site’s security, you should consider removing any themes you’re not using. You should keep your active theme, %1$s, and %2$s, its parent theme.' ), 638 638 $active_theme->name, 639 639 $active_theme->parent()->name … … 654 654 sprintf( 655 655 /* translators: 1: The default theme for WordPress. 2: The currently active theme. 3: The active theme's parent theme. */ 656 __( 'To enhance your site’s security, you should consider removing any themes you’re not using. You should keep %1$s, the default WordPress theme, %2$s, your currenttheme, and %3$s, its parent theme.' ),656 __( 'To enhance your site’s security, you should consider removing any themes you’re not using. You should keep %1$s, the default WordPress theme, %2$s, your active theme, and %3$s, its parent theme.' ), 657 657 $default_theme ? $default_theme->name : WP_DEFAULT_THEME, 658 658 $active_theme->name, -
trunk/src/wp-admin/includes/class-wp-themes-list-table.php
r48545 r52580 130 130 printf( 131 131 /* translators: %s: Network title. */ 132 __( 'Only the currenttheme is available to you. Contact the %s administrator for information about accessing additional themes.' ),132 __( 'Only the active theme is available to you. Contact the %s administrator for information about accessing additional themes.' ), 133 133 get_site_option( 'site_name' ) 134 134 ); -
trunk/src/wp-admin/includes/theme.php
r52422 r52580 832 832 <div class="theme-info"> 833 833 <# if ( data.active ) { #> 834 <span class="current-label"><?php _e( ' CurrentTheme' ); ?></span>834 <span class="current-label"><?php _e( 'Active Theme' ); ?></span> 835 835 <# } #> 836 836 <h2 class="theme-name">{{{ data.name }}}<span class="theme-version"> -
trunk/src/wp-admin/themes.php
r52545 r52580 134 134 '<ul><li>' . __( 'Hover or tap to see Activate and Live Preview buttons' ) . '</li>' . 135 135 '<li>' . __( 'Click on the theme to see the theme name, version, author, description, tags, and the Delete link' ) . '</li>' . 136 '<li>' . __( 'Click Customize for the currenttheme or Live Preview for any other theme to see a live preview' ) . '</li></ul>' .137 '<p>' . __( 'The currenttheme is displayed highlighted as the first theme.' ) . '</p>' .136 '<li>' . __( 'Click Customize for the active theme or Live Preview for any other theme to see a live preview' ) . '</li></ul>' . 137 '<p>' . __( 'The active theme is displayed highlighted as the first theme.' ) . '</p>' . 138 138 '<p>' . __( 'The search for installed themes will search for terms in their name, description, author, or tag.' ) . ' <span id="live-search-desc">' . __( 'The search results will be updated as you type.' ) . '</span></p>'; 139 139 … … 956 956 <div class="theme-info"> 957 957 <# if ( data.active ) { #> 958 <span class="current-label"><?php _e( ' CurrentTheme' ); ?></span>958 <span class="current-label"><?php _e( 'Active Theme' ); ?></span> 959 959 <# } #> 960 960 <h2 class="theme-name">{{{ data.name }}}<span class="theme-version"> -
trunk/src/wp-includes/class-wp-recovery-mode-email-service.php
r50654 r52580 339 339 'theme' => sprintf( 340 340 /* translators: 1: Current active theme name. 2: Current active theme version. */ 341 __( ' Currenttheme: %1$s (version %2$s)' ),341 __( 'Active theme: %1$s (version %2$s)' ), 342 342 $theme->get( 'Name' ), 343 343 $theme->get( 'Version' ) -
trunk/src/wp-includes/customize/class-wp-customize-nav-menu-item-control.php
r47364 r52580 131 131 <?php _e( 'Description' ); ?><br /> 132 132 <textarea id="edit-menu-item-description-{{ data.menu_item_id }}" class="widefat edit-menu-item-description" rows="3" cols="20" name="menu-item-description">{{ data.description }}</textarea> 133 <span class="description"><?php _e( 'The description will be displayed in the menu if the currenttheme supports it.' ); ?></span>133 <span class="description"><?php _e( 'The description will be displayed in the menu if the active theme supports it.' ); ?></span> 134 134 </label> 135 135 </p>
Note: See TracChangeset
for help on using the changeset viewer.