Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
07/04/2011 05:37:22 AM (15 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-forums/bp-forums-loader.php

    r4321 r4586  
    133133        // Additional menu if friends is active
    134134        $sub_nav[] = array(
    135             'name'            => __( 'Started', 'buddypress' ),
     135            'name'            => __( 'Topics Started', 'buddypress' ),
    136136            'slug'            => 'topics',
    137137            'parent_url'      => $forums_link,
     
    199199            $wp_admin_nav[] = array(
    200200                'parent' => 'my-account-' . $this->id,
    201                 'title'  => __( 'My Topics', 'buddypress' ),
     201                'title'  => __( 'Topics Started', 'buddypress' ),
    202202                'href'   => trailingslashit( $forums_link . 'topics' )
    203203            );
     
    206206            $wp_admin_nav[] = array(
    207207                'parent' => 'my-account-' . $this->id,
    208                 'title'  => __( 'My Replies', 'buddypress' ),
     208                'title'  => __( 'Replies', 'buddypress' ),
    209209                'href'   => trailingslashit( $forums_link . 'replies' )
    210210            );
     
    213213            $wp_admin_nav[] = array(
    214214                'parent' => 'my-account-' . $this->id,
    215                 'title'  => __( 'My Favorites', 'buddypress' ),
     215                'title'  => __( 'Favorite Topics', 'buddypress' ),
    216216                'href'   => trailingslashit( $forums_link . 'favorites' )
    217217            );
     
    232232        if ( bp_is_forums_component() ) {
    233233            if ( bp_is_my_profile() ) {
    234                 $bp->bp_options_title = __( 'My Forums', 'buddypress' );
     234                $bp->bp_options_title = __( 'Forums', 'buddypress' );
    235235            } else {
    236236                $bp->bp_options_avatar = bp_core_fetch_avatar( array(
Note: See TracChangeset for help on using the changeset viewer.