Skip to:
Content

bbPress.org

Changeset 7386


Ignore:
Timestamp:
12/27/2025 02:18:47 AM (8 months ago)
Author:
johnjamesjacoby
Message:

Admin - Metaboxes: Enshorten metabox titles.

This commit ensures that metabox titles do not break onto 2 lines of text now that show_in_rest is true and the new editor UI is being used.

See #3603.

In trunk, for 2.7.

Location:
trunk/src/includes
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/forums.php

    r7382 r7386  
    233233                add_meta_box(
    234234                        'bbp_forum_attributes',
    235                         esc_html__( 'Forum Attributes', 'bbpress' ),
     235                        esc_html__( 'Attributes', 'bbpress' ),
    236236                        'bbp_forum_metabox',
    237237                        $this->post_type,
     
    256256                add_meta_box(
    257257                        'bbp_moderator_assignment_metabox',
    258                         esc_html__( 'Forum Moderators', 'bbpress' ),
     258                        esc_html__( 'Moderators', 'bbpress' ),
    259259                        'bbp_moderator_assignment_metabox',
    260260                        $this->post_type,
  • trunk/src/includes/admin/replies.php

    r7382 r7386  
    363363                add_meta_box(
    364364                        'bbp_reply_attributes',
    365                         esc_html__( 'Reply Attributes', 'bbpress' ),
     365                        esc_html__( 'Attributes', 'bbpress' ),
    366366                        'bbp_reply_metabox',
    367367                        $this->post_type,
     
    388388                add_meta_box(
    389389                        'bbp_author_metabox',
    390                         esc_html__( 'Author Information', 'bbpress' ),
     390                        esc_html__( 'Author', 'bbpress' ),
    391391                        'bbp_author_metabox',
    392392                        $this->post_type,
  • trunk/src/includes/admin/topics.php

    r7382 r7386  
    368368                add_meta_box(
    369369                        'bbp_topic_attributes',
    370                         esc_html__( 'Topic Attributes', 'bbpress' ),
     370                        esc_html__( 'Attributes', 'bbpress' ),
    371371                        'bbp_topic_metabox',
    372372                        $this->post_type,
     
    391391                add_meta_box(
    392392                        'bbp_author_metabox',
    393                         esc_html__( 'Author Information', 'bbpress' ),
     393                        esc_html__( 'Author', 'bbpress' ),
    394394                        'bbp_author_metabox',
    395395                        $this->post_type,
  • trunk/src/includes/extend/akismet.php

    r7382 r7386  
    957957                add_meta_box(
    958958                        'bbp_akismet_topic_history',
    959                         __( 'Akismet History', 'bbpress' ),
     959                        __( 'History', 'bbpress' ),
    960960                        array( $this, 'history_metabox' ),
    961961                        bbp_get_topic_post_type(),
     
    967967                add_meta_box(
    968968                        'bbp_akismet_reply_history',
    969                         __( 'Akismet History', 'bbpress' ),
     969                        __( 'History', 'bbpress' ),
    970970                        array( $this, 'history_metabox' ),
    971971                        bbp_get_reply_post_type(),
  • trunk/src/includes/extend/buddypress/groups.php

    r7380 r7386  
    640640                add_meta_box(
    641641                        'bbpress_group_admin_ui_meta_box',
    642                         _x( 'Discussion Forum', 'group admin edit screen', 'bbpress' ),
     642                        esc_html_x( 'Forum', 'group admin edit screen', 'bbpress' ),
    643643                        array( $this, 'group_admin_ui_display_metabox' ),
    644644                        get_current_screen()->id,
Note: See TracChangeset for help on using the changeset viewer.