Versions

Support

You can obtain free community support for example through stackoverflow, or also through the Symfony2 mailing list.

If you think you found a bug, please create a ticket in the bug tracker.


Continuous Inspections

If you take code quality seriously, try out the new continuous inspection service.
scrutinizer-ci.com

GitHub

Installation

To install JMSTranslationBundle with Composer execute the following command:

$ composer require jms/translation-bundle "^1.3"

Now, Composer will automatically download all required files, and install them for you. All that is left to do is to update your AppKernel.php file, and register the new bundle:

<?php

// in AppKernel::registerBundles()
$bundles = array(
    // ...
    new JMS\TranslationBundle\JMSTranslationBundle(),
    // ...
);

Congratulations the bundle is now installed. Lets start configure with the bundle. These resources may be of interest:

  • Example configuration <cookbook/extraction_config.rst
  • Configuration reference <cookbook/config_reference.rst
  • Using the WebUI <webinterface.rst