Improve wordings

This commit is contained in:
Son NK 2020-05-18 19:14:52 +02:00
parent 484aca1342
commit e22f5d1c63

View file

@ -166,7 +166,7 @@
<div class="form-check"> <div class="form-check">
<input type="checkbox" id="notification" name="notification" {% if current_user.notification %} <input type="checkbox" id="notification" name="notification" {% if current_user.notification %}
checked {% endif %} class="form-check-input"> checked {% endif %} class="form-check-input">
<label for="notification">I want to receive your newsletter</label> <label for="notification">I want to be informed of new features</label>
</div> </div>
<button type="submit" class="btn btn-outline-primary">Submit</button> <button type="submit" class="btn btn-outline-primary">Submit</button>
</form> </form>
@ -241,18 +241,18 @@
<div class="card-body"> <div class="card-body">
<div class="card-title">Replace reverse alias</div> <div class="card-title">Replace reverse alias</div>
<div class="mb-3"> <div class="mb-3">
When replying to a reverse alias your email client will show the reverse alias ("ra+string@simplelogin.co") When replying to a forwarded email, the <b>reverse-alias</b> is usually included in the attached message.
as the original sender. This option will replace this string in the body of outgoing emails with the You can turn on this option to <b>replace</b> the reverse-alias by the alias. However this breaks PGP-signed emails
original email address. This will break PGP signed emails, so only enable if you know what you're doing! so please only enable it if you know what you're doing :).
</div> </div>
<form method="post"> <form method="post">
<input type="hidden" name="form-name" value="replace-ra"> <input type="hidden" name="form-name" value="replace-ra">
<div class="form-check"> <div class="form-check">
<input type="checkbox" id="replace-ra" name="replace-ra" <input type="checkbox" id="replace-ra" name="replace-ra"
{% if current_user.replace_reverse_alias %} checked {% endif %} class="form-check-input"> {% if current_user.replace_reverse_alias %} checked {% endif %} class="form-check-input">
<label for="replace-ra">Enable replacing reverse alias</label> <label for="replace-ra">Enable replacing reverse alias</label>
</div> </div>
<button type="submit" class="btn btn-outline-primary">Submit</button> <button type="submit" class="btn btn-outline-primary">Update</button>
</form> </form>
</div> </div>
</div> </div>