25 lines
691 B
PHP
25 lines
691 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Pagination Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines are used by the paginator library to build
|
|
| the pagination links. They may be easily changed by the developer to
|
|
| anything they wish.
|
|
|
|
|
| The "status" line has two place-holders, :current and :last, for which
|
|
| the current and last page numbers are substituted, respectively.
|
|
|
|
|
*/
|
|
|
|
'first' => 'First',
|
|
'previous' => '← Previous',
|
|
'status' => 'Page :current of :last',
|
|
'next' => 'Next →',
|
|
'last' => 'Last',
|
|
|
|
); |