Skip to content

Instantly share code, notes, and snippets.

@webmozart
Created February 14, 2014 17:03
Show Gist options
  • Save webmozart/9004861 to your computer and use it in GitHub Desktop.
Save webmozart/9004861 to your computer and use it in GitHub Desktop.
<?php
function createTranslator(ResourceLocatorInterface $locator) {
$translator = new Translator('en');
// add project specific resource
$translator->addResource('xlf', __DIR__.'/translations/en.xlf');
// add all resources registered with the locator
$translator->consumeResources($locator);
return $translator;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment