Commit 105876e8b00577bc75bc09b986837aaf0e7838d0
Committed by
Rafael Manzo
1 parent
8ebd1e0f
Exists in
colab
and in
4 other branches
Translation for Count aggregation form
Signed off by: Heitor Reis <marcheing@gmail.com>
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/helpers/metric_configurations_helper.rb
1 | 1 | module MetricConfigurationsHelper |
2 | 2 | def aggregation_options |
3 | - [[t("aggregation_forms.AVERAGE"),"AVERAGE"], [t("aggregation_forms.MEDIAN"), "MEDIAN"], [t("aggregation_forms.MAXIMUM"), "MAXIMUM"], [t("aggregation_forms.MINIMUM"), "MINIMUM"], [t("aggregation_forms.STANDARD_DEVIATION"), "STANDARD_DEVIATION"], ["Count", "COUNT"]] | |
3 | + [[t("aggregation_forms.AVERAGE"),"AVERAGE"], [t("aggregation_forms.MEDIAN"), "MEDIAN"], [t("aggregation_forms.MAXIMUM"), "MAXIMUM"], [t("aggregation_forms.MINIMUM"), "MINIMUM"], [t("aggregation_forms.STANDARD_DEVIATION"), "STANDARD_DEVIATION"], [t("aggregation_forms.COUNT"), "COUNT"]] | |
4 | 4 | end |
5 | 5 | |
6 | 6 | def reading_group_options | ... | ... |