Make WordPress Core


Ignore:
Timestamp:
01/15/2022 08:42:56 AM (3 years ago)
Author:
audrasjb
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-custom-image-header.php

    r52285 r52580  
    818818            wp_die(
    819819                '<h1>' . __( 'Something went wrong.' ) . '</h1>' .
    820                 '<p>' . __( 'The current theme does not support uploading a custom header image.' ) . '</p>',
     820                '<p>' . __( 'The active theme does not support uploading a custom header image.' ) . '</p>',
    821821                403
    822822            );
     
    10041004            wp_die(
    10051005                '<h1>' . __( 'Something went wrong.' ) . '</h1>' .
    1006                 '<p>' . __( 'The current theme does not support uploading a custom header image.' ) . '</p>',
     1006                '<p>' . __( 'The active theme does not support uploading a custom header image.' ) . '</p>',
    10071007                403
    10081008            );
     
    10151015            wp_die(
    10161016                '<h1>' . __( 'Something went wrong.' ) . '</h1>' .
    1017                 '<p>' . __( 'The current theme does not support a flexible sized header image.' ) . '</p>',
     1017                '<p>' . __( 'The active theme does not support a flexible sized header image.' ) . '</p>',
    10181018                403
    10191019            );
Note: See TracChangeset for help on using the changeset viewer.