c04ce88528ab5a2867abe317e9bbcf0077a2fb49
[platform/framework/web/crosswalk-tizen.git] /
1 define(['../object/mixIn', './i18n/en-US'], function(mixIn, enUS){
2
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);
8         }
9     });
10
11     return activeLocale;
12
13 });