Skip to:
Content

BuddyPress.org

Changeset 7565


Ignore:
Timestamp:
11/13/2013 01:42:14 AM (11 years ago)
Author:
boonebgorges
Message:

Remove 'notifications' language in Settings component

We previously used the word "notification" to refer to the email notices
sent when certain events happened on the site. This causes some confusion with
the new top-level Notifications item, so we change the wording a bit.

Fixes #5240

Props imath, r-a-y

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-settings/bp-settings-loader.php

    r7454 r7565  
    101101        );
    102102
    103         // Add Notifications nav item
     103        // Add Email nav item. Formerly called 'Notifications', we
     104        // retain the old slug and function names for backward compat
    104105        $sub_nav[] = array(
    105             'name'            => __( 'Notifications', 'buddypress' ),
     106            'name'            => __( 'Email', 'buddypress' ),
    106107            'slug'            => 'notifications',
    107108            'parent_url'      => $settings_link,
  • trunk/bp-templates/bp-legacy/buddypress/members/single/settings/notifications.php

    r7202 r7565  
    22
    33<form action="<?php echo bp_displayed_user_domain() . bp_get_settings_slug() . '/notifications'; ?>" method="post" class="standard-form" id="settings-form">
    4     <p><?php _e( 'Send a notification by email when:', 'buddypress' ); ?></p>
     4    <p><?php _e( 'Send an email notice when:', 'buddypress' ); ?></p>
    55
    66    <?php do_action( 'bp_notification_settings' ); ?>
  • trunk/bp-themes/bp-default/members/single/settings/notifications.php

    r6146 r7565  
    5252
    5353                <form action="<?php echo bp_displayed_user_domain() . bp_get_settings_slug() . '/notifications'; ?>" method="post" class="standard-form" id="settings-form">
    54                     <p><?php _e( 'Send a notification by email when:', 'buddypress' ); ?></p>
     54                    <p><?php _e( 'Send an email notice when:', 'buddypress' ); ?></p>
    5555
    5656                    <?php do_action( 'bp_notification_settings' ); ?>
Note: See TracChangeset for help on using the changeset viewer.