Index: common/includes/wporg-sso/wp-plugin.php
===================================================================
--- common/includes/wporg-sso/wp-plugin.php	(revision 9879)
+++ common/includes/wporg-sso/wp-plugin.php	(working copy)
@@ -96,7 +96,7 @@
 				if ( ! empty( $support_user->allcaps['bbp_blocked'] ) ) {
 					return new WP_Error(
 						'blocked_account',
-						__( '<strong>ERROR</strong>: Your account has been disabled.', 'wporg' )  . '<br>' .
+						__( '<strong>Error</strong>: Your account has been disabled.', 'wporg' )  . '<br>' .
 						sprintf(
 							__( 'Please contact %s for more details.', 'wporg' ),
 							'<a href="mailto:forum-password-resets@wordpress.org">forum-password-resets@wordpress.org</a>'
Index: jobs.wordpress.net/public_html/wp-content/plugins/jobswp/jobswp.php
===================================================================
--- jobs.wordpress.net/public_html/wp-content/plugins/jobswp/jobswp.php	(revision 9879)
+++ jobs.wordpress.net/public_html/wp-content/plugins/jobswp/jobswp.php	(working copy)
@@ -333,7 +333,7 @@
 			return;
 
 		echo '<div class="error"><p>';
-		printf( __( 'ERROR: The username configured for posting jobs &mdash; %s &mdash; does not exist.', 'jobswp' ), $jobposter_username );
+		printf( __( 'Error: The username configured for posting jobs &mdash; %s &mdash; does not exist.', 'jobswp' ), $jobposter_username );
 		echo '</p></div>';
 	}
 
Index: jobs.wordpress.net/public_html/wp-content/themes/jobswp/content-post-job.php
===================================================================
--- jobs.wordpress.net/public_html/wp-content/themes/jobswp/content-post-job.php	(revision 9879)
+++ jobs.wordpress.net/public_html/wp-content/themes/jobswp/content-post-job.php	(working copy)
@@ -4,9 +4,9 @@
 
 	<div class="notice notice-error">
 		<?php if ( is_string( $_POST['errors'] ) )
-			echo sprintf( __( '<strong>ERROR:</strong> %s', 'jobswp' ), esc_html( $_POST['errors'] ) );
+			echo sprintf( __( '<strong>Error:</strong> %s', 'jobswp' ), esc_html( $_POST['errors'] ) );
 		else
-			_e( '<strong>ERROR:</strong> One or more required fields are missing a value.', 'jobswp' );
+			_e( '<strong>Error:</strong> One or more required fields are missing a value.', 'jobswp' );
 		?>
 		<?php do_action( 'jobswp_notice', 'error' ); ?>
 	</div>
Index: jobs.wordpress.net/public_html/wp-content/themes/jobswp/page-remove-a-job.php
===================================================================
--- jobs.wordpress.net/public_html/wp-content/themes/jobswp/page-remove-a-job.php	(revision 9879)
+++ jobs.wordpress.net/public_html/wp-content/themes/jobswp/page-remove-a-job.php	(working copy)
@@ -27,9 +27,9 @@
 			<div class="entry-content">
 				<div class="notice notice-error">
 					<?php if ( is_string( $_POST['errors'] ) ) {
-						echo sprintf( __( '<strong>ERROR:</strong> %s', 'jobswp' ), esc_html( $_POST['errors'] ) );
+						echo sprintf( __( '<strong>Error:</strong> %s', 'jobswp' ), esc_html( $_POST['errors'] ) );
 					} else {
-						_e( '<strong>ERROR:</strong> One or more required fields are missing a value.', 'jobswp' );
+						_e( '<strong>Error:</strong> One or more required fields are missing a value.', 'jobswp' );
 					} ?>
 					<?php do_action( 'jobswp_notice', 'error' ); ?>
 				</div>
Index: wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/class-customizations.php
===================================================================
--- wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/class-customizations.php	(revision 9879)
+++ wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/class-customizations.php	(working copy)
@@ -564,7 +564,7 @@
 		}
 
 		if ( '' == $comment_content ) {
-			wp_die( __( 'ERROR: please type a comment.', 'wporg-plugins' ) );
+			wp_die( __( 'Error: please type a comment.', 'wporg-plugins' ) );
 		}
 
 		$comment_parent = 0;
Index: wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-moderators.php
===================================================================
--- wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-moderators.php	(revision 9879)
+++ wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-moderators.php	(working copy)
@@ -297,15 +297,15 @@
 
 		// Check for empty post id.
 		if ( ! $post ) {
-			bbp_add_error( 'wporg_bbp_archive_post_id', __( '<strong>ERROR</strong>: No post was found! Which post are you archiving?', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_archive_post_id', __( '<strong>Error</strong>: No post was found! Which post are you archiving?', 'wporg-forums' ) );
 
 		// Check for current user.
 		} elseif ( empty( $user_id ) ) {
-			bbp_add_error( 'wporg_bbp_archive_logged_in', __( '<strong>ERROR</strong>: You must be logged in to do this!', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_archive_logged_in', __( '<strong>Error</strong>: You must be logged in to do this!', 'wporg-forums' ) );
 
 		// Check nonce.
 		} elseif ( ! bbp_verify_nonce_request( 'toggle-post-archive_' . $user_id . '_' . $post->ID ) ) {
-			bbp_add_error( 'wporg_bbp_archive_nonce', __( '<strong>ERROR</strong>: Are you sure you wanted to do that?', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_archive_nonce', __( '<strong>Error</strong>: Are you sure you wanted to do that?', 'wporg-forums' ) );
 
 		}
 
@@ -332,9 +332,9 @@
 		if ( true === $success ) {
 			bbp_redirect( $permalink );
 		} elseif ( true === $is_archived && 'wporg_bbp_archive_post' === $action ) {
-			bbp_add_error( 'wporg_bbp_archive_post', __( '<strong>ERROR</strong>: There was a problem archiving that post!', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_archive_post', __( '<strong>Error</strong>: There was a problem archiving that post!', 'wporg-forums' ) );
 		} elseif ( false === $is_archived && 'wporg_bbp_unarchive_post' === $action ) {
-			bbp_add_error( 'wporg_bbp_unarchive_post', __( '<strong>ERROR</strong>: There was a problem unarchiving that post!', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_unarchive_post', __( '<strong>Error</strong>: There was a problem unarchiving that post!', 'wporg-forums' ) );
 		}
 	}
 
@@ -685,13 +685,13 @@
 		// Make sure topic exists
 		$topic = bbp_get_topic( $topic_id );
 		if ( empty( $topic ) ) {
-			bbp_add_error( 'bbp_toggle_topic_missing', __( '<strong>ERROR:</strong> This topic could not be found or no longer exists.', 'wporg-forums' ) );
+			bbp_add_error( 'bbp_toggle_topic_missing', __( '<strong>Error:</strong> This topic could not be found or no longer exists.', 'wporg-forums' ) );
 			return;
 		}
 
 		// What is the user doing here?
 		if ( ! current_user_can( 'edit_topic', $topic_id ) ) {
-			bbp_add_error( 'bbp_toggle_topic_permission', __( '<strong>ERROR:</strong> You do not have permission to do that.', 'wporg-forums' ) );
+			bbp_add_error( 'bbp_toggle_topic_permission', __( '<strong>Error:</strong> You do not have permission to do that.', 'wporg-forums' ) );
 			return;
 		}
 
@@ -749,13 +749,13 @@
 		// Make sure reply exists
 		$reply = bbp_get_reply( $reply_id );
 		if ( empty( $reply ) ) {
-			bbp_add_error( 'bbp_toggle_reply_missing', __( '<strong>ERROR:</strong> This reply could not be found or no longer exists.', 'wporg-forums' ) );
+			bbp_add_error( 'bbp_toggle_reply_missing', __( '<strong>Error:</strong> This reply could not be found or no longer exists.', 'wporg-forums' ) );
 			return;
 		}
 
 		// What is the user doing here?
 		if ( ! current_user_can( 'edit_reply', $reply_id ) ) {
-			bbp_add_error( 'bbp_toggle_reply_permission', __( '<strong>ERROR:</strong> You do not have permission to do that.', 'wporg-forums' ) );
+			bbp_add_error( 'bbp_toggle_reply_permission', __( '<strong>Error:</strong> You do not have permission to do that.', 'wporg-forums' ) );
 			return;
 		}
 
@@ -813,7 +813,7 @@
 
 				if ( bbp_is_topic_open( $r['id'] ) ) {
 					$retval['status']  = bbp_close_topic( $r['id'] );
-					$retval['message'] = __( '<strong>ERROR</strong>: There was a problem closing the topic.', 'wporg-forums' );
+					$retval['message'] = __( '<strong>Error</strong>: There was a problem closing the topic.', 'wporg-forums' );
 				}
 
 				break;
@@ -823,7 +823,7 @@
 
 				if ( ! bbp_is_topic_open( $r['id'] ) ) {
 					$retval['status']  = bbp_open_topic( $r['id'] );
-					$retval['message'] = __( '<strong>ERROR</strong>: There was a problem opening the topic.', 'wporg-forums' );
+					$retval['message'] = __( '<strong>Error</strong>: There was a problem opening the topic.', 'wporg-forums' );
 				}
 
 				break;
@@ -833,7 +833,7 @@
 
 				if ( ! bbp_is_topic_sticky( $r['id'] ) ) {
 					$retval['status']  = bbp_stick_topic( $r['id'], ! empty( $_GET['super'] ) );
-					$retval['message'] = __( '<strong>ERROR</strong>: There was a problem sticking the topic.', 'wporg-forums' );
+					$retval['message'] = __( '<strong>Error</strong>: There was a problem sticking the topic.', 'wporg-forums' );
 				}
 
 				break;
@@ -843,7 +843,7 @@
 
 				if ( bbp_is_topic_sticky( $r['id'] ) ) {
 					$retval['status']  = bbp_unstick_topic( $r['id'] );
-					$retval['message'] = __( '<strong>ERROR</strong>: There was a problem unsticking the topic.', 'wporg-forums' );
+					$retval['message'] = __( '<strong>Error</strong>: There was a problem unsticking the topic.', 'wporg-forums' );
 				}
 
 				break;
@@ -853,7 +853,7 @@
 
 				if ( ! bbp_is_topic_spam( $r['id'] ) ) {
 					$retval['status']  = bbp_spam_topic( $r['id'] );
-					$retval['message'] = __( '<strong>ERROR</strong>: There was a problem marking the topic as spam.', 'wporg-forums' );
+					$retval['message'] = __( '<strong>Error</strong>: There was a problem marking the topic as spam.', 'wporg-forums' );
 				}
 				$retval['view_all'] = true;
 
@@ -864,7 +864,7 @@
 
 				if ( bbp_is_topic_spam( $r['id'] ) ) {
 					$retval['status']  = bbp_unspam_topic( $r['id'] );
-					$retval['message'] = __( '<strong>ERROR</strong>: There was a problem unmarking the topic as spam.', 'wporg-forums' );
+					$retval['message'] = __( '<strong>Error</strong>: There was a problem unmarking the topic as spam.', 'wporg-forums' );
 				}
 				$retval['view_all'] = false;
 
@@ -875,7 +875,7 @@
 
 				if ( ! bbp_is_topic_pending( $r['id'] ) ) {
 					$retval['status']  = bbp_unapprove_topic( $r['id'] );
-					$retval['message'] = __( '<strong>ERROR</strong>: There was a problem unapproving the topic.', 'wporg-forums' );
+					$retval['message'] = __( '<strong>Error</strong>: There was a problem unapproving the topic.', 'wporg-forums' );
 				}
 				$retval['view_all'] = true;
 
@@ -886,7 +886,7 @@
 
 				if ( bbp_is_topic_pending( $r['id'] ) ) {
 					$retval['status']  = bbp_approve_topic( $r['id'] );
-					$retval['message'] = __( '<strong>ERROR</strong>: There was a problem approving the topic.', 'wporg-forums' );
+					$retval['message'] = __( '<strong>Error</strong>: There was a problem approving the topic.', 'wporg-forums' );
 				}
 				$retval['view_all'] = false;
 
@@ -926,7 +926,7 @@
 
 				if ( ! bbp_is_reply_spam( $r['id'] ) ) {
 					$retval['status']   = bbp_spam_reply( $r['id'] );
-					$retval['message']  = __( '<strong>ERROR</strong>: There was a problem marking the reply as spam.', 'wporg-forums' );
+					$retval['message']  = __( '<strong>Error</strong>: There was a problem marking the reply as spam.', 'wporg-forums' );
 				}
 				$retval['view_all'] = true;
 
@@ -937,7 +937,7 @@
 
 				if ( bbp_is_reply_spam( $r['id'] ) ) {
 					$retval['status']   = bbp_unspam_reply( $r['id'] );
-					$retval['message']  = __( '<strong>ERROR</strong>: There was a problem unmarking the reply as spam.', 'wporg-forums' );
+					$retval['message']  = __( '<strong>Error</strong>: There was a problem unmarking the reply as spam.', 'wporg-forums' );
 				}
 				$retval['view_all'] = false;
 
@@ -948,7 +948,7 @@
 
 				if ( ! bbp_is_reply_pending( $r['id'] ) ) {
 					$retval['status']   = bbp_unapprove_reply( $r['id'] );
-					$retval['message']  = __( '<strong>ERROR</strong>: There was a problem unapproving the reply.', 'wporg-forums' );
+					$retval['message']  = __( '<strong>Error</strong>: There was a problem unapproving the reply.', 'wporg-forums' );
 				}
 				$retval['view_all'] = true;
 
@@ -959,7 +959,7 @@
 
 				if ( bbp_is_reply_pending( $r['id'] ) ) {
 					$retval['status']   = bbp_approve_reply( $r['id'] );
-					$retval['message']  = __( '<strong>ERROR</strong>: There was a problem approving the reply.', 'wporg-forums' );
+					$retval['message']  = __( '<strong>Error</strong>: There was a problem approving the reply.', 'wporg-forums' );
 				}
 				$retval['view_all'] = false;
 
Index: wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-stickies-compat.php
===================================================================
--- wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-stickies-compat.php	(revision 9879)
+++ wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-stickies-compat.php	(working copy)
@@ -119,15 +119,15 @@
 
 		// Check for empty topic or term id.
 		if ( ! $topic || ! $term ) {
-			bbp_add_error( 'wporg_bbp_sticky_topic_id', __( '<strong>ERROR</strong>: No topic was found! Which topic are you sticking?', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_sticky_topic_id', __( '<strong>Error</strong>: No topic was found! Which topic are you sticking?', 'wporg-forums' ) );
 
 		// Check user.
 		} elseif ( ! $this->user_can_stick( $user_id, $term->term_id, $topic->ID ) ) {
-			bbp_add_error( 'wporg_bbp_sticky_logged_in', __( '<strong>ERROR</strong>: You do not have permission to do this!', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_sticky_logged_in', __( '<strong>Error</strong>: You do not have permission to do this!', 'wporg-forums' ) );
 
 		// Check nonce.
 		} elseif( ! bbp_verify_nonce_request( 'toggle-topic-sticky_' . $topic->ID . '_' . $term->term_id ) ) {
-			bbp_add_error( 'wporg_bbp_sticky_nonce', __( '<strong>ERROR</strong>: Are you sure you wanted to do that?', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_sticky_nonce', __( '<strong>Error</strong>: Are you sure you wanted to do that?', 'wporg-forums' ) );
 		}
 
 		if ( bbp_has_errors() ) {
@@ -149,9 +149,9 @@
 		if ( $success && ! is_wp_error( $success ) ) {
 			bbp_redirect( $permalink );
 		} elseif ( true === $is_sticky && 'wporg_bbp_stick_compat_topic' == $action ) {
-			bbp_add_error( 'wporg_bbp_stick_compat_topic', __( '<strong>ERROR</strong>: There was a problem sticking that topic!', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_stick_compat_topic', __( '<strong>Error</strong>: There was a problem sticking that topic!', 'wporg-forums' ) );
 		} elseif ( false === $is_sticky && 'wporg_bbp_unstick_compat_topic' == $action ) {
-			bbp_add_error( 'wporg_bbp_unstick_compat_topic', __( '<strong>ERROR</strong>: There was a problem unsticking that topic!', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_unstick_compat_topic', __( '<strong>Error</strong>: There was a problem unsticking that topic!', 'wporg-forums' ) );
 		}
 	}
 
Index: wordpress.org/public_html/wp-content/plugins/wporg-bbp-term-subscription/inc/class-plugin.php
===================================================================
--- wordpress.org/public_html/wp-content/plugins/wporg-bbp-term-subscription/inc/class-plugin.php	(revision 9879)
+++ wordpress.org/public_html/wp-content/plugins/wporg-bbp-term-subscription/inc/class-plugin.php	(working copy)
@@ -102,19 +102,19 @@
 		// Check for empty term id.
 		if ( ! $term ) {
 			/* translators: Term: topic tag */
-			bbp_add_error( 'wporg_bbp_subscribe_term_id', __( '<strong>ERROR</strong>: No term was found! Which term are you subscribing/unsubscribing to?', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_subscribe_term_id', __( '<strong>Error</strong>: No term was found! Which term are you subscribing/unsubscribing to?', 'wporg-forums' ) );
 
 		// Check for current user.
 		} elseif ( empty( $user_id ) ) {
-			bbp_add_error( 'wporg_bbp_subscribe_logged_id', __( '<strong>ERROR</strong>: You must be logged in to do this!', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_subscribe_logged_id', __( '<strong>Error</strong>: You must be logged in to do this!', 'wporg-forums' ) );
 
 		// Check nonce.
 		} elseif ( ! bbp_verify_nonce_request( 'toggle-term-subscription_' . $user_id . '_' . $term_id . '_' . $this->taxonomy ) ) {
-			bbp_add_error( 'wporg_bbp_subscribe_nonce', __( '<strong>ERROR</strong>: Are you sure you wanted to do that?', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_subscribe_nonce', __( '<strong>Error</strong>: Are you sure you wanted to do that?', 'wporg-forums' ) );
 
 		// Check current user's ability to spectate.
 		} elseif ( ! current_user_can( 'spectate' ) ) {
-			bbp_add_error( 'wporg_bbp_subscribe_permissions', __( '<strong>ERROR</strong>: You don\'t have permission to do this!', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_subscribe_permissions', __( '<strong>Error</strong>: You don\'t have permission to do this!', 'wporg-forums' ) );
 		}
 
 		if ( bbp_has_errors() ) {
@@ -142,10 +142,10 @@
 			bbp_redirect( $redirect );
 		} elseif ( true === $is_subscribed && 'wporg_bbp_subscribe_term' === $action ) {
 			/* translators: Term: topic tag */
-			bbp_add_error( 'wporg_bbp_subscribe_user', __( '<strong>ERROR</strong>: There was a problem subscribing to that term!', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_subscribe_user', __( '<strong>Error</strong>: There was a problem subscribing to that term!', 'wporg-forums' ) );
 		} elseif ( false === $is_subscribed && 'wporg_bbp_unsubscribe_term' === $action ) {
 			/* translators: Term: topic tag */
-			bbp_add_error( 'wporg_bbp_unsubscribe_user', __( '<strong>ERROR</strong>: There was a problem unsubscribing from that term!', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_unsubscribe_user', __( '<strong>Error</strong>: There was a problem unsubscribing from that term!', 'wporg-forums' ) );
 		}
 	}
 
Index: wordpress.org/public_html/wp-content/plugins/wporg-bbp-topic-resolution/inc/class-plugin.php
===================================================================
--- wordpress.org/public_html/wp-content/plugins/wporg-bbp-topic-resolution/inc/class-plugin.php	(revision 9879)
+++ wordpress.org/public_html/wp-content/plugins/wporg-bbp-topic-resolution/inc/class-plugin.php	(working copy)
@@ -286,19 +286,19 @@
 
 		// Check for empty topic id.
 		if ( empty( $topic_id ) || ! $topic ) {
-			bbp_add_error( 'wporg_bbp_topic_resolution_topic_id', __( '<strong>ERROR</strong>: No topic was found!', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_topic_resolution_topic_id', __( '<strong>Error</strong>: No topic was found!', 'wporg-forums' ) );
 
 		// Check valid resolution.
 		} elseif ( ! $this->is_valid_topic_resolution( $resolution ) ) {
-			bbp_add_error( 'wporg_bbp_topic_resolution_invalid', __( '<strong>ERROR</strong>: That is not a valid topic resolution!', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_topic_resolution_invalid', __( '<strong>Error</strong>: That is not a valid topic resolution!', 'wporg-forums' ) );
 
 		// Check user permissions.
 		} elseif ( ! $this->user_can_resolve( $user_id, $topic->ID ) ) {
-			bbp_add_error( 'wporg_bbp_topic_resolution_permissions', __( '<strong>ERROR</strong>: You don\'t have permission to do this!', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_topic_resolution_permissions', __( '<strong>Error</strong>: You don\'t have permission to do this!', 'wporg-forums' ) );
 
 		// Check nonce.
 		} elseif ( ! bbp_verify_nonce_request( 'toggle-topic-resolution_' . $topic->ID ) ) {
-			bbp_add_error( 'wporg_bbp_topic_resolution_nonce', __( '<strong>ERROR</strong>: Are you sure you wanted to do that?', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_topic_resolution_nonce', __( '<strong>Error</strong>: Are you sure you wanted to do that?', 'wporg-forums' ) );
 		}
 
 		if ( bbp_has_errors() ) {
Index: wordpress.org/public_html/wp-content/plugins/wporg-bbp-user-moderation/inc/class-plugin.php
===================================================================
--- wordpress.org/public_html/wp-content/plugins/wporg-bbp-user-moderation/inc/class-plugin.php	(revision 9879)
+++ wordpress.org/public_html/wp-content/plugins/wporg-bbp-user-moderation/inc/class-plugin.php	(working copy)
@@ -182,19 +182,19 @@
 		$post_id = isset( $_GET['post_id'] ) ? intval( $_GET['post_id'] ) : 0;
 		$post = get_post( $post_id );
 		if ( ! $post ) {
-			bbp_add_error( 'wporg_bbp_flag_post_id', __( '<strong>ERROR</strong>: No post was found! Which topic or reply are you marking for moderation?', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_flag_post_id', __( '<strong>Error</strong>: No post was found! Which topic or reply are you marking for moderation?', 'wporg-forums' ) );
 
 		// Check that user id matches post author
 		} elseif ( $post->post_author != intval( $_GET['user_id'] ) ) {
-			bbp_add_error( 'wporg_bbp_flag_post_user', __( '<strong>ERROR</strong>: That author does not match the flagged post.', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_flag_post_user', __( '<strong>Error</strong>: That author does not match the flagged post.', 'wporg-forums' ) );
 
 		// Check nonce
 		} elseif ( ! bbp_verify_nonce_request( 'toggle-flag_' . $post->post_author . '_' . $post->ID ) ) {
-			bbp_add_error( 'wporg_bbp_flag_nonce', __( '<strong>ERROR</strong>: Are you sure you wanted to do that?', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_flag_nonce', __( '<strong>Error</strong>: Are you sure you wanted to do that?', 'wporg-forums' ) );
 
 		// Check current user's ability to moderate
 		} elseif ( ! current_user_can( 'moderate' ) ) {
-			bbp_add_error( 'wporg_bbp_flag_permissions', __( '<strong>ERROR</strong>: You don\'t have permission to moderate that user!', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_flag_permissions', __( '<strong>Error</strong>: You don\'t have permission to moderate that user!', 'wporg-forums' ) );
 		}
 
 		// Bail if errors
@@ -217,9 +217,9 @@
 			$redirect = bbp_get_topic_permalink( $post_id );
 			bbp_redirect( $redirect );
 		} elseif ( true === $is_flagged && 'bbp_flag_user' === $action ) {
-			bbp_add_error( 'wporg_bbp_flag_user', __( '<strong>ERROR</strong>: There was a problem flagging that user!', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_flag_user', __( '<strong>Error</strong>: There was a problem flagging that user!', 'wporg-forums' ) );
 		} elseif ( false === $is_flagged && 'bbp_unflag_user' == $action ) {
-			bbp_add_error( 'wporg_bbp_flag_unuser', __( '<strong>ERROR</strong>: There was a problem unflagging that user!', 'wporg-forums' ) );
+			bbp_add_error( 'wporg_bbp_flag_unuser', __( '<strong>Error</strong>: There was a problem unflagging that user!', 'wporg-forums' ) );
 		}
 	}
 
Index: wordpress.org/public_html/wp-content/plugins/wporg-two-factor/wporg-two-factor.php
===================================================================
--- wordpress.org/public_html/wp-content/plugins/wporg-two-factor/wporg-two-factor.php	(revision 9879)
+++ wordpress.org/public_html/wp-content/plugins/wporg-two-factor/wporg-two-factor.php	(working copy)
@@ -189,7 +189,7 @@
 		if ( true !== $provider->validate_authentication( $user ) ) {
 			do_action( 'wp_login_failed', $user->user_login );
 
-			self::login_html( $user, '', $_REQUEST['redirect_to'], esc_html__( 'ERROR: Invalid verification code.', 'wporg' ), $provider );
+			self::login_html( $user, '', $_REQUEST['redirect_to'], esc_html__( 'Error: Invalid verification code.', 'wporg' ), $provider );
 			exit;
 		}
 
Index: wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/user-content-edit.php
===================================================================
--- wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/user-content-edit.php	(revision 9879)
+++ wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/user-content-edit.php	(working copy)
@@ -85,7 +85,7 @@
 		$comment = trim( (string) $comment_data['comment'] );
 		if ( ! $comment ) {
 			// Bail and provide a way back to the edit form if a comment is empty.
-			$msg  = __( '<strong>ERROR</strong>: please type a comment.', 'wporg' );
+			$msg  = __( '<strong>Error</strong>: please type a comment.', 'wporg' );
 			$args = array( 'response' => 200, 'back_link' => true );
 			wp_die( '<p>' . $msg . '</p>', __( 'Comment Submission Failure', 'wporg' ), $args );
 		}
Index: wordpress.tv/public_html/wp-content/themes/wptv2/plugins/wordpresstv-upload-subtitles/wordpresstv-upload-subtitles.php
===================================================================
--- wordpress.tv/public_html/wp-content/themes/wptv2/plugins/wordpresstv-upload-subtitles/wordpresstv-upload-subtitles.php	(revision 9879)
+++ wordpress.tv/public_html/wp-content/themes/wptv2/plugins/wordpresstv-upload-subtitles/wordpresstv-upload-subtitles.php	(working copy)
@@ -303,7 +303,7 @@
 
 		$file_content = file_get_contents( wp_get_attachment_url( $attachment_post->ID ) );
 		if ( ! $file_content ) {
-			echo '<div class="error"><p>ERROR: the attached file doesn\'t exist or is empty.</p></div>';
+			echo '<div class="error"><p>Error: the attached file doesn\'t exist or is empty.</p></div>';
 
 			return;
 		}
@@ -310,7 +310,7 @@
 
 		$attachment_meta = get_post_meta( $attachment_post->ID, '_wptv_submitted_subtitles', true );
 		if ( empty( $attachment_meta ) ) {
-			echo '<div class="error"><p>ERROR: the attachment post metadata is missing.</p></div>';
+			echo '<div class="error"><p>Error: the attachment post metadata is missing.</p></div>';
 
 			return;
 		}
