Skip to:
Content

bbPress.org


Ignore:
Timestamp:
06/04/2020 09:29:53 PM (5 years ago)
Author:
johnjamesjacoby
Message:

Accessibility: Text Changes: Use sentence case for the word "Error" in various error messages, instead of all caps.

Using all caps should be avoided for better readability, and because screen readers may pronounce all-caps words as abbreviations.

Related to [WP47156], #WP47656, #WP43037, #WP42945.

Props casiepa, man4toman, mmeet94, SergeyBiryukov, afercia, ryokuhi, sabernhardt, garrett-eclipse.

In trunk, for 2.7.0.

Fixes #3333, #3377.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/topics/functions.php

    r7037 r7098  
    103103    // Nonce check
    104104    if ( ! bbp_verify_nonce_request( 'bbp-new-topic' ) ) {
    105         bbp_add_error( 'bbp_new_topic_nonce', __( '<strong>ERROR</strong>: Are you sure you wanted to do that?', 'bbpress' ) );
     105        bbp_add_error( 'bbp_new_topic_nonce', __( '<strong>Error</strong>: Are you sure you wanted to do that?', 'bbpress' ) );
    106106        return;
    107107    }
     
    130130        // User cannot create topics
    131131        if ( ! current_user_can( 'publish_topics' ) ) {
    132             bbp_add_error( 'bbp_topic_permission', __( '<strong>ERROR</strong>: You do not have permission to create new topics.', 'bbpress' ) );
     132            bbp_add_error( 'bbp_topic_permission', __( '<strong>Error</strong>: You do not have permission to create new topics.', 'bbpress' ) );
    133133            return;
    134134        }
     
    156156    // No topic title
    157157    if ( empty( $topic_title ) ) {
    158         bbp_add_error( 'bbp_topic_title', __( '<strong>ERROR</strong>: Your topic needs a title.', 'bbpress' ) );
     158        bbp_add_error( 'bbp_topic_title', __( '<strong>Error</strong>: Your topic needs a title.', 'bbpress' ) );
    159159    }
    160160
    161161    // Title too long
    162162    if ( bbp_is_title_too_long( $topic_title ) ) {
    163         bbp_add_error( 'bbp_topic_title', __( '<strong>ERROR</strong>: Your title is too long.', 'bbpress' ) );
     163        bbp_add_error( 'bbp_topic_title', __( '<strong>Error</strong>: Your title is too long.', 'bbpress' ) );
    164164    }
    165165
     
    175175    // No topic content
    176176    if ( empty( $topic_content ) ) {
    177         bbp_add_error( 'bbp_topic_content', __( '<strong>ERROR</strong>: Your topic cannot be empty.', 'bbpress' ) );
     177        bbp_add_error( 'bbp_topic_content', __( '<strong>Error</strong>: Your topic cannot be empty.', 'bbpress' ) );
    178178    }
    179179
     
    185185        // Empty Forum id was passed
    186186        if ( empty( $_POST['bbp_forum_id'] ) ) {
    187             bbp_add_error( 'bbp_topic_forum_id', __( '<strong>ERROR</strong>: Forum ID is missing.', 'bbpress' ) );
     187            bbp_add_error( 'bbp_topic_forum_id', __( '<strong>Error</strong>: Forum ID is missing.', 'bbpress' ) );
    188188
    189189        // Forum id is not a number
    190190        } elseif ( ! is_numeric( $_POST['bbp_forum_id'] ) ) {
    191             bbp_add_error( 'bbp_topic_forum_id', __( '<strong>ERROR</strong>: Forum ID must be a number.', 'bbpress' ) );
     191            bbp_add_error( 'bbp_topic_forum_id', __( '<strong>Error</strong>: Forum ID must be a number.', 'bbpress' ) );
    192192
    193193        // Forum id might be valid
     
    199199            // Forum id is empty
    200200            if ( 0 === $posted_forum_id ) {
    201                 bbp_add_error( 'bbp_topic_forum_id', __( '<strong>ERROR</strong>: Forum ID is missing.', 'bbpress' ) );
     201                bbp_add_error( 'bbp_topic_forum_id', __( '<strong>Error</strong>: Forum ID is missing.', 'bbpress' ) );
    202202
    203203            // Forum id is a negative number
    204204            } elseif ( 0 > $posted_forum_id ) {
    205                 bbp_add_error( 'bbp_topic_forum_id', __( '<strong>ERROR</strong>: Forum ID cannot be a negative number.', 'bbpress' ) );
     205                bbp_add_error( 'bbp_topic_forum_id', __( '<strong>Error</strong>: Forum ID cannot be a negative number.', 'bbpress' ) );
    206206
    207207            // Forum does not exist
    208208            } elseif ( ! bbp_get_forum( $posted_forum_id ) ) {
    209                 bbp_add_error( 'bbp_topic_forum_id', __( '<strong>ERROR</strong>: Forum does not exist.', 'bbpress' ) );
     209                bbp_add_error( 'bbp_topic_forum_id', __( '<strong>Error</strong>: Forum does not exist.', 'bbpress' ) );
    210210
    211211            // Use the POST'ed forum id
     
    221221        // Forum is a category
    222222        if ( bbp_is_forum_category( $forum_id ) ) {
    223             bbp_add_error( 'bbp_new_topic_forum_category', __( '<strong>ERROR</strong>: This forum is a category. No topics can be created in this forum.', 'bbpress' ) );
     223            bbp_add_error( 'bbp_new_topic_forum_category', __( '<strong>Error</strong>: This forum is a category. No topics can be created in this forum.', 'bbpress' ) );
    224224
    225225        // Forum is not a category
     
    228228            // Forum is closed and user cannot access
    229229            if ( bbp_is_forum_closed( $forum_id ) && ! current_user_can( 'edit_forum', $forum_id ) ) {
    230                 bbp_add_error( 'bbp_new_topic_forum_closed', __( '<strong>ERROR</strong>: This forum has been closed to new topics.', 'bbpress' ) );
     230                bbp_add_error( 'bbp_new_topic_forum_closed', __( '<strong>Error</strong>: This forum has been closed to new topics.', 'bbpress' ) );
    231231            }
    232232
    233233            // Forum is private and user cannot access
    234234            if ( bbp_is_forum_private( $forum_id ) && ! current_user_can( 'read_forum', $forum_id ) ) {
    235                 bbp_add_error( 'bbp_new_topic_forum_private', __( '<strong>ERROR</strong>: This forum is private and you do not have the capability to read or create new topics in it.', 'bbpress' ) );
     235                bbp_add_error( 'bbp_new_topic_forum_private', __( '<strong>Error</strong>: This forum is private and you do not have the capability to read or create new topics in it.', 'bbpress' ) );
    236236
    237237            // Forum is hidden and user cannot access
    238238            } elseif ( bbp_is_forum_hidden( $forum_id ) && ! current_user_can( 'read_forum', $forum_id ) ) {
    239                 bbp_add_error( 'bbp_new_topic_forum_hidden', __( '<strong>ERROR</strong>: This forum is hidden and you do not have the capability to read or create new topics in it.', 'bbpress' ) );
     239                bbp_add_error( 'bbp_new_topic_forum_hidden', __( '<strong>Error</strong>: This forum is hidden and you do not have the capability to read or create new topics in it.', 'bbpress' ) );
    240240            }
    241241        }
     
    245245
    246246    if ( ! bbp_check_for_flood( $anonymous_data, $topic_author ) ) {
    247         bbp_add_error( 'bbp_topic_flood', __( '<strong>ERROR</strong>: Slow down; you move too fast.', 'bbpress' ) );
     247        bbp_add_error( 'bbp_topic_flood', __( '<strong>Error</strong>: Slow down; you move too fast.', 'bbpress' ) );
    248248    }
    249249
     
    251251
    252252    if ( ! bbp_check_for_duplicate( array( 'post_type' => bbp_get_topic_post_type(), 'post_author' => $topic_author, 'post_content' => $topic_content, 'anonymous_data' => $anonymous_data ) ) ) {
    253         bbp_add_error( 'bbp_topic_duplicate', __( '<strong>ERROR</strong>: Duplicate topic detected; it looks as though you&#8217;ve already said that.', 'bbpress' ) );
     253        bbp_add_error( 'bbp_topic_duplicate', __( '<strong>Error</strong>: Duplicate topic detected; it looks as though you&#8217;ve already said that.', 'bbpress' ) );
    254254    }
    255255
     
    257257
    258258    if ( ! bbp_check_for_moderation( $anonymous_data, $topic_author, $topic_title, $topic_content, true ) ) {
    259         bbp_add_error( 'bbp_topic_moderation', __( '<strong>ERROR</strong>: Your topic cannot be created at this time.', 'bbpress' ) );
     259        bbp_add_error( 'bbp_topic_moderation', __( '<strong>Error</strong>: Your topic cannot be created at this time.', 'bbpress' ) );
    260260    }
    261261
     
    398398    // WP_Error
    399399    } elseif ( is_wp_error( $topic_id ) ) {
    400         bbp_add_error( 'bbp_topic_error', sprintf( __( '<strong>ERROR</strong>: The following problem(s) occurred: %s', 'bbpress' ), $topic_id->get_error_message() ) );
     400        bbp_add_error( 'bbp_topic_error', sprintf( __( '<strong>Error</strong>: The following problem(s) occurred: %s', 'bbpress' ), $topic_id->get_error_message() ) );
    401401
    402402    // Generic error
    403403    } else {
    404         bbp_add_error( 'bbp_topic_error', __( '<strong>ERROR</strong>: The topic was not created.', 'bbpress' ) );
     404        bbp_add_error( 'bbp_topic_error', __( '<strong>Error</strong>: The topic was not created.', 'bbpress' ) );
    405405    }
    406406}
     
    428428    // Topic id was not passed
    429429    if ( empty( $_POST['bbp_topic_id'] ) ) {
    430         bbp_add_error( 'bbp_edit_topic_id', __( '<strong>ERROR</strong>: Topic ID not found.', 'bbpress' ) );
     430        bbp_add_error( 'bbp_edit_topic_id', __( '<strong>Error</strong>: Topic ID not found.', 'bbpress' ) );
    431431        return;
    432432
     
    439439    // Topic does not exist
    440440    if ( empty( $topic ) ) {
    441         bbp_add_error( 'bbp_edit_topic_not_found', __( '<strong>ERROR</strong>: The topic you want to edit was not found.', 'bbpress' ) );
     441        bbp_add_error( 'bbp_edit_topic_not_found', __( '<strong>Error</strong>: The topic you want to edit was not found.', 'bbpress' ) );
    442442        return;
    443443
     
    450450            // User cannot edit this topic
    451451            if ( ! current_user_can( 'edit_topic', $topic_id ) ) {
    452                 bbp_add_error( 'bbp_edit_topic_permission', __( '<strong>ERROR</strong>: You do not have permission to edit that topic.', 'bbpress' ) );
     452                bbp_add_error( 'bbp_edit_topic_permission', __( '<strong>Error</strong>: You do not have permission to edit that topic.', 'bbpress' ) );
    453453            }
    454454
     
    466466    // Nonce check
    467467    if ( ! bbp_verify_nonce_request( 'bbp-edit-topic_' . $topic_id ) ) {
    468         bbp_add_error( 'bbp_edit_topic_nonce', __( '<strong>ERROR</strong>: Are you sure you wanted to do that?', 'bbpress' ) );
     468        bbp_add_error( 'bbp_edit_topic_nonce', __( '<strong>Error</strong>: Are you sure you wanted to do that?', 'bbpress' ) );
    469469        return;
    470470    }
     
    481481    // Forum id was not passed
    482482    if ( empty( $_POST['bbp_forum_id'] ) ) {
    483         bbp_add_error( 'bbp_topic_forum_id', __( '<strong>ERROR</strong>: Forum ID is missing.', 'bbpress' ) );
     483        bbp_add_error( 'bbp_topic_forum_id', __( '<strong>Error</strong>: Forum ID is missing.', 'bbpress' ) );
    484484
    485485    // Forum id was passed
     
    496496        // Forum is a category
    497497        if ( bbp_is_forum_category( $forum_id ) ) {
    498             bbp_add_error( 'bbp_edit_topic_forum_category', __( '<strong>ERROR</strong>: This forum is a category. No topics can be created in it.', 'bbpress' ) );
     498            bbp_add_error( 'bbp_edit_topic_forum_category', __( '<strong>Error</strong>: This forum is a category. No topics can be created in it.', 'bbpress' ) );
    499499
    500500        // Forum is not a category
     
    503503            // Forum is closed and user cannot access
    504504            if ( bbp_is_forum_closed( $forum_id ) && ! current_user_can( 'edit_forum', $forum_id ) ) {
    505                 bbp_add_error( 'bbp_edit_topic_forum_closed', __( '<strong>ERROR</strong>: This forum has been closed to new topics.', 'bbpress' ) );
     505                bbp_add_error( 'bbp_edit_topic_forum_closed', __( '<strong>Error</strong>: This forum has been closed to new topics.', 'bbpress' ) );
    506506            }
    507507
    508508            // Forum is private and user cannot access
    509509            if ( bbp_is_forum_private( $forum_id ) && ! current_user_can( 'read_forum', $forum_id ) ) {
    510                 bbp_add_error( 'bbp_edit_topic_forum_private', __( '<strong>ERROR</strong>: This forum is private and you do not have the capability to read or create new topics in it.', 'bbpress' ) );
     510                bbp_add_error( 'bbp_edit_topic_forum_private', __( '<strong>Error</strong>: This forum is private and you do not have the capability to read or create new topics in it.', 'bbpress' ) );
    511511
    512512            // Forum is hidden and user cannot access
    513513            } elseif ( bbp_is_forum_hidden( $forum_id ) && ! current_user_can( 'read_forum', $forum_id ) ) {
    514                 bbp_add_error( 'bbp_edit_topic_forum_hidden', __( '<strong>ERROR</strong>: This forum is hidden and you do not have the capability to read or create new topics in it.', 'bbpress' ) );
     514                bbp_add_error( 'bbp_edit_topic_forum_hidden', __( '<strong>Error</strong>: This forum is hidden and you do not have the capability to read or create new topics in it.', 'bbpress' ) );
    515515            }
    516516        }
     
    528528    // No topic title
    529529    if ( empty( $topic_title ) ) {
    530         bbp_add_error( 'bbp_edit_topic_title', __( '<strong>ERROR</strong>: Your topic needs a title.', 'bbpress' ) );
     530        bbp_add_error( 'bbp_edit_topic_title', __( '<strong>Error</strong>: Your topic needs a title.', 'bbpress' ) );
    531531    }
    532532
    533533    // Title too long
    534534    if ( bbp_is_title_too_long( $topic_title ) ) {
    535         bbp_add_error( 'bbp_topic_title', __( '<strong>ERROR</strong>: Your title is too long.', 'bbpress' ) );
     535        bbp_add_error( 'bbp_topic_title', __( '<strong>Error</strong>: Your title is too long.', 'bbpress' ) );
    536536    }
    537537
     
    547547    // No topic content
    548548    if ( empty( $topic_content ) ) {
    549         bbp_add_error( 'bbp_edit_topic_content', __( '<strong>ERROR</strong>: Your topic cannot be empty.', 'bbpress' ) );
     549        bbp_add_error( 'bbp_edit_topic_content', __( '<strong>Error</strong>: Your topic cannot be empty.', 'bbpress' ) );
    550550    }
    551551
     
    553553
    554554    if ( ! bbp_check_for_moderation( $anonymous_data, $topic_author, $topic_title, $topic_content, true ) ) {
    555         bbp_add_error( 'bbp_topic_moderation', __( '<strong>ERROR</strong>: Your topic cannot be edited at this time.', 'bbpress' ) );
     555        bbp_add_error( 'bbp_topic_moderation', __( '<strong>Error</strong>: Your topic cannot be edited at this time.', 'bbpress' ) );
    556556    }
    557557
     
    714714    } else {
    715715        $append_error = ( is_wp_error( $topic_id ) && $topic_id->get_error_message() ) ? $topic_id->get_error_message() . ' ' : '';
    716         bbp_add_error( 'bbp_topic_error', __( '<strong>ERROR</strong>: The following problem(s) have been found with your topic:' . $append_error . 'Please try again.', 'bbpress' ) );
     716        bbp_add_error( 'bbp_topic_error', __( '<strong>Error</strong>: The following problem(s) have been found with your topic:' . $append_error . 'Please try again.', 'bbpress' ) );
    717717    }
    718718}
     
    10841084    // Topic id
    10851085    if ( empty( $_POST['bbp_topic_id'] ) ) {
    1086         bbp_add_error( 'bbp_merge_topic_source_id', __( '<strong>ERROR</strong>: Topic ID not found.', 'bbpress' ) );
     1086        bbp_add_error( 'bbp_merge_topic_source_id', __( '<strong>Error</strong>: Topic ID not found.', 'bbpress' ) );
    10871087    } else {
    10881088        $source_topic_id = (int) $_POST['bbp_topic_id'];
     
    10911091    // Nonce check
    10921092    if ( ! bbp_verify_nonce_request( 'bbp-merge-topic_' . $source_topic_id ) ) {
    1093         bbp_add_error( 'bbp_merge_topic_nonce', __( '<strong>ERROR</strong>: Are you sure you wanted to do that?', 'bbpress' ) );
     1093        bbp_add_error( 'bbp_merge_topic_nonce', __( '<strong>Error</strong>: Are you sure you wanted to do that?', 'bbpress' ) );
    10941094        return;
    10951095
    10961096    // Source topic not found
    10971097    } elseif ( ! $source_topic = bbp_get_topic( $source_topic_id ) ) {
    1098         bbp_add_error( 'bbp_merge_topic_source_not_found', __( '<strong>ERROR</strong>: The topic you want to merge was not found.', 'bbpress' ) );
     1098        bbp_add_error( 'bbp_merge_topic_source_not_found', __( '<strong>Error</strong>: The topic you want to merge was not found.', 'bbpress' ) );
    10991099        return;
    11001100    }
     
    11021102    // Cannot edit source topic
    11031103    if ( ! current_user_can( 'edit_topic', $source_topic->ID ) ) {
    1104         bbp_add_error( 'bbp_merge_topic_source_permission', __( '<strong>ERROR</strong>: You do not have permission to edit the source topic.', 'bbpress' ) );
     1104        bbp_add_error( 'bbp_merge_topic_source_permission', __( '<strong>Error</strong>: You do not have permission to edit the source topic.', 'bbpress' ) );
    11051105        return;
    11061106    }
     
    11101110    // Topic id
    11111111    if ( empty( $_POST['bbp_destination_topic'] ) ) {
    1112         bbp_add_error( 'bbp_merge_topic_destination_id', __( '<strong>ERROR</strong>: Destination topic ID not found.', 'bbpress' ) );
     1112        bbp_add_error( 'bbp_merge_topic_destination_id', __( '<strong>Error</strong>: Destination topic ID not found.', 'bbpress' ) );
    11131113    } else {
    11141114        $destination_topic_id = (int) $_POST['bbp_destination_topic'];
     
    11171117    // Destination topic not found
    11181118    if ( ! $destination_topic = bbp_get_topic( $destination_topic_id ) ) {
    1119         bbp_add_error( 'bbp_merge_topic_destination_not_found', __( '<strong>ERROR</strong>: The topic you want to merge to was not found.', 'bbpress' ) );
     1119        bbp_add_error( 'bbp_merge_topic_destination_not_found', __( '<strong>Error</strong>: The topic you want to merge to was not found.', 'bbpress' ) );
    11201120    }
    11211121
    11221122    // Cannot edit destination topic
    11231123    if ( ! current_user_can( 'edit_topic', $destination_topic->ID ) ) {
    1124         bbp_add_error( 'bbp_merge_topic_destination_permission', __( '<strong>ERROR</strong>: You do not have permission to edit the destination topic.', 'bbpress' ) );
     1124        bbp_add_error( 'bbp_merge_topic_destination_permission', __( '<strong>Error</strong>: You do not have permission to edit the destination topic.', 'bbpress' ) );
    11251125    }
    11261126
     
    13421342
    13431343    if ( empty( $_POST['bbp_reply_id'] ) ) {
    1344         bbp_add_error( 'bbp_split_topic_reply_id', __( '<strong>ERROR</strong>: A reply ID is required.', 'bbpress' ) );
     1344        bbp_add_error( 'bbp_split_topic_reply_id', __( '<strong>Error</strong>: A reply ID is required.', 'bbpress' ) );
    13451345    } else {
    13461346        $from_reply_id = (int) $_POST['bbp_reply_id'];
     
    13511351    // Reply exists
    13521352    if ( empty( $from_reply ) ) {
    1353         bbp_add_error( 'bbp_split_topic_r_not_found', __( '<strong>ERROR</strong>: The reply you want to split from was not found.', 'bbpress' ) );
     1353        bbp_add_error( 'bbp_split_topic_r_not_found', __( '<strong>Error</strong>: The reply you want to split from was not found.', 'bbpress' ) );
    13541354    }
    13551355
     
    13611361    // No topic
    13621362    if ( empty( $source_topic ) ) {
    1363         bbp_add_error( 'bbp_split_topic_source_not_found', __( '<strong>ERROR</strong>: The topic you want to split was not found.', 'bbpress' ) );
     1363        bbp_add_error( 'bbp_split_topic_source_not_found', __( '<strong>Error</strong>: The topic you want to split was not found.', 'bbpress' ) );
    13641364    }
    13651365
    13661366    // Nonce check failed
    13671367    if ( ! bbp_verify_nonce_request( 'bbp-split-topic_' . $source_topic->ID ) ) {
    1368         bbp_add_error( 'bbp_split_topic_nonce', __( '<strong>ERROR</strong>: Are you sure you wanted to do that?', 'bbpress' ) );
     1368        bbp_add_error( 'bbp_split_topic_nonce', __( '<strong>Error</strong>: Are you sure you wanted to do that?', 'bbpress' ) );
    13691369        return;
    13701370    }
     
    13721372    // Use cannot edit topic
    13731373    if ( ! current_user_can( 'edit_topic', $source_topic->ID ) ) {
    1374         bbp_add_error( 'bbp_split_topic_source_permission', __( '<strong>ERROR</strong>: You do not have permission to edit the source topic.', 'bbpress' ) );
     1374        bbp_add_error( 'bbp_split_topic_source_permission', __( '<strong>Error</strong>: You do not have permission to edit the source topic.', 'bbpress' ) );
    13751375    }
    13761376
     
    13821382    // Invalid split option
    13831383    if ( empty( $split_option ) || ! in_array( $split_option, array( 'existing', 'reply' ), true ) ) {
    1384         bbp_add_error( 'bbp_split_topic_option', __( '<strong>ERROR</strong>: You need to choose a valid split option.', 'bbpress' ) );
     1384        bbp_add_error( 'bbp_split_topic_option', __( '<strong>Error</strong>: You need to choose a valid split option.', 'bbpress' ) );
    13851385
    13861386    // Valid Split Option
     
    13951395                // Get destination topic id
    13961396                if ( empty( $_POST['bbp_destination_topic'] ) ) {
    1397                     bbp_add_error( 'bbp_split_topic_destination_id', __( '<strong>ERROR</strong>: A topic ID is required.', 'bbpress' ) );
     1397                    bbp_add_error( 'bbp_split_topic_destination_id', __( '<strong>Error</strong>: A topic ID is required.', 'bbpress' ) );
    13981398                } else {
    13991399                    $destination_topic_id = (int) $_POST['bbp_destination_topic'];
     
    14051405                // No destination topic
    14061406                if ( empty( $destination_topic ) ) {
    1407                     bbp_add_error( 'bbp_split_topic_destination_not_found', __( '<strong>ERROR</strong>: The topic you want to split to was not found.', 'bbpress' ) );
     1407                    bbp_add_error( 'bbp_split_topic_destination_not_found', __( '<strong>Error</strong>: The topic you want to split to was not found.', 'bbpress' ) );
    14081408                }
    14091409
    14101410                // User cannot edit the destination topic
    14111411                if ( ! current_user_can( 'edit_topic', $destination_topic->ID ) ) {
    1412                     bbp_add_error( 'bbp_split_topic_destination_permission', __( '<strong>ERROR</strong>: You do not have permission to edit the destination topic.', 'bbpress' ) );
     1412                    bbp_add_error( 'bbp_split_topic_destination_permission', __( '<strong>Error</strong>: You do not have permission to edit the destination topic.', 'bbpress' ) );
    14131413                }
    14141414
     
    14481448                    // Shouldn't happen
    14491449                    if ( false === $destination_topic_id || is_wp_error( $destination_topic_id ) || empty( $destination_topic ) ) {
    1450                         bbp_add_error( 'bbp_split_topic_destination_reply', __( '<strong>ERROR</strong>: There was a problem converting the reply into the topic. Please try again.', 'bbpress' ) );
     1450                        bbp_add_error( 'bbp_split_topic_destination_reply', __( '<strong>Error</strong>: There was a problem converting the reply into the topic. Please try again.', 'bbpress' ) );
    14511451                    }
    14521452
    14531453                // User cannot publish posts
    14541454                } else {
    1455                     bbp_add_error( 'bbp_split_topic_destination_permission', __( '<strong>ERROR</strong>: You do not have permission to create new topics. The reply could not be converted into a topic.', 'bbpress' ) );
     1455                    bbp_add_error( 'bbp_split_topic_destination_permission', __( '<strong>Error</strong>: You do not have permission to create new topics. The reply could not be converted into a topic.', 'bbpress' ) );
    14561456                }
    14571457
     
    16901690    // Tag does not exist
    16911691    if ( is_wp_error( $tag ) && $tag->get_error_message() ) {
    1692         bbp_add_error( 'bbp_manage_topic_invalid_tag', sprintf( __( '<strong>ERROR</strong>: The following problem(s) have been found while getting the tag: %s', 'bbpress' ), $tag->get_error_message() ) );
     1692        bbp_add_error( 'bbp_manage_topic_invalid_tag', sprintf( __( '<strong>Error</strong>: The following problem(s) have been found while getting the tag: %s', 'bbpress' ), $tag->get_error_message() ) );
    16931693        return;
    16941694    }
     
    17021702            // Nonce check
    17031703            if ( ! bbp_verify_nonce_request( 'update-tag_' . $tag_id ) ) {
    1704                 bbp_add_error( 'bbp_manage_topic_tag_update_nonce', __( '<strong>ERROR</strong>: Are you sure you wanted to do that?', 'bbpress' ) );
     1704                bbp_add_error( 'bbp_manage_topic_tag_update_nonce', __( '<strong>Error</strong>: Are you sure you wanted to do that?', 'bbpress' ) );
    17051705                return;
    17061706            }
     
    17081708            // Can user edit topic tags?
    17091709            if ( ! current_user_can( 'edit_topic_tag', $tag_id ) ) {
    1710                 bbp_add_error( 'bbp_manage_topic_tag_update_permission', __( '<strong>ERROR</strong>: You do not have permission to edit the topic tags.', 'bbpress' ) );
     1710                bbp_add_error( 'bbp_manage_topic_tag_update_permission', __( '<strong>Error</strong>: You do not have permission to edit the topic tags.', 'bbpress' ) );
    17111711                return;
    17121712            }
     
    17141714            // No tag name was provided
    17151715            if ( empty( $_POST['tag-name'] ) || ! $name = $_POST['tag-name'] ) {
    1716                 bbp_add_error( 'bbp_manage_topic_tag_update_name', __( '<strong>ERROR</strong>: You need to enter a tag name.', 'bbpress' ) );
     1716                bbp_add_error( 'bbp_manage_topic_tag_update_name', __( '<strong>Error</strong>: You need to enter a tag name.', 'bbpress' ) );
    17171717                return;
    17181718            }
     
    17291729            // Cannot update tag
    17301730            if ( is_wp_error( $tag ) && $tag->get_error_message() ) {
    1731                 bbp_add_error( 'bbp_manage_topic_tag_update_error', sprintf( __( '<strong>ERROR</strong>: The following problem(s) have been found while updating the tag: %s', 'bbpress' ), $tag->get_error_message() ) );
     1731                bbp_add_error( 'bbp_manage_topic_tag_update_error', sprintf( __( '<strong>Error</strong>: The following problem(s) have been found while updating the tag: %s', 'bbpress' ), $tag->get_error_message() ) );
    17321732                return;
    17331733            }
     
    17461746            // Nonce check
    17471747            if ( ! bbp_verify_nonce_request( 'merge-tag_' . $tag_id ) ) {
    1748                 bbp_add_error( 'bbp_manage_topic_tag_merge_nonce', __( '<strong>ERROR</strong>: Are you sure you wanted to do that?', 'bbpress' ) );
     1748                bbp_add_error( 'bbp_manage_topic_tag_merge_nonce', __( '<strong>Error</strong>: Are you sure you wanted to do that?', 'bbpress' ) );
    17491749                return;
    17501750            }
     
    17521752            // Can user edit topic tags?
    17531753            if ( ! current_user_can( 'edit_topic_tags' ) ) {
    1754                 bbp_add_error( 'bbp_manage_topic_tag_merge_permission', __( '<strong>ERROR</strong>: You do not have permission to edit the topic tags.', 'bbpress' ) );
     1754                bbp_add_error( 'bbp_manage_topic_tag_merge_permission', __( '<strong>Error</strong>: You do not have permission to edit the topic tags.', 'bbpress' ) );
    17551755                return;
    17561756            }
     
    17581758            // No tag name was provided
    17591759            if ( empty( $_POST['tag-existing-name'] ) || ! $name = $_POST['tag-existing-name'] ) {
    1760                 bbp_add_error( 'bbp_manage_topic_tag_merge_name', __( '<strong>ERROR</strong>: You need to enter a tag name.', 'bbpress' ) );
     1760                bbp_add_error( 'bbp_manage_topic_tag_merge_name', __( '<strong>Error</strong>: You need to enter a tag name.', 'bbpress' ) );
    17611761                return;
    17621762            }
     
    17691769            // Problem inserting the new term
    17701770            if ( is_wp_error( $tag ) && $tag->get_error_message() ) {
    1771                 bbp_add_error( 'bbp_manage_topic_tag_merge_error', sprintf( __( '<strong>ERROR</strong>: The following problem(s) have been found while merging the tags: %s', 'bbpress' ), $tag->get_error_message() ) );
     1771                bbp_add_error( 'bbp_manage_topic_tag_merge_error', sprintf( __( '<strong>Error</strong>: The following problem(s) have been found while merging the tags: %s', 'bbpress' ), $tag->get_error_message() ) );
    17721772                return;
    17731773            }
     
    17781778            // Attempting to merge a tag into itself
    17791779            if ( $tag_id === $to_tag ) {
    1780                 bbp_add_error( 'bbp_manage_topic_tag_merge_same', __( '<strong>ERROR</strong>: The tags which are being merged can not be the same.', 'bbpress' ) );
     1780                bbp_add_error( 'bbp_manage_topic_tag_merge_same', __( '<strong>Error</strong>: The tags which are being merged can not be the same.', 'bbpress' ) );
    17811781                return;
    17821782            }
     
    17901790            // Error merging the terms
    17911791            if ( is_wp_error( $tag ) && $tag->get_error_message() ) {
    1792                 bbp_add_error( 'bbp_manage_topic_tag_merge_error', sprintf( __( '<strong>ERROR</strong>: The following problem(s) have been found while merging the tags: %s', 'bbpress' ), $tag->get_error_message() ) );
     1792                bbp_add_error( 'bbp_manage_topic_tag_merge_error', sprintf( __( '<strong>Error</strong>: The following problem(s) have been found while merging the tags: %s', 'bbpress' ), $tag->get_error_message() ) );
    17931793                return;
    17941794            }
     
    18071807            // Nonce check
    18081808            if ( ! bbp_verify_nonce_request( 'delete-tag_' . $tag_id ) ) {
    1809                 bbp_add_error( 'bbp_manage_topic_tag_delete_nonce', __( '<strong>ERROR</strong>: Are you sure you wanted to do that?', 'bbpress' ) );
     1809                bbp_add_error( 'bbp_manage_topic_tag_delete_nonce', __( '<strong>Error</strong>: Are you sure you wanted to do that?', 'bbpress' ) );
    18101810                return;
    18111811            }
     
    18131813            // Can user delete topic tags?
    18141814            if ( ! current_user_can( 'delete_topic_tag', $tag_id ) ) {
    1815                 bbp_add_error( 'bbp_manage_topic_tag_delete_permission', __( '<strong>ERROR</strong>: You do not have permission to delete the topic tags.', 'bbpress' ) );
     1815                bbp_add_error( 'bbp_manage_topic_tag_delete_permission', __( '<strong>Error</strong>: You do not have permission to delete the topic tags.', 'bbpress' ) );
    18161816                return;
    18171817            }
     
    18221822            // Error deleting term
    18231823            if ( is_wp_error( $tag ) && $tag->get_error_message() ) {
    1824                 bbp_add_error( 'bbp_manage_topic_tag_delete_error', sprintf( __( '<strong>ERROR</strong>: The following problem(s) have been found while deleting the tag: %s', 'bbpress' ), $tag->get_error_message() ) );
     1824                bbp_add_error( 'bbp_manage_topic_tag_delete_error', sprintf( __( '<strong>Error</strong>: The following problem(s) have been found while deleting the tag: %s', 'bbpress' ), $tag->get_error_message() ) );
    18251825                return;
    18261826            }
     
    20182018    $topic = bbp_get_topic( $topic_id );
    20192019    if ( empty( $topic ) ) {
    2020         bbp_add_error( 'bbp_toggle_topic_missing', __( '<strong>ERROR</strong>: This topic could not be found or no longer exists.', 'bbpress' ) );
     2020        bbp_add_error( 'bbp_toggle_topic_missing', __( '<strong>Error</strong>: This topic could not be found or no longer exists.', 'bbpress' ) );
    20212021        return;
    20222022    }
     
    20242024    // What is the user doing here?
    20252025    if ( ! current_user_can( 'edit_topic', $topic_id ) || ( 'bbp_toggle_topic_trash' === $action && ! current_user_can( 'delete_topic', $topic_id ) ) ) {
    2026         bbp_add_error( 'bbp_toggle_topic_permission', __( '<strong>ERROR</strong>: You do not have permission to do that.', 'bbpress' ) );
     2026        bbp_add_error( 'bbp_toggle_topic_permission', __( '<strong>Error</strong>: You do not have permission to do that.', 'bbpress' ) );
    20272027        return;
    20282028    }
     
    21082108            // Feedback
    21092109            $retval['message'] = ( true === $is_pending )
    2110                 ? __( '<strong>ERROR</strong>: There was a problem approving the topic.',   'bbpress' )
    2111                 : __( '<strong>ERROR</strong>: There was a problem unapproving the topic.', 'bbpress' );
     2110                ? __( '<strong>Error</strong>: There was a problem approving the topic.',   'bbpress' )
     2111                : __( '<strong>Error</strong>: There was a problem unapproving the topic.', 'bbpress' );
    21122112
    21132113            break;
     
    21262126            // Feedback
    21272127            $retval['message'] = ( true === $is_open )
    2128                 ? __( '<strong>ERROR</strong>: There was a problem closing the topic.', 'bbpress' )
    2129                 : __( '<strong>ERROR</strong>: There was a problem opening the topic.', 'bbpress' );
     2128                ? __( '<strong>Error</strong>: There was a problem closing the topic.', 'bbpress' )
     2129                : __( '<strong>Error</strong>: There was a problem opening the topic.', 'bbpress' );
    21302130
    21312131            break;
     
    21452145            // Feedback
    21462146            $retval['message'] = ( true === $is_sticky )
    2147                 ? __( '<strong>ERROR</strong>: There was a problem unsticking the topic.', 'bbpress' )
    2148                 : __( '<strong>ERROR</strong>: There was a problem sticking the topic.',   'bbpress' );
     2147                ? __( '<strong>Error</strong>: There was a problem unsticking the topic.', 'bbpress' )
     2148                : __( '<strong>Error</strong>: There was a problem sticking the topic.',   'bbpress' );
    21492149
    21502150            break;
     
    21642164            // Feedback
    21652165            $retval['message'] = ( true === $is_spam )
    2166                 ? __( '<strong>ERROR</strong>: There was a problem unmarking the topic as spam.', 'bbpress' )
    2167                 : __( '<strong>ERROR</strong>: There was a problem marking the topic as spam.',   'bbpress' );
     2166                ? __( '<strong>Error</strong>: There was a problem unmarking the topic as spam.', 'bbpress' )
     2167                : __( '<strong>Error</strong>: There was a problem marking the topic as spam.',   'bbpress' );
    21682168
    21692169            break;
     
    21782178                    $retval['view_all']    = true;
    21792179                    $retval['status']      = wp_trash_post( $r['id'] );
    2180                     $retval['message']     = __( '<strong>ERROR</strong>: There was a problem trashing the topic.', 'bbpress' );
     2180                    $retval['message']     = __( '<strong>Error</strong>: There was a problem trashing the topic.', 'bbpress' );
    21812181                    $retval['redirect_to'] = current_user_can( 'view_trash' )
    21822182                        ? bbp_get_topic_permalink( $r['id'] )
     
    21892189
    21902190                    $retval['status']      = wp_untrash_post( $r['id'] );
    2191                     $retval['message']     = __( '<strong>ERROR</strong>: There was a problem untrashing the topic.', 'bbpress' );
     2191                    $retval['message']     = __( '<strong>Error</strong>: There was a problem untrashing the topic.', 'bbpress' );
    21922192                    $retval['redirect_to'] = bbp_get_topic_permalink( $r['id'] );
    21932193
     
    21982198
    21992199                    $retval['status']      = wp_delete_post( $r['id'] );
    2200                     $retval['message']     = __( '<strong>ERROR</strong>: There was a problem deleting the topic.', 'bbpress' );
     2200                    $retval['message']     = __( '<strong>Error</strong>: There was a problem deleting the topic.', 'bbpress' );
    22012201                    $retval['redirect_to'] = bbp_get_forum_permalink( $retval['status']->post_parent );
    22022202
Note: See TracChangeset for help on using the changeset viewer.