Making WordPress.org


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

plugin-directory: Use sentence case for headings.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.