Making WordPress.org

Ticket #1202: meta-1202.links-to-projects.patch

File meta-1202.links-to-projects.patch, 1.5 KB (added by SergeyBiryukov, 9 years ago)
  • sites/trunk/translate.wordpress.org/public_html/gp-templates/stats-overview.php

     
    5151                                // Variants (de/formal for example) don't have GP_Locales in this context
    5252                        ?>
    5353                                <tr>
    54                                         <th title="<?php echo esc_attr( $gp_locale->english_name ?: $locale_slug ); ?>"><?php echo esc_html( $gp_locale->wp_locale ?: $locale_slug ); ?></th>
     54                                        <th title="<?php echo esc_attr( $gp_locale->english_name ?: $locale_slug ); ?>">
     55                                                <a href="https://translate.wordpress.org/locale/<?php echo $locale_slug; ?>">
     56                                                        <?php echo esc_html( $gp_locale->wp_locale ?: $locale_slug ); ?>
     57                                                </a>
     58                                        </th>
    5559                                        <?php foreach ( $projects as $slug => $project ) :
    5660                                                if ( isset( $translation_locale_statuses[ $locale_slug ][ $project->path ] ) ) {
    5761                                                        $percent = $translation_locale_statuses[ $locale_slug ][ $project->path ];
    58                                                         $percent = '<span style="color:' . get_rgb_for_percent( $percent ) . '">' . $percent . '%</span>';
    59 
     62                                                        $percent = sprintf( '<a href="%s"><span style="color: %s">%s%%</span></a>',
     63                                                                'https://translate.wordpress.org/locale/' . $locale_slug . '/' . $project->path,
     64                                                                get_rgb_for_percent( $percent ),
     65                                                                $percent
     66                                                        );
    6067                                                } else {
    6168                                                        $percent = '<span class="none">&mdash;</span>';
    6269                                                }