Skip to:
Content

BuddyPress.org

Changeset 7720


Ignore:
Timestamp:
12/30/2013 09:41:05 PM (11 years ago)
Author:
djpaul
Message:

Add textdomain to gettext calls that don't have the textdomain set.

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core/admin/bp-core-functions.php

    r7719 r7720  
    442442            $screen->add_help_tab( array(
    443443                'id'      => 'bp-comp-overview',
    444                 'title'   => __( 'Overview' ),
     444                'title'   => __( 'Overview', 'buddypress' ),
    445445                'content' => bp_core_add_contextual_help_content( 'bp-comp-overview' ),
    446446            ) );
     
    460460            $screen->add_help_tab( array(
    461461                'id' => 'bp-page-overview',
    462                 'title' => __( 'Overview' ),
     462                'title' => __( 'Overview', 'buddypress' ),
    463463                'content' => bp_core_add_contextual_help_content( 'bp-page-overview' ),
    464464            ) );
     
    479479            $screen->add_help_tab( array(
    480480                'id'      => 'bp-settings-overview',
    481                 'title'   => __( 'Overview' ),
     481                'title'   => __( 'Overview', 'buddypress' ),
    482482                'content' => bp_core_add_contextual_help_content( 'bp-settings-overview' ),
    483483            ) );
     
    498498            $screen->add_help_tab( array(
    499499                'id'      => 'bp-profile-overview',
    500                 'title'   => __( 'Overview' ),
     500                'title'   => __( 'Overview', 'buddypress' ),
    501501                'content' => bp_core_add_contextual_help_content( 'bp-profile-overview' ),
    502502            ) );
     
    746746        <p class="button-controls">
    747747            <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" />
    749749                <span class="spinner"></span>
    750750            </span>
  • trunk/bp-core/bp-core-adminbar.php

    r7433 r7720  
    3434            'parent'    => 'my-account',
    3535            'id'        => 'my-account-buddypress',
    36             'title'     => __( 'My Account' ),
     36            'title'     => __( 'My Account', 'buddypress' ),
    3737            'group'     => true,
    3838            'meta'      => array(
  • trunk/bp-core/deprecated/1.5.php

    r7243 r7720  
    140140
    141141<div class="bp-widget wp-profile">
    142     <h4><?php _e( 'My Profile' ) ?></h4>
     142    <h4><?php _e( 'My Profile', 'buddypress' ) ?></h4>
    143143
    144144    <table class="wp-profile-fields">
  • trunk/bp-groups/bp-groups-admin.php

    r7582 r7720  
    928928        'base'      => add_query_arg( $qs_key, '%#%', $url_base ),
    929929        'format'    => '',
    930         'prev_text' => __( '&laquo;' ),
    931         'next_text' => __( '&raquo;' ),
     930        'prev_text' => __( '&laquo;', 'buddypress' ),
     931        'next_text' => __( '&raquo;', 'buddypress' ),
    932932        'total'     => ceil( $query->total_users / $per_page ),
    933933        'current'   => $page,
     
    10041004        $return[] = array(
    10051005            /* 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 ),
    10071007            'value' => $user->user_nicename,
    10081008        );
  • trunk/bp-groups/bp-groups-screens.php

    r7624 r7720  
    650650
    651651        if ( !bp_core_avatar_handle_crop( $args ) ) {
    652             bp_core_add_message( __( 'There was a problem cropping the avatar.', '       buddypress' ), 'error' );
     652            bp_core_add_message( __( 'There was a problem cropping the avatar.', 'buddypress' ), 'error' );
    653653        } 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' ) );
    655655        }
    656656    }
Note: See TracChangeset for help on using the changeset viewer.