diff --git src/bp-activity/bp-activity-admin.php src/bp-activity/bp-activity-admin.php
index 7bb15b6..ed7cf32 100644
|
|
function bp_activity_admin_index() { |
903 | 903 | <?php if ( !empty( $_REQUEST['aid'] ) ) : ?> |
904 | 904 | <?php printf( __( 'Activity related to ID #%s', 'buddypress' ), number_format_i18n( (int) $_REQUEST['aid'] ) ); ?> |
905 | 905 | <?php else : ?> |
906 | | <?php _x( 'Activity', 'Admin SWA page', 'buddypress' ); ?> |
| 906 | <?php _ex( 'Activity', 'Admin SWA page', 'buddypress' ); ?> |
907 | 907 | <?php endif; ?> |
908 | 908 | |
909 | 909 | <?php if ( !empty( $_REQUEST['s'] ) ) : ?> |
diff --git src/bp-messages/bp-messages-template.php src/bp-messages/bp-messages-template.php
index 931582d..a84e7f7 100644
|
|
function bp_messages_options() { |
826 | 826 | |
827 | 827 | <select name="message-type-select" id="message-type-select"> |
828 | 828 | <option value=""></option> |
829 | | <option value="read"><?php _x('Read', 'Message dropdown filter', 'buddypress') ?></option> |
830 | | <option value="unread"><?php _x('Unread', 'Message dropdown filter', 'buddypress') ?></option> |
831 | | <option value="all"><?php _x('All', 'Message dropdown filter', 'buddypress') ?></option> |
| 829 | <option value="read"><?php _ex('Read', 'Message dropdown filter', 'buddypress') ?></option> |
| 830 | <option value="unread"><?php _ex('Unread', 'Message dropdown filter', 'buddypress') ?></option> |
| 831 | <option value="all"><?php _ex('All', 'Message dropdown filter', 'buddypress') ?></option> |
832 | 832 | </select> |
833 | 833 | |
834 | 834 | <?php if ( ! bp_is_current_action( 'sentbox' ) && bp_is_current_action( 'notices' ) ) : ?> |
835 | 835 | |
836 | | <a href="#" id="mark_as_read"><?php _x('Mark as Read', 'Message management markup', 'buddypress') ?></a> |
837 | | <a href="#" id="mark_as_unread"><?php _x('Mark as Unread', 'Message management markup', 'buddypress') ?></a> |
| 836 | <a href="#" id="mark_as_read"><?php _ex('Mark as Read', 'Message management markup', 'buddypress') ?></a> |
| 837 | <a href="#" id="mark_as_unread"><?php _ex('Mark as Unread', 'Message management markup', 'buddypress') ?></a> |
838 | 838 | |
839 | 839 | <?php endif; ?> |
840 | 840 | |
diff --git src/bp-notifications/bp-notifications-template.php src/bp-notifications/bp-notifications-template.php
index 53d5d5a..c309c5e 100644
|
|
function bp_the_notification_mark_unread_link() { |
792 | 792 | // Start the output buffer |
793 | 793 | ob_start(); ?> |
794 | 794 | |
795 | | <a href="<?php bp_the_notification_mark_unread_url(); ?>" class="mark-unread primary"><?php _x( 'Unread', 'Notification screen action', 'buddypress' ); ?></a> |
| 795 | <a href="<?php bp_the_notification_mark_unread_url(); ?>" class="mark-unread primary"><?php _ex( 'Unread', 'Notification screen action', 'buddypress' ); ?></a> |
796 | 796 | |
797 | 797 | <?php $retval = ob_get_clean(); |
798 | 798 | |