Ticket #4923: 4923.01.patch
File 4923.01.patch, 7.1 KB (added by , 12 years ago) |
---|
-
bp-activity/bp-activity-notifications.php
To view and respond to the message, log in and visit: %3$s 95 95 ', 'buddypress' ), $poster_name, $content, $message_link ); 96 96 } 97 97 98 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 98 // Only show the disable notifications line if the settings component is enabled 99 if ( bp_is_active( 'settings' ) ) { 100 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 101 } 99 102 100 103 /* Send the message */ 101 104 $to = apply_filters( 'bp_activity_at_message_notification_to', $to ); … … To view your original update and all comments, log in and visit: %3$s 170 173 --------------------- 171 174 ', 'buddypress' ), $poster_name, $content, $thread_link ); 172 175 173 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 176 // Only show the disable notifications line if the settings component is enabled 177 if ( bp_is_active( 'settings' ) ) { 178 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 179 } 174 180 175 181 /* Send the message */ 176 182 $to = apply_filters( 'bp_activity_new_comment_notification_to', $to ); … … To view the original activity, your comment and all replies, log in and visit: % 215 221 --------------------- 216 222 ', 'buddypress' ), $poster_name, $content, $thread_link ); 217 223 218 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 224 // Only show the disable notifications line if the settings component is enabled 225 if ( bp_is_active( 'settings' ) ) { 226 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 227 } 219 228 220 229 /* Send the message */ 221 230 $to = apply_filters( 'bp_activity_new_comment_notification_comment_author_to', $to ); -
bp-friends/bp-friends-notifications.php
To view %3$s\'s profile: %4$s 39 39 --------------------- 40 40 ', 'buddypress' ), $initiator_name, $all_requests_link, $initiator_name, $initiator_link ); 41 41 42 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 42 // Only show the disable notifications line if the settings component is enabled 43 if ( bp_is_active( 'settings' ) ) { 44 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 45 } 43 46 44 47 /* Send the message */ 45 48 $to = apply_filters( 'friends_notification_new_request_to', $to ); … … To view %2$s\'s profile: %3$s 74 77 --------------------- 75 78 ', 'buddypress' ), $friend_name, $friend_name, $friend_link ); 76 79 77 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 80 // Only show the disable notifications line if the settings component is enabled 81 if ( bp_is_active( 'settings' ) ) { 82 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 83 } 78 84 79 85 /* Send the message */ 80 86 $to = apply_filters( 'friends_notification_accepted_request_to', $to ); -
bp-groups/bp-groups-notifications.php
To view %4$s\'s profile: %5$s 87 87 --------------------- 88 88 ', 'buddypress' ), $requesting_user_name, $group->name, $group_requests, $requesting_user_name, $profile_link ); 89 89 90 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 90 // Only show the disable notifications line if the settings component is enabled 91 if ( bp_is_active( 'settings' ) ) { 92 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 93 } 91 94 92 95 /* Send the message */ 93 96 $to = apply_filters( 'groups_notification_new_membership_request_to', $to ); … … To submit another request please log in and visit: %2$s 142 145 ', 'buddypress' ), $group->name, $group_link ); 143 146 } 144 147 145 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 148 // Only show the disable notifications line if the settings component is enabled 149 if ( bp_is_active( 'settings' ) ) { 150 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 151 } 146 152 147 153 /* Send the message */ 148 154 $to = apply_filters( 'groups_notification_membership_request_completed_to', $to ); … … To view the group please visit: %3$s 187 193 --------------------- 188 194 ', 'buddypress' ), $promoted_to, $group->name, $group_link ); 189 195 190 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 196 // Only show the disable notifications line if the settings component is enabled 197 if ( bp_is_active( 'settings' ) ) { 198 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 199 } 191 200 192 201 /* Send the message */ 193 202 $to = apply_filters( 'groups_notification_promoted_member_to', $to ); … … To view %5$s\'s profile visit: %6$s 240 249 --------------------- 241 250 ', 'buddypress' ), $inviter_name, $group->name, $invites_link, $group_link, $inviter_name, $inviter_link ); 242 251 243 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 252 // Only show the disable notifications line if the settings component is enabled 253 if ( bp_is_active( 'settings' ) ) { 254 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 255 } 244 256 245 257 /* Send the message */ 246 258 $to = apply_filters( 'groups_notification_group_invites_to', $to ); -
bp-messages/bp-messages-notifications.php
To view and read your messages please log in and visit: %4$s 61 61 --------------------- 62 62 ', 'buddypress' ), $sender_name, $subject, $content, $message_link ); 63 63 64 $email_content .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 64 // Only show the disable notifications line if the settings component is enabled 65 if ( bp_is_active( 'settings' ) ) { 66 $email_content .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 67 } 65 68 66 69 // Send the message 67 70 $email_to = apply_filters( 'messages_notification_new_message_to', $email_to );