Make WordPress Core

Changeset 12934


Ignore:
Timestamp:
02/03/2010 05:23:29 PM (15 years ago)
Author:
ryan
Message:

Use Network and Site for labels. see #11644

Location:
trunk/wp-admin
Files:
2 edited

Legend:

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

    r12782 r12934  
    55    wp_die( __('Multisite support is not enabled.') );
    66
    7 $title = __('Site Admin');
     7$title = __('Network Admin');
    88$parent_file = 'ms-admin.php';
    99
     
    2626
    2727$sentence = sprintf( __( 'You have %1$s and %2$s.' ), $blog_text, $user_text );
    28 $title = __( 'Site Admin' );
    2928?>
    3029
     
    3433
    3534    <ul class="subsubsub">
    36     <li><a href="ms-sites.php#form-add-blog" class="rbutton"><strong><?php _e('Create a New Blog'); ?></strong></a> | </li>
     35    <li><a href="ms-sites.php#form-add-blog" class="rbutton"><strong><?php _e('Create a New Site'); ?></strong></a> | </li>
    3736    <li><a href="ms-users.php#form-add-user" class="rbutton"><?php _e('Create a New User'); ?></a></li>
    3837    </ul>
     
    5453            <input type="hidden" name="action" value="blogs" />
    5554            <input type="text" name="s" value="" size="17" />
    56             <input class="button" type="submit" name="blog_name" value="<?php esc_attr_e("Search Blogs"); ?>" />
     55            <input class="button" type="submit" name="blog_name" value="<?php esc_attr_e("Search Sites"); ?>" />
    5756        </p>
    5857    </form>
  • trunk/wp-admin/ms-sites.php

    r12897 r12934  
    55    wp_die( __('Multisite support is not enabled.') );
    66
    7 $title = __('Blogs');
     7$title = __('Sites');
    88$parent_file = 'ms-admin.php';
    99
     
    8383        <div class="wrap">
    8484        <?php screen_icon(); ?>
    85         <h2><?php _e('Edit Blog'); ?> - <a href='http://<?php echo $details->domain . $details->path; ?>'>http://<?php echo $details->domain . $details->path; ?></a></h2>
     85        <h2><?php _e('Edit Site'); ?> - <a href='http://<?php echo $details->domain . $details->path; ?>'>http://<?php echo $details->domain . $details->path; ?></a></h2>
    8686        <form method="post" action="ms-edit.php?action=updateblog">
    8787            <?php wp_nonce_field('editblog'); ?>
     
    373373        <div class="wrap" style="position:relative;">
    374374        <?php screen_icon(); ?>
    375         <h2><?php _e('Blogs') ?></h2>
     375        <h2><?php _e('Sites') ?></h2>
    376376
    377377        <form action="ms-sites.php" method="get" id="ms-search">
     
    593593        <div class="wrap">
    594594            <a name="form-add-blog"></a>
    595             <?php screen_icon(); ?>
    596             <h2><?php _e('Add Blog') ?></h2>
     595            <h2><?php _e('Add Site') ?></h2>
    597596            <form method="post" action="ms-edit.php?action=addblog">
    598597                <?php wp_nonce_field('add-blog') ?>
    599598                <table class="form-table">
    600599                    <tr class="form-field form-required">
    601                         <th style="text-align:center;" scope='row'><?php _e('Blog Address') ?></th>
     600                        <th style="text-align:center;" scope='row'><?php _e('Site Address') ?></th>
    602601                        <td>
    603602                        <?php if ( is_subdomain_install() ) { ?>
     
    611610                    </tr>
    612611                    <tr class="form-field form-required">
    613                         <th style="text-align:center;" scope='row'><?php _e('Blog Title') ?></th>
     612                        <th style="text-align:center;" scope='row'><?php _e('Site Title') ?></th>
    614613                        <td><input name="blog[title]" type="text" size="20" title="<?php _e('Title') ?>"/></td>
    615614                    </tr>
     
    623622                </table>
    624623                <p class="submit">
    625                     <input class="button" type="submit" name="go" value="<?php esc_attr_e('Add Blog') ?>" /></p>
     624                    <input class="button" type="submit" name="go" value="<?php esc_attr_e('Add Site') ?>" /></p>
    626625            </form>
    627626        </div>
Note: See TracChangeset for help on using the changeset viewer.