Symfony2中翻译的高级自定义

时间:2013-03-21 14:16:07

标签: php symfony translation

我有一个Symfony2项目,我正在使用Translation组件来翻译文本。我在yml文件中有所有翻译,如此

translation-identifier: Translated text here

翻译文字从Twig

开始
'translation-identifier'|trans({}, 'domain')

事情是,在某些情况下,我希望有两个不同的文本用于相同的翻译(不是用于复数)。以下是我希望它的工作方式:

  1. yml文件中定义两个文本,以获取需要不同文本的翻译。每个人都有自己独特的后缀

    translation-identifier-suffix1
    
    translation-identifier-suffix2
    
  2. 定义全局规则,该规则将定义应选择哪个后缀。 Psuedocode如下:

     public function getSuffix() {
       return rand(0, 10) < 5 ? '-suffix1' : '-suffix2';
     }
    
  3. Twig(和PHP)看起来一样 - 我仍然只指定没有后缀的标识符。然后,翻译器会将后缀附加到标识符并尝试查找匹配项。如果没有匹配,它将尝试再次找到匹配而没有后缀。

3 个答案:

答案 0 :(得分:9)

AFAIK,Translator组件不支持它。

但是如果你想要同样的行为,你可以通过覆盖翻译服务来做。

1)覆盖服务

# app/config/config.yml
parameters:
    translator.class:      Acme\HelloBundle\Translation\Translator

首先,您可以通过在app/config/config.yml中设置,将包含服务类名的参数设置为您自己的类。 仅供参考:https://github.com/symfony/FrameworkBundle/blob/master/Resources/config/translation.xml

2)扩展提供的翻译类symfony framework bundle。 仅供参考:https://github.com/symfony/FrameworkBundle/blob/master/Translation/Translator.php

3)覆盖由trans提供的translator component函数。 https://github.com/symfony/Translation/blob/master/Translator.php

希望这有帮助!

答案 1 :(得分:5)

如果有人需要,这是扩展的翻译类

<?php

    namespace Acme\HelloBundle\Translation;

    use Symfony\Bundle\FrameworkBundle\Translation\Translator as BaseTranslator;
    use Symfony\Component\Translation\MessageSelector;
    use Symfony\Component\DependencyInjection\ContainerInterface;

    class Translator extends BaseTranslator {

        const SUFFIX_1 = '_suffix1';
        const SUFFIX_2 = '_suffix2';

        private $suffix;

        public function __construct(ContainerInterface $container, MessageSelector $selector, $loaderIds = array(), array $options = array()) {
            parent::__construct($container, $selector, $loaderIds, $options);
            $this->suffix = $this->getSuffix($container);
        }

        public function trans($id, array $parameters = array(), $domain = 'messages', $locale = null) {     
            if ($locale === null)
                $locale = $this->getLocale();

            if (!isset($this->catalogues[$locale]))
                $this->loadCatalogue($locale);

            if($this->suffix !== null && $this->catalogues[$locale]->has((string) ($id . $this->suffix), $domain))
                $id .= $this->suffix;

            return strtr($this->catalogues[$locale]->get((string) $id, $domain), $parameters);
        }

        private function getSuffix($container) {
            return rand(0, 10) < 5 ? self::SUFFIX_1 : self::SUFFIX_2;
        }

    }

?>

答案 2 :(得分:4)

从Symfony 3开始,由于不再使用translator.class参数,Venu的答案不再完整。

要加载自定义翻译器类,您现在需要创建编译器传递。

<?php

namespace Acme\HelloBundle\DependencyInjection\Compiler;

use Acme\HelloBundle\Translation\Translator;
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;

class TranslatorOverridePass implements CompilerPassInterface
{
    public function process(ContainerBuilder $container)
    {
        $container->getDefinition('translator.default')->setClass(Translator::class);
    }
}

需要将此编译器传递添加到容器中。

<?php

namespace Acme\HelloBundle;

use Acme\HelloBundle\DependencyInjection\Compiler\TranslatorOverridePass;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;

class AcmeHelloBundle extends Bundle
{
    public function build(ContainerBuilder $container)
    {
        $container->addCompilerPass(new TranslatorOverridePass());
    }
}