appify copy for Submit Review modal (bug 707731)

This commit is contained in:
Chris Van 2011-12-13 10:50:21 -08:00
Родитель 833caee524
Коммит 2a5380f5e4
1 изменённых файлов: 28 добавлений и 12 удалений

Просмотреть файл

@ -23,21 +23,37 @@
<div> <div>
<p> <p>
{% trans %} {% if webapp %}
Please do not post bug reports in reviews. We do not make your email {{ loc('Please do not post bug reports in reviews. We do not make
address available to add-on developers and they may need to contact your email address available to app developers and they may
you to help resolve your issue. need to contact you to help resolve your issue.') }}
{% endtrans %} {% else %}
{% trans %}
Please do not post bug reports in reviews. We do not make your email
address available to add-on developers and they may need to contact
you to help resolve your issue.
{% endtrans %}
{% endif %}
</p> </p>
{% if addon.support_url or addon.support_email %} {% if addon.support_url or addon.support_email %}
<p> <p>
{% trans support='#support' %} {% with support=request.path + '#support' %}
See the <a href="{{ support }}">support section</a> to find out {% if webapp %}
where to get assistance for this add-on. {{ loc('See the <a href="{support}">support section</a> to
{% endtrans %} find out where to get assistance for this app.')|f(
</p> support=support)|safe }}
{% else %}
{% trans %}
See the <a href="{{ support }}">support section</a> to find out
where to get assistance for this add-on.
{% endtrans %}
{% endif %}
{% endwith %}
</p>
{% endif %}
{% if not webapp %}
<p><a href="{{ remora_url('/pages/review_guide') }}" target="_blank">{{ _('Review Guidelines') }}</a></p>
{% endif %} {% endif %}
<p><a href="{{ remora_url('/pages/review_guide') }}" target="_blank">{{ _('Review Guidelines') }}</a></p>
<p> <p>
<a href="{{ shared_url('reviews.add', addon) }}" <a href="{{ shared_url('reviews.add', addon) }}"
id="detail-review-link">{{ _('Detailed Review') }}</a> id="detail-review-link">{{ _('Detailed Review') }}</a>