Skip to:
Content

BuddyPress.org

Ticket #6759: 6759-options.patch

File 6759-options.patch, 1.7 KB (added by mercime, 10 years ago)
  • src/bp-core/admin/bp-core-admin-functions.php

     
    429429                ),
    430430                '2' => array(
    431431                        'href' => bp_get_admin_url( add_query_arg( array( 'page' => 'bp-settings' ), 'admin.php' ) ),
    432                         'name' => __( 'Settings', 'buddypress' )
     432                        'name' => __( 'Options', 'buddypress' )
    433433                ),
    434434        );
    435435
  • src/bp-core/admin/bp-core-admin-settings.php

     
    279279
    280280                <h1><?php _e( 'BuddyPress Settings', 'buddypress' ); ?> </h1>
    281281
    282                 <h2 class="nav-tab-wrapper"><?php bp_core_admin_tabs( __( 'Settings', 'buddypress' ) ); ?></h2>
     282                <h2 class="nav-tab-wrapper"><?php bp_core_admin_tabs( __( 'Options', 'buddypress' ) ); ?></h2>
    283283
    284284                <form action="<?php echo esc_url( $form_action ) ?>" method="post">
    285285
  • src/bp-core/classes/class-bp-admin.php

     
    263263
    264264                $hooks[] = add_submenu_page(
    265265                        $this->settings_page,
    266                         __( 'BuddyPress Settings', 'buddypress' ),
    267                         __( 'BuddyPress Settings', 'buddypress' ),
     266                        __( 'BuddyPress Options', 'buddypress' ),
     267                        __( 'BuddyPress Options', 'buddypress' ),
    268268                        $this->capability,
    269269                        'bp-settings',
    270270                        'bp_core_admin_settings'