Browse Source

Added better language support for Pagination library.

Taylor Otwell 13 years ago
parent
commit
556fff9ff0
1 changed files with 5 additions and 4 deletions
  1. 5 4
      system/paginator.php

+ 5 - 4
system/paginator.php

@@ -81,14 +81,15 @@ class Paginator {
 	/**
 	 * Create the HTML pagination links.
 	 *
+	 * @param  string  $language
 	 * @param  int     $adjacent
 	 * @return string
 	 */
-	public function links($adjacent = 3)
+	public function links($language = null, $adjacent = 3)
 	{
 		if ($this->last_page() > 1)
 		{
-			return '<div class="pagination">'.$this->previous().$this->numbers($adjacent).$this->next();
+			return '<div class="pagination">'.$this->previous($language).$this->numbers($adjacent).$this->next($language);
 		}
 
 		return '';
@@ -145,7 +146,7 @@ class Paginator {
 	 */
 	public function previous($language = null)
 	{
-		$text = Lang::line('pagination.previous')->get($language);
+		$text = Lang::line('pagination.previous')->get($language, '&laquo; Previous');
 
 		if ($this->page > 1)
 		{
@@ -163,7 +164,7 @@ class Paginator {
 	 */
 	public function next($language = null)
 	{
-		$text = Lang::line('pagination.next')->get($language);
+		$text = Lang::line('pagination.next')->get($language, 'Next &raquo;');
 
 		if ($this->page < $this->last_page())
 		{