Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
05/21/2018 01:00:36 AM (7 years ago)
Author:
djpaul
Message:

Templates, Nouveau: string improvements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-nouveau/buddypress/members/single/notifications/notifications-loop.php

    r12082 r12104  
    1616                <tr>
    1717                    <th class="icon"></th>
    18                     <th class="bulk-select-all"><input id="select-all-notifications" type="checkbox"><label class="bp-screen-reader-text" for="select-all-notifications"><?php _e( 'Select all', 'buddypress' ); ?></label></th>
    19                     <th class="title"><?php _e( 'Notification', 'buddypress' ); ?></th>
     18                    <th class="bulk-select-all"><input id="select-all-notifications" type="checkbox"><label class="bp-screen-reader-text" for="select-all-notifications"><?php esc_html_e( 'Select all', 'buddypress' ); ?></label></th>
     19                    <th class="title"><?php esc_html_e( 'Notification', 'buddypress' ); ?></th>
    2020                    <th class="date">
    21                         <?php _e( 'Date Received', 'buddypress' ); ?>
     21                        <?php esc_html_e( 'Date Received', 'buddypress' ); ?>
    2222                        <?php bp_nouveau_notifications_sort_order_links(); ?>
    2323                    </th>
    24                     <th class="actions"><?php _e( 'Actions', 'buddypress' ); ?></th>
     24                    <th class="actions"><?php esc_html_e( 'Actions', 'buddypress' ); ?></th>
    2525                </tr>
    2626            </thead>
     
    3535                    <tr>
    3636                        <td></td>
    37                         <td class="bulk-select-check"><label for="<?php bp_the_notification_id(); ?>"><input id="<?php bp_the_notification_id(); ?>" type="checkbox" name="notifications[]" value="<?php bp_the_notification_id(); ?>" class="notification-check"><span class="bp-screen-reader-text"><?php _e( 'Select this notification', 'buddypress' ); ?></span></label></td>
     37                        <td class="bulk-select-check"><label for="<?php bp_the_notification_id(); ?>"><input id="<?php bp_the_notification_id(); ?>" type="checkbox" name="notifications[]" value="<?php bp_the_notification_id(); ?>" class="notification-check"><span class="bp-screen-reader-text"><?php esc_html_e( 'Select this notification', 'buddypress' ); ?></span></label></td>
    3838                        <td class="notification-description"><?php bp_the_notification_description(); ?></td>
    3939                        <td class="notification-since"><?php bp_the_notification_time_since(); ?></td>
Note: See TracChangeset for help on using the changeset viewer.