Skip to content

Instantly share code, notes, and snippets.

@tournasdim
Created March 12, 2014 16:36
Show Gist options
  • Save tournasdim/9510847 to your computer and use it in GitHub Desktop.
Save tournasdim/9510847 to your computer and use it in GitHub Desktop.
Defining Locale from module's configuration file in ZF2
// BookList/Module.php (a custom ZF2 module)
public function onBootstrap(MvcEvent $e)
{
$translator = $e->getApplication()->getServiceManager()->get('translator') ;
$translator->setLocale(\Locale::acceptFromHttp($_SERVER['HTTP_ACCEPT_LANGUAGE']))
->setFallbackLocale('en_US') ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment