Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
07/23/2014 06:30:22 PM (12 years ago)
Author:
djpaul
Message:

Rename "Avatar" to "Profile Photo".

"Profile photo" is probably more easily understood by most people (and translators), and better describes what BuddyPress' member and group avatar features actually are; that we're asking for a person's photograph. Sometimes, avatar can mean "graphic" or "illustration".

This subtle change in phrasing also makes BuddyPress more consistent with the significant majority of other online platform services (Twitter, Facebook, etc).

Fixes #5758, props sooskriszta

File:
1 edited

Legend:

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

    r8610 r8677  
    256256                if ( ! (int) buddypress()->site_options['bp-disable-avatar-uploads'] ) {
    257257                        $this->group_creation_steps['group-avatar'] = array(
    258                                 'name'     => __( 'Avatar',   'buddypress' ),
     258                                'name'     => __( 'Profile Photo',   'buddypress' ),
    259259                                'position' => 20
    260260                        );
     
    585585                                        'type'       => 'thumb',
    586586                                        'avatar_dir' => 'group-avatars',
    587                                         'alt'        => __( 'Group Avatar', 'buddypress' )
     587                                        'alt'        => __( 'Group Profile Photo', 'buddypress' )
    588588                                ) );
    589589
    590590                                if ( empty( $bp->bp_options_avatar ) ) {
    591                                         $bp->bp_options_avatar = '<img src="' . esc_url( bp_core_avatar_default_thumb() ) . '" alt="' . esc_attr__( 'No Group Avatar', 'buddypress' ) . '" class="avatar" />';
     591                                        $bp->bp_options_avatar = '<img src="' . esc_url( bp_core_avatar_default_thumb() ) . '" alt="' . esc_attr__( 'No Group Profile Photo', 'buddypress' ) . '" class="avatar" />';
    592592                                }
    593593                        }
Note: See TracChangeset for help on using the changeset viewer.