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-xprofile/bp-xprofile-loader.php

    r4381 r4586  
    135135        // Edit Profile
    136136        $sub_nav[] = array(
    137             'name'            => __( 'Edit Profile', 'buddypress' ),
     137            'name'            => __( 'Edit', 'buddypress' ),
    138138            'slug'            => 'edit',
    139139            'parent_url'      => $profile_link,
     
    184184            $wp_admin_nav[] = array(
    185185                'parent' => 'my-account-' . $this->id,
    186                 'title'  => __( 'View My Profile', 'buddypress' ),
     186                'title'  => __( 'View', 'buddypress' ),
    187187                'href'   => trailingslashit( $profile_link . 'public' )
    188188            );
     
    191191            $wp_admin_nav[] = array(
    192192                'parent' => 'my-account-' . $this->id,
    193                 'title'  => __( 'Edit My Profile', 'buddypress' ),
     193                'title'  => __( 'Edit', 'buddypress' ),
    194194                'href'   => trailingslashit( $profile_link . 'edit' )
    195195            );
     
    198198            $wp_admin_nav[] = array(
    199199                'parent' => 'my-account-' . $this->id,
    200                 'title'  => __( 'Change My Avatar', 'buddypress' ),
     200                'title'  => __( 'Change Avatar', 'buddypress' ),
    201201                'href'   => trailingslashit( $profile_link . 'change-avatar' )
    202202            );
Note: See TracChangeset for help on using the changeset viewer.