2011-10-04 21:43:39 -05:00
|
|
|
<?php return array(
|
|
|
|
|
|
2011-10-05 01:36:00 -05:00
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| 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',
|
2011-10-04 21:43:39 -05:00
|
|
|
'previous' => '← Previous',
|
2011-10-05 01:36:00 -05:00
|
|
|
'status' => 'Page :current of :last',
|
|
|
|
|
'next' => 'Next →',
|
|
|
|
|
'last' => 'Last',
|
2011-10-04 21:43:39 -05:00
|
|
|
|
|
|
|
|
);
|