|
|
@ -386,21 +386,25 @@ window.seedNodeList = JSON.parse(config.seedNodeList);
|
|
|
|
|
|
|
|
|
|
|
|
const { OnionPaths } = require('./ts/session/onions');
|
|
|
|
const { OnionPaths } = require('./ts/session/onions');
|
|
|
|
|
|
|
|
|
|
|
|
const { locale } = config;
|
|
|
|
const { locale: localFromEnv } = config;
|
|
|
|
window.i18n = i18n.setup(locale, localeMessages);
|
|
|
|
window.i18n = i18n.setup(localFromEnv, localeMessages);
|
|
|
|
// moment does not support es-419 correctly (and cause white screen on app start)
|
|
|
|
|
|
|
|
const localeForMoment = locale === 'es-419' ? 'es' : locale;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// moment does not support es-419 correctly (and cause white screen on app start)
|
|
|
|
window.moment = require('moment');
|
|
|
|
window.moment = require('moment');
|
|
|
|
|
|
|
|
|
|
|
|
window.moment.updateLocale(localeForMoment, {
|
|
|
|
// Default to the locale from env. It will be overriden if moment
|
|
|
|
|
|
|
|
// does not recognize it with what moment knows which is the closest.
|
|
|
|
|
|
|
|
// i.e. es-419 will return 'es'.
|
|
|
|
|
|
|
|
// We just need to use what we got from moment on the updateLocale below
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const localeSetForMoment = window.moment.locale(localFromEnv);
|
|
|
|
|
|
|
|
window.moment.updateLocale(localeSetForMoment, {
|
|
|
|
relativeTime: {
|
|
|
|
relativeTime: {
|
|
|
|
s: window.i18n('timestamp_s'),
|
|
|
|
s: window.i18n('timestamp_s'),
|
|
|
|
m: window.i18n('timestamp_m'),
|
|
|
|
m: window.i18n('timestamp_m'),
|
|
|
|
h: window.i18n('timestamp_h'),
|
|
|
|
h: window.i18n('timestamp_h'),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
window.moment.locale(localeForMoment);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
window.OnionPaths = OnionPaths;
|
|
|
|
window.OnionPaths = OnionPaths;
|
|
|
|
|
|
|
|
|
|
|
|