replace reserved word 'action' with 'encaction'
[squirrelmail.git] / plugins / squirrelspell / js / crypto_settings.js
index 9de86ea87be5e9955af5ae3d82536625302f72c3..a60696e8911071fdc8f2fbf9b5fec9b03d53d588 100644 (file)
@@ -1,17 +1,26 @@
 /**
-   CRYPTO_SETTINGS.JS
-   -------------------
-   Some client-side checks. Nothing fancy.
-                                                               **/
+ * crypto_settings.js
+ *
+ * Some client-side checks. Nothing fancy.
+ *
+ * @author Konstantin Riabitsev <icon at duke.edu>
+ * @copyright &copy; 2001-2007 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ */
 
+/**
+ * This function is the only thing. It is called on form submit and
+ * asks the user some questions.
+ */
 function checkMe(){
- if (!document.forms[0].action.checked){
-       alert ("Please make a selection first.");
-       return false;
- }
if (document.forms[0].action.value=="encrypt")
-       cmsg="This will encrypt your personal dictionary and store it in an encrypted format. Proceed?";
if (document.forms[0].action.value=="decrypt")
-       cmsg="This will decrypt your personal dictionary and store it in a clear-text format. Proceed?";
- return confirm(cmsg);
 if (!document.forms[0].action.checked){
+    alert (ui_makesel);
+    return false;
 }
 if (document.forms[0].encaction.value=="encrypt")
+    cmsg=ui_encrypt;
 if (document.forms[0].encaction.value=="decrypt")
+    cmsg=ui_decrypt;
 return confirm(cmsg);
 }