I18N.php
1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
namespace thread\app\base\i18n;
use Yii;
/**
* class I18N
*
* @package thread\app\base\i18n
* @author FilamentV <vortex.filament@gmail.com>
* @copyright (c), Thread
*/
class I18N extends \yii\i18n\I18N
{
protected $modulesApp = [];
/**
* @param string $category
* @param string $message
* @param array $params
* @param string $language
* @return string
*/
public function translate($category, $message, $params, $language)
{
/**
* register translation if is module
*/
if (in_array($category, $this->modulesApp) && !isset($this->translations[$category])) {
$this->registerModules($category);
}
/**
* Set language themes if exists
*/
$language = (Yii::$app->params['themes']['language'])??$language;
return parent::translate($category, $message, $params, $language);
}
/**
*
*/
public function init()
{
parent::init();
$this->initModulesApp();
}
/**
*
*/
public function initModulesApp()
{
$this->modulesApp = array_keys(Yii::$app->getModules());
}
/**
* @param $category
*/
public function registerModules($category)
{
Yii::$app->getModule($category)->registerTranslations();
}
}