pagination.php 691 B

12345678910111213141516171819202122232425
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Pagination Language Lines
  6. |--------------------------------------------------------------------------
  7. |
  8. | The following language lines are used by the paginator library to build
  9. | the pagination links. They may be easily changed by the developer to
  10. | anything they wish.
  11. |
  12. | The "status" line has two place-holders, :current and :last, for which
  13. | the current and last page numbers are substituted, respectively.
  14. |
  15. */
  16. 'first' => 'First',
  17. 'previous' => '&larr; Previous',
  18. 'status' => 'Page :current of :last',
  19. 'next' => 'Next &rarr;',
  20. 'last' => 'Last',
  21. );