copyright update
[squirrelmail.git] / include / errors.php
index 476e8ac39c8d239808ad7e0e92540ca5f5f9ec16..2fd46a8483b287a250b00fdb433f4a04af51a051 100644 (file)
@@ -1,15 +1,15 @@
 <?php
 
 /**
-* errors.php
-*
-* Copyright (c) 2005 The SquirrelMail Project Team
-* Licensed under the GNU GPL. For full terms see the file COPYING.
-*
-* @version $Id$
-* @package squirrelmail
-*/
+ * errors.php
+ *
+ * @copyright &copy; 2005-2006 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package squirrelmail
+ */
 
+/** init error array */
 $aError = array();
 
 define('SQM_ERROR_IMAP',1);
@@ -23,20 +23,21 @@ define('SQM_ERROR_PLUGIN',32);
 $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."),
+    '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 (Allow server thread sort to false).")
 );
 
 $aErrors['SQM_IMAP_NO_SORT'] = array(
     'level'    => E_USER_ERROR,
     'category' => SQM_ERROR_IMAP,
-    'message'  =>  _( "Server-side sorting is not supported by your IMAP server.") . "\n" .
-                   _("Please contact your system administrator and report this error."),
+    '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 (Allow server-side sorting to false).")
 );
 
-
 //$aError['SQM_FS'] // Filesystem related errors
+
+?>
\ No newline at end of file