Hello,
right after I have installed SM v1.2.10 I looked through the
german translation and found out, that the "All Folders" string
hasn't been setup for automatic translation in the search selection
box. I modified the ./src/search.php file to fix this problem.

src/search.php
==============

...

/*  set current mailbox to INBOX if none was selected or if page
    was called to search all folders.  */
if ( !isset($mailbox) || $mailbox == 'None' || $mailbox == '' ) {
    $mailbox = $boxes[0]['unformatted'];
}
if ($mailbox == _("All Folders")) {                     # <==
    $search_all = 'all';
}

...

   echo "<OPTION VALUE=\"" . _("All Folders") . "\"";           # <==
   if ($mailbox == _("All Folders")) {                  # <==
       echo _("SELECTED");
    }
   echo ">" . _("All Folders") . "</OPTION>\n";         # <==

...


Regards J�rgen
-- 
Mail: [EMAIL PROTECTED]
PGP Key available
---



-------------------------------------------------------
This SF.net email is sponsored by: Microsoft Visual Studio.NET
comprehensive development tool, built to increase your
productivity. Try a free online hosted session at:
http://ads.sourceforge.net/cgi-bin/redirect.pl?micr0003en
--
squirrelmail-users mailing list
List Address: [EMAIL PROTECTED]
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id)95
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users

Reply via email to