X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=functions%2Ftemplate%2Fabook_util.php;h=ae8941444d9933e4b07ebf35d38d7d50e3fff116;hb=f197ec8835b64975ff47dc6cd86dae75605baebf;hp=55d55c16e5b56315493b7eeedbd71a175c1e7a73;hpb=4fe67ca69790ddeb9b85be15e2b7a5e9e451ce03;p=squirrelmail.git diff --git a/functions/template/abook_util.php b/functions/template/abook_util.php index 55d55c16..ae894144 100644 --- a/functions/template/abook_util.php +++ b/functions/template/abook_util.php @@ -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 .= _(">") . '][' . _(">>") . ']'; }