diff --git a/bijoe/templates/bijoe/cube.html b/bijoe/templates/bijoe/cube.html index 1d0bf28..01f6f2c 100644 --- a/bijoe/templates/bijoe/cube.html +++ b/bijoe/templates/bijoe/cube.html @@ -25,17 +25,17 @@ {% block content %}
{% csrf_token %} -

Représentation

+

{% trans "Presentation" %}

{% include "bijoe/field.html" with field=form.representation %} -

Mesure

+

{% trans "Measure" %}

{% include "bijoe/field.html" with field=form.measure %} -

Regroupement horizontal

+

{% trans "Group by - horizontally" %}

{% include "bijoe/field.html" with field=form.drilldown_x %} -

Regroupement vertical

+

{% trans "Group by - vertically" %}

{% include "bijoe/field.html" with field=form.drilldown_y %} -

Répétition

+

{% trans "Loop" %}

{% include "bijoe/field.html" with field=form.loop %} -

Filtre(s)

+

{% trans "Filter(s)" %}

{% for field in form %} {% if not field.is_hidden and field.name != "loop" and field.name != "measure" and field.name != "drilldown_x" and field.name != "drilldown_y" and field.name != "representation" %} {% include "bijoe/filter_field.html" with field=field %} @@ -43,7 +43,7 @@ {% endfor %} {% block buttons %} - + {% endblock %}
{% if cube.warnings %} diff --git a/bijoe/templates/bijoe/unauthorized.html b/bijoe/templates/bijoe/unauthorized.html index 39d5f4a..1a202c8 100644 --- a/bijoe/templates/bijoe/unauthorized.html +++ b/bijoe/templates/bijoe/unauthorized.html @@ -2,7 +2,6 @@ {% block content %}

- You are not authorized to access this service, please ask your administrator for - access. + {% trans "You are not authorized to access this service, please ask your administrator for access." %}

{% endblock %} diff --git a/bijoe/visualization/forms.py b/bijoe/visualization/forms.py index 8cb7c3c..c6d47c2 100644 --- a/bijoe/visualization/forms.py +++ b/bijoe/visualization/forms.py @@ -207,12 +207,12 @@ class CubeForm(forms.Form): # group by self.base_fields['drilldown_x'] = forms.ChoiceField( - label=_('Group by horizontaly'), + label=_('Group by - horizontally'), choices=dimension_choices, required=False) self.base_fields['drilldown_y'] = forms.ChoiceField( - label=_('Group by vertically'), + label=_('Group by - vertically'), choices=dimension_choices, required=False)