Administration: Replace "Current theme" with "Active theme" in user facing strings.
This change replaces "Current theme" with "Active theme" in user-facing strings. It brings better consistency across the Administration. Props Presskopp, audrasjb, costdev. Fixes #54770. Built from https://develop.svn.wordpress.org/trunk@52580 git-svn-id: http://core.svn.wordpress.org/trunk@52170 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ab28757878
commit
e05557e222
|
@ -817,7 +817,7 @@ endif;
|
|||
if ( ! current_theme_supports( 'custom-header', 'uploads' ) ) {
|
||||
wp_die(
|
||||
'<h1>' . __( 'Something went wrong.' ) . '</h1>' .
|
||||
'<p>' . __( 'The current theme does not support uploading a custom header image.' ) . '</p>',
|
||||
'<p>' . __( 'The active theme does not support uploading a custom header image.' ) . '</p>',
|
||||
403
|
||||
);
|
||||
}
|
||||
|
@ -1003,7 +1003,7 @@ endif;
|
|||
if ( ! current_theme_supports( 'custom-header', 'uploads' ) ) {
|
||||
wp_die(
|
||||
'<h1>' . __( 'Something went wrong.' ) . '</h1>' .
|
||||
'<p>' . __( 'The current theme does not support uploading a custom header image.' ) . '</p>',
|
||||
'<p>' . __( 'The active theme does not support uploading a custom header image.' ) . '</p>',
|
||||
403
|
||||
);
|
||||
}
|
||||
|
@ -1014,7 +1014,7 @@ endif;
|
|||
) {
|
||||
wp_die(
|
||||
'<h1>' . __( 'Something went wrong.' ) . '</h1>' .
|
||||
'<p>' . __( 'The current theme does not support a flexible sized header image.' ) . '</p>',
|
||||
'<p>' . __( 'The active theme does not support a flexible sized header image.' ) . '</p>',
|
||||
403
|
||||
);
|
||||
}
|
||||
|
|
|
@ -245,7 +245,7 @@ class Theme_Installer_Skin extends WP_Upgrader_Skin {
|
|||
);
|
||||
|
||||
$table = '<table class="update-from-upload-comparison"><tbody>';
|
||||
$table .= '<tr><th></th><th>' . esc_html_x( 'Current', 'theme' ) . '</th><th>' . esc_html_x( 'Uploaded', 'theme' ) . '</th></tr>';
|
||||
$table .= '<tr><th></th><th>' . esc_html_x( 'Active', 'theme' ) . '</th><th>' . esc_html_x( 'Uploaded', 'theme' ) . '</th></tr>';
|
||||
|
||||
$is_same_theme = true; // Let's consider only these rows.
|
||||
|
||||
|
@ -327,7 +327,7 @@ class Theme_Installer_Skin extends WP_Upgrader_Skin {
|
|||
if ( $this->is_downgrading ) {
|
||||
$warning = sprintf(
|
||||
/* translators: %s: Documentation URL. */
|
||||
__( 'You are uploading an older version of a current theme. You can continue to install the older version, but be sure to <a href="%s">back up your database and files</a> first.' ),
|
||||
__( '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.' ),
|
||||
__( 'https://wordpress.org/support/article/wordpress-backups/' )
|
||||
);
|
||||
} else {
|
||||
|
@ -345,7 +345,7 @@ class Theme_Installer_Skin extends WP_Upgrader_Skin {
|
|||
$install_actions['overwrite_theme'] = sprintf(
|
||||
'<a class="button button-primary update-from-upload-overwrite" href="%s" target="_parent">%s</a>',
|
||||
wp_nonce_url( add_query_arg( 'overwrite', $overwrite, $this->url ), 'theme-upload' ),
|
||||
_x( 'Replace current with uploaded', 'theme' )
|
||||
_x( 'Replace active with uploaded', 'theme' )
|
||||
);
|
||||
} else {
|
||||
echo $blocked_message;
|
||||
|
|
|
@ -92,7 +92,7 @@ class Theme_Upgrader extends WP_Upgrader {
|
|||
/* translators: %s: Theme name. */
|
||||
$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>' );
|
||||
/* translators: %s: Theme error. */
|
||||
$this->strings['current_theme_has_errors'] = __( 'The current theme has the following error: "%s".' );
|
||||
$this->strings['current_theme_has_errors'] = __( 'The active theme has the following error: "%s".' );
|
||||
|
||||
if ( ! empty( $this->skin->overwrite ) ) {
|
||||
if ( 'update-theme' === $this->skin->overwrite ) {
|
||||
|
|
|
@ -232,7 +232,7 @@ class Walker_Nav_Menu_Edit extends Walker_Nav_Menu {
|
|||
<label for="edit-menu-item-description-<?php echo $item_id; ?>">
|
||||
<?php _e( 'Description' ); ?><br />
|
||||
<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>
|
||||
<span class="description"><?php _e( 'The description will be displayed in the menu if the current theme supports it.' ); ?></span>
|
||||
<span class="description"><?php _e( 'The description will be displayed in the menu if the active theme supports it.' ); ?></span>
|
||||
</label>
|
||||
</p>
|
||||
|
||||
|
|
|
@ -634,7 +634,7 @@ class WP_Site_Health {
|
|||
),
|
||||
sprintf(
|
||||
/* translators: 1: The currently active theme. 2: The active theme's parent theme. */
|
||||
__( 'To enhance your site’s security, you should consider removing any themes you’re not using. You should keep your current theme, %1$s, and %2$s, its parent theme.' ),
|
||||
__( '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.' ),
|
||||
$active_theme->name,
|
||||
$active_theme->parent()->name
|
||||
)
|
||||
|
@ -653,7 +653,7 @@ class WP_Site_Health {
|
|||
),
|
||||
sprintf(
|
||||
/* translators: 1: The default theme for WordPress. 2: The currently active theme. 3: The active theme's parent theme. */
|
||||
__( '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 current theme, and %3$s, its parent theme.' ),
|
||||
__( '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.' ),
|
||||
$default_theme ? $default_theme->name : WP_DEFAULT_THEME,
|
||||
$active_theme->name,
|
||||
$active_theme->parent()->name
|
||||
|
|
|
@ -129,7 +129,7 @@ class WP_Themes_List_Table extends WP_List_Table {
|
|||
// Fallthrough.
|
||||
printf(
|
||||
/* translators: %s: Network title. */
|
||||
__( 'Only the current theme is available to you. Contact the %s administrator for information about accessing additional themes.' ),
|
||||
__( 'Only the active theme is available to you. Contact the %s administrator for information about accessing additional themes.' ),
|
||||
get_site_option( 'site_name' )
|
||||
);
|
||||
}
|
||||
|
|
|
@ -831,7 +831,7 @@ function customize_themes_print_templates() {
|
|||
|
||||
<div class="theme-info">
|
||||
<# if ( data.active ) { #>
|
||||
<span class="current-label"><?php _e( 'Current Theme' ); ?></span>
|
||||
<span class="current-label"><?php _e( 'Active Theme' ); ?></span>
|
||||
<# } #>
|
||||
<h2 class="theme-name">{{{ data.name }}}<span class="theme-version">
|
||||
<?php
|
||||
|
|
|
@ -133,8 +133,8 @@ if ( current_user_can( 'switch_themes' ) ) {
|
|||
'<p>' . __( 'From this screen you can:' ) . '</p>' .
|
||||
'<ul><li>' . __( 'Hover or tap to see Activate and Live Preview buttons' ) . '</li>' .
|
||||
'<li>' . __( 'Click on the theme to see the theme name, version, author, description, tags, and the Delete link' ) . '</li>' .
|
||||
'<li>' . __( 'Click Customize for the current theme or Live Preview for any other theme to see a live preview' ) . '</li></ul>' .
|
||||
'<p>' . __( 'The current theme is displayed highlighted as the first theme.' ) . '</p>' .
|
||||
'<li>' . __( 'Click Customize for the active theme or Live Preview for any other theme to see a live preview' ) . '</li></ul>' .
|
||||
'<p>' . __( 'The active theme is displayed highlighted as the first theme.' ) . '</p>' .
|
||||
'<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>';
|
||||
|
||||
get_current_screen()->add_help_tab(
|
||||
|
@ -955,7 +955,7 @@ function wp_theme_auto_update_setting_template() {
|
|||
|
||||
<div class="theme-info">
|
||||
<# if ( data.active ) { #>
|
||||
<span class="current-label"><?php _e( 'Current Theme' ); ?></span>
|
||||
<span class="current-label"><?php _e( 'Active Theme' ); ?></span>
|
||||
<# } #>
|
||||
<h2 class="theme-name">{{{ data.name }}}<span class="theme-version">
|
||||
<?php
|
||||
|
|
|
@ -338,7 +338,7 @@ When seeking help with this issue, you may be asked for some of the following in
|
|||
),
|
||||
'theme' => sprintf(
|
||||
/* translators: 1: Current active theme name. 2: Current active theme version. */
|
||||
__( 'Current theme: %1$s (version %2$s)' ),
|
||||
__( 'Active theme: %1$s (version %2$s)' ),
|
||||
$theme->get( 'Name' ),
|
||||
$theme->get( 'Version' )
|
||||
),
|
||||
|
|
|
@ -130,7 +130,7 @@ class WP_Customize_Nav_Menu_Item_Control extends WP_Customize_Control {
|
|||
<label for="edit-menu-item-description-{{ data.menu_item_id }}">
|
||||
<?php _e( 'Description' ); ?><br />
|
||||
<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>
|
||||
<span class="description"><?php _e( 'The description will be displayed in the menu if the current theme supports it.' ); ?></span>
|
||||
<span class="description"><?php _e( 'The description will be displayed in the menu if the active theme supports it.' ); ?></span>
|
||||
</label>
|
||||
</p>
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.0-alpha-52578';
|
||||
$wp_version = '6.0-alpha-52580';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue