Changeset 4100
- Timestamp:
- 07/20/2012 11:08:13 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-admin/bbp-settings.php
r4099 r4100 95 95 // Allow topic and reply revisions 96 96 '_bbp_allow_revisions' => array( 97 'title' => __( ' AllowRevisions', 'bbpress' ),97 'title' => __( 'Revisions', 'bbpress' ), 98 98 'callback' => 'bbp_admin_setting_callback_revisions', 99 99 'sanitize_callback' => 'intval', … … 103 103 // Allow favorites setting 104 104 '_bbp_enable_favorites' => array( 105 'title' => __( ' AllowFavorites', 'bbpress' ),105 'title' => __( 'Favorites', 'bbpress' ), 106 106 'callback' => 'bbp_admin_setting_callback_favorites', 107 107 'sanitize_callback' => 'intval', … … 111 111 // Allow subscriptions setting 112 112 '_bbp_enable_subscriptions' => array( 113 'title' => __( ' AllowSubscriptions', 'bbpress' ),113 'title' => __( 'Subscriptions', 'bbpress' ), 114 114 'callback' => 'bbp_admin_setting_callback_subscriptions', 115 115 'sanitize_callback' => 'intval', … … 119 119 // Allow topic tags 120 120 '_bbp_allow_topic_tags' => array( 121 'title' => __( ' AllowTopic Tags', 'bbpress' ),121 'title' => __( 'Topic Tags', 'bbpress' ), 122 122 'callback' => 'bbp_admin_setting_callback_topic_tags', 123 123 'sanitize_callback' => 'intval', … … 127 127 // Allow anonymous posting setting 128 128 '_bbp_allow_anonymous' => array( 129 'title' => __( 'A llow Anonymous Posting', 'bbpress' ),129 'title' => __( 'Anonymous Posting', 'bbpress' ), 130 130 'callback' => 'bbp_admin_setting_callback_anonymous', 131 131 'sanitize_callback' => 'intval', … … 135 135 // Allow global access (on multisite) 136 136 '_bbp_allow_global_access' => array( 137 'title' => __( ' AllowGlobal Access', 'bbpress' ),137 'title' => __( 'Global Access', 'bbpress' ), 138 138 'callback' => 'bbp_admin_setting_callback_global_access', 139 139 'sanitize_callback' => 'intval', … … 488 488 489 489 <input id="_bbp_allow_global_access" name="_bbp_allow_global_access" type="checkbox" id="_bbp_allow_global_access" value="1" <?php checked( bbp_allow_global_access( false ) ); ?> /> 490 <label for="_bbp_allow_global_access"><?php _e( 'Allow all users of your multisite installationto create topics and replies', 'bbpress' ); ?></label>490 <label for="_bbp_allow_global_access"><?php _e( 'Allow all registered users to create topics and replies', 'bbpress' ); ?></label> 491 491 492 492 <?php … … 568 568 569 569 <input id="_bbp_use_autoembed" name="_bbp_use_autoembed" type="checkbox" id="_bbp_use_autoembed" value="1" <?php checked( bbp_use_autoembed( true ) ); ?> /> 570 <label for="_bbp_use_autoembed"><?php _e( 'Embed media (YouTube, Twitter, Flickr, etc...) directly into topics and replies .', 'bbpress' ); ?></label>570 <label for="_bbp_use_autoembed"><?php _e( 'Embed media (YouTube, Twitter, Flickr, etc...) directly into topics and replies', 'bbpress' ); ?></label> 571 571 572 572 <?php
Note: See TracChangeset
for help on using the changeset viewer.