Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
07/27/2014 05:48:17 PM (11 years ago)
Author:
djpaul
Message:

i18n: disambiguate nav items' strings.

See #5777, props danbp

File:
1 edited

Legend:

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

    r8682 r8705  
    934934            <tr>
    935935                <th class="icon"></th>
    936                 <th class="title"><?php _e( 'Groups', 'buddypress' ) ?></th>
     936                <th class="title"><?php _ex( 'Groups', 'Group settings on notification settings page', 'buddypress' ) ?></th>               
    937937                <th class="yes"><?php _e( 'Yes', 'buddypress' ) ?></th>
    938938                <th class="no"><?php _e( 'No', 'buddypress' )?></th>
     
    943943            <tr id="groups-notification-settings-invitation">
    944944                <td></td>
    945                 <td><?php _e( 'A member invites you to join a group', 'buddypress' ) ?></td>
     945                <td><?php _ex( 'A member invites you to join a group', 'group settings on notification settings page','buddypress' ) ?></td>
    946946                <td class="yes"><input type="radio" name="notifications[notification_groups_invite]" value="yes" <?php checked( $group_invite, 'yes', true ) ?>/></td>
    947947                <td class="no"><input type="radio" name="notifications[notification_groups_invite]" value="no" <?php checked( $group_invite, 'no', true ) ?>/></td>
     
    949949            <tr id="groups-notification-settings-info-updated">
    950950                <td></td>
    951                 <td><?php _e( 'Group information is updated', 'buddypress' ) ?></td>
     951                <td><?php _ex( 'Group information is updated', 'group settings on notification settings page', 'buddypress' ) ?></td>
    952952                <td class="yes"><input type="radio" name="notifications[notification_groups_group_updated]" value="yes" <?php checked( $group_update, 'yes', true ) ?>/></td>
    953953                <td class="no"><input type="radio" name="notifications[notification_groups_group_updated]" value="no" <?php checked( $group_update, 'no', true ) ?>/></td>
     
    955955            <tr id="groups-notification-settings-promoted">
    956956                <td></td>
    957                 <td><?php _e( 'You are promoted to a group administrator or moderator', 'buddypress' ) ?></td>
     957                <td><?php _ex( 'You are promoted to a group administrator or moderator', 'group settings on notification settings page', 'buddypress' ) ?></td>
    958958                <td class="yes"><input type="radio" name="notifications[notification_groups_admin_promotion]" value="yes" <?php checked( $group_promo, 'yes', true ) ?>/></td>
    959959                <td class="no"><input type="radio" name="notifications[notification_groups_admin_promotion]" value="no" <?php checked( $group_promo, 'no', true ) ?>/></td>
     
    961961            <tr id="groups-notification-settings-request">
    962962                <td></td>
    963                 <td><?php _e( 'A member requests to join a private group for which you are an admin', 'buddypress' ) ?></td>
     963                <td><?php _ex( 'A member requests to join a private group for which you are an admin', 'group settings on notification settings page', 'buddypress' ) ?></td>
    964964                <td class="yes"><input type="radio" name="notifications[notification_groups_membership_request]" value="yes" <?php checked( $group_request, 'yes', true ) ?>/></td>
    965965                <td class="no"><input type="radio" name="notifications[notification_groups_membership_request]" value="no" <?php checked( $group_request, 'no', true ) ?>/></td>
     
    11201120    public function create_dummy_post() {
    11211121
    1122         $title = __( 'Groups', 'buddypress' );
     1122        $title = _x( 'Groups', 'Group creation page', 'buddypress' );
    11231123
    11241124        bp_theme_compat_reset_post( array(
Note: See TracChangeset for help on using the changeset viewer.