Merge "Make some new strings translator friendly"

This commit is contained in:
Jenkins 2014-08-08 16:43:40 +00:00 committed by Gerrit Code Review
commit 1a79964e8f
2 changed files with 4 additions and 3 deletions

View File

@ -6,10 +6,11 @@
<form action="?" method="get" id="date_form" class="form-inline">
<h3>{% trans "Select a period of time to query its usage" %}: </h3>
<div class="datepicker form-group">
{% blocktrans with start=form.start end=form.end %}
<label>From:</label> {{ start }}
{% blocktrans with start=form.start %}
<label>From:</label> {{ start }}{% endblocktrans %}
</div>
<div class="datepicker form-group">
{% blocktrans with end=form.end %}
<label>To:</label>{{ end }}{% endblocktrans %}
</div>
<button class="btn btn-primary" type="submit">{% trans "Submit" %}</button>

View File

@ -17,7 +17,7 @@
</div>
<div class="right">
<h3>{% trans "Description" %}:</h3>
<p>{% trans 'Update the custom property value for' %} &quot;{{ key }}&quot;</p>
<p>{% blocktrans with key=key %}Update the custom property value for &quot;{{ key }}&quot;{% endblocktrans %}</p>
</div>
{% endblock %}