Make WordPress Core

Ticket #38332: 38332.1.patch

File 38332.1.patch, 20.1 KB (added by dmsnell, 7 years ago)

Replaces "cheatin" message with already-translated and less hostile wording

  • wp-admin/css/customize-controls-rtl.css

    diff --git a/wp-admin/css/customize-controls-rtl.css b/wp-admin/css/customize-controls-rtl.css
    index 39c635af72..def7434a75 100644
    a b p.customize-section-description { 
    23952395}
    23962396
    23972397/* Handle cheaters. */
    2398 body.cheatin {
     2398body.unidentified-error {
    23992399        font-size: medium;
    24002400        height: auto;
    24012401        background: #fff;
    body.cheatin { 
    24062406        box-shadow: 0 1px 3px rgba(0,0,0,0.13);
    24072407}
    24082408
    2409 body.cheatin h1 {
     2409body.unidentified-error h1 {
    24102410        border-bottom: 1px solid #ddd;
    24112411        clear: both;
    24122412        color: #555d66;
    body.cheatin h1 { 
    24172417        padding-bottom: 7px;
    24182418}
    24192419
    2420 body.cheatin p {
     2420body.unidentified-error p {
    24212421        font-size: 14px;
    24222422        line-height: 1.5;
    24232423        margin: 25px 0 20px;
  • wp-admin/css/customize-controls.css

    diff --git a/wp-admin/css/customize-controls.css b/wp-admin/css/customize-controls.css
    index b595e2a8da..021c1f2d33 100644
    a b p.customize-section-description { 
    23952395}
    23962396
    23972397/* Handle cheaters. */
    2398 body.cheatin {
     2398body.unidentified-error {
    23992399        font-size: medium;
    24002400        height: auto;
    24012401        background: #fff;
    body.cheatin { 
    24062406        box-shadow: 0 1px 3px rgba(0,0,0,0.13);
    24072407}
    24082408
    2409 body.cheatin h1 {
     2409body.unidentified-error h1 {
    24102410        border-bottom: 1px solid #ddd;
    24112411        clear: both;
    24122412        color: #555d66;
    body.cheatin h1 { 
    24172417        padding-bottom: 7px;
    24182418}
    24192419
    2420 body.cheatin p {
     2420body.unidentified-error p {
    24212421        font-size: 14px;
    24222422        line-height: 1.5;
    24232423        margin: 25px 0 20px;
  • wp-admin/custom-header.php

    diff --git a/wp-admin/custom-header.php b/wp-admin/custom-header.php
    index c1a7896589..811c1bb48a 100644
    a b wp_nonce_field( 'custom-header-options', '_wpnonce-custom-header-options' ); 
    758758                check_admin_referer( 'custom-header-upload', '_wpnonce-custom-header-upload' );
    759759                if ( ! current_theme_supports( 'custom-header', 'uploads' ) ) {
    760760                        wp_die(
    761                                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     761                                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    762762                                '<p>' . __( 'The current theme does not support uploading a custom header image.' ) . '</p>',
    763763                                403
    764764                        );
    wp_nonce_field( 'custom-header-options', '_wpnonce-custom-header-options' ); 
    922922
    923923                if ( ! current_theme_supports( 'custom-header', 'uploads' ) ) {
    924924                        wp_die(
    925                                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     925                                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    926926                                '<p>' . __( 'The current theme does not support uploading a custom header image.' ) . '</p>',
    927927                                403
    928928                        );
    wp_nonce_field( 'custom-header-options', '_wpnonce-custom-header-options' ); 
    930930
    931931                if ( ! empty( $_POST['skip-cropping'] ) && ! ( current_theme_supports( 'custom-header', 'flex-height' ) || current_theme_supports( 'custom-header', 'flex-width' ) ) ) {
    932932                        wp_die(
    933                                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     933                                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    934934                                '<p>' . __( 'The current theme does not support a flexible sized header image.' ) . '</p>',
    935935                                403
    936936                        );
  • wp-admin/customize.php

    diff --git a/wp-admin/customize.php b/wp-admin/customize.php
    index e54e2170bb..25651a9b1d 100644
    a b require_once( dirname( __FILE__ ) . '/admin.php' ); 
    1414
    1515if ( ! current_user_can( 'customize' ) ) {
    1616        wp_die(
    17                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     17                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    1818                '<p>' . __( 'Sorry, you are not allowed to customize this site.' ) . '</p>',
    1919                403
    2020        );
    if ( $wp_customize->changeset_post_id() ) { 
    3131
    3232        if ( ! current_user_can( get_post_type_object( 'customize_changeset' )->cap->edit_post, $changeset_post->ID ) ) {
    3333                wp_die(
    34                         '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     34                        '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    3535                        '<p>' . __( 'Sorry, you are not allowed to edit this changeset.' ) . '</p>',
    3636                        403
    3737                );
    if ( $wp_customize->changeset_post_id() ) { 
    7676
    7777        if ( in_array( get_post_status( $changeset_post->ID ), array( 'publish', 'trash' ), true ) ) {
    7878                wp_die(
    79                         '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     79                        '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    8080                        '<p>' . __( 'This changeset cannot be further modified.' ) . '</p>' .
    8181                        '<p><a href="' . esc_url( remove_query_arg( 'changeset_uuid' ) ) . '">' . __( 'Customize New Changes' ) . '</a></p>',
    8282                        403
  • wp-admin/edit-comments.php

    diff --git a/wp-admin/edit-comments.php b/wp-admin/edit-comments.php
    index 85c04ead57..6daf00a0da 100644
    a b  
    1010require_once( dirname( __FILE__ ) . '/admin.php' );
    1111if ( ! current_user_can( 'edit_posts' ) ) {
    1212        wp_die(
    13                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     13                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    1414                '<p>' . __( 'Sorry, you are not allowed to edit comments.' ) . '</p>',
    1515                403
    1616        );
  • wp-admin/edit-tags.php

    diff --git a/wp-admin/edit-tags.php b/wp-admin/edit-tags.php
    index c49b61b2cb..3d3dc4ba29 100644
    a b if ( ! in_array( $tax->name, get_taxonomies( array( 'show_ui' => true ) ) ) ) { 
    2525
    2626if ( ! current_user_can( $tax->cap->manage_terms ) ) {
    2727        wp_die(
    28                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     28                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    2929                '<p>' . __( 'Sorry, you are not allowed to manage terms in this taxonomy.' ) . '</p>',
    3030                403
    3131        );
    switch ( $wp_list_table->current_action() ) { 
    8181
    8282                if ( ! current_user_can( $tax->cap->edit_terms ) ) {
    8383                        wp_die(
    84                                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     84                                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    8585                                '<p>' . __( 'Sorry, you are not allowed to create terms in this taxonomy.' ) . '</p>',
    8686                                403
    8787                        );
    switch ( $wp_list_table->current_action() ) { 
    111111
    112112                if ( ! current_user_can( 'delete_term', $tag_ID ) ) {
    113113                        wp_die(
    114                                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     114                                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    115115                                '<p>' . __( 'Sorry, you are not allowed to delete this item.' ) . '</p>',
    116116                                403
    117117                        );
    switch ( $wp_list_table->current_action() ) { 
    131131
    132132                if ( ! current_user_can( $tax->cap->delete_terms ) ) {
    133133                        wp_die(
    134                                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     134                                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    135135                                '<p>' . __( 'Sorry, you are not allowed to delete these items.' ) . '</p>',
    136136                                403
    137137                        );
    switch ( $wp_list_table->current_action() ) { 
    167167
    168168                if ( ! current_user_can( 'edit_term', $tag_ID ) ) {
    169169                        wp_die(
    170                                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     170                                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    171171                                '<p>' . __( 'Sorry, you are not allowed to edit this item.' ) . '</p>',
    172172                                403
    173173                        );
  • wp-admin/edit.php

    diff --git a/wp-admin/edit.php b/wp-admin/edit.php
    index f629734c18..e00da3d449 100644
    a b if ( ! $post_type_object ) { 
    3838
    3939if ( ! current_user_can( $post_type_object->cap->edit_posts ) ) {
    4040        wp_die(
    41                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     41                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    4242                '<p>' . __( 'Sorry, you are not allowed to edit posts in this post type.' ) . '</p>',
    4343                403
    4444        );
  • wp-admin/includes/bookmark.php

    diff --git a/wp-admin/includes/bookmark.php b/wp-admin/includes/bookmark.php
    index 285d716c2a..acae1a69b8 100644
    a b function add_link() { 
    2828function edit_link( $link_id = 0 ) {
    2929        if ( ! current_user_can( 'manage_links' ) ) {
    3030                wp_die(
    31                         '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     31                        '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    3232                        '<p>' . __( 'Sorry, you are not allowed to edit the links for this site.' ) . '</p>',
    3333                        403
    3434                );
  • wp-admin/js/customize-controls.js

    diff --git a/wp-admin/js/customize-controls.js b/wp-admin/js/customize-controls.js
    index d9db2e600a..0d1506aae0 100644
    a b  
    63346334
    63356335                                // Check for cheaters.
    63366336                                if ( -1 === error ) {
    6337                                         deferred.rejectWith( previewFrame, [ 'cheatin' ] );
     6337                                        deferred.rejectWith( previewFrame, [ 'unidentifiedError' ] );
    63386338                                        return;
    63396339                                }
    63406340
     
    67866786                                        previewer.login().done( previewer.refresh );
    67876787                                }
    67886788
    6789                                 if ( 'cheatin' === reason ) {
    6790                                         previewer.cheatin();
     6789                                if ( 'unidentifiedError' === reason ) {
     6790                                        previewer.unidentifiedError();
    67916791                                }
    67926792                        });
    67936793                },
     
    68266826                                });
    68276827
    68286828                                refreshNonces.fail( function() {
    6829                                         previewer.cheatin();
     6829                                        previewer.unidentifiedError();
    68306830                                        deferred.reject();
    68316831                                });
    68326832                        });
     
    68346834                        return this._login;
    68356835                },
    68366836
    6837                 cheatin: function() {
    6838                         $( document.body ).empty().addClass( 'cheatin' ).append(
    6839                                 '<h1>' + api.l10n.cheatin + '</h1>' +
     6837                unidentifiedError: function() {
     6838                        $( document.body ).empty().addClass( 'unidentified-error' ).append(
     6839                                '<h1>' + api.l10n.unidentifiedError + '</h1>' +
    68406840                                '<p>' + api.l10n.notAllowed + '</p>'
    68416841                        );
    68426842                },
     
    75757575                                                }
    75767576
    75777577                                                if ( 'invalid_nonce' === response ) {
    7578                                                         previewer.cheatin();
     7578                                                        previewer.unidentifiedError();
    75797579                                                } else if ( 'not_logged_in' === response ) {
    75807580                                                        previewer.preview.iframe.hide();
    75817581                                                        previewer.login().done( function() {
  • wp-admin/js/customize-widgets.js

    diff --git a/wp-admin/js/customize-widgets.js b/wp-admin/js/customize-widgets.js
    index 40b514876b..f4c0359d53 100644
    a b  
    12261226
    12271227                                // Check for cheaters.
    12281228                                if ( '-1' === r ) {
    1229                                         api.previewer.cheatin();
     1229                                        api.previewer.unidentifiedError();
    12301230                                        return;
    12311231                                }
    12321232
  • wp-admin/media-upload.php

    diff --git a/wp-admin/media-upload.php b/wp-admin/media-upload.php
    index 7b0bd53806..47e753006b 100644
    a b $post_id = isset( $post_id ) ? (int) $post_id : 0; 
    3535// Require an ID for the edit screen.
    3636if ( isset( $action ) && $action == 'edit' && ! $ID ) {
    3737        wp_die(
    38                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     38                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    3939                '<p>' . __( 'Invalid item ID.' ) . '</p>',
    4040                403
    4141        );
    if ( isset( $action ) && $action == 'edit' && ! $ID ) { 
    4343
    4444if ( ! empty( $_REQUEST['post_id'] ) && ! current_user_can( 'edit_post', $_REQUEST['post_id'] ) ) {
    4545        wp_die(
    46                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     46                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    4747                '<p>' . __( 'Sorry, you are not allowed to edit this item.' ) . '</p>',
    4848                403
    4949        );
  • wp-admin/nav-menus.php

    diff --git a/wp-admin/nav-menus.php b/wp-admin/nav-menus.php
    index c73a05878a..e580a0048d 100644
    a b if ( ! current_theme_supports( 'menus' ) && ! current_theme_supports( 'widgets' 
    2222// Permissions Check
    2323if ( ! current_user_can( 'edit_theme_options' ) ) {
    2424        wp_die(
    25                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     25                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    2626                '<p>' . __( 'Sorry, you are not allowed to edit theme options on this site.' ) . '</p>',
    2727                403
    2828        );
  • wp-admin/network/site-users.php

    diff --git a/wp-admin/network/site-users.php b/wp-admin/network/site-users.php
    index d1a125b844..51ef92f1a2 100644
    a b if ( $action ) { 
    159159                                        // If the user doesn't already belong to the blog, bail.
    160160                                        if ( ! is_user_member_of_blog( $user_id ) ) {
    161161                                                wp_die(
    162                                                         '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     162                                                        '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    163163                                                        '<p>' . __( 'One of the selected users is not a member of this site.' ) . '</p>',
    164164                                                        403
    165165                                                );
  • wp-admin/options.php

    diff --git a/wp-admin/options.php b/wp-admin/options.php
    index b2ecfc816e..12f6b60003 100644
    a b if ( empty( $option_page ) ) { 
    4646
    4747if ( ! current_user_can( $capability ) ) {
    4848        wp_die(
    49                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     49                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    5050                '<p>' . __( 'Sorry, you are not allowed to manage these options.' ) . '</p>',
    5151                403
    5252        );
    if ( ! empty( $_GET['adminhash'] ) ) { 
    7474
    7575if ( is_multisite() && ! current_user_can( 'manage_network_options' ) && 'update' != $action ) {
    7676        wp_die(
    77                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     77                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    7878                '<p>' . __( 'Sorry, you are not allowed to delete these items.' ) . '</p>',
    7979                403
    8080        );
  • wp-admin/post-new.php

    diff --git a/wp-admin/post-new.php b/wp-admin/post-new.php
    index 7c09650b85..a9b60f8527 100644
    a b $editing = true; 
    5757
    5858if ( ! current_user_can( $post_type_object->cap->edit_posts ) || ! current_user_can( $post_type_object->cap->create_posts ) ) {
    5959        wp_die(
    60                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     60                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    6161                '<p>' . __( 'Sorry, you are not allowed to create posts as this user.' ) . '</p>',
    6262                403
    6363        );
  • wp-admin/press-this.php

    diff --git a/wp-admin/press-this.php b/wp-admin/press-this.php
    index 8f97728fec..95b13d19ce 100644
    a b function wp_load_press_this() { 
    1818        if ( ! current_user_can( 'edit_posts' ) || ! current_user_can( get_post_type_object( 'post' )->cap->create_posts ) ) {
    1919                wp_die(
    2020                        __( 'Sorry, you are not allowed to create posts as this user.' ),
    21                         __( 'Cheatin&#8217; uh?' ),
     21                        __( 'An unidentified error has occurred.' ),
    2222                        403
    2323                );
    2424        } elseif ( is_plugin_active( $plugin_file ) ) {
  • wp-admin/term.php

    diff --git a/wp-admin/term.php b/wp-admin/term.php
    index b8331828b4..59b7a7dd17 100644
    a b if ( ! in_array( $taxonomy, get_taxonomies( array( 'show_ui' => true ) ) ) || 
    3434        ! current_user_can( 'edit_term', $tag->term_id ) ) {
    3535
    3636        wp_die(
    37                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     37                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    3838                '<p>' . __( 'Sorry, you are not allowed to edit this item.' ) . '</p>',
    3939                403
    4040        );
  • wp-admin/themes.php

    diff --git a/wp-admin/themes.php b/wp-admin/themes.php
    index b399f92f67..923d4b40a5 100644
    a b require_once( dirname( __FILE__ ) . '/admin.php' ); 
    1111
    1212if ( ! current_user_can( 'switch_themes' ) && ! current_user_can( 'edit_theme_options' ) ) {
    1313        wp_die(
    14                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     14                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    1515                '<p>' . __( 'Sorry, you are not allowed to edit theme options on this site.' ) . '</p>',
    1616                403
    1717        );
    if ( current_user_can( 'switch_themes' ) && isset( $_GET['action'] ) ) { 
    2424
    2525                if ( ! $theme->exists() || ! $theme->is_allowed() ) {
    2626                        wp_die(
    27                                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     27                                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    2828                                '<p>' . __( 'The requested theme does not exist.' ) . '</p>',
    2929                                403
    3030                        );
    if ( current_user_can( 'switch_themes' ) && isset( $_GET['action'] ) ) { 
    3939
    4040                if ( ! current_user_can( 'delete_themes' ) ) {
    4141                        wp_die(
    42                                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     42                                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    4343                                '<p>' . __( 'Sorry, you are not allowed to delete this item.' ) . '</p>',
    4444                                403
    4545                        );
    if ( current_user_can( 'switch_themes' ) && isset( $_GET['action'] ) ) { 
    4747
    4848                if ( ! $theme->exists() ) {
    4949                        wp_die(
    50                                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     50                                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    5151                                '<p>' . __( 'The requested theme does not exist.' ) . '</p>',
    5252                                403
    5353                        );
  • wp-admin/user-new.php

    diff --git a/wp-admin/user-new.php b/wp-admin/user-new.php
    index 59e68dad76..4dddcdf01b 100644
    a b require_once( dirname( __FILE__ ) . '/admin.php' ); 
    1212if ( is_multisite() ) {
    1313        if ( ! current_user_can( 'create_users' ) && ! current_user_can( 'promote_users' ) ) {
    1414                wp_die(
    15                         '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     15                        '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    1616                        '<p>' . __( 'Sorry, you are not allowed to add users to this network.' ) . '</p>',
    1717                        403
    1818                );
    1919        }
    2020} elseif ( ! current_user_can( 'create_users' ) ) {
    2121        wp_die(
    22                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     22                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    2323                '<p>' . __( 'Sorry, you are not allowed to create users.' ) . '</p>',
    2424                403
    2525        );
    if ( isset( $_REQUEST['action'] ) && 'adduser' == $_REQUEST['action'] ) { 
    5252
    5353        if ( ! current_user_can( 'promote_user', $user_details->ID ) ) {
    5454                wp_die(
    55                         '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     55                        '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    5656                        '<p>' . __( 'Sorry, you are not allowed to add users to this network.' ) . '</p>',
    5757                        403
    5858                );
    Please click the following link to confirm the invite: 
    136136
    137137        if ( ! current_user_can( 'create_users' ) ) {
    138138                wp_die(
    139                         '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     139                        '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    140140                        '<p>' . __( 'Sorry, you are not allowed to create users.' ) . '</p>',
    141141                        403
    142142                );
  • wp-admin/users.php

    diff --git a/wp-admin/users.php b/wp-admin/users.php
    index ac47c392c4..d95e72f43e 100644
    a b require_once( dirname( __FILE__ ) . '/admin.php' ); 
    1212
    1313if ( ! current_user_can( 'list_users' ) ) {
    1414        wp_die(
    15                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     15                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    1616                '<p>' . __( 'Sorry, you are not allowed to list users.' ) . '</p>',
    1717                403
    1818        );
    switch ( $wp_list_table->current_action() ) { 
    141141                        // If the user doesn't already belong to the blog, bail.
    142142                        if ( is_multisite() && ! is_user_member_of_blog( $id ) ) {
    143143                                wp_die(
    144                                         '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     144                                        '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    145145                                        '<p>' . __( 'One of the selected users is not a member of this site.' ) . '</p>',
    146146                                        403
    147147                                );
  • wp-admin/widgets.php

    diff --git a/wp-admin/widgets.php b/wp-admin/widgets.php
    index 533767023a..711c910c6e 100644
    a b require_once( ABSPATH . 'wp-admin/includes/widgets.php' ); 
    1414
    1515if ( ! current_user_can( 'edit_theme_options' ) ) {
    1616        wp_die(
    17                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     17                '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    1818                '<p>' . __( 'Sorry, you are not allowed to edit theme options on this site.' ) . '</p>',
    1919                403
    2020        );
  • wp-includes/class-wp-customize-manager.php

    diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php
    index fe22d87a06..a9ced414df 100644
    a b final class WP_Customize_Manager { 
    447447                }
    448448
    449449                if ( ! $message ) {
    450                         $message = __( 'Cheatin&#8217; uh?' );
     450                        $message = __( 'An unidentified error has occurred.' );
    451451                }
    452452
    453453                if ( $this->messenger_channel ) {
    final class WP_Customize_Manager { 
    512512                                auth_redirect();
    513513                        } else {
    514514                                wp_die(
    515                                         '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     515                                        '<h1>' . __( 'An unidentified error has occurred.' ) . '</h1>' .
    516516                                        '<p>' . __( 'Sorry, you are not allowed to customize this site.' ) . '</p>',
    517517                                        403
    518518                                );
  • wp-includes/script-loader.php

    diff --git a/wp-includes/script-loader.php b/wp-includes/script-loader.php
    index a490e6c5af..b11db518dc 100644
    a b function wp_default_scripts( &$scripts ) { 
    604604                        'close'                   => __( 'Close' ),
    605605                        'action'                  => __( 'Action' ),
    606606                        'discardChanges'          => __( 'Discard changes' ),
    607                         'cheatin'                 => __( 'Cheatin&#8217; uh?' ),
     607                        'unidentifiedError'       => __( 'An unidentified error has occurred.' ),
    608608                        'notAllowed'              => __( 'Sorry, you are not allowed to customize this site.' ),
    609609                        'previewIframeTitle'      => __( 'Site Preview' ),
    610610                        'loginIframeTitle'        => __( 'Session expired' ),