本文整理匯總了PHP中Symfony\Bundle\FrameworkBundle\Translation\Translator::addResource方法的典型用法代碼示例。如果您正苦於以下問題:PHP Translator::addResource方法的具體用法?PHP Translator::addResource怎麽用?PHP Translator::addResource使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Symfony\Bundle\FrameworkBundle\Translation\Translator
的用法示例。
在下文中一共展示了Translator::addResource方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getTranslator
public function getTranslator($loader, $options = array())
{
$translator = new Translator($this->getContainer($loader), $this->getMock('Symfony\\Component\\Translation\\MessageSelector'), array('loader' => 'loader'), $options);
$translator->addResource('loader', 'foo', 'fr');
$translator->addResource('loader', 'foo', 'en');
return $translator;
}
示例2: getTranslator
/**
* @see Symfony\Bundle\FrameworkBundle\Tests\Translation\TranslatorTest
*/
protected function getTranslator($loader)
{
$translator = new Translator($this->getContainer($loader), new MessageSelector(), array('loader' => array('loader')));
// set default "ja" the same as normally created services
$translator->setFallbackLocales(array('ja'));
$translator->addResource('loader', 'foo', 'ja');
$translator->addResource('loader', 'foo', 'en');
$translator->addResource('loader', 'foo', 'it');
return $translator;
}
示例3: addResource
/**
* {@inheritdoc}
*/
public function addResource($format, $resource, $locale, $domain = null)
{
// remember dynamic resources
if ($resource instanceof DynamicResourceInterface) {
if (!isset($this->dynamicResources[$locale])) {
$this->dynamicResources[$locale] = [];
}
$this->dynamicResources[$locale][] = $resource;
}
parent::addResource($format, $resource, $locale, $domain);
}
示例4: getTranslator
public function getTranslator($loader, $options = array())
{
$translator = new Translator($this->getContainer($loader), new MessageSelector(), array('loader' => array('loader')), $options);
$translator->addResource('loader', 'foo', 'fr');
$translator->addResource('loader', 'foo', 'en');
$translator->addResource('loader', 'foo', 'es');
return $translator;
}
示例5: initialize
/**
* Initialize the translation before loading catalogues from the storage
*/
protected function initialize()
{
if ($this->initialized) {
return;
}
parent::initialize();
// Add resources files directly, so that we still have translations
// event if we don't run translation:import
$standardResources = $this->getStandardResources();
foreach ($standardResources as $resource) {
parent::addResource($resource['format'], $resource['path'], $resource['locale'], $resource['domain']);
}
// Register all catalogues we have in the storage
$repo = $this->container->get('liip.translation.repository');
$locales = $repo->getLocaleList();
foreach ($repo->getDomainList() as $domain) {
foreach ($locales as $locale) {
parent::addResource('liip', 'intermediate.storage', $locale, $domain);
}
}
$this->initialized = true;
}
示例6: addResource
/**
* {@inheritdoc}
*/
public function addResource($format, $resource, $locale, $domain = null)
{
parent::addResource($format, $resource, $locale, $domain);
$this->mapResourceToTheme($resource);
}
示例7: getTranslator
public function getTranslator($loader, $options = array())
{
$translator = new Translator($this->getContainer($loader), new MessageSelector(), array('loader' => array('loader')), $options);
$translator->addResource('loader', 'foo', 'fr');
$translator->addResource('loader', 'foo', 'en');
$translator->addResource('loader', 'foo', 'es');
$translator->addResource('loader', 'foo', 'pt-PT');
// European Portuguese
$translator->addResource('loader', 'foo', 'pt_BR');
// Brazilian Portuguese
return $translator;
}
示例8: getTranslator
/**
* @see Symfony\Bundle\FrameworkBundle\Tests\Translation\TranslatorTest
*/
protected function getTranslator($loader)
{
$translator = new Translator($this->getContainer($loader), new MessageSelector(), array('loader' => array('loader')));
$translator->addResource('loader', 'foo', 'ja');
$translator->addResource('loader', 'foo', 'en');
return $translator;
}
示例9: addResource
/**
* {@inheritdoc}
*/
public function addResource($format, $resource, $locale, $domain = null)
{
parent::addResource($format, $resource, $locale, $domain);
parent::addResource('db', $domain . '.' . $locale . '.db', $locale, $domain);
}