Happy New Year
[squirrelmail.git] / functions / template / abook_util.php
index 55d55c16e5b56315493b7eeedbd71a175c1e7a73..ae8941444d9933e4b07ebf35d38d7d50e3fff116 100644 (file)
@@ -6,7 +6,7 @@
  * The following functions are utility functions for templates. Do not
  * echo output in these functions.
  *
- * @copyright © 2005-2008 The SquirrelMail Project Team
+ * @copyright 2005-2016 The SquirrelMail Project Team
  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  * @version $Id$
  * @package squirrelmail
@@ -124,7 +124,7 @@ function get_abook_paginator($abook_page_selector, $abook_page_selector_max,
     // build "Show All" link
     //
     $show_all_string = '['
-                     . make_abook_paginator_link(1, _("Show All"), 
+                     . make_abook_paginator_link(1, _("All"), 
                                                  array_merge($current_page_args, array('show_all' => 1)))
                      . ']';
 
@@ -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 .= _(">") . '][' . _(">>") . ']';
     }