fixed several parse errors with gettext stuff
[squirrelmail.git] / src / move_messages.php
index 36e966b17b1a132b68a58a68e1818b068b0080d3..6a3abfbf0b7ce06f4b54842feb7e3bee043160d7 100644 (file)
@@ -1,4 +1,3 @@
-<HTML><BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#0000EE" ALINK="#0000EE">
 <?
    include("../config/config.php");
    include("../functions/mailbox.php");
@@ -7,6 +6,10 @@
    include("../functions/display_messages.php");
    include("../functions/imap.php");
 
+   include("../src/load_prefs.php");
+
+   echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
+
    function putSelectedMessagesIntoString($msg) {
       $j = 0;
       $i = 0;
@@ -28,8 +31,7 @@
          $i++;
       }
    }
-   
-   
+
    $imapConnection = loginToImapServer($username, $key, $imapServerAddress);
 
    // switch to the mailbox, and get the number of messages in it.
@@ -37,7 +39,7 @@
 
    // If the delete button was pressed, the moveButton variable will not be set.
    if (!$moveButton) {
-      displayPageHeader($mailbox);
+      displayPageHeader($color, $mailbox);
       if (is_array($msg) == 1) {
          // Marks the selected messages ad 'Deleted'
          $j = 0;
             }
             $i++;
          }
-         messages_deleted_message($mailbox, $sort, $startMessage);
+         messages_deleted_message($mailbox, $sort, $startMessage, $color);
       } else {
-         echo "<BR><BR><CENTER>No messages selected.</CENTER>";
+         error_message(_("No messages were selected."), $mailbox, $sort, $startMessage, $color);
       }
    } else {    // Move messages
-      displayPageHeader($mailbox);
+      displayPageHeader($color, $mailbox);
       // lets check to see if they selected any messages
       if (is_array($msg) == 1) {
          $j = 0;
@@ -78,9 +80,9 @@
          if ($auto_expunge == true)
             expungeBox($imapConnection, $mailbox, $numMessages);
 
-         messages_moved_message($mailbox, $sort, $startMessage);
+         messages_moved_message($mailbox, $sort, $startMessage, $color);
       } else {
-         error_message("No messages were selected.", $mailbox, $sort, $startMessage);
+         error_message(_("No messages were selected."), $mailbox, $sort, $startMessage, $color);
       }
    }