Skip to content

Instantly share code, notes, and snippets.

@nickwanhere
Created October 27, 2015 08:29
Show Gist options
  • Select an option

  • Save nickwanhere/85bfbe8143ded6a30acb to your computer and use it in GitHub Desktop.

Select an option

Save nickwanhere/85bfbe8143ded6a30acb to your computer and use it in GitHub Desktop.
Programmatically set magento locale
<?php
$locale = 'nl_NL';
Mage::app()->getLocale()->setLocaleCode($locale);
Mage::getSingleton('core/translate')->setLocale($locale)->init('frontend', true);
//http://www.kennydeckers.com/programatically-set-locale-language-magento/
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment