Browse Source

Fix wording

Son NK 5 years ago
parent
commit
17bb01f317

+ 1 - 1
app/dashboard/templates/dashboard/alias_contact_manager.html

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

+ 1 - 1
app/dashboard/templates/dashboard/api_key.html

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

+ 1 - 1
app/dashboard/templates/dashboard/custom_domain.html

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

+ 7 - 8
app/dashboard/templates/dashboard/index.html

@@ -134,10 +134,8 @@
                 <input type="hidden" name="form-name" value="delete-email">
                 <input type="hidden" name="gen-email-id" value="{{ gen_email.id }}">
                 <span class="delete-email  btn btn-link btn-sm float-right">
-                  Delete
-                            &nbsp; &nbsp;
-                          <i class="dropdown-icon fe fe-trash-2"></i>
-                          </span>
+                  Delete&nbsp; &nbsp;<i class="dropdown-icon fe fe-trash-2"></i>
+                </span>
               </form>
             </div>
 
@@ -243,7 +241,7 @@
       notie.confirm({
         text: "Once an alias is deleted, people/apps " +
           "who used to contact you via this email address cannot reach you any more," +
-          " please confirm",
+          " please confirm.",
         cancelCallback: () => {
           // nothing to do
         },
@@ -255,7 +253,8 @@
 
     $(".trigger-email").on("click", function (e) {
       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: () => {
           // nothing to do
         },
@@ -269,9 +268,9 @@
       var message = "";
 
       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 {
-        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({

+ 2 - 1
app/dashboard/templates/dashboard/setting.html

@@ -50,7 +50,8 @@
 
     <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">
       <input type="hidden" name="form-name" value="change-password">
       <button class="btn btn-outline-primary">Change password</button>

+ 1 - 1
app/dashboard/templates/dashboard/unsubscribe.html

@@ -16,7 +16,7 @@
       You are about to block the alias <a href="mailto:{{alias}}">{{alias}}</a>
     </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>
 
     <form method="post">

+ 1 - 1
app/developer/templates/developer/index.html

@@ -70,7 +70,7 @@
     $(".custom-switch-input").change(function (e) {
       // Only ask for confirmation when publishing, not when un-publishing
       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({
           text: message,