Akelos Framework v1 forum archive. This forum is no longer maintained. To report bugs please visit https://github.com/akelos/akelos/issues
    • CommentAuthormerindol
     

    Hi.

    I've spotted 2 potential errors with Paginator text translation.

    I've a classic scaffold. In the listing, at the bottom, there is a list of pages and the current position : "Showing page %page of %number_of_pages"

    Those texts and links are not translated at all (do not appear in locales).

    I solved a part :

    In my listing.tpl I changed <div id="paginationHeader"><?php echo translate('Showing page... to <div id="paginationHeader"><?php echo $text_helper->translate('Showing page... (added $text_helper->)

    However, I can't find how to get links to be translated ('next page', ...)

    Any help / confirmation would be appreciated before I land a bug ticket.

    Best regards.

    •  
      CommentAuthorjunqed
     

    Try to find it in config/locales/YOUR_LOCALE.php ;)

    • CommentAuthormerindol
     

    Thanks a lot ! Didn't know at all the presence of this locales file.