Changeset 30233 in osm for applications/editors/josm/i18n


Ignore:
Timestamp:
2014-01-26T23:44:32+01:00 (11 years ago)
Author:
stoecker
Message:

josm i18n update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/i18n/launchpad.pl

    r30229 r30233  
    427427    }
    428428  }
    429   for my $code (sort {$results{$b}{TOTAL} <=> $results{$a}{TOTAL}} keys %results)
     429  for my $code (sort {($results{$b}{TOTAL}||0) <=> ($results{$a}{TOTAL}||0)} keys %results)
    430430  {
     431    next if !$results{$code}{TOTAL};
    431432    print FILE "$results{$code}{NAME}:$results{$code}{TOTAL}";
    432433    printf "%5d - %-50s",$results{$code}{TOTAL}, $results{$code}{NAME};
Note: See TracChangeset for help on using the changeset viewer.