Ticket #5006: 5006.diff
File 5006.diff, 8.4 KB (added by , 11 years ago) |
---|
-
bp-activity/bp-activity-loader.php
3 3 /** 4 4 * BuddyPress Activity Streams Loader 5 5 * 6 * An activity stream component, for users, groups, and blogtracking.6 * An activity stream component, for users, groups, and site tracking. 7 7 * 8 8 * @package BuddyPress 9 9 * @subpackage ActivityCore -
bp-activity/bp-activity-admin.php
203 203 'title' => __( 'Item, Link, Type', 'buddypress' ), 204 204 'content' => 205 205 '<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 blogposts 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>' . 207 207 '<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>' . 208 208 '<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>' 209 209 ) ); … … 693 693 694 694 <label class="screen-reader-text" for="bp-activities-link"><?php _e( 'Link', 'buddypress' ); ?></label> 695 695 <input type="url" name="bp-activities-link" value="<?php echo esc_url( $item->primary_link ); ?>" /> 696 <p><?php _e( 'Activity generated by blogposts 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> 697 697 698 698 <?php 699 699 } -
bp-blogs/bp-blogs-loader.php
156 156 157 157 $blogs_link = trailingslashit( bp_loggedin_user_domain() . $this->slug ); 158 158 159 // Add the " Blogs" sub menu159 // Add the "Sites" sub menu 160 160 $wp_admin_nav[] = array( 161 161 'parent' => $bp->my_account_menu_id, 162 162 'id' => 'my-account-' . $this->id, … … 164 164 'href' => trailingslashit( $blogs_link ) 165 165 ); 166 166 167 // My Blogs167 // My Sites 168 168 $wp_admin_nav[] = array( 169 169 'parent' => 'my-account-' . $this->id, 170 170 'id' => 'my-account-' . $this->id . '-my-sites', … … 172 172 'href' => trailingslashit( $blogs_link ) 173 173 ); 174 174 175 // Create a Blog175 // Create a Site 176 176 if ( bp_blog_signup_enabled() ) { 177 177 $wp_admin_nav[] = array( 178 178 'parent' => 'my-account-' . $this->id, 179 179 'id' => 'my-account-' . $this->id . '-create', 180 'title' => __( 'Create a Blog', 'buddypress' ),180 'title' => __( 'Create a Site', 'buddypress' ), 181 181 'href' => trailingslashit( bp_get_blogs_directory_permalink() . 'create' ) 182 182 ); 183 183 } -
bp-blogs/bp-blogs-screens.php
132 132 133 133 // Title based on ability to create blogs 134 134 if ( is_user_logged_in() && bp_blog_signup_enabled() ) { 135 $title = __( ' Blogs', 'buddypress' ) . ' <a class="button" href="' . trailingslashit( bp_get_root_domain() . '/' . bp_get_blogs_root_slug() . '/create' ) . '">' . __( 'Create a Blog', 'buddypress' ) . '</a>';135 $title = __( 'Sites', 'buddypress' ) . ' <a class="button" href="' . trailingslashit( bp_get_root_domain() . '/' . bp_get_blogs_root_slug() . '/create' ) . '">' . __( 'Create a Site', 'buddypress' ) . '</a>'; 136 136 } else { 137 $title = __( ' Blogs', 'buddypress' );137 $title = __( 'Sites', 'buddypress' ); 138 138 } 139 139 140 140 bp_theme_compat_reset_post( array( … … 193 193 194 194 // Title based on ability to create blogs 195 195 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> ' . __( '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> ' . __( 'Create a Site', 'buddypress' ); 197 197 } else { 198 $title = __( ' Blogs', 'buddypress' );198 $title = __( 'Sites', 'buddypress' ); 199 199 } 200 200 201 201 bp_theme_compat_reset_post( array( -
bp-languages/buddypress.pot
910 910 911 911 #: bp-blogs/bp-blogs-loader.php:188 bp-blogs/bp-blogs-screens.php:135 912 912 #: bp-blogs/bp-blogs-screens.php:196 913 msgid "Create a Blog"913 msgid "Create a Site" 914 914 msgstr "" 915 915 916 916 #: bp-blogs/bp-blogs-screens.php:135 bp-blogs/bp-blogs-screens.php:137 917 917 #: bp-blogs/bp-blogs-screens.php:196 bp-blogs/bp-blogs-screens.php:198 918 918 #: bp-core/bp-core-template.php:255 919 msgid " Blogs"919 msgid "Sites" 920 920 msgstr "" 921 921 922 922 #: bp-blogs/bp-blogs-template.php:136 … … 981 981 msgstr "" 982 982 983 983 #: bp-blogs/bp-blogs-template.php:656 984 msgid " blogname"984 msgid "sitename" 985 985 msgstr "" 986 986 987 987 #: bp-blogs/bp-blogs-template.php:658 … … 1067 1067 msgstr "" 1068 1068 1069 1069 #: bp-blogs/bp-blogs-widgets.php:109 1070 msgid "Link widget title to Blogs directory"1070 msgid "Link widget title to Sites directory" 1071 1071 msgstr "" 1072 1072 1073 1073 #: bp-blogs/bp-blogs-widgets.php:110 … … 1771 1771 1772 1772 #: bp-core/bp-core-filters.php:257 1773 1773 msgid "" 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" 1775 1775 "\n" 1776 1776 "%1$s\n" 1777 1777 "\n" 1778 1778 "\n" 1779 1779 "\n" 1780 "After you activate, you can visit your bloghere:\n"1780 "After you activate, you can visit your site here:\n" 1781 1781 "\n" 1782 1782 "%2$s" 1783 1783 msgstr "" -
readme.txt
43 43 44 44 = Will this work on WordPress multisite? = 45 45 46 Yes! If your WordPress installation has multisite enabled, BuddyPress will support the global tracking of blogs, posts and comments.46 Yes! If your WordPress installation has multisite enabled, BuddyPress will support the global tracking of sitess, posts and comments. 47 47 48 48 = Where can I get support? = 49 49 … … 69 69 4. **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. 70 70 5. **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. 71 71 6. **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 blognetwork in the activity stream.72 7. **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. 73 73 74 74 == Languages == 75 75