Changeset 4466
- Timestamp:
- 06/06/2011 08:44:17 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/bp-activity-template.php
r4400 r4466 608 608 609 609 if ( !$alt ) 610 $alt = sprintf( __( ' Blogauthored by %s', 'buddypress' ), get_blog_option( $item_id, 'blogname' ) );610 $alt = sprintf( __( 'Site authored by %s', 'buddypress' ), get_blog_option( $item_id, 'blogname' ) ); 611 611 612 612 break; … … 1089 1089 1090 1090 // Make sure all core internal component names are translatable 1091 $translatable_components = array( __( 'xprofile', 'buddypress'), __( 'friends', 'buddypress' ), __( 'groups', 'buddypress' ), __( 'status', 'buddypress' ), __( ' blogs', 'buddypress' ) );1091 $translatable_components = array( __( 'xprofile', 'buddypress'), __( 'friends', 'buddypress' ), __( 'groups', 'buddypress' ), __( 'status', 'buddypress' ), __( 'sites', 'buddypress' ) ); 1092 1092 1093 1093 $component_links[] = $before . '<a href="' . esc_attr( $link ) . '">' . ucwords( __( $component, 'buddypress' ) ) . '</a>' . $after; -
trunk/bp-blogs/bp-blogs-activity.php
r4398 r4466 12 12 return false; 13 13 14 bp_activity_set_action( $bp->blogs->id, 'new_blog', __( 'New blog created','buddypress' ) );15 bp_activity_set_action( $bp->blogs->id, 'new_blog_post', __( 'New blogpost published', 'buddypress' ) );16 bp_activity_set_action( $bp->blogs->id, 'new_blog_comment', __( 'New blogpost comment posted', 'buddypress' ) );14 bp_activity_set_action( $bp->blogs->id, 'new_blog', __( 'New site created', 'buddypress' ) ); 15 bp_activity_set_action( $bp->blogs->id, 'new_blog_post', __( 'New post published', 'buddypress' ) ); 16 bp_activity_set_action( $bp->blogs->id, 'new_blog_comment', __( 'New post comment posted', 'buddypress' ) ); 17 17 18 18 do_action( 'bp_blogs_register_activity_actions' ); -
trunk/bp-blogs/bp-blogs-buddybar.php
r3982 r4466 21 21 echo '<li id="bp-adminbar-blogs-menu"><a href="' . trailingslashit( $bp->loggedin_user->domain . $bp->blogs->slug ) . '">'; 22 22 23 _e( 'My Blogs', 'buddypress' );23 _e( 'My Sites', 'buddypress' ); 24 24 25 25 echo '</a>'; … … 49 49 if ( bp_blog_signup_enabled() ) { 50 50 echo '<li' . $alt . '>'; 51 echo '<a href="' . bp_get_root_domain() . '/' . $bp->blogs->root_slug . '/create/">' . __( 'Create a Blog!', 'buddypress' ) . '</a>';51 echo '<a href="' . bp_get_root_domain() . '/' . $bp->blogs->root_slug . '/create/">' . __( 'Create a Site!', 'buddypress' ) . '</a>'; 52 52 echo '</li>'; 53 53 } -
trunk/bp-blogs/bp-blogs-functions.php
r4397 r4466 101 101 bp_blogs_record_activity( array( 102 102 'user_id' => $recorded_blog->user_id, 103 'action' => apply_filters( 'bp_blogs_activity_created_blog_action', sprintf( __( '%s created the blog%s', 'buddypress'), bp_core_get_userlink( $recorded_blog->user_id ), '<a href="' . get_site_url( $recorded_blog->blog_id ) . '">' . esc_attr( $name ) . '</a>' ), $recorded_blog, $name, $description ),103 'action' => apply_filters( 'bp_blogs_activity_created_blog_action', sprintf( __( '%s created the site %s', 'buddypress'), bp_core_get_userlink( $recorded_blog->user_id ), '<a href="' . get_site_url( $recorded_blog->blog_id ) . '">' . esc_attr( $name ) . '</a>' ), $recorded_blog, $name, $description ), 104 104 'primary_link' => apply_filters( 'bp_blogs_activity_created_blog_primary_link', get_site_url( $recorded_blog->blog_id ), $recorded_blog->blog_id ), 105 105 'type' => 'new_blog', -
trunk/bp-blogs/bp-blogs-loader.php
r4381 r4466 24 24 parent::start( 25 25 'blogs', 26 __( ' BlogsStreams', 'buddypress' ),26 __( 'Site Streams', 'buddypress' ), 27 27 BP_PLUGIN_DIR 28 28 ); … … 57 57 'root_slug' => isset( $bp->pages->blogs->slug ) ? $bp->pages->blogs->slug : BP_BLOGS_SLUG, 58 58 'notification_callback' => 'bp_blogs_format_notifications', 59 'search_string' => __( 'Search Blogs...', 'buddypress' ),59 'search_string' => __( 'Search sites...', 'buddypress' ), 60 60 'autocomplete_all' => defined( 'BP_MESSAGES_AUTOCOMPLETE_ALL' ), 61 61 'global_tables' => $global_tables, … … 104 104 return false; 105 105 106 // Add ' Blogs' to the main navigation106 // Add 'Sites' to the main navigation 107 107 $main_nav = array( 108 'name' => sprintf( __( ' Blogs <span>(%d)</span>', 'buddypress' ), bp_blogs_total_blogs_for_user() ),108 'name' => sprintf( __( 'Sites <span>(%d)</span>', 'buddypress' ), bp_blogs_total_blogs_for_user() ), 109 109 'slug' => $this->slug, 110 110 'position' => 30, … … 138 138 'parent' => $bp->my_account_menu_id, 139 139 'id' => 'my-account-' . $this->id, 140 'title' => __( ' Blogs', 'buddypress' ),140 'title' => __( 'Sites', 'buddypress' ), 141 141 'href' => trailingslashit( $blogs_link ) 142 142 ); … … 145 145 $wp_admin_nav[] = array( 146 146 'parent' => 'my-account-' . $this->id, 147 'title' => __( 'My Blogs', 'buddypress' ),147 'title' => __( 'My Sites', 'buddypress' ), 148 148 'href' => trailingslashit( $blogs_link . 'my-blogs' ) 149 149 ); … … 166 166 if ( bp_is_my_profile() ) { 167 167 if ( bp_is_active( 'xprofile' ) ) { 168 $bp->bp_options_title = __( 'My Blogs', 'buddypress' );168 $bp->bp_options_title = __( 'My Sites', 'buddypress' ); 169 169 } 170 170 -
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 -
trunk/bp-blogs/bp-blogs-widgets.php
r4211 r4466 63 63 <?php else : ?> 64 64 <div id="message" class="info"> 65 <p><?php _e( 'Sorry, there were no blogposts found. Why not write one?', 'buddypress' ) ?></p>65 <p><?php _e( 'Sorry, there were no posts found. Why not write one?', 'buddypress' ) ?></p> 66 66 </div> 67 67 <?php endif; ?> -
trunk/bp-core/admin/bp-core-admin.php
r4338 r4466 294 294 if ( is_multisite() ) { 295 295 $optional_components['blogs'] = array( 296 'title' => __( ' BlogTracking', 'buddypress' ),297 'description' => __( 'Track new blogs, new posts and new comments across your entire blognetwork.', 'buddypress' )296 'title' => __( 'Site Tracking', 'buddypress' ), 297 'description' => __( 'Track new sites, new posts and new comments across your entire network.', 'buddypress' ) 298 298 ); 299 299 } … … 374 374 375 375 if ( is_multisite() ) 376 $directory_pages['blogs'] = __( " BlogsDirectory", 'buddypress' ); ?>376 $directory_pages['blogs'] = __( "Site Directory", 'buddypress' ); ?> 377 377 378 378 <h3><?php _e( 'Directory Pages', 'buddypress' ); ?></h3> -
trunk/bp-core/admin/bp-core-update.php
r4458 r4466 201 201 break; 202 202 203 case __( ' BlogDirectory', 'buddypress') :203 case __( 'Site Directory', 'buddypress') : 204 204 $this->step_ms_update(); 205 205 break; … … 283 283 </script> 284 284 285 <p><?php printf( __( 'BuddyPress has detected a recent change to WordPress Multisite, which allows members of your community to have their own WordPress blogs. You can enable or disable this feature at any time at <a href="%s">Network Options</a>.', 'buddypress' ), network_admin_url( 'settings.php' ) ); ?></p>286 287 <p><?php __( "Please select the WordPress page you would like to use to display the blogdirectory. You can either choose an existing page or let BuddyPress auto-create a page for you. If you'd like, you can go to manually create pages now, and return to this step when you are finished.", 'buddypress' ) ?></p>285 <p><?php printf( __( 'BuddyPress has detected a recent change to WordPress Multisite, which allows members of your community to have their own WordPress sites. You can enable or disable this feature at any time at <a href="%s">Network Options</a>.', 'buddypress' ), network_admin_url( 'settings.php' ) ); ?></p> 286 287 <p><?php __( "Please select the WordPress page you would like to use to display the site directory. You can either choose an existing page or let BuddyPress auto-create a page for you. If you'd like, you can go to manually create pages now, and return to this step when you are finished.", 'buddypress' ) ?></p> 288 288 289 289 <p><strong><?php _e( 'Please Note:', 'buddypress' ) ?></strong> <?php _e( "If you have manually added BuddyPress navigation links in your theme you may need to remove these from your header.php to avoid duplicate links.", 'buddypress' ) ?></p> … … 293 293 <tr valign="top"> 294 294 <th scope="row"> 295 <h5><?php _e( ' Blogs', 'buddypress' ); ?></h5>295 <h5><?php _e( 'Sites', 'buddypress' ); ?></h5> 296 296 <p><?php _e( 'Displays individual groups as well as a directory of groups.', 'buddypress' ); ?></p> 297 297 </th> … … 304 304 </table> 305 305 306 <p><?php _e( 'Would you like to enable blog tracking, which tracks blog activity acrossyour network?', 'buddypress' ); ?></p>306 <p><?php _e( 'Would you like to enable site tracking, which tracks activity across all of your network?', 'buddypress' ); ?></p> 307 307 308 308 <div class="left-col"> 309 309 310 310 <div class="component"> 311 <h5><?php _e( " BlogTracking", 'buddypress' ); ?></h5>311 <h5><?php _e( "Site Tracking", 'buddypress' ); ?></h5> 312 312 313 313 <div class="radio"> … … 318 318 <img src="<?php echo plugins_url( 'buddypress/screenshot-7.gif' ) ?>" alt="Activity Streams" /> 319 319 320 <p><?php _e( "Track new blogs, new posts and new comments across your entire blognetwork.", 'buddypress' ) ?></p>320 <p><?php _e( "Track new sites, new posts and new comments across your entire network.", 'buddypress' ) ?></p> 321 321 322 322 </div> … … 466 466 <tr valign="top"> 467 467 <th scope="row"> 468 <h5><?php _e( ' Blogs', 'buddypress' ); ?></h5>468 <h5><?php _e( 'Sites', 'buddypress' ); ?></h5> 469 469 <p><?php _e( 'Displays individual groups as well as a directory of groups.', 'buddypress' ); ?></p> 470 470 </th> -
trunk/bp-core/bp-core-buddybar.php
r4448 r4466 456 456 <?php if ( is_multisite() && bp_is_active( 'blogs' ) ) : ?> 457 457 458 <li><a href="<?php echo trailingslashit( bp_get_root_domain() . '/' . $bp->blogs->root_slug ) . '?random-blog' ?>" rel="nofollow"><?php _e( 'Random Blog', 'buddypress' ) ?></a></li>458 <li><a href="<?php echo trailingslashit( bp_get_root_domain() . '/' . $bp->blogs->root_slug ) . '?random-blog' ?>" rel="nofollow"><?php _e( 'Random Site', 'buddypress' ) ?></a></li> 459 459 460 460 <?php endif; ?> -
trunk/bp-core/bp-core-template.php
r4455 r4466 230 230 } elseif ( bp_is_blog_page() ) { 231 231 if ( is_single() ) { 232 $title = sprintf( __( ' Blog| %s', 'buddypress' ), $post->post_title );232 $title = sprintf( __( 'Site | %s', 'buddypress' ), $post->post_title ); 233 233 } else if ( is_category() ) { 234 $title = sprintf( __( ' Blog| Categories | %s', 'buddypress' ), ucwords( $wp_query->query_vars['category_name'] ) );234 $title = sprintf( __( 'Site | Categories | %s', 'buddypress' ), ucwords( $wp_query->query_vars['category_name'] ) ); 235 235 } else if ( is_tag() ) { 236 $title = sprintf( __( ' Blog| Tags | %s', 'buddypress' ), ucwords( $wp_query->query_vars['tag'] ) );236 $title = sprintf( __( 'Site | Tags | %s', 'buddypress' ), ucwords( $wp_query->query_vars['tag'] ) ); 237 237 } else if ( is_page() ){ 238 238 $title = $post->post_title; 239 239 } else 240 $title = __( ' Blog', 'buddypress' );240 $title = __( 'Site', 'buddypress' ); 241 241 242 242 // Displayed user … … 276 276 // Blog creation page 277 277 } elseif ( bp_is_create_blog() ) { 278 $title = __( 'Create a Blog', 'buddypress' );278 $title = __( 'Create a Site', 'buddypress' ); 279 279 } 280 280 -
trunk/bp-themes/bp-default/activity/index.php
r4454 r4466 95 95 <?php if ( bp_is_active( 'blogs' ) ) : ?> 96 96 97 <option value="new_blog_post"><?php _e( ' BlogPosts', 'buddypress' ) ?></option>98 <option value="new_blog_comment"><?php _e( ' BlogComments', 'buddypress' ) ?></option>97 <option value="new_blog_post"><?php _e( 'Posts', 'buddypress' ) ?></option> 98 <option value="new_blog_comment"><?php _e( 'Comments', 'buddypress' ) ?></option> 99 99 100 100 <?php endif; ?> -
trunk/bp-themes/bp-default/blogs/blogs-loop.php
r3810 r4466 88 88 89 89 <div id="message" class="info"> 90 <p><?php _e( 'Sorry, there were no blogs found.', 'buddypress' ); ?></p>90 <p><?php _e( 'Sorry, there were no sites found.', 'buddypress' ); ?></p> 91 91 </div> 92 92 -
trunk/bp-themes/bp-default/blogs/create.php
r4347 r4466 19 19 <?php do_action( 'template_notices' ); ?> 20 20 21 <h3><?php _e( 'Create a Blog', 'buddypress' ); ?> <a class="button" href="<?php echo trailingslashit( bp_get_root_domain() . '/' . bp_get_blogs_root_slug() ) ?>"><?php _e( 'BlogsDirectory', 'buddypress' ); ?></a></h3>21 <h3><?php _e( 'Create a Site', 'buddypress' ); ?> <a class="button" href="<?php echo trailingslashit( bp_get_root_domain() . '/' . bp_get_blogs_root_slug() ) ?>"><?php _e( 'Site Directory', 'buddypress' ); ?></a></h3> 22 22 23 23 <?php do_action( 'bp_before_create_blog_content' ); ?> … … 30 30 31 31 <div id="message" class="info"> 32 <p><?php _e( ' Blogregistration is currently disabled', 'buddypress' ); ?></p>32 <p><?php _e( 'Site registration is currently disabled', 'buddypress' ); ?></p> 33 33 </div> 34 34 -
trunk/bp-themes/bp-default/blogs/index.php
r4452 r4466 19 19 <form action="" method="post" id="blogs-directory-form" class="dir-form"> 20 20 21 <h3><?php _e( ' Blogs Directory', 'buddypress' ); ?><?php if ( is_user_logged_in() && bp_blog_signup_enabled() ) : ?> <a class="button" href="<?php echo bp_get_root_domain() . '/' . BP_BLOGS_SLUG . '/create/' ?>"><?php _e( 'Create a Blog', 'buddypress' ); ?></a><?php endif; ?></h3>21 <h3><?php _e( 'Site Directory', 'buddypress' ); ?><?php if ( is_user_logged_in() && bp_blog_signup_enabled() ) : ?> <a class="button" href="<?php echo bp_get_root_domain() . '/' . BP_BLOGS_SLUG . '/create/' ?>"><?php _e( 'Create a Site', 'buddypress' ); ?></a><?php endif; ?></h3> 22 22 23 23 <div id="blog-dir-search" class="dir-search" role="search"> … … 29 29 <div class="item-list-tabs" role="navigation"> 30 30 <ul> 31 <li class="selected" id="blogs-all"><a href="<?php bp_root_domain(); ?>"><?php printf( __( 'All Blogs (%s)', 'buddypress' ), bp_get_total_blog_count() ); ?></a></li>31 <li class="selected" id="blogs-all"><a href="<?php bp_root_domain(); ?>"><?php printf( __( 'All Sites (%s)', 'buddypress' ), bp_get_total_blog_count() ); ?></a></li> 32 32 33 33 <?php if ( is_user_logged_in() && bp_get_total_blog_count_for_user( bp_loggedin_user_id() ) ) : ?> 34 34 35 <li id="blogs-personal"><a href="<?php echo bp_loggedin_user_domain() . BP_BLOGS_SLUG . '/my-blogs/' ?>"><?php printf( __( 'My Blogs (%s)', 'buddypress' ), bp_get_total_blog_count_for_user( bp_loggedin_user_id() ) ); ?></a></li>35 <li id="blogs-personal"><a href="<?php echo bp_loggedin_user_domain() . BP_BLOGS_SLUG . '/my-blogs/' ?>"><?php printf( __( 'My Sites (%s)', 'buddypress' ), bp_get_total_blog_count_for_user( bp_loggedin_user_id() ) ); ?></a></li> 36 36 37 37 <?php endif; ?> -
trunk/bp-themes/bp-default/members/single/activity.php
r4454 r4466 25 25 if ( bp_is_active( 'blogs' ) ) : ?> 26 26 27 <option value="new_blog_post"><?php _e( ' BlogPosts', 'buddypress' ) ?></option>28 <option value="new_blog_comment"><?php _e( ' BlogComments', 'buddypress' ) ?></option>27 <option value="new_blog_post"><?php _e( 'Posts', 'buddypress' ) ?></option> 28 <option value="new_blog_comment"><?php _e( 'Comments', 'buddypress' ) ?></option> 29 29 30 30 <?php -
trunk/bp-themes/bp-default/registration/register.php
r4414 r4466 183 183 <h4><?php _e( 'Blog Details', 'buddypress' ) ?></h4> 184 184 185 <p><input type="checkbox" name="signup_with_blog" id="signup_with_blog" value="1"<?php if ( (int) bp_get_signup_with_blog_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Yes, I\'d like to create a new blog', 'buddypress' ) ?></p>185 <p><input type="checkbox" name="signup_with_blog" id="signup_with_blog" value="1"<?php if ( (int) bp_get_signup_with_blog_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Yes, I\'d like to create a new site', 'buddypress' ) ?></p> 186 186 187 187 <div id="blog-details"<?php if ( (int) bp_get_signup_with_blog_value() ) : ?>class="show"<?php endif; ?>> … … 196 196 <?php endif; ?> 197 197 198 <label for="signup_blog_title"><?php _e( ' BlogTitle', 'buddypress' ) ?> <?php _e( '(required)', 'buddypress' ) ?></label>198 <label for="signup_blog_title"><?php _e( 'Site Title', 'buddypress' ) ?> <?php _e( '(required)', 'buddypress' ) ?></label> 199 199 <?php do_action( 'bp_signup_blog_title_errors' ) ?> 200 200 <input type="text" name="signup_blog_title" id="signup_blog_title" value="<?php bp_signup_blog_title_value() ?>" /> 201 201 202 <span class="label"><?php _e( 'I would like my blog to appear in search engines, and in public listings around this site', 'buddypress' ) ?>:</span>202 <span class="label"><?php _e( 'I would like my site to appear in search engines, and in public listings around this network.', 'buddypress' ) ?>:</span> 203 203 <?php do_action( 'bp_signup_blog_privacy_errors' ) ?> 204 204 -
trunk/bp-themes/bp-default/search.php
r4313 r4466 8 8 <div class="page" id="blog-search" role="main"> 9 9 10 <h2 class="pagetitle"><?php _e( ' Blog', 'buddypress' ) ?></h2>10 <h2 class="pagetitle"><?php _e( 'Site', 'buddypress' ) ?></h2> 11 11 12 12 <?php if (have_posts()) : ?>
Note: See TracChangeset
for help on using the changeset viewer.