Kaynağa Gözat

String and PHP fix

Fredrik Jervfors 20 yıl önce
ebeveyn
işleme
af8725177b
1 değiştirilmiş dosya ile 8 ekleme ve 7 silme
  1. 8 7
      include/errors.php

+ 8 - 7
include/errors.php

@@ -24,20 +24,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
+
+?>