Index: src/bp-groups/bp-groups-screens.php
===================================================================
--- src/bp-groups/bp-groups-screens.php	(revision 9024)
+++ src/bp-groups/bp-groups-screens.php	(working copy)
@@ -729,7 +729,7 @@
 
 			// Promote a user.
 			if ( !groups_promote_member( $user_id, $bp->groups->current_group->id, $status ) )
-				bp_core_add_message( __( 'There was an error when promoting that user, please try again', 'buddypress' ), 'error' );
+				bp_core_add_message( __( 'There was an error when promoting that user, please try again.', 'buddypress' ), 'error' );
 			else
 				bp_core_add_message( __( 'User promoted successfully', 'buddypress' ) );
 
@@ -754,7 +754,7 @@
 
 			// Demote a user.
 			elseif ( !groups_demote_member( $user_id, $bp->groups->current_group->id ) )
-				bp_core_add_message( __( 'There was an error when demoting that user; please try again', 'buddypress' ), 'error' );
+				bp_core_add_message( __( 'There was an error when demoting that user; please try again.', 'buddypress' ), 'error' );
 			else
 				bp_core_add_message( __( 'User demoted successfully', 'buddypress' ) );
 
@@ -772,7 +772,7 @@
 
 			// Ban a user.
 			if ( !groups_ban_member( $user_id, $bp->groups->current_group->id ) )
-				bp_core_add_message( __( 'There was an error when banning that user; please try again', 'buddypress' ), 'error' );
+				bp_core_add_message( __( 'There was an error when banning that user; please try again.', 'buddypress' ), 'error' );
 			else
 				bp_core_add_message( __( 'User banned successfully', 'buddypress' ) );
 
@@ -790,7 +790,7 @@
 
 			// Remove a ban for user.
 			if ( !groups_unban_member( $user_id, $bp->groups->current_group->id ) )
-				bp_core_add_message( __( 'There was an error when unbanning that user, please try again', 'buddypress' ), 'error' );
+				bp_core_add_message( __( 'There was an error when unbanning that user, please try again.', 'buddypress' ), 'error' );
 			else
 				bp_core_add_message( __( 'User ban removed successfully', 'buddypress' ) );
 
@@ -808,7 +808,7 @@
 
 			// Remove a user.
 			if ( !groups_remove_member( $user_id, $bp->groups->current_group->id ) )
-				bp_core_add_message( __( 'There was an error removing that user from the group; please try again', 'buddypress' ), 'error' );
+				bp_core_add_message( __( 'There was an error removing that user from the group; please try again.', 'buddypress' ), 'error' );
 			else
 				bp_core_add_message( __( 'User removed successfully', 'buddypress' ) );
 
@@ -933,7 +933,7 @@
 		<thead>
 			<tr>
 				<th class="icon"></th>
-				<th class="title"><?php _ex( 'Groups', 'Group settings on notification settings page', 'buddypress' ) ?></th>				
+				<th class="title"><?php _ex( 'Groups', 'Group settings on notification settings page', 'buddypress' ) ?></th>
 				<th class="yes"><?php _e( 'Yes', 'buddypress' ) ?></th>
 				<th class="no"><?php _e( 'No', 'buddypress' )?></th>
 			</tr>
Index: src/bp-messages/bp-messages-screens.php
===================================================================
--- src/bp-messages/bp-messages-screens.php	(revision 9024)
+++ src/bp-messages/bp-messages-screens.php	(working copy)
@@ -61,7 +61,7 @@
 
 		// Check we have what we need
 		if ( empty( $_POST['subject'] ) || empty( $_POST['content'] ) ) {
-			bp_core_add_message( __( 'There was an error sending that message, please try again', 'buddypress' ), 'error' );
+			bp_core_add_message( __( 'There was an error sending that message, please try again.', 'buddypress' ), 'error' );
 		} else {
 			// If this is a notice, send it
 			if ( isset( $_POST['send-notice'] ) ) {
@@ -69,7 +69,7 @@
 					bp_core_add_message( __( 'Notice sent successfully!', 'buddypress' ) );
 					bp_core_redirect( bp_loggedin_user_domain() . bp_get_messages_slug() . '/inbox/' );
 				} else {
-					bp_core_add_message( __( 'There was an error sending that notice, please try again', 'buddypress' ), 'error' );
+					bp_core_add_message( __( 'There was an error sending that notice, please try again.', 'buddypress' ), 'error' );
 				}
 			} else {
 				// Filter recipients into the format we need - array( 'username/userid', 'username/userid' )
@@ -88,7 +88,7 @@
 					bp_core_add_message( __( 'Message sent successfully!', 'buddypress' ) );
 					bp_core_redirect( bp_loggedin_user_domain() . bp_get_messages_slug() . '/view/' . $thread_id . '/' );
 				} else {
-					bp_core_add_message( __( 'There was an error sending that message, please try again', 'buddypress' ), 'error' );
+					bp_core_add_message( __( 'There was an error sending that message, please try again.', 'buddypress' ), 'error' );
 				}
 			}
 		}
Index: src/bp-xprofile/bp-xprofile-admin.php
===================================================================
--- src/bp-xprofile/bp-xprofile-admin.php	(revision 9024)
+++ src/bp-xprofile/bp-xprofile-admin.php	(working copy)
@@ -186,7 +186,7 @@
 			$group->description	= !empty( $_POST['group_description'] ) ? wp_filter_kses( $_POST['group_description'] ) : '';
 
 			if ( !$group->save() ) {
-				$message = __( 'There was an error saving the group. Please try again', 'buddypress' );
+				$message = __( 'There was an error saving the group. Please try again.', 'buddypress' );
 				$type    = 'error';
 			} else {
 				$message = __( 'The group was saved successfully.', 'buddypress' );
@@ -218,7 +218,7 @@
 	$group = new BP_XProfile_Group( $group_id );
 
 	if ( !$group->delete() ) {
-		$message = __( 'There was an error deleting the group. Please try again', 'buddypress' );
+		$message = __( 'There was an error deleting the group. Please try again.', 'buddypress' );
 		$type    = 'error';
 	} else {
 		$message = __( 'The group was deleted successfully.', 'buddypress' );
@@ -262,7 +262,7 @@
 			$field_id = $field->save();
 
 			if ( !$field_id ) {
-				$message = __( 'There was an error saving the field. Please try again', 'buddypress' );
+				$message = __( 'There was an error saving the field. Please try again.', 'buddypress' );
 				$type = 'error';
 
 				unset( $_GET['mode'] );
@@ -317,7 +317,7 @@
 	$field       = new BP_XProfile_Field( $field_id );
 
 	if ( !$field->delete( (bool) $delete_data ) ) {
-		$message = sprintf( __( 'There was an error deleting the %s. Please try again', 'buddypress' ), $field_type );
+		$message = sprintf( __( 'There was an error deleting the %s. Please try again.', 'buddypress' ), $field_type );
 		$type    = 'error';
 	} else {
 		$message = sprintf( __( 'The %s was deleted successfully!', 'buddypress' ), $field_type );
