Skip to:
Content

BuddyPress.org

Changeset 10881


Ignore:
Timestamp:
06/12/2016 07:23:14 PM (8 years ago)
Author:
r-a-y
Message:

Moderation: Change 'input' to 'posted' for error message strings.

Props mercime.

See #6719.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/bp-core-moderation.php

    r10859 r10881  
    133133                return false;
    134134            } else {
    135                 return new WP_Error( 'bp_moderation_too_many_links', __( 'You have inputted too many links', 'buddypress' ) );
     135                return new WP_Error( 'bp_moderation_too_many_links', __( 'You have posted too many links', 'buddypress' ) );
    136136            }
    137137        }
     
    174174                        return false;
    175175                    } else {
    176                         return new WP_Error( 'bp_moderation_word_match', _x( 'You have inputted an inappropriate word.', 'Comment moderation', 'buddypress' ) );
     176                        return new WP_Error( 'bp_moderation_word_match', _x( 'You have posted an inappropriate word.', 'Comment moderation', 'buddypress' ) );
    177177                    }
    178178                }
     
    287287                    return false;
    288288                } else {
    289                     return new WP_Error( 'bp_moderation_blacklist_match', _x( 'You have inputted an inappropriate word.', 'Comment blacklist', 'buddypress' ) );
     289                    return new WP_Error( 'bp_moderation_blacklist_match', _x( 'You have posted an inappropriate word.', 'Comment blacklist', 'buddypress' ) );
    290290                }
    291291            }
Note: See TracChangeset for help on using the changeset viewer.