Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
07/27/2014 05:48:17 PM (11 years ago)
Author:
djpaul
Message:

i18n: disambiguate nav items' strings.

See #5777, props danbp

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-xprofile/bp-xprofile-loader.php

    r8677 r8705  
    3939        parent::start(
    4040            'xprofile',
    41             __( 'Extended Profiles', 'buddypress' ),
     41            _x( 'Extended Profiles', 'Component page <title>', 'buddypress' ),
    4242            buddypress()->plugin_dir,
    4343            array(
     
    111111            'public' => array(
    112112                'id'      => 'public',
    113                 'label' => __( 'Everyone', 'buddypress' )
     113                'label' => _x( 'Everyone', 'Visibility level setting', 'buddypress' )
    114114            ),
    115115            'adminsonly' => array(
    116116                'id'      => 'adminsonly',
    117                 'label' => __( 'Only Me', 'buddypress' )
     117                'label' => _x( 'Only Me', 'Visibility level setting', 'buddypress' )
    118118            ),
    119119            'loggedin' => array(
    120120                'id'      => 'loggedin',
    121                 'label' => __( 'All Members', 'buddypress' )
     121                'label' => _x( 'All Members', 'Visibility level setting', 'buddypress' )
    122122            )
    123123        );
     
    126126            $this->visibility_levels['friends'] = array(
    127127                'id'    => 'friends',
    128                 'label' => __( 'My Friends', 'buddypress' )
     128                'label' => _x( 'My Friends', 'Visibility level setting', 'buddypress' )
    129129            );
    130130        }
     
    166166        // Add 'Profile' to the main navigation
    167167        $main_nav = array(
    168             'name'                => __( 'Profile', 'buddypress' ),
     168            'name'                => _x( 'Profile', 'Profile header menu', 'buddypress' ),
    169169            'slug'                => $this->slug,
    170170            'position'            => 20,
     
    187187        // Add the subnav items to the profile
    188188        $sub_nav[] = array(
    189             'name'            => __( 'View', 'buddypress' ),
     189            'name'            => _x( 'Profile', 'Profile header menu', 'buddypress' ),
    190190            'slug'            => 'public',
    191191            'parent_url'      => $profile_link,
     
    197197        // Edit Profile
    198198        $sub_nav[] = array(
    199             'name'            => __( 'Edit', 'buddypress' ),
     199            'name'            => _x( 'Edit','Profile header sub menu', 'buddypress' ),
    200200            'slug'            => 'edit',
    201201            'parent_url'      => $profile_link,
     
    209209        if ( buddypress()->avatar->show_avatars ) {
    210210            $sub_nav[] = array(
    211                 'name'            => __( 'Change Profile Photo', 'buddypress' ),
     211                'name'            => _x( 'Change Profile Photo', 'Profile header sub menu', 'buddypress' ),
    212212                'slug'            => 'change-avatar',
    213213                'parent_url'      => $profile_link,
     
    252252
    253253        bp_core_new_subnav_item( array(
    254             'name'            => __( 'Profile', 'buddypress' ),
     254            'name'            => _x( 'Profile', 'Profile settings  sub nav', 'buddypress' ),
    255255            'slug'            => 'profile',
    256256            'parent_url'      => trailingslashit( $user_domain . $settings_slug ),
     
    281281                'parent' => $bp->my_account_menu_id,
    282282                'id'     => 'my-account-' . $this->id,
    283                 'title'  => __( 'Profile', 'buddypress' ),
     283                'title'  => _x( 'Profile', 'My Account Profile', 'buddypress' ),
    284284                'href'   => trailingslashit( $profile_link )
    285285            );
     
    289289                'parent' => 'my-account-' . $this->id,
    290290                'id'     => 'my-account-' . $this->id . '-public',
    291                 'title'  => __( 'View', 'buddypress' ),
     291                'title'  => _x( 'View', 'My Account Profile sub nav', 'buddypress' ),
    292292                'href'   => trailingslashit( $profile_link . 'public' )
    293293            );
     
    297297                'parent' => 'my-account-' . $this->id,
    298298                'id'     => 'my-account-' . $this->id . '-edit',
    299                 'title'  => __( 'Edit', 'buddypress' ),
     299                'title'  => _x( 'Edit', 'My Account Profile sub nav', 'buddypress' ),
    300300                'href'   => trailingslashit( $profile_link . 'edit' )
    301301            );
     
    306306                    'parent' => 'my-account-' . $this->id,
    307307                    'id'     => 'my-account-' . $this->id . '-change-avatar',
    308                     'title'  => __( 'Change Profile Photo', 'buddypress' ),
     308                    'title'  => _x( 'Change Profile Photo', 'My Account Profile sub nav', 'buddypress' ),
    309309                    'href'   => trailingslashit( $profile_link . 'change-avatar' )
    310310                );
     
    333333        if ( bp_is_profile_component() ) {
    334334            if ( bp_is_my_profile() ) {
    335                 $bp->bp_options_title = __( 'My Profile', 'buddypress' );
     335                $bp->bp_options_title = _x( 'My Profile', 'Page title', 'buddypress' );
    336336            } else {
    337337                $bp->bp_options_avatar = bp_core_fetch_avatar( array(
    338338                    'item_id' => bp_displayed_user_id(),
    339339                    'type'    => 'thumb',
    340                     'alt'     => sprintf( __( 'Profile picture of %s', 'buddypress' ), bp_get_displayed_user_fullname() )
     340                    'alt'     => sprintf( _x( 'Profile picture of %s', 'Avatar alt', 'buddypress' ), bp_get_displayed_user_fullname() )
    341341                ) );
    342342                $bp->bp_options_title = bp_get_displayed_user_fullname();
     
    363363            'parent' => 'my-account-' . buddypress()->settings->id,
    364364            'id'     => 'my-account-' . buddypress()->settings->id . '-profile',
    365             'title'  => __( 'Profile', 'buddypress' ),
     365            'title'  => _x( 'Profile', 'My Account Settings sub nav', 'buddypress' ),
    366366            'href'   => trailingslashit( $settings_link . 'profile' )
    367367        );
Note: See TracChangeset for help on using the changeset viewer.