简体   繁体   中英

Translate Validation Messages in Silex

Code:

   $app->register(new Silex\Provider\TranslationServiceProvider(), array(
      'locale' => 'sr_Latn',
      'translation.class_path' => __DIR__ . '/../vendor/symfony/src',
      'translator.messages' => array('sr_Latn' => __DIR__ .'/../vendor/symfony/src/Symfony/Bundle/FrameworkBundle/Resources/translations/validators.sr_Latn.xlf')
    ));
    $app['translator.loader'] = new Symfony\Component\Translation\Loader\XliffFileLoader();

and I still get validation messages in english. any idea?

You need to add a call to Translator::addResource :

$file = __DIR__ .'/../vendor/symfony/src/Symfony/Bundle/FrameworkBundle/Resources/translations/validators.sr_Latn.xlf';
$app['translator']->addResource('xliff', $file, 'sr_Latn', 'validators');

See also Symfony\\Bundle\\FrameworkBundle\\DependencyInjection::registerTranslatorConfiguration .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM