Christian Kolb
Christian Kolb

Reputation: 1388

Symfony internationalization with javascript

I'm developing an web application with symfony2. Symfony features a build in internationalization for all PHP related parts.

Is there a way to use those build in internationalization parts in javascript too? Through any kind of bundle? I know there was one for symfony 1.4 but it doesn't seems to be updated any more.

If there is no bundle for it, what's the best way to implement internationalization with javascript when working with an framework which already contains a build in internationalization concept?

Upvotes: 2

Views: 816

Answers (1)

Picoss
Picoss

Reputation: 2057

Update: the bundle has been renamed to BazingaJsTranslationBundle, link updated.

You should have a look at this bundle : BazingaJsTranslationBundle

A pretty nice way to expose your translated messages to your JavaScript.

Upvotes: 5

Related Questions