Changeset 5450 for trunk/bp-activity/bp-activity-admin.php
- Timestamp:
- 12/06/2011 04:40:38 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/bp-activity-admin.php
r5437 r5450 34 34 35 35 // Add our screen 36 $hook = add_menu_page( __( ' BuddyPress Activities', 'buddypress' ), __( 'Activities', 'buddypress' ), 'manage_options', 'bp-activity', 'bp_activity_admin' );36 $hook = add_menu_page( __( 'Activity', 'buddypress' ), __( 'Activity', 'buddypress' ), 'manage_options', 'bp-activity', 'bp_activity_admin' ); 37 37 38 38 // Hook into early actions to load custom CSS and our init handler. … … 176 176 177 177 // per_page screen option 178 add_screen_option( 'per_page', array( 'label' => _x( 'Activit ies', 'Activity items per page (screen options)', 'buddypress' )) );178 add_screen_option( 'per_page', array( 'label' => _x( 'Activity', 'Activity items per page (screen options)', 'buddypress' )) ); 179 179 180 180 // Help panel - overview text … … 190 190 get_current_screen()->add_help_tab( array( 191 191 'id' => 'bp-activity-moderating', 192 'title' => __( 'Moderating Activit ies', 'buddypress' ),192 'title' => __( 'Moderating Activity', 'buddypress' ), 193 193 'content' => 194 194 '<ul>' . … … 617 617 <h2> 618 618 <?php if ( !empty( $_REQUEST['aid'] ) ) : ?> 619 <?php printf( __( 'Activit iesrelated to ID #%s', 'buddypress' ), number_format_i18n( (int) $_REQUEST['aid'] ) ); ?>619 <?php printf( __( 'Activity related to ID #%s', 'buddypress' ), number_format_i18n( (int) $_REQUEST['aid'] ) ); ?> 620 620 <?php else : ?> 621 <?php _e( 'Activit ies', 'buddypress' ); ?>621 <?php _e( 'Activity', 'buddypress' ); ?> 622 622 <?php endif; ?> 623 623 … … 635 635 636 636 <form id="bp-activities-form" action="" method="get"> 637 <?php $bp_activity_list_table->search_box( __( 'Search Activities', 'buddypress' ), 'bp-activity' ); ?>637 <?php $bp_activity_list_table->search_box( __( 'Search all Activity', 'buddypress' ), 'bp-activity' ); ?> 638 638 <input type="hidden" name="page" value="<?php echo esc_attr( $plugin_page ); ?>" /> 639 639 <?php $bp_activity_list_table->display(); ?>
Note: See TracChangeset
for help on using the changeset viewer.