Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
02/11/2009 08:34:43 PM (16 years ago)
Author:
apeatling
Message:

Fixes #379

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-groups/bp-groups-templatetags.php

    r1052 r1063  
    860860                <?php endif; ?>
    861861           
    862                 <h3><?php _e('Privacy Options', 'buddypress'); ?></h3>
     862                <h3><?php _e( 'Privacy Options', 'buddypress' ); ?></h3>
    863863           
    864864                <div class="radio">
    865                     <label><input type="radio" name="group-status" value="public"<?php if ( 'public' == $group_obj->status ) { ?> checked="checked"<?php } ?> /> <strong><?php _e('This is an open group', 'buddypress') ?></strong><br /><?php _e('This group will be free to join and will appear in group search results.', 'buddypress'); ?></label>
    866                     <label><input type="radio" name="group-status" value="private"<?php if ( 'private' == $group_obj->status ) { ?> checked="checked"<?php } ?> /> <strong><?php _e('This is an private group', 'buddypress') ?></strong><br /><?php _e('This group will require an invite to join but will still appear in group search results.', 'buddypress'); ?></label>
    867                     <label><input type="radio" name="group-status" value="hidden"<?php if ( 'hidden' == $group_obj->status ) { ?> checked="checked"<?php } ?> /> <strong><?php _e('This is a hidden group', 'buddypress') ?></strong><br /><?php _e('This group will require an invite to join and will only be visible to invited members. It will not appear in search results or on member profiles.', 'buddypress'); ?></label>
     865                    <label><input type="radio" name="group-status" value="public"<?php if ( 'public' == $group_obj->status ) { ?> checked="checked"<?php } ?> />
     866                        <strong><?php _e( 'This is a public group', 'buddypress' ) ?></strong>
     867                        <ul>
     868                            <li><?php _e( 'Any site member can join this group.', 'buddypress' ) ?></li>
     869                            <li><?php _e( 'This group will be listed in the groups directory and in search results.', 'buddypress' ) ?></li>
     870                            <li><?php _e( 'Group content and activity will be visible to any site member.', 'buddypress' ) ?></li>
     871                        </ul>
     872                    </label>
     873                   
     874                    <label><input type="radio" name="group-status" value="private"<?php if ( 'private' == $group_obj->status ) { ?> checked="checked"<?php } ?> />
     875                        <strong><?php _e( 'This is a private group', 'buddypress' ) ?></strong>
     876                        <ul>
     877                            <li><?php _e( 'Only users who request membership and are accepted can join the group.', 'buddypress' ) ?></li>
     878                            <li><?php _e( 'This group will be listed in the groups directory and in search results.', 'buddypress' ) ?></li>
     879                            <li><?php _e( 'Group content and activity will only be visible to members of the group.', 'buddypress' ) ?></li>
     880                        </ul>
     881                    </label>
     882                   
     883                    <label><input type="radio" name="group-status" value="hidden"<?php if ( 'hidden' == $group_obj->status ) { ?> checked="checked"<?php } ?> />
     884                        <strong><?php _e('This is a hidden group', 'buddypress') ?></strong>
     885                        <ul>
     886                            <li><?php _e( 'Only users who are invited can join the group.', 'buddypress' ) ?></li>
     887                            <li><?php _e( 'This group will not be listed in the groups directory or search results.', 'buddypress' ) ?></li>
     888                            <li><?php _e( 'Group content and activity will only be visible to members of the group.', 'buddypress' ) ?></li>
     889                        </ul>
     890                    </label>
    868891                </div>
    869892
Note: See TracChangeset for help on using the changeset viewer.