Changeset 13766
- Timestamp:
- 06/04/2024 12:54:09 AM (21 months ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory
- Files:
-
- 2 edited
-
class-i18n.php (modified) (1 diff)
-
widgets/class-categorization.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/class-i18n.php
r13444 r13766 84 84 85 85 // 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' ); 92 92 /* 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' ); 97 97 98 98 // Section descriptions. -
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.