murano-dashboard/muranodashboard/templates/categories/_add.html
Kirill Zaitsev 4a41b271b4 Cleanup translation markups
This patch cleans up strings marked for translations from unnecessary
html markup and removes near-identical strings.
Blocktrans django tag is now used only if it is necessary to pass a
context variable and results are trimmed.
Includes minor spelling and grammar corrections

Closes-Bug: #1543734
Change-Id: I0dc1edcdcc7f24a0d406ec4189000e0855c37131
2016-02-28 02:49:14 +03:00

13 lines
344 B
HTML

{% extends 'horizon/common/_modal_form.html' %}
{% load i18n %}
{% block modal-body-right %}
<h3>{% trans 'Description' %}:</h3>
<p>{% trans 'Add new category to the application catalog.' %}</p>
<p>
<strong>{% trans 'Name' %}:</strong>
{% trans "Provide desired name for a new category" %}
</p>
{% endblock %}