Changeset 3515
- Timestamp:
- 12/05/2010 04:48:46 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
bp-activity.php (modified) (2 diffs)
-
bp-friends.php (modified) (2 diffs)
-
bp-groups.php (modified) (4 diffs)
-
bp-messages.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity.php
r3492 r3515 215 215 216 216 <tbody> 217 <tr >217 <tr id="activity-notification-settings-mentions"> 218 218 <td></td> 219 219 <td><?php printf( __( 'A member mentions you in an update using "@%s"', 'buddypress' ), bp_core_get_username( $bp->loggedin_user->id, $bp->loggedin_user->userdata->user_nicename, $bp->loggedin_user->userdata->user_login ) ) ?></td> … … 221 221 <td class="no"><input type="radio" name="notifications[notification_activity_new_mention]" value="no" <?php if ( 'no' == get_user_meta( $bp->loggedin_user->id, 'notification_activity_new_mention', true ) ) { ?>checked="checked" <?php } ?>/></td> 222 222 </tr> 223 <tr >223 <tr id="activity-notification-settings-replies"> 224 224 <td></td> 225 225 <td><?php _e( "A member replies to an update or comment you've posted", 'buddypress' ) ?></td> -
trunk/bp-friends.php
r3479 r3515 120 120 121 121 <tbody> 122 <tr >122 <tr id="friends-notification-settings-request"> 123 123 <td></td> 124 124 <td><?php _e( 'A member sends you a friendship request', 'buddypress' ) ?></td> … … 126 126 <td class="no"><input type="radio" name="notifications[notification_friends_friendship_request]" value="no" <?php if ( get_user_meta( $current_user->id, 'notification_friends_friendship_request', true ) == 'no' ) { ?>checked="checked" <?php } ?>/></td> 127 127 </tr> 128 <tr >128 <tr id="friends-notification-settings-accepted"> 129 129 <td></td> 130 130 <td><?php _e( 'A member accepts your friendship request', 'buddypress' ) ?></td> -
trunk/bp-groups.php
r3473 r3515 937 937 938 938 <tbody> 939 <tr >939 <tr id="groups-notification-settings-invitation"> 940 940 <td></td> 941 941 <td><?php _e( 'A member invites you to join a group', 'buddypress' ) ?></td> … … 943 943 <td class="no"><input type="radio" name="notifications[notification_groups_invite]" value="no" <?php if ( 'no' == get_user_meta( $current_user->id, 'notification_groups_invite', true ) ) { ?>checked="checked" <?php } ?>/></td> 944 944 </tr> 945 <tr >945 <tr id="groups-notification-settings-info-updated"> 946 946 <td></td> 947 947 <td><?php _e( 'Group information is updated', 'buddypress' ) ?></td> … … 949 949 <td class="no"><input type="radio" name="notifications[notification_groups_group_updated]" value="no" <?php if ( 'no' == get_user_meta( $current_user->id, 'notification_groups_group_updated', true ) ) { ?>checked="checked" <?php } ?>/></td> 950 950 </tr> 951 <tr >951 <tr id="groups-notification-settings-promoted"> 952 952 <td></td> 953 953 <td><?php _e( 'You are promoted to a group administrator or moderator', 'buddypress' ) ?></td> … … 955 955 <td class="no"><input type="radio" name="notifications[notification_groups_admin_promotion]" value="no" <?php if ( 'no' == get_user_meta( $current_user->id, 'notification_groups_admin_promotion', true ) ) { ?>checked="checked" <?php } ?>/></td> 956 956 </tr> 957 <tr >957 <tr id="groups-notification-settings-request"> 958 958 <td></td> 959 959 <td><?php _e( 'A member requests to join a private group for which you are an admin', 'buddypress' ) ?></td> -
trunk/bp-messages.php
r3364 r3515 180 180 181 181 <tbody> 182 <tr >182 <tr id="messages-notification-settings-new-message"> 183 183 <td></td> 184 184 <td><?php _e( 'A member sends you a new message', 'buddypress' ) ?></td> … … 186 186 <td class="no"><input type="radio" name="notifications[notification_messages_new_message]" value="no" <?php if ( 'no' == get_user_meta( $current_user->id, 'notification_messages_new_message', true ) ) { ?>checked="checked" <?php } ?>/></td> 187 187 </tr> 188 <tr >188 <tr id="messages-notification-settings-new-site-notice"> 189 189 <td></td> 190 190 <td><?php _e( 'A new site notice is posted', 'buddypress' ) ?></td>
Note: See TracChangeset
for help on using the changeset viewer.