Skip to content

Instantly share code, notes, and snippets.

@tarnagas
tarnagas / gist:0466c4aa76d08f29b7c050f443ab50da
Created March 6, 2018 14:18 — forked from nickwanhere/gist:85bfbe8143ded6a30acb
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/
?>