Changeset 4466 for trunk/bp-blogs/bp-blogs-loader.php
- Timestamp:
- 06/06/2011 08:44:17 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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
Note: See TracChangeset
for help on using the changeset viewer.