Unverified Commit 18bb069d authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

review: fix percentage locale

parent 3fa9df94
Loading
Loading
Loading
Loading
+2 −8
Original line number Diff line number Diff line
@@ -1375,18 +1375,12 @@ sub compute_review {
	$review{top_trip_count} = $top_trip_count;
	$review{top_trip_percent_h}
	  = sprintf( '%.1f%%', $top_trip_count * 100 / $stats->{num_trains} );
	$review{top_trip_percent_h} =~ tr{.}{,};

	$review{single_trip_count} = $single_trip_count;
	$review{single_trip_percent_h}
	  = sprintf( '%.1f%%', $single_trip_count * 100 / $stats->{num_trains} );

	if ( @stops >= 3 ) {
		my $desc = q{};
		$review{typical_stops_3} = [ $stops[0][0], $stops[1][0], $stops[2][0] ];
	}
	elsif ( @stops == 2 ) {
		$review{typical_stops_2} = [ $stops[0][0], $stops[1][0] ];
	}
	$review{single_trip_percent_h} =~ tr{.}{,};

	return \%review;
}