added comments to pagination language.
This commit is contained in:
parent
52b68c060b
commit
4263203dda
|
@ -1,9 +1,20 @@
|
||||||
<?php return array(
|
<?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',
|
'previous' => '← Previous',
|
||||||
'first' => 'First',
|
'status' => 'Page :current of :last',
|
||||||
'next' => 'Next →',
|
'next' => 'Next →',
|
||||||
'last' => 'Last',
|
'last' => 'Last',
|
||||||
'status' => 'Page :current of :last',
|
|
||||||
|
|
||||||
);
|
);
|
Loading…
Reference in New Issue