Made some changes to 'Boost Your Spark' copy

This commit is contained in:
sork 2011-02-28 14:47:34 +01:00
Родитель de88779b12
Коммит 86cb7abe8c
3 изменённых файлов: 13 добавлений и 3 удалений

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

@ -13,7 +13,7 @@
{% if not geolocation %}
<hr>
<h2 id="disclaimer" class="cta"><a href="http://www.mozilla.com/en-US/m/privacy.html">{{ _('Learn how Mozilla protects your geolocation data') }}</a></h2>
<h2 id="disclaimer" class="cta"><a href="http://www.mozilla.com/m/privacy.html">{{ _('Learn how Mozilla protects your geolocation data') }}</a></h2>
<hr>
{% endif %}

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

@ -23,6 +23,9 @@
<input tabindex="1" type="text" name="identifier" value="{{ form.identifier.data }}" placeholder="{{ _('Username/email address') }}">
</div>
{{ form.identifier.errors|safe }}
{% trans policy_url='http://www.mozilla.com/m/privacy.html' %}
Email address is only used to connect to you. See our <a href="{{ policy_url }}">Privacy Policy.</a>
{% endtrans %}
</fieldset>
<hr>
<fieldset id="from-website">

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

@ -14,16 +14,23 @@
{% endtrans %}
</p>
{% if no_parent %}
<p class="sans">
{{ _('Your spark was started by:') }}<br>
{{ _('Congrats! You started a new Spark.') }}
</p>
{% else %}
<p class="sans">
{{ _('Your Spark was started by:') }}<br>
{{ parent }}
</p>
{% endif %}
</div>
<form action="{{ url('mobile.boost2_confirm') }}" method="POST">
{{ csrf() }}
<input type="hidden" name="parent" value="{{ parent }}">
<div class="buttons-wrapper">
<div class="button left-button"><a href="{{ url('mobile.home') }}">{{ _('Maybe later') }}</a></div>
<div class="button left-button"><a href="{{ url('mobile.home') }}">{{ _('Cancel') }}</a></div>
<button ontouchstart="" class="right-button" type="submit">{{ _('Complete') }}</button>
</div>
</form>