Fix wording

This commit is contained in:
Son NK 2019-12-22 15:59:41 +00:00
parent 41fe528441
commit 17bb01f317
7 changed files with 14 additions and 14 deletions

View file

@ -88,7 +88,7 @@
$(".delete-forward-email").on("click", function (e) { $(".delete-forward-email").on("click", function (e) {
notie.confirm({ notie.confirm({
text: "Activity history associated with this reverse-alias will be deleted, " + text: "Activity history associated with this reverse-alias will be deleted, " +
" please confirm", " please confirm.",
cancelCallback: () => { cancelCallback: () => {
// nothing to do // nothing to do
}, },

View file

@ -90,7 +90,7 @@
$(".delete-api-key").on("click", function (e) { $(".delete-api-key").on("click", function (e) {
notie.confirm({ notie.confirm({
text: "If this api key is currently in use, you need to replace it with another api key, " + text: "If this api key is currently in use, you need to replace it with another api key, " +
" please confirm", " please confirm.",
cancelCallback: () => { cancelCallback: () => {
// nothing to do // nothing to do
}, },

View file

@ -149,7 +149,7 @@
$(".delete-custom-domain").on("click", function (e) { $(".delete-custom-domain").on("click", function (e) {
notie.confirm({ notie.confirm({
text: "All aliases associated with this domain will be also deleted, " + text: "All aliases associated with this domain will be also deleted, " +
" please confirm", " please confirm.",
cancelCallback: () => { cancelCallback: () => {
// nothing to do // nothing to do
}, },

View file

@ -134,10 +134,8 @@
<input type="hidden" name="form-name" value="delete-email"> <input type="hidden" name="form-name" value="delete-email">
<input type="hidden" name="gen-email-id" value="{{ gen_email.id }}"> <input type="hidden" name="gen-email-id" value="{{ gen_email.id }}">
<span class="delete-email btn btn-link btn-sm float-right"> <span class="delete-email btn btn-link btn-sm float-right">
Delete Delete&nbsp; &nbsp;<i class="dropdown-icon fe fe-trash-2"></i>
&nbsp; &nbsp; </span>
<i class="dropdown-icon fe fe-trash-2"></i>
</span>
</form> </form>
</div> </div>
@ -243,7 +241,7 @@
notie.confirm({ notie.confirm({
text: "Once an alias is deleted, people/apps " + text: "Once an alias is deleted, people/apps " +
"who used to contact you via this email address cannot reach you any more," + "who used to contact you via this email address cannot reach you any more," +
" please confirm", " please confirm.",
cancelCallback: () => { cancelCallback: () => {
// nothing to do // nothing to do
}, },
@ -255,7 +253,8 @@
$(".trigger-email").on("click", function (e) { $(".trigger-email").on("click", function (e) {
notie.confirm({ notie.confirm({
text: "SimpleLogin server will send an email to this alias and it will arrive to your inbox, please confirm", text: "SimpleLogin server will send an email to this alias " +
"and it will arrive to your inbox, please confirm.",
cancelCallback: () => { cancelCallback: () => {
// nothing to do // nothing to do
}, },
@ -269,9 +268,9 @@
var message = ""; var message = "";
if (e.target.checked) { if (e.target.checked) {
message = `After this, you will start receiving email sent to this alias, please confirm`; message = `After this, you will start receiving email sent to this alias, please confirm.`;
} else { } else {
message = `After this, you will stop receiving email sent to this alias, please confirm`; message = `After this, you will stop receiving email sent to this alias, please confirm.`;
} }
notie.confirm({ notie.confirm({

View file

@ -50,7 +50,8 @@
<hr> <hr>
<h3>Change password</h3> <h3 class="mb-0">Change password</h3>
<div class="small-text mb-3">You will receive an email containing instructions on how to change password.</div>
<form method="post"> <form method="post">
<input type="hidden" name="form-name" value="change-password"> <input type="hidden" name="form-name" value="change-password">
<button class="btn btn-outline-primary">Change password</button> <button class="btn btn-outline-primary">Change password</button>

View file

@ -16,7 +16,7 @@
You are about to block the alias <a href="mailto:{{alias}}">{{alias}}</a> You are about to block the alias <a href="mailto:{{alias}}">{{alias}}</a>
</p> </p>
<p> <p>
After this, you will stop receiving all emails sent to this alias, please confirm After this, you will stop receiving all emails sent to this alias, please confirm.
</p> </p>
<form method="post"> <form method="post">

View file

@ -70,7 +70,7 @@
$(".custom-switch-input").change(function (e) { $(".custom-switch-input").change(function (e) {
// Only ask for confirmation when publishing, not when un-publishing // Only ask for confirmation when publishing, not when un-publishing
if (e.target.checked) { if (e.target.checked) {
var message = `After this, your app/website will made available in "Discover", please confirm`; var message = `After this, your app/website will made available in "Discover", please confirm.`;
notie.confirm({ notie.confirm({
text: message, text: message,