summaryrefslogtreecommitdiffstatshomepage
path: root/src/wp-admin/includes/class-custom-image-header.php
diff options
context:
space:
mode:
authorJb Audras <audrasjb@git.wordpress.org>2022-01-15 08:42:56 +0000
committerJb Audras <audrasjb@git.wordpress.org>2022-01-15 08:42:56 +0000
commitff33d84f8615b8c7c01de8a396b6085f493f080f (patch)
tree5c6fc33d52019189b7d36432eb44c61b23585d88 /src/wp-admin/includes/class-custom-image-header.php
parentbdfa786d88984f96b262bbe66f166b10808de2e3 (diff)
downloadwordpress-ff33d84f8615b8c7c01de8a396b6085f493f080f.tar.gz
wordpress-ff33d84f8615b8c7c01de8a396b6085f493f080f.zip
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
Diffstat (limited to 'src/wp-admin/includes/class-custom-image-header.php')
-rw-r--r--src/wp-admin/includes/class-custom-image-header.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wp-admin/includes/class-custom-image-header.php b/src/wp-admin/includes/class-custom-image-header.php
index eff3501b2e..f0bf1a21a6 100644
--- a/src/wp-admin/includes/class-custom-image-header.php
+++ b/src/wp-admin/includes/class-custom-image-header.php
@@ -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
);
}