diff --git a/horizon/templates/horizon/common/_usage_summary.html b/horizon/templates/horizon/common/_usage_summary.html index 0dfe9e218f..ac0cb8ae5b 100644 --- a/horizon/templates/horizon/common/_usage_summary.html +++ b/horizon/templates/horizon/common/_usage_summary.html @@ -6,10 +6,11 @@

{% trans "Select a period of time to query its usage" %}:

- {% blocktrans with start=form.start end=form.end %} - {{ start }} + {% blocktrans with start=form.start %} + {{ start }}{% endblocktrans %}
+ {% blocktrans with end=form.end %} {{ end }}{% endblocktrans %}
diff --git a/openstack_dashboard/dashboards/admin/images/templates/images/properties/_edit.html b/openstack_dashboard/dashboards/admin/images/templates/images/properties/_edit.html index 38fad425f7..7f172c2b34 100644 --- a/openstack_dashboard/dashboards/admin/images/templates/images/properties/_edit.html +++ b/openstack_dashboard/dashboards/admin/images/templates/images/properties/_edit.html @@ -17,7 +17,7 @@

{% trans "Description" %}:

-

{% trans 'Update the custom property value for' %} "{{ key }}"

+

{% blocktrans with key=key %}Update the custom property value for "{{ key }}"{% endblocktrans %}

{% endblock %}