2017 © Pedro Peláez
 

library web-translator-bundle

manage translation files with web pages

image

elmoulaoui/web-translator-bundle

manage translation files with web pages

  • Monday, September 2, 2013
  • by elmoulaoui
  • Repository
  • 1 Watchers
  • 0 Stars
  • 8 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

WebTranslatorBundle

manage translation files with web pages, (*1)

Installation

1) add bundle to composer.json, (*2)

"require": { "elmoulaoui/web-translator-bundle": "dev-master" }, (*3)

2) php composer.phar update, (*4)

3) app/AppKernel.php, enable the bundle :, (*5)

$bundles = array( .... new Web\TranslatorBundle\WebTranslatorBundle(), .... );, (*6)

4) add bundle configuration in app/config/parameters.yml, (*7)

translator_bundles:e
  acme-demo-bundle:  "%kernel.root_dir%/../src/Acme/DemoBundle"
translator_main_language:   fr
translator_target_languages: [en]
translator_target_domains: [messages, validators, AcmeDemoBundle]
translator_format: xliff

5) import bundle routing in app/config/routing.yml, (*8)

web_translator: resource: "@WebTranslatorBundle/Resources/config/routing.yml" prefix: /translator, (*9)

The Versions

02/09 2013

dev-master

9999999-dev

manage translation files with web pages

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

by Noureddine EL MOULAOUI