mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-10 23:54:33 +00:00
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. git-svn-id: https://develop.svn.wordpress.org/trunk@52580 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user