Skip to:
Content

BuddyPress.org

Changeset 9657


Ignore:
Timestamp:
03/29/2015 04:23:53 AM (10 years ago)
Author:
johnjamesjacoby
Message:

XProfile: Tweak admin-area field visibility verbiage to prevent long strings from wrapping around radio buttons.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-xprofile/classes/class-bp-xprofile-field.php

    r9634 r9657  
    488488                                    <h3><label for="default-visibility"><?php _e( 'Default Visibility', 'buddypress' ); ?></label></h3>
    489489                                    <div class="inside">
     490                                        <p><?php esc_html_e( 'Data in this field is visible to:', 'buddypress' ); ?></p>
    490491                                        <ul>
    491492
     
    504505
    505506                                <div class="postbox">
    506                                     <h3><label for="allow-custom-visibility"><?php _e( 'Per-Member Visibility', 'buddypress' ); ?></label></h3>
     507                                    <h3><label for="allow-custom-visibility"><?php _e( 'Visibility Override', 'buddypress' ); ?></label></h3>
    507508                                    <div class="inside">
    508509                                        <ul>
    509510                                            <li>
    510511                                                <input type="radio" id="allow-custom-visibility-allowed" name="allow-custom-visibility" value="allowed" <?php checked( $this->allow_custom_visibility, 'allowed' ); ?> />
    511                                                 <label for="allow-custom-visibility-allowed"><?php _e( "Let members change this field's visibility", 'buddypress' ); ?></label>
     512                                                <label for="allow-custom-visibility-allowed"><?php _e( "Members can modify", 'buddypress' ); ?></label>
    512513                                            </li>
    513514                                            <li>
    514515                                                <input type="radio" id="allow-custom-visibility-disabled" name="allow-custom-visibility" value="disabled" <?php checked( $this->allow_custom_visibility, 'disabled' ); ?> />
    515                                                 <label for="allow-custom-visibility-disabled"><?php _e( 'Enforce the default visibility for all members', 'buddypress' ); ?></label>
     516                                                <label for="allow-custom-visibility-disabled"><?php _e( 'Members cannot modify', 'buddypress' ); ?></label>
    516517                                            </li>
    517518                                        </ul>
Note: See TracChangeset for help on using the changeset viewer.