Changeset 5868
- Timestamp:
- 07/17/2015 11:49:26 PM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/forums.php
r5835 r5868 220 220 '<li>' . __( '<strong>Status</strong> allows you to close a forum to new topics and forums.', 'bbpress' ) . '</li>' . 221 221 '<li>' . __( '<strong>Visibility</strong> lets you pick the scope of each forum and what users are allowed to access it.', 'bbpress' ) . '</li>' . 222 '<li>' . __( '<strong>Parent</strong> dropdown determines the parent forum. Select the forum or category from the dropdown, or leave the default (No Parent)to create the forum at the root of your forums.', 'bbpress' ) . '</li>' .222 '<li>' . __( '<strong>Parent</strong> dropdown determines the parent forum. Select the forum or category from the dropdown, or leave the default "No parent" to create the forum at the root of your forums.', 'bbpress' ) . '</li>' . 223 223 '<li>' . __( '<strong>Order</strong> allows you to order your forums numerically.', 'bbpress' ) . '</li>' . 224 224 '</ul>' -
trunk/src/includes/admin/metaboxes.php
r5850 r5868 357 357 'select_id' => 'parent_id', 358 358 'options_only' => false, 359 'show_none' => __( '— No parent—', 'bbpress' ),359 'show_none' => __( '— No forum —', 'bbpress' ), 360 360 'disable_categories' => false, 361 361 'disabled' => '' … … 511 511 'select_id' => 'bbp_forum_id', 512 512 'options_only' => false, 513 'show_none' => __( '— No parent—', 'bbpress' ),513 'show_none' => __( '— No reply —', 'bbpress' ), 514 514 'disable_categories' => current_user_can( 'edit_forums' ), 515 515 'disabled' => '' -
trunk/src/includes/admin/topics.php
r5850 r5868 227 227 '<p>' . __( 'Select the attributes that your topic should have:', 'bbpress' ) . '</p>' . 228 228 '<ul>' . 229 '<li>' . __( '<strong>Forum</strong> dropdown determines the parent forum that the topic belongs to. Select the forum or category from the dropdown, or leave the default (No Forum)to post the topic without an assigned forum.', 'bbpress' ) . '</li>' .229 '<li>' . __( '<strong>Forum</strong> dropdown determines the parent forum that the topic belongs to. Select the forum or category from the dropdown, or leave the default "No forum" to post the topic without an assigned forum.', 'bbpress' ) . '</li>' . 230 230 '<li>' . __( '<strong>Topic Type</strong> dropdown indicates the sticky status of the topic. Selecting the super sticky option would stick the topic to the front of your forums, i.e. the topic index, sticky option would stick the topic to its respective forum. Selecting normal would not stick the topic anywhere.', 'bbpress' ) . '</li>' . 231 231 '</ul>' … … 780 780 781 781 } else { 782 esc_html_e( ' (No Forum)', 'bbpress' );782 esc_html_e( '— No forum —', 'bbpress' ); 783 783 } 784 784 -
trunk/src/includes/common/template.php
r5829 r5868 1410 1410 * - tab: Deprecated. Tabindex value. False or integer 1411 1411 * - options_only: Show only <options>? No <select>? 1412 * - show_none: Boolean or String __( ' (No Forum)', 'bbpress' )1412 * - show_none: Boolean or String __( '— No Forum —', 'bbpress' ) 1413 1413 * - disable_categories: Disable forum categories and closed forums? 1414 1414 * Defaults to true. Only for forums and when -
trunk/src/includes/extend/buddypress/groups.php
r5829 r5868 295 295 bbp_dropdown( array( 296 296 'select_id' => 'bbp_group_forum_id', 297 'show_none' => __( ' (No Forum)', 'bbpress' ),297 'show_none' => __( '— No forum —', 'bbpress' ), 298 298 'selected' => $forum_id 299 299 ) ); -
trunk/src/templates/default/bbpress/form-forum.php
r5838 r5868 139 139 bbp_dropdown( array( 140 140 'select_id' => 'bbp_forum_parent_id', 141 'show_none' => esc_html__( ' (No Parent)', 'bbpress' ),141 'show_none' => esc_html__( '— No parent —', 'bbpress' ), 142 142 'selected' => bbp_get_form_forum_parent(), 143 143 'exclude' => bbp_get_forum_id() -
trunk/src/templates/default/bbpress/form-topic.php
r5829 r5868 120 120 <?php 121 121 bbp_dropdown( array( 122 'show_none' => esc_html__( ' (No Forum)', 'bbpress' ),122 'show_none' => esc_html__( '— No forum —', 'bbpress' ), 123 123 'selected' => bbp_get_form_topic_forum() 124 124 ) );
Note: See TracChangeset
for help on using the changeset viewer.