Skip to:
Content

BuddyPress.org

Changeset 4466


Ignore:
Timestamp:
06/06/2011 08:44:17 PM (15 years ago)
Author:
djpaul
Message:

s/blogs/sites. Fixes #2164

Location:
trunk
Files:
18 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-activity/bp-activity-template.php

    r4400 r4466  
    608608
    609609                                if ( !$alt )
    610                                         $alt = sprintf( __( 'Blog authored by %s', 'buddypress' ), get_blog_option( $item_id, 'blogname' ) );
     610                                        $alt = sprintf( __( 'Site authored by %s', 'buddypress' ), get_blog_option( $item_id, 'blogname' ) );
    611611
    612612                                break;
     
    10891089
    10901090                        // 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' ) );
    10921092
    10931093                        $component_links[] = $before . '<a href="' . esc_attr( $link ) . '">' . ucwords( __( $component, 'buddypress' ) ) . '</a>' . $after;
  • trunk/bp-blogs/bp-blogs-activity.php

    r4398 r4466  
    1212                return false;
    1313
    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 blog post published',      'buddypress' ) );
    16         bp_activity_set_action( $bp->blogs->id, 'new_blog_comment', __( 'New blog post 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' ) );
    1717
    1818        do_action( 'bp_blogs_register_activity_actions' );
  • trunk/bp-blogs/bp-blogs-buddybar.php

    r3982 r4466  
    2121                echo '<li id="bp-adminbar-blogs-menu"><a href="' . trailingslashit( $bp->loggedin_user->domain . $bp->blogs->slug ) . '">';
    2222
    23                 _e( 'My Blogs', 'buddypress' );
     23                _e( 'My Sites', 'buddypress' );
    2424
    2525                echo '</a>';
     
    4949                if ( bp_blog_signup_enabled() ) {
    5050                        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>';
    5252                        echo '</li>';
    5353                }
  • trunk/bp-blogs/bp-blogs-functions.php

    r4397 r4466  
    101101                bp_blogs_record_activity( array(
    102102                        '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 ),
    104104                        'primary_link' => apply_filters( 'bp_blogs_activity_created_blog_primary_link', get_site_url( $recorded_blog->blog_id ), $recorded_blog->blog_id ),
    105105                        'type'         => 'new_blog',
  • trunk/bp-blogs/bp-blogs-loader.php

    r4381 r4466  
    2424                parent::start(
    2525                        'blogs',
    26                         __( 'Blogs Streams', 'buddypress' ),
     26                        __( 'Site Streams', 'buddypress' ),
    2727                        BP_PLUGIN_DIR
    2828                );
     
    5757                        'root_slug'             => isset( $bp->pages->blogs->slug ) ? $bp->pages->blogs->slug : BP_BLOGS_SLUG,
    5858                        'notification_callback' => 'bp_blogs_format_notifications',
    59                         'search_string'         => __( 'Search Blogs...', 'buddypress' ),
     59                        'search_string'         => __( 'Search sites...', 'buddypress' ),
    6060                        'autocomplete_all'      => defined( 'BP_MESSAGES_AUTOCOMPLETE_ALL' ),
    6161                        'global_tables'         => $global_tables,
     
    104104                        return false;
    105105
    106                 // Add 'Blogs' to the main navigation
     106                // Add 'Sites' to the main navigation
    107107                $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() ),
    109109                        'slug'                => $this->slug,
    110110                        'position'            => 30,
     
    138138                                'parent' => $bp->my_account_menu_id,
    139139                                'id'     => 'my-account-' . $this->id,
    140                                 'title'  => __( 'Blogs', 'buddypress' ),
     140                                'title'  => __( 'Sites', 'buddypress' ),
    141141                                'href'   => trailingslashit( $blogs_link )
    142142                        );
     
    145145                        $wp_admin_nav[] = array(
    146146                                'parent' => 'my-account-' . $this->id,
    147                                 'title'  => __( 'My Blogs', 'buddypress' ),
     147                                'title'  => __( 'My Sites', 'buddypress' ),
    148148                                'href'   => trailingslashit( $blogs_link . 'my-blogs' )
    149149                        );
     
    166166                        if ( bp_is_my_profile() ) {
    167167                                if ( bp_is_active( 'xprofile' ) ) {
    168                                         $bp->bp_options_title = __( 'My Blogs', 'buddypress' );
     168                                        $bp->bp_options_title = __( 'My Sites', 'buddypress' );
    169169                                }
    170170
  • trunk/bp-blogs/bp-blogs-template.php

    r4438 r4466  
    227227        $total     = bp_core_number_format( $blogs_template->total_blog_count );
    228228
    229         echo sprintf( __( 'Viewing blog %1$s to %2$s (of %3$s blogs)', 'buddypress' ), $from_num, $to_num, $total ); ?> &nbsp;
     229        echo sprintf( __( 'Viewing site %1$s to %2$s (of %3$s sites)', 'buddypress' ), $from_num, $to_num, $total ); ?> &nbsp;
    230230        <span class="ajax-loader"></span><?php
    231231}
     
    252252                        'class'   => 'avatar',
    253253                        'id'      => false,
    254                         'alt'     => __( 'Blog authored by %s', 'buddypress' ),
     254                        'alt'     => __( 'Site authored by %s', 'buddypress' ),
    255255                        'no_grav' => true
    256256                );
     
    397397                }
    398398                ?>
    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&#8217;re not going to use a great blog domain, 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&#8217;re not going to use a great domain, leave it for a new user. Now have at it!", 'buddypress') ?></p>
    402402
    403403                <form class="standard-form" id="setupform" method="post" action="">
     
    408408                        <?php bp_blogs_signup_blog($blogname, $blog_title, $errors); ?>
    409409                        <p>
    410                                 <input id="submit" type="submit" name="submit" class="submit" value="<?php _e('Create Blog &rarr;', 'buddypress') ?>" />
     410                                <input id="submit" type="submit" name="submit" class="submit" value="<?php _e('Create Site', 'buddypress') ?>" />
    411411                        </p>
    412412
     
    422422        // Blog name
    423423        if( !is_subdomain_install() )
    424                 echo '<label for="blogname">' . __('Blog Name:', 'buddypress') . '</label>';
     424                echo '<label for="blogname">' . __('Site Name:', 'buddypress') . '</label>';
    425425        else
    426                 echo '<label for="blogname">' . __('Blog Domain:', 'buddypress') . '</label>';
     426                echo '<label for="blogname">' . __('Site Domain:', 'buddypress') . '</label>';
    427427
    428428        if ( $errmsg = $errors->get_error_message('blogname') ) { ?>
     
    452452        ?>
    453453
    454         <label for="blog_title"><?php _e('Blog Title:', 'buddypress') ?></label>
     454        <label for="blog_title"><?php _e('Site Title:', 'buddypress') ?></label>
    455455
    456456        <?php if ( $errmsg = $errors->get_error_message('blog_title') ) { ?>
     
    464464        <p>
    465465                <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' ); ?>
    468467
    469468                <label class="checkbox" for="blog_public_on">
     
    527526        $blog_url = $protocol . $domain . $path; ?>
    528527
    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>
    530529        <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 ); ?>
    532531        </p>
    533532
     
    540539
    541540        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>' );
    543542}
    544543
     
    553552
    554553        <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>
    556555                <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>
    557556                <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>
     
    603602                        'link_href'         => bp_get_blog_permalink(),
    604603                        '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' ),
    607606                );
    608607
  • trunk/bp-blogs/bp-blogs-widgets.php

    r4211 r4466  
    6363                <?php else : ?>
    6464                        <div id="message" class="info">
    65                                 <p><?php _e( 'Sorry, there were no blog posts found. Why not write one?', 'buddypress' ) ?></p>
     65                                <p><?php _e( 'Sorry, there were no posts found. Why not write one?', 'buddypress' ) ?></p>
    6666                        </div>
    6767                <?php endif; ?>
  • trunk/bp-core/admin/bp-core-admin.php

    r4338 r4466  
    294294        if ( is_multisite() ) {
    295295                $optional_components['blogs'] = array(
    296                         'title'       => __( 'Blog Tracking', 'buddypress' ),
    297                         'description' => __( 'Track new blogs, new posts and new comments across your entire blog network.', 'buddypress' )
     296                        'title'       => __( 'Site Tracking', 'buddypress' ),
     297                        'description' => __( 'Track new sites, new posts and new comments across your entire network.', 'buddypress' )
    298298                );
    299299        }
     
    374374       
    375375        if ( is_multisite() )
    376                 $directory_pages['blogs'] = __( "Blogs Directory", 'buddypress' ); ?>
     376                $directory_pages['blogs'] = __( "Site Directory", 'buddypress' ); ?>
    377377       
    378378        <h3><?php _e( 'Directory Pages', 'buddypress' ); ?></h3>
  • trunk/bp-core/admin/bp-core-update.php

    r4458 r4466  
    201201                                                        break;
    202202
    203                                                 case __( 'Blog Directory', 'buddypress') :
     203                                                case __( 'Site Directory', 'buddypress') :
    204204                                                        $this->step_ms_update();
    205205                                                        break;
     
    283283                </script>
    284284
    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 blog 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>
     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>
    288288
    289289                <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>
     
    293293                        <tr valign="top">
    294294                                <th scope="row">
    295                                         <h5><?php _e( 'Blogs', 'buddypress' ); ?></h5>
     295                                        <h5><?php _e( 'Sites', 'buddypress' ); ?></h5>
    296296                                        <p><?php _e( 'Displays individual groups as well as a directory of groups.', 'buddypress' ); ?></p>
    297297                                </th>
     
    304304                </table>
    305305
    306                 <p><?php _e( 'Would you like to enable blog tracking, which tracks blog activity across your network?', 'buddypress' ); ?></p>
     306                <p><?php _e( 'Would you like to enable site tracking, which tracks activity across all of your network?', 'buddypress' ); ?></p>
    307307
    308308                <div class="left-col">
    309309
    310310                        <div class="component">
    311                                 <h5><?php _e( "Blog Tracking", 'buddypress' ); ?></h5>
     311                                <h5><?php _e( "Site Tracking", 'buddypress' ); ?></h5>
    312312
    313313                                <div class="radio">
     
    318318                                <img src="<?php echo plugins_url( 'buddypress/screenshot-7.gif' ) ?>" alt="Activity Streams" />
    319319
    320                                 <p><?php _e( "Track new blogs, new posts and new comments across your entire blog network.", 'buddypress' ) ?></p>
     320                                <p><?php _e( "Track new sites, new posts and new comments across your entire network.", 'buddypress' ) ?></p>
    321321
    322322                        </div>
     
    466466                                <tr valign="top">
    467467                                        <th scope="row">
    468                                                 <h5><?php _e( 'Blogs', 'buddypress' ); ?></h5>
     468                                                <h5><?php _e( 'Sites', 'buddypress' ); ?></h5>
    469469                                                <p><?php _e( 'Displays individual groups as well as a directory of groups.', 'buddypress' ); ?></p>
    470470                                        </th>
  • trunk/bp-core/bp-core-buddybar.php

    r4448 r4466  
    456456                        <?php if ( is_multisite() && bp_is_active( 'blogs' ) ) : ?>
    457457
    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>
    459459
    460460                        <?php endif; ?>
  • trunk/bp-core/bp-core-template.php

    r4455 r4466  
    230230        } elseif ( bp_is_blog_page() ) {
    231231                if ( is_single() ) {
    232                         $title = sprintf( __( 'Blog &#124; %s', 'buddypress' ), $post->post_title );
     232                        $title = sprintf( __( 'Site &#124; %s', 'buddypress' ), $post->post_title );
    233233                } else if ( is_category() ) {
    234                         $title = sprintf( __( 'Blog &#124; Categories &#124; %s', 'buddypress' ), ucwords( $wp_query->query_vars['category_name'] ) );
     234                        $title = sprintf( __( 'Site &#124; Categories &#124; %s', 'buddypress' ), ucwords( $wp_query->query_vars['category_name'] ) );
    235235                } else if ( is_tag() ) {
    236                         $title = sprintf( __( 'Blog &#124; Tags &#124; %s', 'buddypress' ), ucwords( $wp_query->query_vars['tag'] ) );
     236                        $title = sprintf( __( 'Site &#124; Tags &#124; %s', 'buddypress' ), ucwords( $wp_query->query_vars['tag'] ) );
    237237                } else if ( is_page() ){
    238238                        $title = $post->post_title;
    239239                } else
    240                         $title = __( 'Blog', 'buddypress' );
     240                        $title = __( 'Site', 'buddypress' );
    241241
    242242        // Displayed user
     
    276276        // Blog creation page
    277277        } elseif ( bp_is_create_blog() ) {
    278                 $title = __( 'Create a Blog', 'buddypress' );
     278                $title = __( 'Create a Site', 'buddypress' );
    279279        }
    280280
  • trunk/bp-themes/bp-default/activity/index.php

    r4454 r4466  
    9595                                                        <?php if ( bp_is_active( 'blogs' ) ) : ?>
    9696
    97                                                                 <option value="new_blog_post"><?php _e( 'Blog Posts', 'buddypress' ) ?></option>
    98                                                                 <option value="new_blog_comment"><?php _e( 'Blog Comments', 'buddypress' ) ?></option>
     97                                                                <option value="new_blog_post"><?php _e( 'Posts', 'buddypress' ) ?></option>
     98                                                                <option value="new_blog_comment"><?php _e( 'Comments', 'buddypress' ) ?></option>
    9999
    100100                                                        <?php endif; ?>
  • trunk/bp-themes/bp-default/blogs/blogs-loop.php

    r3810 r4466  
    8888
    8989        <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>
    9191        </div>
    9292
  • trunk/bp-themes/bp-default/blogs/create.php

    r4347 r4466  
    1919                <?php do_action( 'template_notices' ); ?>
    2020
    21                         <h3><?php _e( 'Create a Blog', 'buddypress' ); ?> &nbsp;<a class="button" href="<?php echo trailingslashit( bp_get_root_domain() . '/' . bp_get_blogs_root_slug() ) ?>"><?php _e( 'Blogs Directory', 'buddypress' ); ?></a></h3>
     21                        <h3><?php _e( 'Create a Site', 'buddypress' ); ?> &nbsp;<a class="button" href="<?php echo trailingslashit( bp_get_root_domain() . '/' . bp_get_blogs_root_slug() ) ?>"><?php _e( 'Site Directory', 'buddypress' ); ?></a></h3>
    2222
    2323                <?php do_action( 'bp_before_create_blog_content' ); ?>
     
    3030
    3131                        <div id="message" class="info">
    32                                 <p><?php _e( 'Blog registration is currently disabled', 'buddypress' ); ?></p>
     32                                <p><?php _e( 'Site registration is currently disabled', 'buddypress' ); ?></p>
    3333                        </div>
    3434
  • trunk/bp-themes/bp-default/blogs/index.php

    r4452 r4466  
    1919                <form action="" method="post" id="blogs-directory-form" class="dir-form">
    2020
    21                         <h3><?php _e( 'Blogs Directory', 'buddypress' ); ?><?php if ( is_user_logged_in() && bp_blog_signup_enabled() ) : ?> &nbsp;<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() ) : ?> &nbsp;<a class="button" href="<?php echo bp_get_root_domain() . '/' . BP_BLOGS_SLUG . '/create/' ?>"><?php _e( 'Create a Site', 'buddypress' ); ?></a><?php endif; ?></h3>
    2222
    2323                        <div id="blog-dir-search" class="dir-search" role="search">
     
    2929                        <div class="item-list-tabs" role="navigation">
    3030                                <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>
    3232
    3333                                        <?php if ( is_user_logged_in() && bp_get_total_blog_count_for_user( bp_loggedin_user_id() ) ) : ?>
    3434
    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>
    3636
    3737                                        <?php endif; ?>
  • trunk/bp-themes/bp-default/members/single/activity.php

    r4454 r4466  
    2525                                        if ( bp_is_active( 'blogs' ) ) : ?>
    2626
    27                                                 <option value="new_blog_post"><?php _e( 'Blog Posts', 'buddypress' ) ?></option>
    28                                                 <option value="new_blog_comment"><?php _e( 'Blog Comments', 'buddypress' ) ?></option>
     27                                                <option value="new_blog_post"><?php _e( 'Posts', 'buddypress' ) ?></option>
     28                                                <option value="new_blog_comment"><?php _e( 'Comments', 'buddypress' ) ?></option>
    2929
    3030                                        <?php
  • trunk/bp-themes/bp-default/registration/register.php

    r4414 r4466  
    183183                                                <h4><?php _e( 'Blog Details', 'buddypress' ) ?></h4>
    184184
    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>
    186186
    187187                                                <div id="blog-details"<?php if ( (int) bp_get_signup_with_blog_value() ) : ?>class="show"<?php endif; ?>>
     
    196196                                                        <?php endif; ?>
    197197
    198                                                         <label for="signup_blog_title"><?php _e( 'Blog Title', 'buddypress' ) ?> <?php _e( '(required)', 'buddypress' ) ?></label>
     198                                                        <label for="signup_blog_title"><?php _e( 'Site Title', 'buddypress' ) ?> <?php _e( '(required)', 'buddypress' ) ?></label>
    199199                                                        <?php do_action( 'bp_signup_blog_title_errors' ) ?>
    200200                                                        <input type="text" name="signup_blog_title" id="signup_blog_title" value="<?php bp_signup_blog_title_value() ?>" />
    201201
    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>
    203203                                                        <?php do_action( 'bp_signup_blog_privacy_errors' ) ?>
    204204
  • trunk/bp-themes/bp-default/search.php

    r4313 r4466  
    88                <div class="page" id="blog-search" role="main">
    99
    10                         <h2 class="pagetitle"><?php _e( 'Blog', 'buddypress' ) ?></h2>
     10                        <h2 class="pagetitle"><?php _e( 'Site', 'buddypress' ) ?></h2>
    1111
    1212                        <?php if (have_posts()) : ?>
Note: See TracChangeset for help on using the changeset viewer.