Changeset 39929 for trunk/src/wp-signup.php
- Timestamp:
- 01/20/2017 04:51:59 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-signup.php
r38814 r39929 817 817 $active_signup = apply_filters( 'wpmu_active_signup', $active_signup ); 818 818 819 // Make the signup type translatable.820 $i18n_signup['all'] = _x('all', 'Multisite active signup type');821 $i18n_signup['none'] = _x('none', 'Multisite active signup type');822 $i18n_signup['blog'] = _x('blog', 'Multisite active signup type');823 $i18n_signup['user'] = _x('user', 'Multisite active signup type');824 825 819 if ( is_super_admin() ) { 826 /* translators: 1: type of site sign-up; 2: network settings URL */ 827 echo '<div class="mu_alert">' . sprintf( __( 'Greetings Site Administrator! You are currently allowing “%s” registrations. To change or disable registration go to your <a href="%s">Options page</a>.' ), $i18n_signup[$active_signup], esc_url( network_admin_url( 'settings.php' ) ) ) . '</div>'; 820 echo '<div class="mu_alert">'; 821 _e( 'Greetings Network Administrator!' ); 822 echo ' '; 823 824 switch ( $active_signup ) { 825 case 'none': 826 _e( 'The network currently disallows registrations.' ); 827 break; 828 case 'blog': 829 _e( 'The network currently allows site registrations.' ); 830 break; 831 case 'user': 832 _e( 'The network currently allows user registrations.' ); 833 break; 834 default: 835 _e( 'The network currently allows both site and user registrations.' ); 836 break; 837 } 838 839 echo ' '; 840 841 /* translators: %s: network settings URL */ 842 printf( __( 'To change or disable registration go to your <a href="%s">Options page</a>.' ), esc_url( network_admin_url( 'settings.php' ) ) ); 843 echo '</div>'; 828 844 } 829 845
Note: See TracChangeset
for help on using the changeset viewer.