Browse Source

use language in paginator class.

Taylor Otwell 13 years ago
parent
commit
c76d0fb669
2 changed files with 8 additions and 6 deletions
  1. 6 4
      system/lang.php
  2. 2 2
      system/paginator.php

+ 6 - 4
system/lang.php

@@ -9,21 +9,21 @@ class Lang {
 	 *
 	 * @var array
 	 */
-	private static $lines = array();
+	public static $lines = array();
 
 	/**
 	 * The key of the line that is being requested.
 	 *
 	 * @var string
 	 */
-	private $key;
+	public $key;
 
 	/**
 	 * The place-holder replacements.
 	 *
 	 * @var array
 	 */
-	private $replacements = array();
+	public $replacements = array();
 
 	/**
 	 * Create a new Lang instance.
@@ -117,7 +117,9 @@ class Lang {
 	 */
 	private function load($file, $language)
 	{
-		if ( ! array_key_exists($language.$file, static::$lines) and file_exists($path = APP_PATH.'lang/'.$language.'/'.$file.EXT))
+		if (array_key_exists($language.$file, static::$lines)) return;
+
+		if (file_exists($path = APP_PATH.'lang/'.$language.'/'.$file.EXT))
 		{
 			static::$lines[$language.$file] = require $path;
 		}

+ 2 - 2
system/paginator.php

@@ -150,7 +150,7 @@ class Paginator {
 	 */
 	public function previous()
 	{
-		$text = Lang::line('pagination.previous')->get();
+		$text = Lang::line('pagination.previous')->get($this->language);
 
 		return ($this->page > 1) ? $this->link($this->page - 1, $text, 'prev_page').' ' : HTML::span($text, array('class' => 'disabled prev_page')).' ';
 	}
@@ -162,7 +162,7 @@ class Paginator {
 	 */
 	public function next()
 	{
-		$text = Lang::line('pagination.next')->get();
+		$text = Lang::line('pagination.next')->get($this->language);
 
 		return ($this->page < $this->last_page) ? $this->link($this->page + 1, $text, 'next_page') : HTML::span($text, array('class' => 'disabled next_page'));
 	}