Updated scheduling copy

no refs.
- updated moment locale to display '1 minute' instead of 'a minute' to be more explicit about scheduled time
- removed full stop from the scheduler message in editor header
This commit is contained in:
Peter Zimon 2020-10-02 10:45:49 +02:00
parent 0a3e80dcb4
commit 46a1b4f8bb
1 changed files with 7 additions and 0 deletions

View File

@ -4,8 +4,15 @@ import Application from '@ember/application';
import Resolver from 'ember-resolver';
import config from 'ghost-admin/config/environment';
import loadInitializers from 'ember-load-initializers';
import moment from 'moment';
import {registerWarnHandler} from '@ember/debug';
moment.updateLocale('en', {
relativeTime: {
m: '1 minute'
}
});
const App = Application.extend({
Resolver,
modulePrefix: config.modulePrefix,