23 lines
631 B
JavaScript
23 lines
631 B
JavaScript
import deepObjectExtend from 'new-dashboard/utils/deep-object-extend';
|
|
|
|
var moment=require('moment');
|
|
|
|
var ACTIVE_LOCALE = 'zh-cn';
|
|
if (ACTIVE_LOCALE !== 'en') {
|
|
require('moment/locale/zh-cn');
|
|
}
|
|
|
|
var Locale = require('locale/index');
|
|
var Polyglot = require('node-polyglot');
|
|
|
|
// Override original translation strings
|
|
const overrideTranslationStrings = require('./locales/en.overrides.json');
|
|
Locale.en = deepObjectExtend(Locale.en, overrideTranslationStrings);
|
|
|
|
var polyglot = new Polyglot({
|
|
locale: ACTIVE_LOCALE, // Needed for pluralize behaviour
|
|
phrases: Locale[ACTIVE_LOCALE]
|
|
});
|
|
|
|
window._t = polyglot.t.bind(polyglot);
|