From 76f480240e5be0faf9fbc57b75859e4ab4d1375b Mon Sep 17 00:00:00 2001 From: philippe_mingo Date: Fri, 16 Nov 2001 14:23:00 +0000 Subject: [PATCH] Bugfix of long strings git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1764 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- .../squirrelspell/modules/enc_setup.mod.php | 23 ++----------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/plugins/squirrelspell/modules/enc_setup.mod.php b/plugins/squirrelspell/modules/enc_setup.mod.php index 411b544a..e3881fac 100644 --- a/plugins/squirrelspell/modules/enc_setup.mod.php +++ b/plugins/squirrelspell/modules/enc_setup.mod.php @@ -19,15 +19,7 @@ if ($SQSPELL_CRYPTO){ // Current format is encrypted. $msg = - _("

Your personal dictionary is currently encrypted. This " - "helps protect your privacy in case the web-mail system gets compromized and your " - "personal dictionary ends up stolen. It is currently encrypted with the password " - "you use to access your mailbox, making it hard for anyone to see what is stored " - "in your personal dictionary.

" - "

ATTENTION: If you forget your password, your personal dictionary " - "will become unaccessible, since it can no longer be decrypted. " - "If you change your mailbox password, SquirrelSpell will recognize it and prompt you for " - "your old password in order to re-encrypt the dictionary with a new key.

") . + _("

Your personal dictionary is currently encrypted. This helps protect your privacy in case the web-mail system gets compromized and your personal dictionary ends up stolen. It is currently encrypted with the password you use to access your mailbox, making it hard for anyone to see what is stored in your personal dictionary.

ATTENTION: If you forget your password, your personal dictionary will become unaccessible, since it can no longer be decrypted. If you change your mailbox password, SquirrelSpell will recognize it and prompt you for your old password in order to re-encrypt the dictionary with a new key.

") . '
'. ''. '

'. @@ -40,18 +32,7 @@ } else { // current format is clear text. $msg = - _("

Your personal dictionary is currently not encrypted. " - "You may wish to encrypt your personal dictionary to protect your privacy in case " - "the webmail system gets compromized and your personal dictionary file gets stolen. " - "When encrypted, the file's contents look garbled and are hard to decrypt without " - "knowing the correct key (which is your mailbox password).

" - "ATTENTION: If you decide to encrypt your personal dictionary, " - "you must remember that it gets "hashed" with your mailbox password. If " - "you forget your mailbox password and the administrator changes it to a new value, " - "your personal dictionary will become useless and will have to be created anew. " - "However, if you or your system administrator change your mailbox password but you " - "still have the old password at hand, you will be able to enter the old key to " - "re-encrypt the dictionary with the new value.

"). + _("

Your personal dictionary is currently not encrypted. You may wish to encrypt your personal dictionary to protect your privacy in case the webmail system gets compromized and your personal dictionary file gets stolen. When encrypted, the file's contents look garbled and are hard to decrypt without knowing the correct key (which is your mailbox password).

ATTENTION: If you decide to encrypt your personal dictionary, you must remember that it gets "hashed" with your mailbox password. If you forget your mailbox password and the administrator changes it to a new value, your personal dictionary will become useless and will have to be created anew. However, if you or your system administrator change your mailbox password but you still have the old password at hand, you will be able to enter the old key to re-encrypt the dictionary with the new value.

"). ''. ''. '

'. -- 2.25.1