
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
21 lines
644 B
HTML
21 lines
644 B
HTML
{% extends 'horizon/common/_modal_form.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block modal-body-right %}
|
|
<h3>{% trans "Description" %}:</h3>
|
|
<p>{% trans "Mark an image with Murano specific metadata to be added to the selected image." %}</p>
|
|
<p>
|
|
<strong>{% trans "Image" %}:</strong>
|
|
{% trans "Select an image registered in Glance Image Services." %}
|
|
</p>
|
|
<p>
|
|
<strong>{% trans "Image Title" %}:</strong>
|
|
{% trans "Create a title for an image." %}
|
|
</p>
|
|
<p>
|
|
<strong>{% trans "Image Type" %}:</strong>
|
|
{% trans "Select an image type supported by Murano." %}
|
|
</p>
|
|
|
|
{% endblock %}
|