fdix NOW ago by using the default format of moment

this prints `A few seconds ago` for a very recent change
pull/2190/head
Audric Ackermann 3 years ago
parent 3eb922f83f
commit 2e200df933
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -149,9 +149,6 @@
"notificationMostRecent": "Most recent:",
"sendFailed": "Send Failed",
"mediaMessage": "Media message",
"timestamp_s": "Now",
"timestamp_m": "1 minute",
"timestamp_h": "1 hour",
"messageBodyMissing": "Please enter a message body.",
"unblockToSend": "Unblock this contact to send a message.",
"unblockGroupToSend": "This group is blocked. Unlock it if you would like to send a message.",

@ -215,24 +215,7 @@ window.getSeedNodeList = () => JSON.parse(config.seedNodeList);
const { locale: localFromEnv } = config;
window.i18n = i18n.setup(localFromEnv, localeMessages);
// moment does not support es-419 correctly (and cause white screen on app start)
window.moment = require('moment');
// 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: {
s: window.i18n('timestamp_s'),
m: window.i18n('timestamp_m'),
h: window.i18n('timestamp_h'),
},
});
window.libsession = require('./ts/session');
window.Signal.Data = require('./ts/data/data');

Loading…
Cancel
Save