Skip to:
Content

BuddyPress.org

Ticket #5006: 5006.diff

File 5006.diff, 8.4 KB (added by trishasalas, 11 years ago)
  • bp-activity/bp-activity-loader.php

     
    33/**
    44 * BuddyPress Activity Streams Loader
    55 *
    6  * An activity stream component, for users, groups, and blog tracking.
     6 * An activity stream component, for users, groups, and site tracking.
    77 *
    88 * @package BuddyPress
    99 * @subpackage ActivityCore
  • bp-activity/bp-activity-admin.php

     
    203203                        'title'   => __( 'Item, Link, Type', 'buddypress' ),
    204204                        'content' =>
    205205                                '<p>' . __( '<strong>Primary Item/Secondary Item</strong> - These identify the object that created the activity. For example, the fields could reference a comment left on a specific site. Some types of activity may only use one, or none, of these fields.', 'buddypress' ) . '</p>' .
    206                                 '<p>' . __( '<strong>Link</strong> - Activity generated by blog posts and comments, forum topics and replies, and some plugins, uses the link field for a permalink back to the content item. Some types of activity may not use this field, even if it has been set.', 'buddypress' ) . '</p>' .
     206                                '<p>' . __( '<strong>Link</strong> - Activity generated by posts and comments, forum topics and replies, and some plugins, uses the link field for a permalink back to the content item. Some types of activity may not use this field, even if it has been set.', 'buddypress' ) . '</p>' .
    207207                                '<p>' . __( '<strong>Type</strong> - Each distinct kind of activity has its own type. For example, <code>created_group</code> is used when a group is created and <code>joined_group</code> is used when a user joins a group.', 'buddypress' ) . '</p>' .
    208208                                '<p>' . __( 'For information about when and how BuddyPress uses all of these settings, see the Managing Activity link in the panel to the side.', 'buddypress' ) . '</p>'
    209209                ) );
     
    693693
    694694        <label class="screen-reader-text" for="bp-activities-link"><?php _e( 'Link', 'buddypress' ); ?></label>
    695695        <input type="url" name="bp-activities-link" value="<?php echo esc_url( $item->primary_link ); ?>" />
    696         <p><?php _e( 'Activity generated by blog posts and comments, forum topics and replies, and some plugins, uses the link field for a permalink back to the content item.', 'buddypress' ); ?></p>
     696        <p><?php _e( 'Activity generated by posts and comments, forum topics and replies, and some plugins, uses the link field for a permalink back to the content item.', 'buddypress' ); ?></p>
    697697
    698698<?php
    699699}
  • bp-blogs/bp-blogs-loader.php

     
    156156
    157157                        $blogs_link = trailingslashit( bp_loggedin_user_domain() . $this->slug );
    158158
    159                         // Add the "Blogs" sub menu
     159                        // Add the "Sites" sub menu
    160160                        $wp_admin_nav[] = array(
    161161                                'parent' => $bp->my_account_menu_id,
    162162                                'id'     => 'my-account-' . $this->id,
     
    164164                                'href'   => trailingslashit( $blogs_link )
    165165                        );
    166166
    167                         // My Blogs
     167                        // My Sites
    168168                        $wp_admin_nav[] = array(
    169169                                'parent' => 'my-account-' . $this->id,
    170170                                'id'     => 'my-account-' . $this->id . '-my-sites',
     
    172172                                'href'   => trailingslashit( $blogs_link )
    173173                        );
    174174
    175                         // Create a Blog
     175                        // Create a Site
    176176                        if ( bp_blog_signup_enabled() ) {
    177177                                $wp_admin_nav[] = array(
    178178                                        'parent' => 'my-account-' . $this->id,
    179179                                        'id'     => 'my-account-' . $this->id . '-create',
    180                                         'title'  => __( 'Create a Blog', 'buddypress' ),
     180                                        'title'  => __( 'Create a Site', 'buddypress' ),
    181181                                        'href'   => trailingslashit( bp_get_blogs_directory_permalink() . 'create' )
    182182                                );
    183183                        }
  • bp-blogs/bp-blogs-screens.php

     
    132132
    133133                // Title based on ability to create blogs
    134134                if ( is_user_logged_in() && bp_blog_signup_enabled() ) {
    135                         $title = __( 'Blogs', 'buddypress' ) . '&nbsp;<a class="button" href="' . trailingslashit( bp_get_root_domain() . '/' . bp_get_blogs_root_slug() . '/create' ) . '">' . __( 'Create a Blog', 'buddypress' ) . '</a>';
     135                        $title = __( 'Sites', 'buddypress' ) . '&nbsp;<a class="button" href="' . trailingslashit( bp_get_root_domain() . '/' . bp_get_blogs_root_slug() . '/create' ) . '">' . __( 'Create a Site', 'buddypress' ) . '</a>';
    136136                } else {
    137                         $title = __( 'Blogs', 'buddypress' );
     137                        $title = __( 'Sites', 'buddypress' );
    138138                }
    139139
    140140                bp_theme_compat_reset_post( array(
     
    193193
    194194                // Title based on ability to create blogs
    195195                if ( is_user_logged_in() && bp_blog_signup_enabled() ) {
    196                         $title = '<a class="button bp-title-button" href="' . trailingslashit( bp_get_root_domain() . '/' . bp_get_blogs_root_slug() ) . '">' . __( 'Blogs', 'buddypress' ) . '</a>&nbsp;' . __( 'Create a Blog', 'buddypress' );
     196                        $title = '<a class="button bp-title-button" href="' . trailingslashit( bp_get_root_domain() . '/' . bp_get_blogs_root_slug() ) . '">' . __( 'Sites', 'buddypress' ) . '</a>&nbsp;' . __( 'Create a Site', 'buddypress' );
    197197                } else {
    198                         $title = __( 'Blogs', 'buddypress' );
     198                        $title = __( 'Sites', 'buddypress' );
    199199                }
    200200
    201201                bp_theme_compat_reset_post( array(
  • bp-languages/buddypress.pot

     
    910910
    911911#: bp-blogs/bp-blogs-loader.php:188 bp-blogs/bp-blogs-screens.php:135
    912912#: bp-blogs/bp-blogs-screens.php:196
    913 msgid "Create a Blog"
     913msgid "Create a Site"
    914914msgstr ""
    915915
    916916#: bp-blogs/bp-blogs-screens.php:135 bp-blogs/bp-blogs-screens.php:137
    917917#: bp-blogs/bp-blogs-screens.php:196 bp-blogs/bp-blogs-screens.php:198
    918918#: bp-core/bp-core-template.php:255
    919 msgid "Blogs"
     919msgid "Sites"
    920920msgstr ""
    921921
    922922#: bp-blogs/bp-blogs-template.php:136
     
    981981msgstr ""
    982982
    983983#: bp-blogs/bp-blogs-template.php:656
    984 msgid "blogname"
     984msgid "sitename"
    985985msgstr ""
    986986
    987987#: bp-blogs/bp-blogs-template.php:658
     
    10671067msgstr ""
    10681068
    10691069#: bp-blogs/bp-blogs-widgets.php:109
    1070 msgid "Link widget title to Blogs directory"
     1070msgid "Link widget title to Sites directory"
    10711071msgstr ""
    10721072
    10731073#: bp-blogs/bp-blogs-widgets.php:110
     
    17711771
    17721772#: bp-core/bp-core-filters.php:257
    17731773msgid ""
    1774 "Thanks for registering! To complete the activation of your account and blog, please click the following link:\n"
     1774"Thanks for registering! To complete the activation of your account and site, please click the following link:\n"
    17751775"\n"
    17761776"%1$s\n"
    17771777"\n"
    17781778"\n"
    17791779"\n"
    1780 "After you activate, you can visit your blog here:\n"
     1780"After you activate, you can visit your site here:\n"
    17811781"\n"
    17821782"%2$s"
    17831783msgstr ""
  • readme.txt

     
    4343
    4444= Will this work on WordPress multisite? =
    4545
    46 Yes! If your WordPress installation has multisite enabled, BuddyPress will support the global tracking of blogs, posts and comments.
     46Yes! If your WordPress installation has multisite enabled, BuddyPress will support the global tracking of sitess, posts and comments.
    4747
    4848= Where can I get support? =
    4949
     
    69694. **Extensible Groups** - Powerful public, private or hidden groups allow your users to break the discussion down into specific topics. Extend groups with your own custom features using the group extension API.
    70705. **Friend Connections** - Let your users make connections so they can track the activity of others, or filter on only those users they care about the most.
    71716. **Private Messaging** - Private messaging will allow your users to talk to each other directly and in private. Not just limited to one-on-one discussions, your users can send messages to multiple recipients.
    72 7. **Blogging Network** - Allow your users to start their own blogs using WordPress's Multisite feature, and track posts and comments from across your blog network in the activity stream.
     727. **Multisite Network** - Allow your users to start their own sites using WordPress's Multisite feature, and track posts and comments from across your network in the activity stream.
    7373
    7474== Languages ==
    7575