Changeset 13766 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets/class-categorization.php
- Timestamp:
- 06/04/2024 12:54:09 AM (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets/class-categorization.php
r12337 r13766 33 33 if ( has_term( 'commercial', 'plugin_business_model', $post ) ) { 34 34 $model_type = 'commercial'; 35 $title = __( 'Commercial Plugin', 'wporg-plugins' );35 $title = __( 'Commercial plugin', 'wporg-plugins' ); 36 36 $url = get_post_meta( $post->ID, 'external_support_url', true ); 37 37 $link_text = __( 'Support', 'wporg-plugins' ); … … 40 40 elseif ( has_term( 'community', 'plugin_business_model', $post ) ) { 41 41 $model_type = 'community'; 42 $title = __( 'Community Plugin', 'wporg-plugins' );42 $title = __( 'Community plugin', 'wporg-plugins' ); 43 43 $url = get_post_meta( $post->ID, 'external_repository_url', true ); 44 44 $link_text = __( 'Contribute', 'wporg-plugins' );
Note: See TracChangeset
for help on using the changeset viewer.