20 lines
577 B
PHP
20 lines
577 B
PHP
<?php return array(
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Pagination Elements
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| These simple language lines provide the text for the Paginator class.
|
|
| Each line corresponds with an element of the pagination links generated
|
|
| by the class, and may be changed freely by the developer.
|
|
|
|
|
*/
|
|
|
|
'first' => 'First',
|
|
'previous' => '← Previous',
|
|
'status' => 'Page :current of :last',
|
|
'next' => 'Next →',
|
|
'last' => 'Last',
|
|
|
|
); |