Make WordPress Core

Changeset 13435


Ignore:
Timestamp:
02/26/2010 07:08:01 PM (15 years ago)
Author:
wpmuguru
Message:

more multisite UI rebranding, See #11644

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/ms.php

    r13329 r13435  
    177177            $user = new WP_User( $val );
    178178            if ( in_array( $user->user_login, get_site_option( 'site_admins', array( 'admin' ) ) ) )
    179                 wp_die( sprintf( __( 'Warning! User cannot be deleted. The user %s is a site admnistrator.' ), $user->user_login ) );
     179                wp_die( sprintf( __( 'Warning! User cannot be deleted. The user %s is a network admnistrator.' ), $user->user_login ) );
    180180            echo "<input type='hidden' name='user[]' value='{$val}'/>\n";
    181181            $blogs = get_blogs_of_user( $val, true );
     
    249249
    250250You recently requested to have the administration email address on
    251 your blog changed.
     251your site changed.
    252252If this is correct, please click on the following link to change it:
    253253###ADMIN_URL###
     
    462462    ?>
    463463    <tr>
    464         <th><?php _e('Blog Upload Space Quota'); ?></th>
    465         <td><input type="text" size="3" name="option[blog_upload_space]" value="<?php echo $quota; ?>" /><?php _e('MB (Leave blank for site default)'); ?></td>
     464        <th><?php _e('Site Upload Space Quota'); ?></th>
     465        <td><input type="text" size="3" name="option[blog_upload_space]" value="<?php echo $quota; ?>" /><?php _e('MB (Leave blank for network default)'); ?></td>
    466466    </tr>
    467467    <?php
     
    524524
    525525    if ( $c >= 5 ) {
    526         wp_die( __( "You don&#8217;t have permission to view this blog. Please contact the system administrator." ) );
     526        wp_die( __( "You don&#8217;t have permission to view this site. Please contact the system administrator." ) );
    527527    }
    528528    $c ++;
     
    651651    if ( !is_super_admin() )
    652652        return false;
    653     printf("<div id='update-nag'>" . __("Hi %s! You're logged in as a site administrator.") . "</div>", $current_user->user_login);
     653    printf("<div id='update-nag'>" . __("Hi %s! You're logged in as a network administrator.") . "</div>", $current_user->user_login);
    654654    if ( get_site_option( 'wpmu_upgrade_site' ) != $wp_db_version ) {
    655         echo "<div id='update-nag'>" . __( 'Thank you for Upgrading! Please visit the <a href="ms-upgrade-network.php">Upgrade Network</a> page to update all your blogs.' ) . "</div>";
     655        echo "<div id='update-nag'>" . __( 'Thank you for Upgrading! Please visit the <a href="ms-upgrade-network.php">Upgrade Network</a> page to update all your sites.' ) . "</div>";
    656656    }
    657657}
Note: See TracChangeset for help on using the changeset viewer.