Changeset 9227
- Timestamp:
- 12/12/2014 05:25:28 PM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
-
bp-groups/bp-groups-notifications.php (modified) (1 diff)
-
bp-members/bp-members-admin.php (modified) (1 diff)
-
bp-templates/bp-legacy/css/buddypress-rtl.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-groups/bp-groups-notifications.php
r9226 r9227 41 41 if ( $group->description !== $old_group->description ) { 42 42 $changed[] = sprintf( 43 _ _( '* Description changed from "%s" to "%s"', 'Group update email text', 'buddypress' ),43 _x( '* Description changed from "%s" to "%s"', 'Group update email text', 'buddypress' ), 44 44 esc_html( $old_group->description ), 45 45 esc_html( $group->description ) -
trunk/src/bp-members/bp-members-admin.php
r9210 r9227 1031 1031 $types = bp_get_member_types( array(), 'objects' ); 1032 1032 $current_type = bp_get_member_type( $user->ID ); 1033 1034 /* translators: no option picked in select box */1035 $null_option = __( '----', 'buddypress' );1036 1037 1033 ?> 1034 1038 1035 <select name="bp-members-profile-member-type"> 1039 <option value="" <?php selected( '', $current_type ); ?>><?php esc_attr_e( $null_option) ?></option>1036 <option value="" <?php selected( '', $current_type ); ?>><?php /* translators: no option picked in select box */ esc_attr_e( '----', 'buddypress' ) ?></option> 1040 1037 <?php foreach ( $types as $type ) : ?> 1041 1038 <option value="<?php echo esc_attr( $type->name ) ?>" <?php selected( $type->name, $current_type ) ?>><?php echo esc_html( $type->labels['singular_name'] ) ?></option> -
trunk/src/bp-templates/bp-legacy/css/buddypress-rtl.css
r9162 r9227 251 251 #buddypress .activity-list .activity-content .activity-header img.avatar { 252 252 float: none !important; 253 margin: 0 5px -8px 0!important;253 margin: 0 0 -8px 5px !important; 254 254 } 255 255 #buddypress a.bp-secondary-action,
Note: See TracChangeset
for help on using the changeset viewer.