本文整理汇总了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);
}