As explained in http://drupal.org/node/179781 there are direction issues with arrows.
$li_first = theme('pager_first', (isset($tags[0]) ? $tags[0] : t('« first')), $limit, $element, $parameters);
$li_previous = theme('pager_previous', (isset($tags[1]) ? $tags[1] : t('‹ previous')), $limit, $element, 1, $parameters);
$li_next = theme('pager_next', (isset($tags[3]) ? $tags[3] : t('next ›')), $limit, $element, 1, $parameters);
$li_last = theme('pager_last', (isset($tags[4]) ? $tags[4] : t('last »')), $limit, $element, $parameters);
Comments
Comment #1
gábor hojtsyThese are translatable, so the translators can do whatever translation they see fit for their translation and directionality, right? What's the problem then? (Reopen if there is indeed any problem here).