Skip to:
Content

BuddyPress.org

Changeset 13224


Ignore:
Timestamp:
01/24/2022 09:57:01 PM (4 years ago)
Author:
imath
Message:

Spell "enough" the right way in strings & function names

Props niftythree, oztaser

Fixes #8622 (branch 10.0)

Location:
branches/10.0
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/10.0/src/bp-members/screens/register.php

    r13189 r13224  
    9999                        $account_password = new WP_Error(
    100100                                'not_strong_enough_password',
    101                                 __( 'Your password is not strong enougth to be allowed on this site. Please use a stronger password.', 'buddypress' )
     101                                __( 'Your password is not strong enough to be allowed on this site. Please use a stronger password.', 'buddypress' )
    102102                        );
    103103                } else {
  • branches/10.0/src/bp-settings/actions/general.php

    r13189 r13224  
    145145                                $pass_error = new WP_Error(
    146146                                        'not_strong_enough_password',
    147                                         __( 'Your password is not strong enougth to be allowed on this site. Please use a stronger password.', 'buddypress' )
     147                                        __( 'Your password is not strong enough to be allowed on this site. Please use a stronger password.', 'buddypress' )
    148148                                );
    149149                        } else {
  • branches/10.0/tests/phpunit/testcases/messages/class.bp-messages-thread.php

    r13196 r13224  
    699699         * @ticket BP7540
    700700         */
    701         public function test_bp_messages_thread_exit_not_enougth_recipients() {
     701        public function test_bp_messages_thread_exit_not_enough_recipients() {
    702702                $u1 = self::factory()->user->create();
    703703                $u2 = self::factory()->user->create();
Note: See TracChangeset for help on using the changeset viewer.