1 define(['../object/mixIn', './i18n/en-US'], function(mixIn, enUS){
3 // we also use mixIn to make sure we don't affect the original locale
4 var activeLocale = mixIn({}, enUS, {
5 // we expose a "set" method to allow overriding the global locale
6 set : function(localeData){
7 mixIn(activeLocale, localeData);