Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
07/04/2011 05:37:22 AM (14 years ago)
Author:
johnjamesjacoby
Message:

Admin bar and navigation tweaks:

  • Add Displayed user/Displayed group avatars and names to moderation menus.
  • Add WP admin bar sprites and custom CSS for new admin bar items.
  • Audit text of navigation elements and remove references to "My" or "Your" as needed.
  • Add missing WP core functions to root blog menu item.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-groups/bp-groups-loader.php

    r4570 r4586  
    235235        // Add the My Groups nav item
    236236        $sub_nav[] = array(
    237             'name'            => __( 'My Groups', 'buddypress' ),
     237            'name'            => __( 'Memberships', 'buddypress' ),
    238238            'slug'            => 'my-groups',
    239239            'parent_url'      => $groups_link,
     
    246246        // Add the Group Invites nav item
    247247        $sub_nav[] = array(
    248             'name'            => __( 'Invitations',   'buddypress' ),
     248            'name'            => __( 'Invitations', 'buddypress' ),
    249249            'slug'            => 'invites',
    250250            'parent_url'      => $groups_link,
     
    263263            // Add 'Groups' to the main navigation
    264264            $main_nav = array(
    265                 'name'                => __( 'Groups', 'buddypress' ),
     265                'name'                => __( 'Memberships', 'buddypress' ),
    266266                'slug'                => $this->current_group->slug,
    267267                'position'            => -1, // Do not show in BuddyBar
     
    402402            $wp_admin_nav[] = array(
    403403                'parent' => 'my-account-' . $this->id,
    404                 'title'  => __( 'My Groups', 'buddypress' ),
     404                'title'  => __( 'Memberships', 'buddypress' ),
    405405                'href'   => trailingslashit( $groups_link )
    406406            );
     
    429429            if ( bp_is_my_profile() && !bp_is_single_item() ) {
    430430
    431                 $bp->bp_options_title = __( 'My Groups', 'buddypress' );
     431                $bp->bp_options_title = __( 'Memberships', 'buddypress' );
    432432
    433433            } else if ( !bp_is_my_profile() && !bp_is_single_item() ) {
Note: See TracChangeset for help on using the changeset viewer.