Making WordPress.org

Changeset 13766


Ignore:
Timestamp:
06/04/2024 12:54:09 AM (21 months ago)
Author:
dufresnesteven
Message:

plugin-directory: Use sentence case for headings.

Fixes: https://github.com/WordPress/wordpress.org/issues/318

Location:
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/class-i18n.php

    r13444 r13766  
    8484
    8585        // Section terms.
    86         _x( 'Adopt Me', 'Plugin Section Name', 'wporg-plugins' );
    87         _x( 'Beta Plugins', 'Plugin Section Name', 'wporg-plugins' );
    88         _x( 'Block-Enabled Plugins', 'Plugin Section Name', 'wporg-plugins' );
    89         _x( 'My Favorites', 'Plugin Section Name', 'wporg-plugins' );
    90         _x( 'Featured Plugins', 'Plugin Section Name', 'wporg-plugins' );
    91         _x( 'Popular Plugins', 'Plugin Section Name', 'wporg-plugins' );
     86        _x( 'Adopt me', 'Plugin Section Name', 'wporg-plugins' );
     87        _x( 'Beta plugins', 'Plugin Section Name', 'wporg-plugins' );
     88        _x( 'Block-Enabled plugins', 'Plugin Section Name', 'wporg-plugins' );
     89        _x( 'My favorites', 'Plugin Section Name', 'wporg-plugins' );
     90        _x( 'Featured plugins', 'Plugin Section Name', 'wporg-plugins' );
     91        _x( 'Popular plugins', 'Plugin Section Name', 'wporg-plugins' );
    9292        /* translators: Block plugins are single-block plugins, not block-enabled plugins. */
    93         _x( 'Block Plugins', 'Plugin Section Name', 'wporg-plugins' );
    94         _x( 'New Plugins', 'Plugin Section Name', 'wporg-plugins' );
    95         _x( 'Recently Updated Plugins', 'Plugin Section Name', 'wporg-plugins' );
    96         _x( 'Preview-Enabled Plugins', 'Plugin Section Name', 'wporg-plugins' );
     93        _x( 'Block plugins', 'Plugin Section Name', 'wporg-plugins' );
     94        _x( 'New plugins', 'Plugin Section Name', 'wporg-plugins' );
     95        _x( 'Recently updated plugins', 'Plugin Section Name', 'wporg-plugins' );
     96        _x( 'Preview-Enabled plugins', 'Plugin Section Name', 'wporg-plugins' );
    9797
    9898        // Section descriptions.
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets/class-categorization.php

    r12337 r13766  
    3333        if ( has_term( 'commercial', 'plugin_business_model', $post ) ) {
    3434            $model_type  = 'commercial';
    35             $title       = __( 'Commercial Plugin', 'wporg-plugins' );
     35            $title       = __( 'Commercial plugin', 'wporg-plugins' );
    3636            $url         = get_post_meta( $post->ID, 'external_support_url', true );
    3737            $link_text   = __( 'Support', 'wporg-plugins' );
     
    4040        elseif ( has_term( 'community', 'plugin_business_model', $post ) ) {
    4141            $model_type  = 'community';
    42             $title       = __( 'Community Plugin', 'wporg-plugins' );
     42            $title       = __( 'Community plugin', 'wporg-plugins' );
    4343            $url         = get_post_meta( $post->ID, 'external_repository_url', true );
    4444            $link_text   = __( 'Contribute', 'wporg-plugins' );
Note: See TracChangeset for help on using the changeset viewer.