X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=include%2Ferrors.php;h=2bbb3a3ec98c782e022e716b35a8d26274a0b098;hp=743dd1b12994a834b18f7aa705406ba8a756ecff;hb=3692c2ed7fdc9c2cd416cd0bf44ab216fcd134fe;hpb=47fa73efe4009bff15e2feceaa678cf7742b2b93 diff --git a/include/errors.php b/include/errors.php index 743dd1b1..2bbb3a3e 100644 --- a/include/errors.php +++ b/include/errors.php @@ -3,9 +3,8 @@ /** * errors.php * - * Copyright (c) 2005 The SquirrelMail Project Team - * Licensed under the GNU GPL. For full terms see the file COPYING. - * + * @copyright © 2005-2007 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail */ @@ -21,13 +20,15 @@ define('SQM_ERROR_DB',16); define('SQM_ERROR_PLUGIN',32); // define('SQM_ERROR_X',64); future error category + + $aErrors['SQM_IMAP_NO_THREAD'] = array( 'level' => E_USER_ERROR, 'category' => SQM_ERROR_IMAP, 'message' => _("Thread sorting is not supported by your IMAP server.") . "\n" . _("Please contact your system administrator and report this error."), 'link' => '', - 'tip' => _("Run \"configure\", choose option 4 (General options) and set option 10 (Allow server thread sort to false).") + 'tip' => _("Run \"configure\", choose option 4 (General options) and set option 10 (Disable server thread sort) to true).") ); $aErrors['SQM_IMAP_NO_SORT'] = array( @@ -36,9 +37,47 @@ $aErrors['SQM_IMAP_NO_SORT'] = array( 'message' => _( "Server-side sorting is not supported by your IMAP server.") . "\n" . _("Please contact your system administrator and report this error."), 'link' => '', - 'tip' => _("Run \"configure\", choose option 4 (General options) and set option 11 (Allow server-side sorting to false).") + 'tip' => _("Run \"configure\", choose option 4 (General options) and set option 11 (Disable server-side sorting) to true.") ); -//$aError['SQM_FS'] // Filesystem related errors +$aErrors['SQM_IMAP_BADCHARSET'] = array( + 'level' => E_USER_NOTICE, + 'category' => SQM_ERROR_IMAP, + 'message' => _( "Your used charset is not supported by your IMAP server.") . "\n" . + _("Please contact your system administrator and report this error."), + 'link' => '', + 'tip' => _("Run \"configure\", choose option 4 (General options) and set option 12 (Allow server charset search) to false) or choose option 10 (Language settings) and set option 2 (Default charset) to a charset supported by your IMAP server.") +); + +$aErrors['SQM_IMAP_APPEND_QUOTA_ERROR'] = array( + 'level' => E_USER_NOTICE, + 'category' => SQM_ERROR_IMAP, + 'message' => _( "Out of quota error."), + 'link' => '', + 'tip' => _("Remove unneccessary messages from your folders. Start with your Trash folder.") +); + +$aErrors['SQM_IMAP_APPEND_ERROR'] = array( + 'level' => E_USER_NOTICE, + 'category' => SQM_ERROR_IMAP, + 'message' => _( "An error occured when SquirrelMail appended a message to the mailbox as listed in this message."), + 'link' => '' +); + +$aErrors['SQM_IMAP_ERROR'] = array( + 'level' => E_USER_ERROR, + 'category' => SQM_ERROR_IMAP, + 'message' => _( "Your IMAP server returned an error.") . "\n" . + _("Please contact your system administrator and report this error."), + 'link' => '' +); -?> \ No newline at end of file +$aErrors['SQM_IMAP_BYE'] = array( + 'level' => E_USER_ERROR, + 'category' => SQM_ERROR_IMAP, + 'message' => _( "IMAP server closed the connection.") . "\n" . + _("Please contact your system administrator and report this error."), + 'link' => '' +); + +//$aError['SQM_FS'] // Filesystem related errors