Changeset 13751 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets/class-meta.php
- Timestamp:
- 05/28/2024 01:25:21 AM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets/class-meta.php
r13617 r13751 53 53 printf( 54 54 /* translators: %s: version number */ 55 __( 'Version :%s', 'wporg-plugins' ),55 __( 'Version %s', 'wporg-plugins' ), 56 56 '<strong>' . esc_html( get_post_meta( $post->ID, 'version', true ) ) . '</strong>' 57 57 ); … … 70 70 printf( 71 71 /* translators: %s: time since the last update */ 72 __( 'Last updated :%s', 'wporg-plugins' ),72 __( 'Last updated %s', 'wporg-plugins' ), 73 73 /* translators: %s: time since the last update */ 74 74 '<strong>' . wp_kses( sprintf( __( '%s ago', 'wporg-plugins' ), '<span>' . human_time_diff( $modified_time ) . '</span>' ), array( 'span' => true ) ) . '</strong>' … … 80 80 printf( 81 81 /* translators: %s: active installations count */ 82 __( 'Active installations :%s', 'wporg-plugins' ),82 __( 'Active installations %s', 'wporg-plugins' ), 83 83 '<strong>' . esc_html( Template::active_installs( false ) ) . '</strong>' 84 84 ); … … 88 88 <?php if ( $requires = (string) get_post_meta( $post->ID, 'requires', true ) ) : ?> 89 89 <li> 90 <?php esc_html_e( 'WordPress Version:', 'wporg-plugins' ); ?>90 <?php esc_html_e( 'WordPress version', 'wporg-plugins' ); ?> 91 91 <strong> 92 92 <?php … … 106 106 printf( 107 107 /* translators: %s: version number */ 108 __( 'Tested up to :%s', 'wporg-plugins' ),108 __( 'Tested up to %s', 'wporg-plugins' ), 109 109 '<strong>' . esc_html( $tested_up_to ) . '</strong>' 110 110 ); … … 115 115 <?php if ( $requires_php = (string) get_post_meta( $post->ID, 'requires_php', true ) ) : ?> 116 116 <li> 117 <?php esc_html_e( 'PHP Version:', 'wporg-plugins' ); ?>117 <?php esc_html_e( 'PHP version', 'wporg-plugins' ); ?> 118 118 <strong> 119 119 <?php … … 136 136 <?php 137 137 if ( 1 === $available_languages_count ) { 138 esc_html_e( 'Language :', 'wporg-plugins' );138 esc_html_e( 'Language', 'wporg-plugins' ); 139 139 } else { 140 esc_html_e( 'Languages :', 'wporg-plugins' );140 esc_html_e( 'Languages', 'wporg-plugins' ); 141 141 } 142 142 … … 209 209 printf( 210 210 /* translators: %s: tag list */ 211 _n( 'Tag : %s', 'Tags:%s', count( $term_links ), 'wporg-plugins' ),211 _n( 'Tag %s', 'Tags %s', count( $term_links ), 'wporg-plugins' ), 212 212 '<div class="tags">' . implode( $term_links ) . '</div>' 213 213 );
Note: See TracChangeset
for help on using the changeset viewer.