Making WordPress.org

Ticket #2588: 2588.patch

File 2588.patch, 1.6 KB (added by SergeyBiryukov, 8 years ago)
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/wp-i18n-teams/views/locale-details.php

     
    8383<h2><?php printf( __( 'General Translation Editors (%s)', 'wporg' ), number_format_i18n( count( $locale_data['validators'] ) ) ); ?></h2>
    8484
    8585<?php if ( empty( $locale_data['validators'] ) ) : ?>
    86         <p><?php printf( __( '%s does not have any validators yet.', 'wporg' ), $locale->english_name ); ?></p>
     86        <p><?php
     87                /* translators: %s: language name in English */
     88                printf( __( '%s does not have General or Project translation editors yet.', 'wporg' ), $locale->english_name );
     89        ?></p>
    8790<?php else : ?>
    8891        <ul class="validators">
    8992                <?php foreach ( $locale_data['validators'] as $validator ) :
     
    146149<?php endif; ?>
    147150
    148151<p class="alert alert-info" role="alert">
    149         <a href="https://translate.wordpress.org/locale/<?php echo esc_attr( $locale->slug ); ?>">
    150                 <?php printf( __( 'Become a translator yourself, check if %s needs some help!', 'wporg' ), $locale->english_name ); ?>
    151         </a>
     152        <a href="https://translate.wordpress.org/locale/<?php echo esc_attr( $locale->slug ); ?>"><?php
     153                /* translators: %s: language name in English */
     154                printf( __( 'Is this a language that you speak? Join the WordPress translation team for %s!', 'wporg' ), $locale->english_name );
     155        ?></a>
    152156</p>