Make WordPress Core


Ignore:
Timestamp:
02/24/2010 07:56:10 PM (16 years ago)
Author:
wpmuguru
Message:

more multisite UX rebranding, See #11644

File:
1 edited

Legend:

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

    r13301 r13379  
    2424        switch ($_GET['action']) {
    2525            case 'all_notspam':
    26                 _e('Blogs mark as not spam !');
     26                _e('Sites mark as not spam !');
    2727            break;
    2828            case 'all_spam':
    29                 _e('Blogs mark as spam !');
     29                _e('Sites mark as spam !');
    3030            break;
    3131            case 'all_delete':
    32                 _e('Blogs deleted !');
     32                _e('Sites deleted !');
    3333            break;
    3434            case 'delete':
    35                 _e('Blog deleted !');
     35                _e('Site deleted !');
    3636            break;
    3737            case 'add-blog':
    38                 _e('Blog added !');
     38                _e('Site added !');
    3939            break;
    4040            case 'archive':
    41                 _e('Blog archived !');
     41                _e('Site archived !');
    4242            break;
    4343            case 'unarchive':
    44                 _e('Blog unarchived !');
     44                _e('Site unarchived !');
    4545            break;
    4646            case 'activate':
    47                 _e('Blog activated !');
     47                _e('Site activated !');
    4848            break;
    4949            case 'deactivate':
    50                 _e('Blog deactivated !');
     50                _e('Site deactivated !');
    5151            break;
    5252            case 'unspam':
    53                 _e('Blog mark as not spam !');
     53                _e('Site mark as not spam !');
    5454            break;
    5555            case 'spam':
    56                 _e('Blog mark as spam !');
     56                _e('Site mark as spam !');
    5757            break;
    5858            case 'umature':
    59                 _e('Blog mark as not mature !');
     59                _e('Site mark as not mature !');
    6060            break;
    6161            case 'mature':
    62                 _e('Blog mark as mature !');
     62                _e('Site mark as mature !');
    6363            break;
    6464            default:
     
    9090            <div class='metabox-holder' style='width:49%;float:left;'>
    9191            <div id="blogedit_bloginfo" class="postbox " >
    92             <h3 class='hndle'><span><?php _e('Blog info (wp_blogs)'); ?></span></h3>
     92            <h3 class='hndle'><span><?php _e('Site info (wp_blogs)'); ?></span></h3>
    9393            <div class="inside">
    9494                <table class="form-table">
     
    158158
    159159            <div id="blogedit_blogoptions" class="postbox " >
    160             <h3 class='hndle'><span><?php printf( __('Blog options (%soptions)'), $blog_prefix ); ?></span></h3>
     160            <h3 class='hndle'><span><?php printf( __('Site options (%soptions)'), $blog_prefix ); ?></span></h3>
    161161            <div class="inside">
    162162                <table class="form-table">
     
    224224            ?>
    225225            <div id="blogedit_blogthemes" class="postbox">
    226             <h3 class='hndle'><span><?php esc_html_e('Blog Themes'); ?></span></h3>
     226            <h3 class='hndle'><span><?php esc_html_e('Site Themes'); ?></span></h3>
    227227            <div class="inside">
    228228                <table class="form-table">
     
    238238                    $blogusers = get_users_of_blog( $id );
    239239                    if ( is_array( $blogusers ) ) {
    240                         echo '<div id="blogedit_blogusers" class="postbox"><h3 class="hndle"><span>' . __('Blog Users') . '</span></h3><div class="inside">';
     240                        echo '<div id="blogedit_blogusers" class="postbox"><h3 class="hndle"><span>' . __('Site Users') . '</span></h3><div class="inside">';
    241241                        echo '<table class="form-table">';
    242242                        echo "<tr><th>" . __('User') . "</th><th>" . __('Role') . "</th><th>" . __('Password') . "</th><th>" . __('Remove') . "</th></tr>";
     
    306306
    307307            <div id="blogedit_miscoptions" class="postbox">
    308             <h3 class='hndle'><span><?php _e('Misc Blog Actions') ?></span></h3>
     308            <h3 class='hndle'><span><?php _e('Misc Site Actions') ?></span></h3>
    309309            <div class="inside">
    310310                <table class="form-table">
     
    508508
    509509                                    if ( get_blog_status( $blog['blog_id'], "deleted" ) == '1' )
    510                                         $actions[]  = '<a class="delete" href="ms-edit.php?action=confirm&amp;action2=activateblog&amp;ref=' . urlencode( $_SERVER['REQUEST_URI'] ) . '&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( "You are about to activate the blog %s" ), $blogname ) ) . '">' . __('Activate') . '</a>';
     510                                        $actions[]  = '<a class="delete" href="ms-edit.php?action=confirm&amp;action2=activateblog&amp;ref=' . urlencode( $_SERVER['REQUEST_URI'] ) . '&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( "You are about to activate the site %s" ), $blogname ) ) . '">' . __('Activate') . '</a>';
    511511                                    else
    512                                         $actions[]  = '<a class="delete" href="ms-edit.php?action=confirm&amp;action2=deactivateblog&amp;ref=' . urlencode( $_SERVER['REQUEST_URI'] ) . '&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( "You are about to deactivate the blog %s" ), $blogname ) ) . '">' . __('Deactivate') . '</a>';
     512                                        $actions[]  = '<a class="delete" href="ms-edit.php?action=confirm&amp;action2=deactivateblog&amp;ref=' . urlencode( $_SERVER['REQUEST_URI'] ) . '&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( "You are about to deactivate the site %s" ), $blogname ) ) . '">' . __('Deactivate') . '</a>';
    513513
    514514                                    if ( get_blog_status( $blog['blog_id'], "archived" ) == '1' )
    515                                         $actions[]  = '<a class="delete" href="ms-edit.php?action=confirm&amp;action2=unarchiveblog&amp;id=' .  $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( "You are about to unarchive the blog %s" ), $blogname ) ) . '">' . __('Unarchive') . '</a>';
     515                                        $actions[]  = '<a class="delete" href="ms-edit.php?action=confirm&amp;action2=unarchiveblog&amp;id=' .  $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( "You are about to unarchive the site %s" ), $blogname ) ) . '">' . __('Unarchive') . '</a>';
    516516                                    else
    517                                         $actions[]  = '<a class="delete" href="ms-edit.php?action=confirm&amp;action2=archiveblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( "You are about to archive the blog %s" ), $blogname ) ) . '">' . __('Archive') . '</a>';
     517                                        $actions[]  = '<a class="delete" href="ms-edit.php?action=confirm&amp;action2=archiveblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( "You are about to archive the site %s" ), $blogname ) ) . '">' . __('Archive') . '</a>';
    518518
    519519                                    if ( get_blog_status( $blog['blog_id'], "spam" ) == '1' )
    520                                         $actions[]  = '<a class="delete" href="ms-edit.php?action=confirm&amp;action2=unspamblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( "You are about to unspam the blog %s" ), $blogname ) ) . '">' . __('Not Spam') . '</a>';
     520                                        $actions[]  = '<a class="delete" href="ms-edit.php?action=confirm&amp;action2=unspamblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( "You are about to unspam the site %s" ), $blogname ) ) . '">' . __('Not Spam') . '</a>';
    521521                                    else
    522                                         $actions[]  = '<a class="delete" href="ms-edit.php?action=confirm&amp;action2=spamblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( "You are about to mark the blog %s as spam" ), $blogname ) ) . '">' . __("Spam") . '</a>';
    523 
    524                                     $actions[]  = '<a class="delete" href="ms-edit.php?action=confirm&amp;action2=deleteblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( "You are about to delete the blog %s" ), $blogname ) ) . '">' . __("Delete") . '</a>';
     522                                        $actions[]  = '<a class="delete" href="ms-edit.php?action=confirm&amp;action2=spamblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( "You are about to mark the site %s as spam" ), $blogname ) ) . '">' . __("Spam") . '</a>';
     523
     524                                    $actions[]  = '<a class="delete" href="ms-edit.php?action=confirm&amp;action2=deleteblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( "You are about to delete the site %s" ), $blogname ) ) . '">' . __("Delete") . '</a>';
    525525
    526526                                    $actions[]  = "<a href='" . get_home_url($blog['blog_id']) . "' rel='permalink'>" . __('Visit') . '</a>';
Note: See TracChangeset for help on using the changeset viewer.