I have a multilingual site and I am trying to use the paginator. However the pages navigation never includes the language (just the controller and action are included)
<?php
echo $paginator->first(' << ', null, null, null);
echo $paginator->prev(' < ', null, null, null);
echo $paginator->numbers();
echo $paginator->next(' >', null, null, null);
echo $paginator->last(' >> ', null, null, null);
?>
Example: URL - http://dev.cyclistsroadmap.com/eng/segments/
Current: http://dev.cyclistsroadmap.com/main/segments/page:5
should be http://dev.cyclistsroadmap.com/eng/main/segments/page:5