Making WordPress.org

Changeset 5160


Ignore:
Timestamp:
03/21/2017 07:47:10 PM (8 years ago)
Author:
coffee2code
Message:

WP i18n teams: Change text on translation team pages.

  • Replace "validators" with "General and Project translation editors"
  • Replace all of the getting involved link text

Props SergeyBiryukov, petya.
Fixes #2588.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/wp-i18n-teams/views/locale-details.php

    r4430 r5160  
    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">
     
    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>
Note: See TracChangeset for help on using the changeset viewer.