Changeset 9765 for trunk/src/bp-members/bp-members-admin.php
- Timestamp:
- 04/17/2015 01:27:06 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-members/bp-members-admin.php
r9759 r9765 1895 1895 case 'delete' : 1896 1896 $header_text = __( 'Delete Pending Accounts', 'buddypress' ); 1897 $helper_text = _n( 'You are about to delete the following account:', 'You are about to delete the following accounts:', count( $signup_ids ), 'buddypress' ); 1897 if ( 1 == count( $signup_ids ) ) { 1898 $helper_text = __( 'You are about to delete the following account:', 'buddypress' ); 1899 } else { 1900 $helper_text = __( 'You are about to delete the following accounts:', 'buddypress' ); 1901 } 1898 1902 break; 1899 1903 1900 1904 case 'activate' : 1901 1905 $header_text = __( 'Activate Pending Accounts', 'buddypress' ); 1902 $helper_text = _n( 'You are about to activate the following account:', 'You are about to activate the following accounts:', count( $signup_ids ), 'buddypress' ); 1906 if ( 1 == count( $signup_ids ) ) { 1907 $helper_text = __( 'You are about to activate the following account:', 'buddypress' ); 1908 } else { 1909 $helper_text = __( 'You are about to activate the following accounts:', 'buddypress' ); 1910 } 1903 1911 break; 1904 1912 1905 1913 case 'resend' : 1906 1914 $header_text = __( 'Resend Activation Emails', 'buddypress' ); 1907 $helper_text = _n( 'You are about to resend an activation email to the following account:', 'You are about to resend activation emails to the following accounts:', count( $signup_ids ), 'buddypress' ); 1915 if ( 1 == count( $signup_ids ) ) { 1916 $helper_text = __( 'You are about to resend an activation email to the following account:', 'buddypress' ); 1917 } else { 1918 $helper_text = __( 'You are about to resend an activation email to the following accounts:', 'buddypress' ); 1919 } 1908 1920 break; 1909 1921 }
Note: See TracChangeset
for help on using the changeset viewer.