Adding comments to the translators.
authorjervfors <jervfors@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 28 May 2009 06:22:05 +0000 (06:22 +0000)
committerjervfors <jervfors@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 28 May 2009 06:22:05 +0000 (06:22 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@13769 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/template/abook_util.php
functions/template/message_list_util.php

index df6d827e447c228a70f4015666193bf9dd26a42c..4c9119481a0ec3bf6fe4abdbe498ba4adc58f395 100644 (file)
@@ -143,6 +143,7 @@ function get_abook_paginator($abook_page_selector, $abook_page_selector_max,
                                                            $current_page_args)
                                . '][';
         else
+            // i18n: "<<" is for the first page in the paginator. "<" is for the previous page.
             $paginator_string .= _("<<") . '][' . _("<") . '][';
         if ($page_number < $total_pages)
             $paginator_string .= make_abook_paginator_link($page_number + 1,
@@ -154,6 +155,7 @@ function get_abook_paginator($abook_page_selector, $abook_page_selector_max,
                                                            $current_page_args)
                                . ']';
         else
+            // i18n: ">>" is for the last page in the paginator. ">" is for the next page.
             $paginator_string .= _(">") . '][' . _(">>") . ']';
     }
 
index 0744d633c26f7ba48257ef3d4797fe18c5883dbd..96d7a9fd6f0dc3ff5bfe4cdf4fbef7870ab54d7b 100644 (file)
@@ -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").')'),