Account for servers that send extra unsolicited FETCH responses (such as when flags...
[squirrelmail.git] / functions / template / message_list_util.php
index 0744d633c26f7ba48257ef3d4797fe18c5883dbd..e1660f2ef9865be42a39da7d478f1f52db07b24e 100644 (file)
@@ -8,7 +8,7 @@
  * The following functions are utility functions for templates. Do not
  * echo output in these functions.
  *
- * @copyright © 2005-2009 The SquirrelMail Project Team
+ * @copyright 2005-2012 The SquirrelMail Project Team
  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  * @version $Id$
  * @package squirrelmail
@@ -122,12 +122,15 @@ function getFlagIcon ($aFlags, $icon_theme_path) {
         //      ---------------                  ---------   --------------
         array ('msg_new.png',                    $nbsp,      '('._("New").')') ,
         array ('msg_read.png',                   $nbsp,      '('._("Read").')'),
+        // i18n: "D" is short for "Deleted". Make sure that two icon strings aren't translated to the same character (only in 1.5).
         array ('msg_new_deleted.png',            _("D"),     '('._("Deleted").')'),
         array ('msg_read_deleted.png',           _("D"),     '('._("Deleted").')'),
+        // i18n: "A" is short for "Answered". Make sure that two icon strings aren't translated to the same character (only in 1.5).
         array ('msg_new_reply.png',              _("A"),     '('._("Answered").')'),
         array ('msg_read_reply.png',             _("A"),     '('._("Answered").')'),
         array ('msg_new_deleted_reply.png',      _("D"),     '('._("Answered").')'),
         array ('msg_read_deleted_reply.png',     _("D"),     '('._("Answered").')'),
+        // i18n: "F" is short for "Flagged". Make sure that two icon strings aren't translated to the same character (only in 1.5).
         array ('flagged.png',                    _("F"),     '('._("Flagged").')'),
         array ('flagged.png',                    _("F"),     '('._("Flagged").')'),
         array ('flagged.png',                    _("F"),     '('._("Flagged").')'),
@@ -152,6 +155,7 @@ function getFlagIcon ($aFlags, $icon_theme_path) {
         FALSE,
         FALSE,
         FALSE,
+        // i18n: "O" is short for "Forwarded". Make sure that two icon strings aren't translated to the same character (only in 1.5).
         array ('msg_new_forwarded.png',          _("O"),     '('._("Forwarded").')'),
         array ('msg_read_forwarded.png',         _("O"),     '('._("Forwarded").')'),
         array ('msg_new_deleted_forwarded.png',  _("D"),     '('._("Forwarded").')'),