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:
Jb Audras
2022-01-15 08:42:56 +00:00
parent bdfa786d88
commit ff33d84f86
10 changed files with 17 additions and 17 deletions

View File

@@ -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
);
}