1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 15:49:44 +02:00

i18n admin sections

This commit is contained in:
McMatts 2022-03-02 19:55:52 -05:00
parent a7dac6911c
commit 479d03ba70
9 changed files with 131 additions and 78 deletions

View file

@ -15,14 +15,21 @@ import Component from '@ember/component';
export default Component.extend(Notifier, {
appMeta: service(),
buttonLabel: 'Rebuild',
i18n: service(),
buttonLabel: '',
init() {
this._super(...arguments);
this.buttonLabel = this.i18n.localize('search_reindex_rebuild');
},
actions: {
reindex() {
this.set('buttonLabel', 'Running...');
this.notifyInfo("Starting search re-index process");
this.set('buttonLabel', this.i18n.localize('running'));
this.notifyInfo(this.i18n.localize('search_reindex_start'));
this.get('reindex')(() => {
this.notifySuccess("Search re-indexing complete");
this.notifySuccess(this.i18n.localize('search_reindex_finish'));
this.set('buttonLabel', this.i18n.localize('search_reindex_rebuild'));
});
}
}