You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
121 lines
3.7 KiB
121 lines
3.7 KiB
12 years ago
|
<?php
|
||
|
/**
|
||
|
* @link http://www.yiiframework.com/
|
||
12 years ago
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
||
12 years ago
|
* @license http://www.yiiframework.com/license/
|
||
|
*/
|
||
|
|
||
|
namespace yii\i18n;
|
||
|
|
||
|
use Yii;
|
||
|
use yii\base\Component;
|
||
|
|
||
|
/**
|
||
|
* MessageSource is the base class for message translation repository classes.
|
||
|
*
|
||
12 years ago
|
* A message source stores message translations in some persistent storage.
|
||
12 years ago
|
*
|
||
12 years ago
|
* Child classes should override [[loadMessages()]] to provide translated messages.
|
||
12 years ago
|
*
|
||
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
||
|
* @since 2.0
|
||
|
*/
|
||
12 years ago
|
class MessageSource extends Component
|
||
12 years ago
|
{
|
||
|
/**
|
||
12 years ago
|
* @event MissingTranslationEvent an event that is triggered when a message translation is not found.
|
||
|
*/
|
||
|
const EVENT_MISSING_TRANSLATION = 'missingTranslation';
|
||
|
|
||
|
/**
|
||
12 years ago
|
* @var boolean whether to force message translation when the source and target languages are the same.
|
||
|
* Defaults to false, meaning translation is only performed when source and target languages are different.
|
||
|
*/
|
||
|
public $forceTranslation = false;
|
||
12 years ago
|
/**
|
||
|
* @var string the language that the original messages are in. If not set, it will use the value of
|
||
|
* [[\yii\base\Application::sourceLanguage]].
|
||
|
*/
|
||
12 years ago
|
public $sourceLanguage;
|
||
|
|
||
|
private $_messages = array();
|
||
|
|
||
12 years ago
|
/**
|
||
|
* Initializes this component.
|
||
|
*/
|
||
12 years ago
|
public function init()
|
||
|
{
|
||
|
parent::init();
|
||
|
if ($this->sourceLanguage === null) {
|
||
12 years ago
|
$this->sourceLanguage = Yii::$app->sourceLanguage;
|
||
12 years ago
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Loads the message translation for the specified language and category.
|
||
12 years ago
|
* Child classes should override this method to return the message translations of
|
||
|
* the specified language and category.
|
||
12 years ago
|
* @param string $category the message category
|
||
|
* @param string $language the target language
|
||
12 years ago
|
* @return array the loaded messages. The keys are original messages, and the values
|
||
|
* are translated messages.
|
||
12 years ago
|
*/
|
||
12 years ago
|
protected function loadMessages($category, $language)
|
||
|
{
|
||
|
return array();
|
||
|
}
|
||
12 years ago
|
|
||
|
/**
|
||
|
* Translates a message to the specified language.
|
||
|
*
|
||
12 years ago
|
* Note that unless [[forceTranslation]] is true, if the target language
|
||
|
* is the same as the [[sourceLanguage|source language]], the message
|
||
|
* will NOT be translated.
|
||
12 years ago
|
*
|
||
12 years ago
|
* If a translation is not found, a [[missingTranslation]] event will be triggered.
|
||
12 years ago
|
*
|
||
|
* @param string $category the message category
|
||
|
* @param string $message the message to be translated
|
||
12 years ago
|
* @param string $language the target language
|
||
12 years ago
|
* @return string the translated message (or the original message if translation is not needed)
|
||
|
*/
|
||
|
public function translate($category, $message, $language)
|
||
|
{
|
||
|
if ($this->forceTranslation || $language !== $this->sourceLanguage) {
|
||
|
return $this->translateMessage($category, $message, $language);
|
||
|
} else {
|
||
|
return $message;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Translates the specified message.
|
||
12 years ago
|
* If the message is not found, a [[missingTranslation]] event will be triggered
|
||
|
* and the original message will be returned.
|
||
12 years ago
|
* @param string $category the category that the message belongs to
|
||
|
* @param string $message the message to be translated
|
||
|
* @param string $language the target language
|
||
|
* @return string the translated message
|
||
|
*/
|
||
|
protected function translateMessage($category, $message, $language)
|
||
|
{
|
||
|
$key = $language . '/' . $category;
|
||
|
if (!isset($this->_messages[$key])) {
|
||
|
$this->_messages[$key] = $this->loadMessages($category, $language);
|
||
|
}
|
||
|
if (isset($this->_messages[$key][$message]) && $this->_messages[$key][$message] !== '') {
|
||
|
return $this->_messages[$key][$message];
|
||
12 years ago
|
} elseif ($this->hasEventHandlers('missingTranslation')) {
|
||
|
$event = new MissingTranslationEvent(array(
|
||
|
'category' => $category,
|
||
|
'message' => $message,
|
||
|
'language' => $language,
|
||
|
));
|
||
|
$this->trigger(self::EVENT_MISSING_TRANSLATION, $event);
|
||
|
return $this->_messages[$key] = $event->message;
|
||
12 years ago
|
} else {
|
||
|
return $message;
|
||
|
}
|
||
|
}
|
||
|
}
|