mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-02 08:10:04 +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:
@@ -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
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user