Skip to:
Content

bbPress.org

Changeset 4100


Ignore:
Timestamp:
07/20/2012 11:08:13 PM (11 years ago)
Author:
johnjamesjacoby
Message:

Settings:

  • Remove redundant "Allow" verbiage.
  • Fix punctuation.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-admin/bbp-settings.php

    r4099 r4100  
    9595            // Allow topic and reply revisions
    9696            '_bbp_allow_revisions' => array(
    97                 'title'             => __( 'Allow Revisions', 'bbpress' ),
     97                'title'             => __( 'Revisions', 'bbpress' ),
    9898                'callback'          => 'bbp_admin_setting_callback_revisions',
    9999                'sanitize_callback' => 'intval',
     
    103103            // Allow favorites setting
    104104            '_bbp_enable_favorites' => array(
    105                 'title'             => __( 'Allow Favorites', 'bbpress' ),
     105                'title'             => __( 'Favorites', 'bbpress' ),
    106106                'callback'          => 'bbp_admin_setting_callback_favorites',
    107107                'sanitize_callback' => 'intval',
     
    111111            // Allow subscriptions setting
    112112            '_bbp_enable_subscriptions' => array(
    113                 'title'             => __( 'Allow Subscriptions', 'bbpress' ),
     113                'title'             => __( 'Subscriptions', 'bbpress' ),
    114114                'callback'          => 'bbp_admin_setting_callback_subscriptions',
    115115                'sanitize_callback' => 'intval',
     
    119119            // Allow topic tags
    120120            '_bbp_allow_topic_tags' => array(
    121                 'title'             => __( 'Allow Topic Tags', 'bbpress' ),
     121                'title'             => __( 'Topic Tags', 'bbpress' ),
    122122                'callback'          => 'bbp_admin_setting_callback_topic_tags',
    123123                'sanitize_callback' => 'intval',
     
    127127            // Allow anonymous posting setting
    128128            '_bbp_allow_anonymous' => array(
    129                 'title'             => __( 'Allow Anonymous Posting', 'bbpress' ),
     129                'title'             => __( 'Anonymous Posting', 'bbpress' ),
    130130                'callback'          => 'bbp_admin_setting_callback_anonymous',
    131131                'sanitize_callback' => 'intval',
     
    135135            // Allow global access (on multisite)
    136136            '_bbp_allow_global_access' => array(
    137                 'title'             => __( 'Allow Global Access', 'bbpress' ),
     137                'title'             => __( 'Global Access', 'bbpress' ),
    138138                'callback'          => 'bbp_admin_setting_callback_global_access',
    139139                'sanitize_callback' => 'intval',
     
    488488
    489489    <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 installation to 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>
    491491
    492492<?php
     
    568568
    569569    <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>
    571571
    572572<?php
Note: See TracChangeset for help on using the changeset viewer.