|
@@ -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;
|
|
|
}
|