Changeset 7720
- Timestamp:
- 12/30/2013 09:41:05 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/admin/bp-core-functions.php
r7719 r7720 442 442 $screen->add_help_tab( array( 443 443 'id' => 'bp-comp-overview', 444 'title' => __( 'Overview' ),444 'title' => __( 'Overview', 'buddypress' ), 445 445 'content' => bp_core_add_contextual_help_content( 'bp-comp-overview' ), 446 446 ) ); … … 460 460 $screen->add_help_tab( array( 461 461 'id' => 'bp-page-overview', 462 'title' => __( 'Overview' ),462 'title' => __( 'Overview', 'buddypress' ), 463 463 'content' => bp_core_add_contextual_help_content( 'bp-page-overview' ), 464 464 ) ); … … 479 479 $screen->add_help_tab( array( 480 480 'id' => 'bp-settings-overview', 481 'title' => __( 'Overview' ),481 'title' => __( 'Overview', 'buddypress' ), 482 482 'content' => bp_core_add_contextual_help_content( 'bp-settings-overview' ), 483 483 ) ); … … 498 498 $screen->add_help_tab( array( 499 499 'id' => 'bp-profile-overview', 500 'title' => __( 'Overview' ),500 'title' => __( 'Overview', 'buddypress' ), 501 501 'content' => bp_core_add_contextual_help_content( 'bp-profile-overview' ), 502 502 ) ); … … 746 746 <p class="button-controls"> 747 747 <span class="add-to-menu"> 748 <input type="submit"<?php wp_nav_menu_disabled_check( $nav_menu_selected_id ); ?> class="button-secondary submit-add-to-menu right" value="<?php esc_attr_e( 'Add to Menu' ); ?>" name="add-custom-menu-item" id="submit-buddypress-menu" />748 <input type="submit"<?php wp_nav_menu_disabled_check( $nav_menu_selected_id ); ?> class="button-secondary submit-add-to-menu right" value="<?php esc_attr_e( 'Add to Menu', 'buddypress' ); ?>" name="add-custom-menu-item" id="submit-buddypress-menu" /> 749 749 <span class="spinner"></span> 750 750 </span> -
trunk/bp-core/bp-core-adminbar.php
r7433 r7720 34 34 'parent' => 'my-account', 35 35 'id' => 'my-account-buddypress', 36 'title' => __( 'My Account' ),36 'title' => __( 'My Account', 'buddypress' ), 37 37 'group' => true, 38 38 'meta' => array( -
trunk/bp-core/deprecated/1.5.php
r7243 r7720 140 140 141 141 <div class="bp-widget wp-profile"> 142 <h4><?php _e( 'My Profile' ) ?></h4>142 <h4><?php _e( 'My Profile', 'buddypress' ) ?></h4> 143 143 144 144 <table class="wp-profile-fields"> -
trunk/bp-groups/bp-groups-admin.php
r7582 r7720 928 928 'base' => add_query_arg( $qs_key, '%#%', $url_base ), 929 929 'format' => '', 930 'prev_text' => __( '«' ),931 'next_text' => __( '»' ),930 'prev_text' => __( '«', 'buddypress' ), 931 'next_text' => __( '»', 'buddypress' ), 932 932 'total' => ceil( $query->total_users / $per_page ), 933 933 'current' => $page, … … 1004 1004 $return[] = array( 1005 1005 /* translators: 1: user_login, 2: user_email */ 1006 'label' => sprintf( __( '%1$s (%2$s)' ), bp_is_username_compatibility_mode() ? $user->user_login : $user->user_nicename, $user->user_email ),1006 'label' => sprintf( __( '%1$s (%2$s)', 'buddypress' ), bp_is_username_compatibility_mode() ? $user->user_login : $user->user_nicename, $user->user_email ), 1007 1007 'value' => $user->user_nicename, 1008 1008 ); -
trunk/bp-groups/bp-groups-screens.php
r7624 r7720 650 650 651 651 if ( !bp_core_avatar_handle_crop( $args ) ) { 652 bp_core_add_message( __( 'There was a problem cropping the avatar.', ' 652 bp_core_add_message( __( 'There was a problem cropping the avatar.', 'buddypress' ), 'error' ); 653 653 } else { 654 bp_core_add_message( __( 'The new group avatar was uploaded successfully.', 'buddypress' ) 654 bp_core_add_message( __( 'The new group avatar was uploaded successfully.', 'buddypress' ) ); 655 655 } 656 656 }
Note: See TracChangeset
for help on using the changeset viewer.