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