Ticket #2588: 2588.patch
File 2588.patch, 1.6 KB (added by , 8 years ago) |
---|
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/wp-i18n-teams/views/locale-details.php
83 83 <h2><?php printf( __( 'General Translation Editors (%s)', 'wporg' ), number_format_i18n( count( $locale_data['validators'] ) ) ); ?></h2> 84 84 85 85 <?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> 87 90 <?php else : ?> 88 91 <ul class="validators"> 89 92 <?php foreach ( $locale_data['validators'] as $validator ) : … … 146 149 <?php endif; ?> 147 150 148 151 <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> 152 156 </p>