Making WordPress.org

Ticket #3574: 3574.diff

File 3574.diff, 1.3 KB (added by obenland, 6 years ago)
  • wp-content/plugins/plugin-directory/widgets/class-meta.php

     
    6262                        <?php if ( $requires = (string) get_post_meta( $post->ID, 'requires', true ) ) : ?>
    6363                                <li>
    6464                                <?php
    65                                 _e( 'Requires WordPress Version:', 'wporg-plugins' );
    66                                 echo '<strong>' . esc_html( $requires ) . '</strong>';
     65                                _e( 'WordPress Version:', 'wporg-plugins' );
     66                                printf(
     67                                        /* translators: Minimum version number required. */
     68                                        esc_html__( '%s or higher', 'wporg-plugins' ),
     69                                        '<strong>' . esc_html( $requires ) . '</strong>'
     70                                );
    6771                                ?>
    6872                                </li>
    6973                        <?php endif; ?>
     
    7579                        <?php if ( $requires_php = (string) get_post_meta( $post->ID, 'requires_php', true ) ) : ?>
    7680                                <li>
    7781                                <?php
    78                                 _e( 'Requires PHP Version:', 'wporg-plugins' );
    79                                 echo '<strong>' . esc_html( $requires_php ) . '</strong>';
     82                                _e( 'PHP Version:', 'wporg-plugins' );
     83                                printf(
     84                                        /* translators: Minimum version number required. */
     85                                        esc_html__( '%s or higher', 'wporg-plugins' ),
     86                                        '<strong>' . esc_html( $requires_php ) . '</strong>'
     87                                );
    8088                                ?>
    8189                                </li>
    8290                        <?php endif; ?>