Browse Source

added comments to pagination language.

Taylor Otwell 13 years ago
parent
commit
4263203dda
1 changed files with 15 additions and 4 deletions
  1. 15 4
      laravel/language/en/pagination.php

+ 15 - 4
laravel/language/en/pagination.php

@@ -1,9 +1,20 @@
 <?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' => '&larr; Previous',
-	'first' => 'First',
-	'next' => 'Next &rarr;',
-	'last' => 'Last',
-	'status' => 'Page :current of :last',
+	'status'   => 'Page :current of :last',
+	'next'     => 'Next &rarr;',
+	'last'     => 'Last',
 
 );