Changeset 12934
- Timestamp:
- 02/03/2010 05:23:29 PM (15 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/ms-admin.php
r12782 r12934 5 5 wp_die( __('Multisite support is not enabled.') ); 6 6 7 $title = __(' SiteAdmin');7 $title = __('Network Admin'); 8 8 $parent_file = 'ms-admin.php'; 9 9 … … 26 26 27 27 $sentence = sprintf( __( 'You have %1$s and %2$s.' ), $blog_text, $user_text ); 28 $title = __( 'Site Admin' );29 28 ?> 30 29 … … 34 33 35 34 <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> 37 36 <li><a href="ms-users.php#form-add-user" class="rbutton"><?php _e('Create a New User'); ?></a></li> 38 37 </ul> … … 54 53 <input type="hidden" name="action" value="blogs" /> 55 54 <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"); ?>" /> 57 56 </p> 58 57 </form> -
trunk/wp-admin/ms-sites.php
r12897 r12934 5 5 wp_die( __('Multisite support is not enabled.') ); 6 6 7 $title = __(' Blogs');7 $title = __('Sites'); 8 8 $parent_file = 'ms-admin.php'; 9 9 … … 83 83 <div class="wrap"> 84 84 <?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> 86 86 <form method="post" action="ms-edit.php?action=updateblog"> 87 87 <?php wp_nonce_field('editblog'); ?> … … 373 373 <div class="wrap" style="position:relative;"> 374 374 <?php screen_icon(); ?> 375 <h2><?php _e(' Blogs') ?></h2>375 <h2><?php _e('Sites') ?></h2> 376 376 377 377 <form action="ms-sites.php" method="get" id="ms-search"> … … 593 593 <div class="wrap"> 594 594 <a name="form-add-blog"></a> 595 <?php screen_icon(); ?> 596 <h2><?php _e('Add Blog') ?></h2> 595 <h2><?php _e('Add Site') ?></h2> 597 596 <form method="post" action="ms-edit.php?action=addblog"> 598 597 <?php wp_nonce_field('add-blog') ?> 599 598 <table class="form-table"> 600 599 <tr class="form-field form-required"> 601 <th style="text-align:center;" scope='row'><?php _e(' BlogAddress') ?></th>600 <th style="text-align:center;" scope='row'><?php _e('Site Address') ?></th> 602 601 <td> 603 602 <?php if ( is_subdomain_install() ) { ?> … … 611 610 </tr> 612 611 <tr class="form-field form-required"> 613 <th style="text-align:center;" scope='row'><?php _e(' BlogTitle') ?></th>612 <th style="text-align:center;" scope='row'><?php _e('Site Title') ?></th> 614 613 <td><input name="blog[title]" type="text" size="20" title="<?php _e('Title') ?>"/></td> 615 614 </tr> … … 623 622 </table> 624 623 <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> 626 625 </form> 627 626 </div>
Note: See TracChangeset
for help on using the changeset viewer.