Skip to:
Content

BuddyPress.org

Changeset 10562


Ignore:
Timestamp:
02/08/2016 05:18:31 PM (9 years ago)
Author:
imath
Message:

Make sure text domain definitions are consistent in template files.

Props Jonnyauk

Fixes #6764

Location:
trunk/src
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-groups/bp-groups-template.php

    r10531 r10562  
    478478
    479479    if ( 'public' == $group->status ) {
    480         $type = __( "Public Group", "buddypress" );
     480        $type = __( "Public Group", 'buddypress' );
    481481    } elseif ( 'hidden' == $group->status ) {
    482         $type = __( "Hidden Group", "buddypress" );
     482        $type = __( "Hidden Group", 'buddypress' );
    483483    } elseif ( 'private' == $group->status ) {
    484         $type = __( "Private Group", "buddypress" );
     484        $type = __( "Private Group", 'buddypress' );
    485485    } else {
    486486        $type = ucwords( $group->status ) . ' ' . __( 'Group', 'buddypress' );
  • trunk/src/bp-templates/bp-legacy/buddypress/groups/single/admin.php

    r10487 r10562  
    314314
    315315    <div class="bp-widget">
    316         <h4><?php _e("Members", "buddypress"); ?></h4>
     316        <h4><?php _e( "Members", 'buddypress' ); ?></h4>
    317317
    318318        <?php if ( bp_group_has_members( 'per_page=15&exclude_banned=0' ) ) : ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/groups/single/request-membership.php

    r10181 r10562  
    1515
    1616<?php if ( !bp_group_has_requested_membership() ) : ?>
    17     <p><?php printf( __( "You are requesting to become a member of the group '%s'.", "buddypress" ), bp_get_group_name( false ) ); ?></p>
     17    <p><?php printf( __( "You are requesting to become a member of the group '%s'.", 'buddypress' ), bp_get_group_name( false ) ); ?></p>
    1818
    1919    <form action="<?php bp_group_form_action('request-membership' ); ?>" method="post" name="request-membership-form" id="request-membership-form" class="standard-form">
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/compose.php

    r10181 r10562  
    2828
    2929    <?php if ( bp_current_user_can( 'bp_moderate' ) ) : ?>
    30         <p><label for="send-notice"><input type="checkbox" id="send-notice" name="send-notice" value="1" /> <?php _e( "This is a notice to all users.", "buddypress" ); ?></label></p>
     30        <p><label for="send-notice"><input type="checkbox" id="send-notice" name="send-notice" value="1" /> <?php _e( "This is a notice to all users.", 'buddypress' ); ?></label></p>
    3131    <?php endif; ?>
    3232
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php

    r10250 r10562  
    102102
    103103                        <td class="thread-info">
    104                             <p><a href="<?php bp_message_thread_view_link(); ?>" title="<?php esc_attr_e( "View Message", "buddypress" ); ?>"><?php bp_message_thread_subject(); ?></a></p>
     104                            <p><a href="<?php bp_message_thread_view_link(); ?>" title="<?php esc_attr_e( "View Message", 'buddypress' ); ?>"><?php bp_message_thread_subject(); ?></a></p>
    105105                            <p class="thread-excerpt"><?php bp_message_thread_excerpt(); ?></p>
    106106                        </td>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/notices-loop.php

    r10181 r10562  
    7575                <td width="10%">
    7676                    <a class="button" href="<?php bp_message_activate_deactivate_link(); ?>" class="confirm"><?php bp_message_activate_deactivate_text(); ?></a>
    77                     <a class="button" href="<?php bp_message_notice_delete_link(); ?>" class="confirm" title="<?php esc_attr_e( "Delete Message", "buddypress" ); ?>">x</a>
     77                    <a class="button" href="<?php bp_message_notice_delete_link(); ?>" class="confirm" title="<?php esc_attr_e( "Delete Message", 'buddypress' ); ?>">x</a>
    7878                </td>
    7979            </tr>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/single.php

    r10181 r10562  
    4242            </span>
    4343
    44             <a class="button confirm" href="<?php bp_the_thread_delete_link(); ?>" title="<?php esc_attr_e( "Delete Conversation", "buddypress" ); ?>"><?php _e( 'Delete', 'buddypress' ); ?></a>
     44            <a class="button confirm" href="<?php bp_the_thread_delete_link(); ?>" title="<?php esc_attr_e( "Delete Conversation", 'buddypress' ); ?>"><?php _e( 'Delete', 'buddypress' ); ?></a>
    4545        </p>
    4646
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile/edit.php

    r10272 r10562  
    2424        do_action( 'bp_before_profile_field_content' ); ?>
    2525
    26         <h4><?php printf( __( "Editing '%s' Profile Group", "buddypress" ), bp_get_the_profile_group_name() ); ?></h4>
     26        <h4><?php printf( __( "Editing '%s' Profile Group", 'buddypress' ), bp_get_the_profile_group_name() ); ?></h4>
    2727
    2828        <?php if ( bp_profile_has_multiple_groups() ) : ?>
Note: See TracChangeset for help on using the changeset viewer.