From ab6e21f6fb7c380f77724f84c98f8c901bf3b45d Mon Sep 17 00:00:00 2001 From: wpmuguru Date: Fri, 26 Feb 2010 19:08:01 +0000 Subject: [PATCH] more multisite UI rebranding, See #11644 git-svn-id: http://svn.automattic.com/wordpress/trunk@13435 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/ms.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/wp-admin/includes/ms.php b/wp-admin/includes/ms.php index abef6f2483..48bb1dafa1 100644 --- a/wp-admin/includes/ms.php +++ b/wp-admin/includes/ms.php @@ -176,7 +176,7 @@ function confirm_delete_users( $users ) { if ( $val != '' && $val != '0' ) { $user = new WP_User( $val ); if ( in_array( $user->user_login, get_site_option( 'site_admins', array( 'admin' ) ) ) ) - wp_die( sprintf( __( 'Warning! User cannot be deleted. The user %s is a site admnistrator.' ), $user->user_login ) ); + wp_die( sprintf( __( 'Warning! User cannot be deleted. The user %s is a network admnistrator.' ), $user->user_login ) ); echo "\n"; $blogs = get_blogs_of_user( $val, true ); if ( !empty( $blogs ) ) { @@ -248,7 +248,7 @@ function update_option_new_admin_email($old_value, $value) { $content = apply_filters( 'new_admin_email_content', __("Dear user, You recently requested to have the administration email address on -your blog changed. +your site changed. If this is correct, please click on the following link to change it: ###ADMIN_URL### @@ -461,8 +461,8 @@ function upload_space_setting( $id ) { ?> - - + + = 5 ) { - wp_die( __( "You don’t have permission to view this blog. Please contact the system administrator." ) ); + wp_die( __( "You don’t have permission to view this site. Please contact the system administrator." ) ); } $c ++; @@ -650,9 +650,9 @@ function site_admin_notice() { global $current_user, $wp_db_version; if ( !is_super_admin() ) return false; - printf("
" . __("Hi %s! You're logged in as a site administrator.") . "
", $current_user->user_login); + printf("
" . __("Hi %s! You're logged in as a network administrator.") . "
", $current_user->user_login); if ( get_site_option( 'wpmu_upgrade_site' ) != $wp_db_version ) { - echo "
" . __( 'Thank you for Upgrading! Please visit the Upgrade Network page to update all your blogs.' ) . "
"; + echo "
" . __( 'Thank you for Upgrading! Please visit the Upgrade Network page to update all your sites.' ) . "
"; } } add_action( 'admin_notices', 'site_admin_notice' );