Changeset 4466 for trunk/bp-blogs/bp-blogs-template.php
- Timestamp:
- 06/06/2011 08:44:17 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-blogs/bp-blogs-template.php
r4438 r4466 227 227 $total = bp_core_number_format( $blogs_template->total_blog_count ); 228 228 229 echo sprintf( __( 'Viewing blog %1$s to %2$s (of %3$s blogs)', 'buddypress' ), $from_num, $to_num, $total ); ?> 229 echo sprintf( __( 'Viewing site %1$s to %2$s (of %3$s sites)', 'buddypress' ), $from_num, $to_num, $total ); ?> 230 230 <span class="ajax-loader"></span><?php 231 231 } … … 252 252 'class' => 'avatar', 253 253 'id' => false, 254 'alt' => __( ' Blogauthored by %s', 'buddypress' ),254 'alt' => __( 'Site authored by %s', 'buddypress' ), 255 255 'no_grav' => true 256 256 ); … … 397 397 } 398 398 ?> 399 <p><?php printf(__("By filling out the form below, you can <strong>add a blog to your account</strong>. There is no limit to the number of blogs you can have, so create to your heart's content, but blog responsibly.", 'buddypress'), $current_user->display_name) ?></p>400 401 <p><?php _e("If you’re not going to use a great blogdomain, leave it for a new user. Now have at it!", 'buddypress') ?></p>399 <p><?php printf(__("By filling out the form below, you can <strong>add a site to your account</strong>. There is no limit to the number of sites that you can have, so create to your heart's content, but blog responsibly!", 'buddypress'), $current_user->display_name) ?></p> 400 401 <p><?php _e("If you’re not going to use a great domain, leave it for a new user. Now have at it!", 'buddypress') ?></p> 402 402 403 403 <form class="standard-form" id="setupform" method="post" action=""> … … 408 408 <?php bp_blogs_signup_blog($blogname, $blog_title, $errors); ?> 409 409 <p> 410 <input id="submit" type="submit" name="submit" class="submit" value="<?php _e('Create Blog →', 'buddypress') ?>" />410 <input id="submit" type="submit" name="submit" class="submit" value="<?php _e('Create Site', 'buddypress') ?>" /> 411 411 </p> 412 412 … … 422 422 // Blog name 423 423 if( !is_subdomain_install() ) 424 echo '<label for="blogname">' . __(' BlogName:', 'buddypress') . '</label>';424 echo '<label for="blogname">' . __('Site Name:', 'buddypress') . '</label>'; 425 425 else 426 echo '<label for="blogname">' . __(' BlogDomain:', 'buddypress') . '</label>';426 echo '<label for="blogname">' . __('Site Domain:', 'buddypress') . '</label>'; 427 427 428 428 if ( $errmsg = $errors->get_error_message('blogname') ) { ?> … … 452 452 ?> 453 453 454 <label for="blog_title"><?php _e(' BlogTitle:', 'buddypress') ?></label>454 <label for="blog_title"><?php _e('Site Title:', 'buddypress') ?></label> 455 455 456 456 <?php if ( $errmsg = $errors->get_error_message('blog_title') ) { ?> … … 464 464 <p> 465 465 <label for="blog_public_on"><?php _e('Privacy:', 'buddypress') ?></label> 466 <?php _e('I would like my blog to appear in search engines like Google and Technorati, and in public listings around this site.', 'buddypress'); ?> 467 466 <?php _e( 'I would like my site to appear in search engines, and in public listings around this network.', 'buddypress' ); ?> 468 467 469 468 <label class="checkbox" for="blog_public_on"> … … 527 526 $blog_url = $protocol . $domain . $path; ?> 528 527 529 <p><?php _e( 'Congratulations! You have successfully registered a new blog.', 'buddypress' ) ?></p>528 <p><?php _e( 'Congratulations! You have successfully registered a new site.', 'buddypress' ) ?></p> 530 529 <p> 531 <?php printf(__( '<a href="%1$s">%2$s</a> is your new blog. <a href="%3$s">Login</a> as "%4$s" using your existing password.', 'buddypress' ), $blog_url, $blog_url, $blog_url . "wp-login.php", $user_name ); ?>530 <?php printf(__( '<a href="%1$s">%2$s</a> is your new site. <a href="%3$s">Login</a> as "%4$s" using your existing password.', 'buddypress' ), $blog_url, $blog_url, $blog_url . "wp-login.php", $user_name ); ?> 532 531 </p> 533 532 … … 540 539 541 540 if ( bp_is_my_profile() ) 542 echo apply_filters( 'bp_create_blog_link', '<a href="' . bp_get_root_domain() . '/' . $bp->blogs->root_slug . '/create/">' . __( 'Create a Blog', 'buddypress' ) . '</a>' );541 echo apply_filters( 'bp_create_blog_link', '<a href="' . bp_get_root_domain() . '/' . $bp->blogs->root_slug . '/create/">' . __( 'Create a Site', 'buddypress' ) . '</a>' ); 543 542 } 544 543 … … 553 552 554 553 <ul class="content-header-nav"> 555 <li<?php if ( 'my-blogs' == $current_tab || empty( $current_tab ) ) : ?> class="current"<?php endif; ?>><a href="<?php echo trailingslashit( $bp->displayed_user->domain . $bp->blogs->slug . '/my-blogs' ); ?>"><?php printf( __( "%s's Blogs", 'buddypress' ), $bp->displayed_user->fullname ); ?></a></li>554 <li<?php if ( 'my-blogs' == $current_tab || empty( $current_tab ) ) : ?> class="current"<?php endif; ?>><a href="<?php echo trailingslashit( $bp->displayed_user->domain . $bp->blogs->slug . '/my-blogs' ); ?>"><?php printf( __( "%s's Sites", 'buddypress' ), $bp->displayed_user->fullname ); ?></a></li> 556 555 <li<?php if ( 'recent-posts' == $current_tab ) : ?> class="current"<?php endif; ?>><a href="<?php echo trailingslashit( $bp->displayed_user->domain . $bp->blogs->slug . '/recent-posts' ); ?>"><?php printf( __( "%s's Recent Posts", 'buddypress' ), $bp->displayed_user->fullname ); ?></a></li> 557 556 <li<?php if ( 'recent-comments' == $current_tab ) : ?> class="current"<?php endif; ?>><a href="<?php echo trailingslashit( $bp->displayed_user->domain . $bp->blogs->slug . '/recent-comments' );?>"><?php printf( __( "%s's Recent Comments", 'buddypress' ), $bp->displayed_user->fullname ); ?></a></li> … … 603 602 'link_href' => bp_get_blog_permalink(), 604 603 'link_class' => 'blog-button visit', 605 'link_text' => __( 'Visit Blog', 'buddypress' ),606 'link_title' => __( 'Visit Blog', 'buddypress' ),604 'link_text' => __( 'Visit Site', 'buddypress' ), 605 'link_title' => __( 'Visit Site', 'buddypress' ), 607 606 ); 608 607
Note: See TracChangeset
for help on using the changeset viewer.