Happy New Year
[squirrelmail.git] / functions / template / abook_util.php
index df6d827e447c228a70f4015666193bf9dd26a42c..708ff50611f3aa629a9f0bb93b0bc8c6ecf1d09a 100644 (file)
@@ -6,7 +6,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-2018 The SquirrelMail Project Team
  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  * @version $Id$
  * @package squirrelmail
@@ -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 .= _(">") . '][' . _(">>") . ']';
     }