Making WordPress.org

Changeset 2071


Ignore:
Timestamp:
11/10/2015 11:55:35 PM (9 years ago)
Author:
obenland
Message:

Translate: Update comment to reflect new ordering.

Props garyj.
See [2069] and [2065].

Location:
sites/trunk/translate.wordpress.org/includes/gp-plugins
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/translate.wordpress.org/includes/gp-plugins/wporg-routes/routes/wp-plugins.php

    r2069 r2071  
    6565        unset( $locale, $sets );
    6666
    67         // Sort by Percent Complete, secondly by Slug
     67        // Sort by translation completeness, least number of waiting strings, and locale slug.
    6868        uksort( $translation_locale_complete, function ( $a, $b ) use ( $translation_locale_complete, $translation_locale_statuses ) {
    6969            if ( $translation_locale_complete[ $a ] > $translation_locale_complete[ $b ] ) {
  • sites/trunk/translate.wordpress.org/includes/gp-plugins/wporg-stats-overview.php

    r2065 r2071  
    114114        }
    115115        unset( $locale, $sets );
    116        
    117         // Sort by Percent Complete, secondly by Slug
     116
     117        // Sort by translation completeness, least number of waiting strings, and locale slug.
    118118        uksort( $translation_locale_complete, function ( $a, $b ) use ( $translation_locale_complete, $translation_locale_statuses ) {
    119119            if ( $translation_locale_complete[ $a ] < $translation_locale_complete[ $b ] ) {
Note: See TracChangeset for help on using the changeset viewer.